OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2004, 2005, 2006, 2007, 2008 Nikolas Zimmermann <zimmermann@kde
.org> | 2 * Copyright (C) 2004, 2005, 2006, 2007, 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 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
70 SVGAnimatedEnumeration<SVGMarkerOrientType>* orientType() { return m_orientA
ngle->orientType(); } | 70 SVGAnimatedEnumeration<SVGMarkerOrientType>* orientType() { return m_orientA
ngle->orientType(); } |
71 | 71 |
72 private: | 72 private: |
73 explicit SVGMarkerElement(Document&); | 73 explicit SVGMarkerElement(Document&); |
74 | 74 |
75 virtual bool needsPendingResourceHandling() const OVERRIDE { return false; } | 75 virtual bool needsPendingResourceHandling() const OVERRIDE { return false; } |
76 | 76 |
77 bool isSupportedAttribute(const QualifiedName&); | 77 bool isSupportedAttribute(const QualifiedName&); |
78 virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERR
IDE; | 78 virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERR
IDE; |
79 virtual void svgAttributeChanged(const QualifiedName&) OVERRIDE; | 79 virtual void svgAttributeChanged(const QualifiedName&) OVERRIDE; |
80 virtual void childrenChanged(bool changedByParser = false, Node* beforeChang
e = 0, Node* afterChange = 0, int childCountDelta = 0) OVERRIDE; | 80 virtual void childrenChanged(const ChildrenChange&) OVERRIDE; |
81 | 81 |
82 virtual RenderObject* createRenderer(RenderStyle*) OVERRIDE; | 82 virtual RenderObject* createRenderer(RenderStyle*) OVERRIDE; |
83 virtual bool rendererIsNeeded(const RenderStyle&) OVERRIDE { return true; } | 83 virtual bool rendererIsNeeded(const RenderStyle&) OVERRIDE { return true; } |
84 | 84 |
85 virtual bool selfHasRelativeLengths() const OVERRIDE; | 85 virtual bool selfHasRelativeLengths() const OVERRIDE; |
86 | 86 |
87 RefPtr<SVGAnimatedLength> m_refX; | 87 RefPtr<SVGAnimatedLength> m_refX; |
88 RefPtr<SVGAnimatedLength> m_refY; | 88 RefPtr<SVGAnimatedLength> m_refY; |
89 RefPtr<SVGAnimatedLength> m_markerWidth; | 89 RefPtr<SVGAnimatedLength> m_markerWidth; |
90 RefPtr<SVGAnimatedLength> m_markerHeight; | 90 RefPtr<SVGAnimatedLength> m_markerHeight; |
91 RefPtr<SVGAnimatedAngle> m_orientAngle; | 91 RefPtr<SVGAnimatedAngle> m_orientAngle; |
92 RefPtr<SVGAnimatedEnumeration<SVGMarkerUnitsType> > m_markerUnits; | 92 RefPtr<SVGAnimatedEnumeration<SVGMarkerUnitsType> > m_markerUnits; |
93 }; | 93 }; |
94 | 94 |
95 } | 95 } |
96 | 96 |
97 #endif | 97 #endif |
OLD | NEW |