OSDN Git Service

am e7a07088: am 21ed5a45: Merge "check for null pictures when selecting text" into...
[android-x86/external-webkit.git] / WebCore / wml / WMLAElement.h
1 /**
2  * Copyright (C) 2008 Torch Mobile Inc. All rights reserved. (http://www.torchmobile.com/)
3  *
4  * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
5  *           (C) 1999 Antti Koivisto (koivisto@kde.org)
6  *           (C) 2000 Simon Hausmann <hausmann@kde.org>
7  * Copyright (C) 2007, 2008 Apple Inc. All rights reserved.
8  * 
9  * This library is free software; you can redistribute it and/or
10  * modify it under the terms of the GNU Library General Public
11  * License as published by the Free Software Foundation; either
12  * version 2 of the License, or (at your option) any later version.
13  *
14  * This library is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17  * Library General Public License for more details.
18  *
19  * You should have received a copy of the GNU Library General Public License
20  * along with this library; see the file COPYING.LIB.  If not, write to
21  * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
22  * Boston, MA 02110-1301, USA.
23  *
24  */
25
26 #ifndef WMLAElement_h
27 #define WMLAElement_h
28
29 #if ENABLE(WML)
30 #include "WMLElement.h"
31
32 namespace WebCore {
33
34 class WMLAElement : public WMLElement {
35 public:
36     WMLAElement(const QualifiedName& tagName, Document*);
37
38     virtual bool supportsFocus() const;
39     virtual bool isMouseFocusable() const;
40     virtual bool isKeyboardFocusable(KeyboardEvent*) const;
41
42     virtual void parseMappedAttribute(Attribute*);
43     virtual void defaultEventHandler(Event*);
44
45     virtual void accessKeyAction(bool fullAction);
46     virtual bool isURLAttribute(Attribute*) const;
47
48     virtual String target() const;
49 };
50
51 }
52
53 #endif
54 #endif