OLD | NEW |
---|---|
1 /* | 1 /* |
2 * Copyright (C) 2004, 2005, 2008 Nikolas Zimmermann <zimmermann@kde.org> | 2 * Copyright (C) 2004, 2005, 2008 Nikolas Zimmermann <zimmermann@kde.org> |
3 * Copyright (C) 2004, 2005 Rob Buis <buis@kde.org> | 3 * Copyright (C) 2004, 2005 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 SVGTransform_h | 21 #ifndef SVGTransform_h |
22 #define SVGTransform_h | 22 #define SVGTransform_h |
23 | 23 |
24 #include "core/svg/SVGMatrix.h" | 24 #include "core/svg/SVGMatrixTearOff.h" |
fs
2014/02/17 14:14:31
What (in this file) uses this?
kouhei (in TOK)
2014/02/18 02:09:15
Removed
| |
25 #include "core/svg/properties/NewSVGProperty.h" | |
25 #include "platform/geometry/FloatPoint.h" | 26 #include "platform/geometry/FloatPoint.h" |
26 #include "wtf/text/WTFString.h" | 27 #include "wtf/text/WTFString.h" |
27 | 28 |
28 namespace WebCore { | 29 namespace WebCore { |
29 | 30 |
30 class FloatSize; | 31 class FloatSize; |
32 class SVGTransformTearOff; | |
31 | 33 |
32 class SVGTransform { | 34 enum SVGTransformType { |
35 SVG_TRANSFORM_UNKNOWN = 0, | |
36 SVG_TRANSFORM_MATRIX = 1, | |
37 SVG_TRANSFORM_TRANSLATE = 2, | |
38 SVG_TRANSFORM_SCALE = 3, | |
39 SVG_TRANSFORM_ROTATE = 4, | |
40 SVG_TRANSFORM_SKEWX = 5, | |
41 SVG_TRANSFORM_SKEWY = 6 | |
42 }; | |
43 | |
44 class SVGTransform : public NewSVGPropertyBase { | |
33 public: | 45 public: |
34 enum SVGTransformType { | 46 typedef SVGTransformTearOff TearOffType; |
35 SVG_TRANSFORM_UNKNOWN = 0, | |
36 SVG_TRANSFORM_MATRIX = 1, | |
37 SVG_TRANSFORM_TRANSLATE = 2, | |
38 SVG_TRANSFORM_SCALE = 3, | |
39 SVG_TRANSFORM_ROTATE = 4, | |
40 SVG_TRANSFORM_SKEWX = 5, | |
41 SVG_TRANSFORM_SKEWY = 6 | |
42 }; | |
43 | 47 |
44 enum ConstructionMode { | 48 enum ConstructionMode { |
45 ConstructIdentityTransform, | 49 ConstructIdentityTransform, |
46 ConstructZeroTransform | 50 ConstructZeroTransform |
47 }; | 51 }; |
48 | 52 |
49 SVGTransform(); | 53 static PassRefPtr<SVGTransform> create() |
50 SVGTransform(SVGTransformType, ConstructionMode = ConstructIdentityTransform ); | 54 { |
51 explicit SVGTransform(const AffineTransform&); | 55 return adoptRef(new SVGTransform()); |
56 } | |
52 | 57 |
53 SVGTransformType type() const { return m_type; } | 58 static PassRefPtr<SVGTransform> create(SVGTransformType type, ConstructionMo de mode = ConstructIdentityTransform) |
59 { | |
60 return adoptRef(new SVGTransform(type, mode)); | |
61 } | |
54 | 62 |
55 SVGMatrix& svgMatrix() { return static_cast<SVGMatrix&>(m_matrix); } | 63 static PassRefPtr<SVGTransform> create(const AffineTransform& affineTransfor m) |
56 AffineTransform matrix() const { return m_matrix; } | 64 { |
57 void updateSVGMatrix(); | 65 return adoptRef(new SVGTransform(affineTransform)); |
66 } | |
67 | |
68 virtual ~SVGTransform(); | |
69 | |
70 PassRefPtr<SVGTransform> clone() const; | |
71 virtual PassRefPtr<NewSVGPropertyBase> cloneForAnimation(const String&) cons t OVERRIDE; | |
72 | |
73 SVGTransformType transformType() const { return m_transformType; } | |
74 | |
75 const AffineTransform& matrix() const { return m_matrix; } | |
76 | |
77 // |onMatrixChange| must be called after modifications via |mutableMatrix|. | |
78 AffineTransform* mutableMatrix() { return &m_matrix; } | |
79 void onMatrixChange(); | |
58 | 80 |
59 float angle() const { return m_angle; } | 81 float angle() const { return m_angle; } |
60 FloatPoint rotationCenter() const { return m_center; } | 82 FloatPoint rotationCenter() const { return m_center; } |
61 | 83 |
62 void setMatrix(const AffineTransform&); | 84 void setMatrix(const AffineTransform&); |
63 void setTranslate(float tx, float ty); | 85 void setTranslate(float tx, float ty); |
64 void setScale(float sx, float sy); | 86 void setScale(float sx, float sy); |
65 void setRotate(float angle, float cx, float cy); | 87 void setRotate(float angle, float cx, float cy); |
66 void setSkewX(float angle); | 88 void setSkewX(float angle); |
67 void setSkewY(float angle); | 89 void setSkewY(float angle); |
68 | 90 |
69 // Internal use only (animation system) | 91 // Internal use only (animation system) |
70 FloatPoint translate() const; | 92 FloatPoint translate() const; |
71 FloatSize scale() const; | 93 FloatSize scale() const; |
72 | 94 |
73 bool isValid() const { return m_type != SVG_TRANSFORM_UNKNOWN; } | 95 bool isValid() const { return m_transformType != SVG_TRANSFORM_UNKNOWN; } |
74 String valueAsString() const; | |
75 | 96 |
76 static const String& transformTypePrefixForParsing(SVGTransformType); | 97 virtual String valueAsString() const OVERRIDE; |
98 | |
99 virtual void add(PassRefPtr<NewSVGPropertyBase>, SVGElement*) OVERRIDE; | |
100 virtual void calculateAnimatedValue(SVGAnimationElement*, float percentage, unsigned repeatCount, PassRefPtr<NewSVGPropertyBase> from, PassRefPtr<NewSVGProp ertyBase> to, PassRefPtr<NewSVGPropertyBase> toAtEndOfDurationValue, SVGElement* contextElement) OVERRIDE; | |
101 virtual float calculateDistance(PassRefPtr<NewSVGPropertyBase> to, SVGElemen t* contextElement) OVERRIDE; | |
102 | |
103 static AnimatedPropertyType classType() { return AnimatedTransform; } | |
77 | 104 |
78 private: | 105 private: |
106 SVGTransform(); | |
107 SVGTransform(SVGTransformType, ConstructionMode); | |
108 explicit SVGTransform(const AffineTransform&); | |
109 SVGTransform(SVGTransformType, float, const FloatPoint&, const AffineTransfo rm&); | |
110 | |
79 friend bool operator==(const SVGTransform& a, const SVGTransform& b); | 111 friend bool operator==(const SVGTransform& a, const SVGTransform& b); |
80 | 112 |
81 SVGTransformType m_type; | 113 SVGTransformType m_transformType; |
82 float m_angle; | 114 float m_angle; |
83 FloatPoint m_center; | 115 FloatPoint m_center; |
84 AffineTransform m_matrix; | 116 AffineTransform m_matrix; |
85 }; | 117 }; |
86 | 118 |
87 inline bool operator==(const SVGTransform& a, const SVGTransform& b) | 119 inline bool operator==(const SVGTransform& a, const SVGTransform& b) |
88 { | 120 { |
89 return a.m_type == b.m_type && a.m_angle == b.m_angle && a.m_matrix == b.m_m atrix; | 121 return a.m_transformType == b.m_transformType && a.m_angle == b.m_angle && a .m_matrix == b.m_matrix; |
90 } | 122 } |
91 | 123 |
92 inline bool operator!=(const SVGTransform& a, const SVGTransform& b) | 124 inline bool operator!=(const SVGTransform& a, const SVGTransform& b) |
93 { | 125 { |
94 return !(a == b); | 126 return !(a == b); |
95 } | 127 } |
96 | 128 |
129 inline PassRefPtr<SVGTransform> toSVGTransform(PassRefPtr<NewSVGPropertyBase> pa ssBase) | |
130 { | |
131 RefPtr<NewSVGPropertyBase> base = passBase; | |
132 ASSERT(base->type() == SVGTransform::classType()); | |
133 return static_pointer_cast<SVGTransform>(base.release()); | |
134 } | |
135 | |
97 } // namespace WebCore | 136 } // namespace WebCore |
98 | 137 |
99 #endif | 138 #endif |
OLD | NEW |