OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2004, 2005, 2008 Nikolas Zimmermann <zimmermann@kde.org> | 2 * Copyright (C) 2004, 2005, 2008 Nikolas Zimmermann <zimmermann@kde.org> |
3 * Copyright (C) 2004, 2005 Rob Buis <buis@kde.org> | 3 * Copyright (C) 2004, 2005 Rob Buis <buis@kde.org> |
4 * Copyright (C) 2007 Eric Seidel <eric@webkit.org> | 4 * Copyright (C) 2007 Eric Seidel <eric@webkit.org> |
5 * | 5 * |
6 * This library is free software; you can redistribute it and/or | 6 * This library is free software; you can redistribute it and/or |
7 * modify it under the terms of the GNU Library General Public | 7 * modify it under the terms of the GNU Library General Public |
8 * License as published by the Free Software Foundation; either | 8 * License as published by the Free Software Foundation; either |
9 * version 2 of the License, or (at your option) any later version. | 9 * version 2 of the License, or (at your option) any later version. |
10 * | 10 * |
(...skipping 13 matching lines...) Expand all Loading... |
24 | 24 |
25 #include "core/svg/SVGAnimatedBoolean.h" | 25 #include "core/svg/SVGAnimatedBoolean.h" |
26 #include "core/svg/SVGGraphicsElement.h" | 26 #include "core/svg/SVGGraphicsElement.h" |
27 #include "core/svg/SVGURIReference.h" | 27 #include "core/svg/SVGURIReference.h" |
28 | 28 |
29 namespace WebCore { | 29 namespace WebCore { |
30 | 30 |
31 class SVGAElement FINAL : public SVGGraphicsElement, | 31 class SVGAElement FINAL : public SVGGraphicsElement, |
32 public SVGURIReference { | 32 public SVGURIReference { |
33 public: | 33 public: |
34 DEFINE_NODE_FACTORY(SVGAElement); | 34 DECLARE_NODE_FACTORY(SVGAElement); |
35 SVGAnimatedString* svgTarget() { return m_svgTarget.get(); } | 35 SVGAnimatedString* svgTarget() { return m_svgTarget.get(); } |
36 | 36 |
37 private: | 37 private: |
38 explicit SVGAElement(Document&); | 38 explicit SVGAElement(Document&); |
39 | 39 |
40 virtual String title() const OVERRIDE; | 40 virtual String title() const OVERRIDE; |
41 | 41 |
42 bool isSupportedAttribute(const QualifiedName&); | 42 bool isSupportedAttribute(const QualifiedName&); |
43 virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERR
IDE; | 43 virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERR
IDE; |
44 virtual void svgAttributeChanged(const QualifiedName&) OVERRIDE; | 44 virtual void svgAttributeChanged(const QualifiedName&) OVERRIDE; |
(...skipping 10 matching lines...) Expand all Loading... |
55 virtual short tabIndex() const OVERRIDE; | 55 virtual short tabIndex() const OVERRIDE; |
56 | 56 |
57 virtual bool willRespondToMouseClickEvents() OVERRIDE; | 57 virtual bool willRespondToMouseClickEvents() OVERRIDE; |
58 | 58 |
59 RefPtr<SVGAnimatedString> m_svgTarget; | 59 RefPtr<SVGAnimatedString> m_svgTarget; |
60 }; | 60 }; |
61 | 61 |
62 } // namespace WebCore | 62 } // namespace WebCore |
63 | 63 |
64 #endif // SVGAElement_h | 64 #endif // SVGAElement_h |
OLD | NEW |