| 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 28 matching lines...) Expand all Loading... |
| 39 virtual void trace(Visitor*) override; | 39 virtual void trace(Visitor*) override; |
| 40 | 40 |
| 41 private: | 41 private: |
| 42 explicit SVGAElement(Document&); | 42 explicit SVGAElement(Document&); |
| 43 | 43 |
| 44 virtual String title() const override; | 44 virtual String title() const override; |
| 45 | 45 |
| 46 virtual void parseAttribute(const QualifiedName&, const AtomicString&) overr
ide; | 46 virtual void parseAttribute(const QualifiedName&, const AtomicString&) overr
ide; |
| 47 virtual void svgAttributeChanged(const QualifiedName&) override; | 47 virtual void svgAttributeChanged(const QualifiedName&) override; |
| 48 | 48 |
| 49 virtual RenderObject* createRenderer(const RenderStyle&) override; | 49 virtual LayoutObject* createRenderer(const RenderStyle&) override; |
| 50 | 50 |
| 51 virtual void defaultEventHandler(Event*) override; | 51 virtual void defaultEventHandler(Event*) override; |
| 52 | 52 |
| 53 virtual bool isLiveLink() const override { return isLink(); } | 53 virtual bool isLiveLink() const override { return isLink(); } |
| 54 | 54 |
| 55 virtual bool supportsFocus() const override; | 55 virtual bool supportsFocus() const override; |
| 56 virtual bool shouldHaveFocusAppearance() const override final; | 56 virtual bool shouldHaveFocusAppearance() const override final; |
| 57 virtual void dispatchFocusEvent(Element* oldFocusedElement, WebFocusType) ov
erride; | 57 virtual void dispatchFocusEvent(Element* oldFocusedElement, WebFocusType) ov
erride; |
| 58 virtual bool isMouseFocusable() const override; | 58 virtual bool isMouseFocusable() const override; |
| 59 virtual bool isKeyboardFocusable() const override; | 59 virtual bool isKeyboardFocusable() const override; |
| 60 virtual bool isURLAttribute(const Attribute&) const override; | 60 virtual bool isURLAttribute(const Attribute&) const override; |
| 61 virtual bool canStartSelection() const override; | 61 virtual bool canStartSelection() const override; |
| 62 virtual short tabIndex() const override; | 62 virtual short tabIndex() const override; |
| 63 | 63 |
| 64 virtual bool willRespondToMouseClickEvents() override; | 64 virtual bool willRespondToMouseClickEvents() override; |
| 65 | 65 |
| 66 RefPtrWillBeMember<SVGAnimatedString> m_svgTarget; | 66 RefPtrWillBeMember<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 |