| 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/CoreExport.h" | 25 #include "core/CoreExport.h" |
| 26 #include "core/svg/SVGAnimatedBoolean.h" | 26 #include "core/svg/SVGAnimatedBoolean.h" |
| 27 #include "core/svg/SVGGraphicsElement.h" | 27 #include "core/svg/SVGGraphicsElement.h" |
| 28 #include "core/svg/SVGURIReference.h" | 28 #include "core/svg/SVGURIReference.h" |
| 29 | 29 |
| 30 namespace blink { | 30 namespace blink { |
| 31 | 31 |
| 32 class CORE_EXPORT SVGAElement final : public SVGGraphicsElement, public SVGURIRe
ference { | 32 class CORE_EXPORT SVGAElement final : public SVGGraphicsElement, public SVGURIRe
ference { |
| 33 DEFINE_WRAPPERTYPEINFO(); | 33 DEFINE_WRAPPERTYPEINFO(); |
| 34 WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(SVGAElement); | 34 USING_GARBAGE_COLLECTED_MIXIN(SVGAElement); |
| 35 public: | 35 public: |
| 36 DECLARE_NODE_FACTORY(SVGAElement); | 36 DECLARE_NODE_FACTORY(SVGAElement); |
| 37 SVGAnimatedString* svgTarget() { return m_svgTarget.get(); } | 37 SVGAnimatedString* svgTarget() { return m_svgTarget.get(); } |
| 38 | 38 |
| 39 DECLARE_VIRTUAL_TRACE(); | 39 DECLARE_VIRTUAL_TRACE(); |
| 40 | 40 |
| 41 private: | 41 private: |
| 42 explicit SVGAElement(Document&); | 42 explicit SVGAElement(Document&); |
| 43 | 43 |
| 44 String title() const override; | 44 String title() const override; |
| (...skipping 11 matching lines...) Expand all Loading... |
| 56 void dispatchFocusEvent(Element* oldFocusedElement, WebFocusType, InputDevic
eCapabilities* sourceCapabilities) override; | 56 void dispatchFocusEvent(Element* oldFocusedElement, WebFocusType, InputDevic
eCapabilities* sourceCapabilities) override; |
| 57 void dispatchBlurEvent(Element* newFocusedElement, WebFocusType, InputDevice
Capabilities* sourceCapabilities) override; | 57 void dispatchBlurEvent(Element* newFocusedElement, WebFocusType, InputDevice
Capabilities* sourceCapabilities) override; |
| 58 bool isMouseFocusable() const override; | 58 bool isMouseFocusable() const override; |
| 59 bool isKeyboardFocusable() const override; | 59 bool isKeyboardFocusable() const override; |
| 60 bool isURLAttribute(const Attribute&) const override; | 60 bool isURLAttribute(const Attribute&) const override; |
| 61 bool canStartSelection() const override; | 61 bool canStartSelection() const override; |
| 62 short tabIndex() const override; | 62 short tabIndex() const override; |
| 63 | 63 |
| 64 bool willRespondToMouseClickEvents() override; | 64 bool willRespondToMouseClickEvents() override; |
| 65 | 65 |
| 66 RefPtrWillBeMember<SVGAnimatedString> m_svgTarget; | 66 Member<SVGAnimatedString> m_svgTarget; |
| 67 bool m_wasFocusedByMouse; | 67 bool m_wasFocusedByMouse; |
| 68 }; | 68 }; |
| 69 | 69 |
| 70 } // namespace blink | 70 } // namespace blink |
| 71 | 71 |
| 72 #endif // SVGAElement_h | 72 #endif // SVGAElement_h |
| OLD | NEW |