| 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, 2006 Rob Buis <buis@kde.org> | 3 * Copyright (C) 2004, 2005, 2006 Rob Buis <buis@kde.org> |
| 4 * | 4 * |
| 5 * This library is free software; you can redistribute it and/or | 5 * This library is free software; you can redistribute it and/or |
| 6 * modify it under the terms of the GNU Library General Public | 6 * modify it under the terms of the GNU Library General Public |
| 7 * License as published by the Free Software Foundation; either | 7 * License as published by the Free Software Foundation; either |
| 8 * version 2 of the License, or (at your option) any later version. | 8 * version 2 of the License, or (at your option) any later version. |
| 9 * | 9 * |
| 10 * This library is distributed in the hope that it will be useful, | 10 * This library is distributed in the hope that it will be useful, |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 namespace WebCore { | 28 namespace WebCore { |
| 29 | 29 |
| 30 class SVGTRefTargetEventListener; | 30 class SVGTRefTargetEventListener; |
| 31 | 31 |
| 32 class SVGTRefElement : public SVGTextPositioningElement, | 32 class SVGTRefElement : public SVGTextPositioningElement, |
| 33 public SVGURIReference { | 33 public SVGURIReference { |
| 34 DEFINE_SELF_HANDLE(SVGTRefElement) | 34 DEFINE_SELF_HANDLE(SVGTRefElement) |
| 35 public: | 35 public: |
| 36 static PassRefPtr<SVGTRefElement> create(const QualifiedName&, const Handle<
Document>&); | 36 static PassRefPtr<SVGTRefElement> create(const QualifiedName&, const Handle<
Document>&); |
| 37 | 37 |
| 38 virtual void accept(Visitor* visitor) const OVERRIDE { SVGTextPositioningEle
ment::accept(visitor); } |
| 39 |
| 38 private: | 40 private: |
| 39 friend class SVGTRefTargetEventListener; | 41 friend class SVGTRefTargetEventListener; |
| 40 | 42 |
| 41 SVGTRefElement(const QualifiedName&, const Handle<Document>&); | 43 SVGTRefElement(const QualifiedName&, const Handle<Document>&); |
| 42 virtual ~SVGTRefElement(); | 44 virtual ~SVGTRefElement(); |
| 43 | 45 |
| 44 bool isSupportedAttribute(const QualifiedName&); | 46 bool isSupportedAttribute(const QualifiedName&); |
| 45 virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERR
IDE; | 47 virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERR
IDE; |
| 46 virtual void svgAttributeChanged(const QualifiedName&); | 48 virtual void svgAttributeChanged(const QualifiedName&); |
| 47 | 49 |
| (...skipping 14 matching lines...) Expand all Loading... |
| 62 DECLARE_ANIMATED_STRING(Href, href) | 64 DECLARE_ANIMATED_STRING(Href, href) |
| 63 END_DECLARE_ANIMATED_PROPERTIES | 65 END_DECLARE_ANIMATED_PROPERTIES |
| 64 | 66 |
| 65 RefPtr<SVGTRefTargetEventListener> m_targetListener; | 67 RefPtr<SVGTRefTargetEventListener> m_targetListener; |
| 66 }; | 68 }; |
| 67 | 69 |
| 68 } // namespace WebCore | 70 } // namespace WebCore |
| 69 | 71 |
| 70 #endif // ENABLE(SVG) | 72 #endif // ENABLE(SVG) |
| 71 #endif | 73 #endif |
| OLD | NEW |