Upstream version 5.34.104.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / core / svg / SVGFETurbulenceElement.h
1 /*
2  * Copyright (C) 2004, 2005, 2007 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 SVGFETurbulenceElement_h
22 #define SVGFETurbulenceElement_h
23
24 #include "core/svg/SVGAnimatedEnumeration.h"
25 #include "core/svg/SVGAnimatedInteger.h"
26 #include "core/svg/SVGAnimatedNumber.h"
27 #include "core/svg/SVGAnimatedNumberOptionalNumber.h"
28 #include "core/svg/SVGFilterPrimitiveStandardAttributes.h"
29 #include "platform/graphics/filters/FETurbulence.h"
30
31 namespace WebCore {
32
33 enum SVGStitchOptions {
34     SVG_STITCHTYPE_UNKNOWN  = 0,
35     SVG_STITCHTYPE_STITCH   = 1,
36     SVG_STITCHTYPE_NOSTITCH = 2
37 };
38
39 template<>
40 struct SVGPropertyTraits<SVGStitchOptions> {
41     static unsigned highestEnumValue() { return SVG_STITCHTYPE_NOSTITCH; }
42
43     static String toString(SVGStitchOptions type)
44     {
45         switch (type) {
46         case SVG_STITCHTYPE_UNKNOWN:
47             return emptyString();
48         case SVG_STITCHTYPE_STITCH:
49             return "stitch";
50         case SVG_STITCHTYPE_NOSTITCH:
51             return "noStitch";
52         }
53
54         ASSERT_NOT_REACHED();
55         return emptyString();
56     }
57
58     static SVGStitchOptions fromString(const String& value)
59     {
60         if (value == "stitch")
61             return SVG_STITCHTYPE_STITCH;
62         if (value == "noStitch")
63             return SVG_STITCHTYPE_NOSTITCH;
64         return SVG_STITCHTYPE_UNKNOWN;
65     }
66 };
67
68 template<>
69 struct SVGPropertyTraits<TurbulenceType> {
70     static unsigned highestEnumValue() { return FETURBULENCE_TYPE_TURBULENCE; }
71
72     static String toString(TurbulenceType type)
73     {
74         switch (type) {
75         case FETURBULENCE_TYPE_UNKNOWN:
76             return emptyString();
77         case FETURBULENCE_TYPE_FRACTALNOISE:
78             return "fractalNoise";
79         case FETURBULENCE_TYPE_TURBULENCE:
80             return "turbulence";
81         }
82
83         ASSERT_NOT_REACHED();
84         return emptyString();
85     }
86
87     static TurbulenceType fromString(const String& value)
88     {
89         if (value == "fractalNoise")
90             return FETURBULENCE_TYPE_FRACTALNOISE;
91         if (value == "turbulence")
92             return FETURBULENCE_TYPE_TURBULENCE;
93         return FETURBULENCE_TYPE_UNKNOWN;
94     }
95 };
96
97 class SVGFETurbulenceElement FINAL : public SVGFilterPrimitiveStandardAttributes {
98 public:
99     static PassRefPtr<SVGFETurbulenceElement> create(Document&);
100
101     SVGAnimatedNumber* baseFrequencyX() { return m_baseFrequency->firstNumber(); }
102     SVGAnimatedNumber* baseFrequencyY() { return m_baseFrequency->secondNumber(); }
103     SVGAnimatedNumber* seed() { return m_seed.get(); }
104     SVGAnimatedInteger* numOctaves() { return m_numOctaves.get(); }
105
106 private:
107     explicit SVGFETurbulenceElement(Document&);
108
109     bool isSupportedAttribute(const QualifiedName&);
110     virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERRIDE;
111     virtual bool setFilterEffectAttribute(FilterEffect*, const QualifiedName& attrName) OVERRIDE;
112     virtual void svgAttributeChanged(const QualifiedName&) OVERRIDE;
113     virtual PassRefPtr<FilterEffect> build(SVGFilterBuilder*, Filter*) OVERRIDE;
114
115     RefPtr<SVGAnimatedNumberOptionalNumber> m_baseFrequency;
116     RefPtr<SVGAnimatedNumber> m_seed;
117     RefPtr<SVGAnimatedInteger> m_numOctaves;
118     BEGIN_DECLARE_ANIMATED_PROPERTIES(SVGFETurbulenceElement)
119         DECLARE_ANIMATED_ENUMERATION(StitchTiles, stitchTiles, SVGStitchOptions)
120         DECLARE_ANIMATED_ENUMERATION(Type, type, TurbulenceType)
121     END_DECLARE_ANIMATED_PROPERTIES
122 };
123
124 } // namespace WebCore
125
126 #endif