Support external keyboard function (SelectAll, Cut, Copy, Paste)
[framework/web/webkit-efl.git] / Source / WebCore / svg / SVGGradientElement.h
1 /*
2  * Copyright (C) 2004, 2005, 2006, 2008 Nikolas Zimmermann <zimmermann@kde.org>
3  * Copyright (C) 2004, 2005, 2006 Rob Buis <buis@kde.org>
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Library General Public
7  * License as published by the Free Software Foundation; either
8  * version 2 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Library General Public License for more details.
14  *
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
17  * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18  * Boston, MA 02110-1301, USA.
19  */
20
21 #ifndef SVGGradientElement_h
22 #define SVGGradientElement_h
23
24 #if ENABLE(SVG)
25 #include "Gradient.h"
26 #include "SVGAnimatedBoolean.h"
27 #include "SVGAnimatedEnumeration.h"
28 #include "SVGAnimatedTransformList.h"
29 #include "SVGExternalResourcesRequired.h"
30 #include "SVGStyledElement.h"
31 #include "SVGURIReference.h"
32 #include "SVGUnitTypes.h"
33
34 namespace WebCore {
35
36 enum SVGSpreadMethodType {
37     SVGSpreadMethodUnknown = 0,
38     SVGSpreadMethodPad,
39     SVGSpreadMethodReflect,
40     SVGSpreadMethodRepeat
41 };
42
43 template<>
44 struct SVGPropertyTraits<SVGSpreadMethodType> {
45     static unsigned highestEnumValue() { return SVGSpreadMethodRepeat; }
46
47     static String toString(SVGSpreadMethodType type)
48     {
49         switch (type) {
50         case SVGSpreadMethodUnknown:
51             return emptyString();
52         case SVGSpreadMethodPad:
53             return "pad";
54         case SVGSpreadMethodReflect:
55             return "reflect";
56         case SVGSpreadMethodRepeat:
57             return "repeat";
58         }
59
60         ASSERT_NOT_REACHED();
61         return emptyString();
62     }
63
64     static SVGSpreadMethodType fromString(const String& value)
65     {
66         if (value == "pad")
67             return SVGSpreadMethodPad;
68         if (value == "reflect")
69             return SVGSpreadMethodReflect;
70         if (value == "repeat")
71             return SVGSpreadMethodRepeat;
72         return SVGSpreadMethodUnknown;
73     }
74 };
75
76 class SVGGradientElement : public SVGStyledElement,
77                            public SVGURIReference,
78                            public SVGExternalResourcesRequired {
79 public:
80     enum {
81         SVG_SPREADMETHOD_UNKNOWN = SVGSpreadMethodUnknown,
82         SVG_SPREADMETHOD_PAD = SVGSpreadMethodReflect,
83         SVG_SPREADMETHOD_REFLECT = SVGSpreadMethodRepeat,
84         SVG_SPREADMETHOD_REPEAT = SVGSpreadMethodUnknown
85     };
86
87     Vector<Gradient::ColorStop> buildStops();
88  
89 protected:
90     SVGGradientElement(const QualifiedName&, Document*);
91
92     bool isSupportedAttribute(const QualifiedName&);
93     virtual void parseAttribute(const Attribute&) OVERRIDE;
94     virtual void svgAttributeChanged(const QualifiedName&);
95
96 private:
97     virtual bool needsPendingResourceHandling() const { return false; }
98
99     virtual void childrenChanged(bool changedByParser = false, Node* beforeChange = 0, Node* afterChange = 0, int childCountDelta = 0);
100
101     BEGIN_DECLARE_ANIMATED_PROPERTIES(SVGGradientElement)
102         DECLARE_ANIMATED_ENUMERATION(SpreadMethod, spreadMethod, SVGSpreadMethodType)
103         DECLARE_ANIMATED_ENUMERATION(GradientUnits, gradientUnits, SVGUnitTypes::SVGUnitType)
104         DECLARE_ANIMATED_TRANSFORM_LIST(GradientTransform, gradientTransform)
105         DECLARE_ANIMATED_STRING(Href, href)
106         DECLARE_ANIMATED_BOOLEAN(ExternalResourcesRequired, externalResourcesRequired)
107     END_DECLARE_ANIMATED_PROPERTIES
108 };
109
110 } // namespace WebCore
111
112 #endif // ENABLE(SVG)
113 #endif