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, |
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
13 * Library General Public License for more details. | 13 * Library General Public License for more details. |
14 * | 14 * |
15 * You should have received a copy of the GNU Library General Public License | 15 * You should have received a copy of the GNU Library General Public License |
16 * along with this library; see the file COPYING.LIB. If not, write to | 16 * along with this library; see the file COPYING.LIB. If not, write to |
17 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | 17 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
18 * Boston, MA 02110-1301, USA. | 18 * Boston, MA 02110-1301, USA. |
19 */ | 19 */ |
20 | 20 |
21 #ifndef SVGGradientElement_h | 21 #ifndef SVGGradientElement_h |
22 #define SVGGradientElement_h | 22 #define SVGGradientElement_h |
23 | 23 |
24 #include "SVGNames.h" | 24 #include "SVGNames.h" |
25 #include "core/platform/graphics/Gradient.h" | 25 #include "core/platform/graphics/Gradient.h" |
26 #include "core/svg/SVGAnimatedBoolean.h" | 26 #include "core/svg/SVGAnimatedBoolean.h" |
27 #include "core/svg/SVGAnimatedEnumeration.h" | 27 #include "core/svg/SVGAnimatedEnumeration.h" |
28 #include "core/svg/SVGAnimatedTransformList.h" | 28 #include "core/svg/SVGAnimatedTransformList.h" |
29 #include "core/svg/SVGElement.h" | 29 #include "core/svg/SVGElement.h" |
30 #include "core/svg/SVGExternalResourcesRequired.h" | |
31 #include "core/svg/SVGURIReference.h" | 30 #include "core/svg/SVGURIReference.h" |
32 #include "core/svg/SVGUnitTypes.h" | 31 #include "core/svg/SVGUnitTypes.h" |
33 | 32 |
34 namespace WebCore { | 33 namespace WebCore { |
35 | 34 |
36 enum SVGSpreadMethodType { | 35 enum SVGSpreadMethodType { |
37 SVGSpreadMethodUnknown = 0, | 36 SVGSpreadMethodUnknown = 0, |
38 SVGSpreadMethodPad, | 37 SVGSpreadMethodPad, |
39 SVGSpreadMethodReflect, | 38 SVGSpreadMethodReflect, |
40 SVGSpreadMethodRepeat | 39 SVGSpreadMethodRepeat |
(...skipping 26 matching lines...) Expand all Loading... |
67 return SVGSpreadMethodPad; | 66 return SVGSpreadMethodPad; |
68 if (value == "reflect") | 67 if (value == "reflect") |
69 return SVGSpreadMethodReflect; | 68 return SVGSpreadMethodReflect; |
70 if (value == "repeat") | 69 if (value == "repeat") |
71 return SVGSpreadMethodRepeat; | 70 return SVGSpreadMethodRepeat; |
72 return SVGSpreadMethodUnknown; | 71 return SVGSpreadMethodUnknown; |
73 } | 72 } |
74 }; | 73 }; |
75 | 74 |
76 class SVGGradientElement : public SVGElement, | 75 class SVGGradientElement : public SVGElement, |
77 public SVGURIReference, | 76 public SVGURIReference { |
78 public SVGExternalResourcesRequired { | |
79 public: | 77 public: |
80 enum { | 78 enum { |
81 SVG_SPREADMETHOD_UNKNOWN = SVGSpreadMethodUnknown, | 79 SVG_SPREADMETHOD_UNKNOWN = SVGSpreadMethodUnknown, |
82 SVG_SPREADMETHOD_PAD = SVGSpreadMethodReflect, | 80 SVG_SPREADMETHOD_PAD = SVGSpreadMethodReflect, |
83 SVG_SPREADMETHOD_REFLECT = SVGSpreadMethodRepeat, | 81 SVG_SPREADMETHOD_REFLECT = SVGSpreadMethodRepeat, |
84 SVG_SPREADMETHOD_REPEAT = SVGSpreadMethodUnknown | 82 SVG_SPREADMETHOD_REPEAT = SVGSpreadMethodUnknown |
85 }; | 83 }; |
86 | 84 |
87 Vector<Gradient::ColorStop> buildStops(); | 85 Vector<Gradient::ColorStop> buildStops(); |
88 | 86 |
89 protected: | 87 protected: |
90 SVGGradientElement(const QualifiedName&, Document&); | 88 SVGGradientElement(const QualifiedName&, Document&); |
91 | 89 |
92 bool isSupportedAttribute(const QualifiedName&); | 90 bool isSupportedAttribute(const QualifiedName&); |
93 virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERR
IDE; | 91 virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERR
IDE; |
94 virtual void svgAttributeChanged(const QualifiedName&); | 92 virtual void svgAttributeChanged(const QualifiedName&); |
95 | 93 |
96 private: | 94 private: |
97 virtual bool needsPendingResourceHandling() const { return false; } | 95 virtual bool needsPendingResourceHandling() const { return false; } |
98 | 96 |
99 virtual void childrenChanged(bool changedByParser = false, Node* beforeChang
e = 0, Node* afterChange = 0, int childCountDelta = 0); | 97 virtual void childrenChanged(bool changedByParser = false, Node* beforeChang
e = 0, Node* afterChange = 0, int childCountDelta = 0); |
100 | 98 |
101 BEGIN_DECLARE_ANIMATED_PROPERTIES(SVGGradientElement) | 99 BEGIN_DECLARE_ANIMATED_PROPERTIES(SVGGradientElement) |
102 DECLARE_ANIMATED_ENUMERATION(SpreadMethod, spreadMethod, SVGSpreadMethod
Type) | 100 DECLARE_ANIMATED_ENUMERATION(SpreadMethod, spreadMethod, SVGSpreadMethod
Type) |
103 DECLARE_ANIMATED_ENUMERATION(GradientUnits, gradientUnits, SVGUnitTypes:
:SVGUnitType) | 101 DECLARE_ANIMATED_ENUMERATION(GradientUnits, gradientUnits, SVGUnitTypes:
:SVGUnitType) |
104 DECLARE_ANIMATED_TRANSFORM_LIST(GradientTransform, gradientTransform) | 102 DECLARE_ANIMATED_TRANSFORM_LIST(GradientTransform, gradientTransform) |
105 DECLARE_ANIMATED_STRING(Href, href) | 103 DECLARE_ANIMATED_STRING(Href, href) |
106 DECLARE_ANIMATED_BOOLEAN(ExternalResourcesRequired, externalResourcesReq
uired) | |
107 END_DECLARE_ANIMATED_PROPERTIES | 104 END_DECLARE_ANIMATED_PROPERTIES |
108 }; | 105 }; |
109 | 106 |
110 inline SVGGradientElement* toSVGGradientElement(Node* node) | 107 inline SVGGradientElement* toSVGGradientElement(Node* node) |
111 { | 108 { |
112 ASSERT_WITH_SECURITY_IMPLICATION(!node || (node->hasTagName(SVGNames::radial
GradientTag) || node->hasTagName(SVGNames::linearGradientTag))); | 109 ASSERT_WITH_SECURITY_IMPLICATION(!node || (node->hasTagName(SVGNames::radial
GradientTag) || node->hasTagName(SVGNames::linearGradientTag))); |
113 return static_cast<SVGGradientElement*>(node); | 110 return static_cast<SVGGradientElement*>(node); |
114 } | 111 } |
115 | 112 |
116 } // namespace WebCore | 113 } // namespace WebCore |
117 | 114 |
118 #endif | 115 #endif |
OLD | NEW |