Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(86)

Side by Side Diff: Source/core/svg/SVGViewSpec.h

Issue 153883003: [SVG] SVGAnimatedTransform{,List} migration to new SVG property impl. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: haraken review Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2007 Rob Buis <buis@kde.org> 2 * Copyright (C) 2007 Rob Buis <buis@kde.org>
3 * 3 *
4 * This library is free software; you can redistribute it and/or 4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Library General Public 5 * modify it under the terms of the GNU Library General Public
6 * License as published by the Free Software Foundation; either 6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version. 7 * version 2 of the License, or (at your option) any later version.
8 * 8 *
9 * This library is distributed in the hope that it will be useful, 9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Library General Public License for more details. 12 * Library General Public License for more details.
13 * 13 *
14 * You should have received a copy of the GNU Library General Public License 14 * You should have received a copy of the GNU Library General Public License
15 * along with this library; see the file COPYING.LIB. If not, write to 15 * along with this library; see the file COPYING.LIB. If not, write to
16 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 16 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
17 * Boston, MA 02110-1301, USA. 17 * Boston, MA 02110-1301, USA.
18 */ 18 */
19 19
20 #ifndef SVGViewSpec_h 20 #ifndef SVGViewSpec_h
21 #define SVGViewSpec_h 21 #define SVGViewSpec_h
22 22
23 #include "bindings/v8/ScriptWrappable.h" 23 #include "bindings/v8/ScriptWrappable.h"
24 #include "core/svg/SVGAnimatedPreserveAspectRatio.h" 24 #include "core/svg/SVGAnimatedPreserveAspectRatio.h"
25 #include "core/svg/SVGAnimatedRect.h" 25 #include "core/svg/SVGAnimatedRect.h"
26 #include "core/svg/SVGAnimatedTransformList.h"
26 #include "core/svg/SVGFitToViewBox.h" 27 #include "core/svg/SVGFitToViewBox.h"
27 #include "core/svg/SVGSVGElement.h" 28 #include "core/svg/SVGSVGElement.h"
28 #include "core/svg/SVGTransformList.h"
29 #include "core/svg/SVGZoomAndPan.h" 29 #include "core/svg/SVGZoomAndPan.h"
30 #include "wtf/WeakPtr.h" 30 #include "wtf/WeakPtr.h"
31 31
32 namespace WebCore { 32 namespace WebCore {
33 33
34 class ExceptionState; 34 class ExceptionState;
35 class SVGTransformListPropertyTearOff;
36 35
37 class SVGViewSpec FINAL : public RefCounted<SVGViewSpec>, public ScriptWrappable , public SVGZoomAndPan, public SVGFitToViewBox { 36 class SVGViewSpec FINAL : public RefCounted<SVGViewSpec>, public ScriptWrappable , public SVGZoomAndPan, public SVGFitToViewBox {
38 public: 37 public:
39 using RefCounted<SVGViewSpec>::ref; 38 using RefCounted<SVGViewSpec>::ref;
40 using RefCounted<SVGViewSpec>::deref; 39 using RefCounted<SVGViewSpec>::deref;
41 40
42 static PassRefPtr<SVGViewSpec> create(SVGSVGElement* contextElement) 41 static PassRefPtr<SVGViewSpec> create(SVGSVGElement* contextElement)
43 { 42 {
44 return adoptRef(new SVGViewSpec(contextElement)); 43 return adoptRef(new SVGViewSpec(contextElement));
45 } 44 }
46 45
47 bool parseViewSpec(const String&); 46 bool parseViewSpec(const String&);
48 void reset(); 47 void reset();
49 48
50 SVGElement* viewTarget() const; 49 SVGElement* viewTarget() const;
51 String viewBoxString() const; 50 String viewBoxString() const;
52 51
53 String preserveAspectRatioString() const; 52 String preserveAspectRatioString() const;
54 53
55 void setTransformString(const String&);
56 String transformString() const; 54 String transformString() const;
57
58 void setViewTargetString(const String& string) { m_viewTargetString = string ; }
59 String viewTargetString() const { return m_viewTargetString; } 55 String viewTargetString() const { return m_viewTargetString; }
60 56
61 SVGZoomAndPanType zoomAndPan() const { return m_zoomAndPan; } 57 SVGZoomAndPanType zoomAndPan() const { return m_zoomAndPan; }
62 void setZoomAndPan(unsigned short zoomAndPan) { setZoomAndPanBaseValue(zoomA ndPan); } 58 void setZoomAndPan(unsigned short zoomAndPan) { setZoomAndPanBaseValue(zoomA ndPan); }
63 void setZoomAndPan(unsigned short, ExceptionState&); 59 void setZoomAndPan(unsigned short, ExceptionState&);
64 void setZoomAndPanBaseValue(unsigned short zoomAndPan) { m_zoomAndPan = SVGZ oomAndPan::parseFromNumber(zoomAndPan); } 60 void setZoomAndPanBaseValue(unsigned short zoomAndPan) { m_zoomAndPan = SVGZ oomAndPan::parseFromNumber(zoomAndPan); }
65 61
66 SVGElement* contextElement() const { return m_contextElement; } 62 SVGElement* contextElement() const { return m_contextElement; }
67 void detachContextElement(); 63 void detachContextElement();
68 64
69 // Custom non-animated 'transform' property. 65 SVGTransformList* transform() { return m_transform ? m_transform->baseValue( ) : 0; }
70 SVGTransformListPropertyTearOff* transform(); 66 PassRefPtr<SVGTransformListTearOff> transformFromJavascript() { return m_tra nsform ? m_transform->baseVal() : 0; }
71 SVGTransformList transformBaseValue() const { return m_transform; }
72
73 SVGAnimatedRect* viewBox() { return m_viewBox.get(); } 67 SVGAnimatedRect* viewBox() { return m_viewBox.get(); }
74 SVGAnimatedPreserveAspectRatio* preserveAspectRatio() { return m_preserveAsp ectRatio.get(); } 68 SVGAnimatedPreserveAspectRatio* preserveAspectRatio() { return m_preserveAsp ectRatio.get(); }
75 69
76 private: 70 private:
77 explicit SVGViewSpec(SVGSVGElement*); 71 explicit SVGViewSpec(SVGSVGElement*);
78 72
79 static const SVGPropertyInfo* transformPropertyInfo();
80
81 static const AtomicString& transformIdentifier();
82
83 static PassRefPtr<SVGAnimatedProperty> lookupOrCreateTransformWrapper(SVGVie wSpec* contextElement);
84
85 template<typename CharType> 73 template<typename CharType>
86 bool parseViewSpecInternal(const CharType* ptr, const CharType* end); 74 bool parseViewSpecInternal(const CharType* ptr, const CharType* end);
87 75
88 // FIXME(oilpan): This is back-ptr to be cleared from contextElement. 76 // FIXME(oilpan): This is back-ptr to be cleared from contextElement.
89 SVGSVGElement* m_contextElement; 77 SVGSVGElement* m_contextElement;
90 78
91 SVGZoomAndPanType m_zoomAndPan; 79 SVGZoomAndPanType m_zoomAndPan;
92 SVGTransformList m_transform; 80 RefPtr<SVGAnimatedTransformList> m_transform;
93 RefPtr<SVGAnimatedRect> m_viewBox; 81 RefPtr<SVGAnimatedRect> m_viewBox;
94 RefPtr<SVGAnimatedPreserveAspectRatio> m_preserveAspectRatio; 82 RefPtr<SVGAnimatedPreserveAspectRatio> m_preserveAspectRatio;
95 String m_viewTargetString; 83 String m_viewTargetString;
96 }; 84 };
97 85
98 } // namespace WebCore 86 } // namespace WebCore
99 87
100 #endif 88 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698