OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2004, 2005, 2006, 2008 Nikolas Zimmermann <zimmermann@kde.org> | 2 * Copyright (C) 2004, 2005, 2006, 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 21 matching lines...) Expand all Loading... |
32 public: | 32 public: |
33 static PassRefPtr<SVGCircleElement> create(Document&); | 33 static PassRefPtr<SVGCircleElement> create(Document&); |
34 | 34 |
35 SVGAnimatedLength* cx() const { return m_cx.get(); } | 35 SVGAnimatedLength* cx() const { return m_cx.get(); } |
36 SVGAnimatedLength* cy() const { return m_cy.get(); } | 36 SVGAnimatedLength* cy() const { return m_cy.get(); } |
37 SVGAnimatedLength* r() const { return m_r.get(); } | 37 SVGAnimatedLength* r() const { return m_r.get(); } |
38 | 38 |
39 private: | 39 private: |
40 explicit SVGCircleElement(Document&); | 40 explicit SVGCircleElement(Document&); |
41 | 41 |
42 virtual bool isValid() const OVERRIDE { return SVGTests::isValid(); } | |
43 virtual bool supportsFocus() const OVERRIDE { return hasFocusEventListeners(
); } | 42 virtual bool supportsFocus() const OVERRIDE { return hasFocusEventListeners(
); } |
44 | 43 |
45 bool isSupportedAttribute(const QualifiedName&); | 44 bool isSupportedAttribute(const QualifiedName&); |
46 virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERR
IDE; | 45 virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERR
IDE; |
47 virtual void svgAttributeChanged(const QualifiedName&) OVERRIDE; | 46 virtual void svgAttributeChanged(const QualifiedName&) OVERRIDE; |
48 | 47 |
49 virtual bool selfHasRelativeLengths() const OVERRIDE; | 48 virtual bool selfHasRelativeLengths() const OVERRIDE; |
50 | 49 |
51 virtual RenderObject* createRenderer(RenderStyle*) OVERRIDE; | 50 virtual RenderObject* createRenderer(RenderStyle*) OVERRIDE; |
52 | 51 |
53 RefPtr<SVGAnimatedLength> m_cx; | 52 RefPtr<SVGAnimatedLength> m_cx; |
54 RefPtr<SVGAnimatedLength> m_cy; | 53 RefPtr<SVGAnimatedLength> m_cy; |
55 RefPtr<SVGAnimatedLength> m_r; | 54 RefPtr<SVGAnimatedLength> m_r; |
56 BEGIN_DECLARE_ANIMATED_PROPERTIES(SVGCircleElement) | 55 BEGIN_DECLARE_ANIMATED_PROPERTIES(SVGCircleElement) |
57 END_DECLARE_ANIMATED_PROPERTIES | 56 END_DECLARE_ANIMATED_PROPERTIES |
58 }; | 57 }; |
59 | 58 |
60 DEFINE_NODE_TYPE_CASTS(SVGCircleElement, hasTagName(SVGNames::circleTag)); | 59 DEFINE_NODE_TYPE_CASTS(SVGCircleElement, hasTagName(SVGNames::circleTag)); |
61 | 60 |
62 } // namespace WebCore | 61 } // namespace WebCore |
63 | 62 |
64 #endif // SVGCircleElement_h | 63 #endif // SVGCircleElement_h |
OLD | NEW |