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
32namespace WebCore {
33
34class WMLAElement : public WMLElement {
35public:
36    static PassRefPtr<WMLAElement> create(const QualifiedName& tagName, Document*);
37
38    WMLAElement(const QualifiedName& tagName, Document*);
39
40    virtual bool supportsFocus() const;
41    virtual bool isMouseFocusable() const;
42    virtual bool isKeyboardFocusable(KeyboardEvent*) const;
43
44    virtual void parseMappedAttribute(Attribute*);
45    virtual void defaultEventHandler(Event*);
46
47    virtual void accessKeyAction(bool fullAction);
48    virtual bool isURLAttribute(Attribute*) const;
49
50    virtual String target() const;
51};
52
53}
54
55#endif
56#endif
57