OSDN Git Service

Merge Webkit at r70949: Initial merge by git.
[android-x86/external-webkit.git] / WebCore / svg / SVGAnimateElement.h
1 /*
2  * Copyright (C) 2004, 2005 Nikolas Zimmermann <zimmermann@kde.org>
3  * Copyright (C) 2004, 2005 Rob Buis <buis@kde.org>
4  * Copyright (C) 2008 Apple Inc. All rights reserved.
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Library General Public
8  * License as published by the Free Software Foundation; either
9  * version 2 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Library General Public License for more details.
15  *
16  * You should have received a copy of the GNU Library General Public License
17  * along with this library; see the file COPYING.LIB.  If not, write to
18  * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
19  * Boston, MA 02110-1301, USA.
20  */
21
22 #ifndef SVGAnimateElement_h
23 #define SVGAnimateElement_h
24
25 #if ENABLE(SVG) && ENABLE(SVG_ANIMATION)
26
27 #include "Color.h"
28 #include "SVGAnimationElement.h"
29 #include "SVGPathByteStream.h"
30 #include <wtf/OwnPtr.h>
31
32 namespace WebCore {
33
34     class SVGPathSegList;
35     class SVGPointList;
36
37     class SVGAnimateElement : public SVGAnimationElement {
38     public:
39         static PassRefPtr<SVGAnimateElement> create(const QualifiedName&, Document*);
40
41         virtual ~SVGAnimateElement();
42
43     protected:
44         SVGAnimateElement(const QualifiedName&, Document*);
45     
46         virtual void resetToBaseValue(const String&);
47         virtual bool calculateFromAndToValues(const String& fromString, const String& toString);
48         virtual bool calculateFromAndByValues(const String& fromString, const String& byString);
49         virtual void calculateAnimatedValue(float percentage, unsigned repeat, SVGSMILElement* resultElement);
50         virtual void applyResultsToTarget();
51         virtual float calculateDistance(const String& fromString, const String& toString);
52
53     private:
54         enum PropertyType { NumberProperty, ColorProperty, StringProperty, PathProperty, PointsProperty };
55         PropertyType determinePropertyType(const String& attribute) const;
56         PropertyType m_propertyType;
57         
58         double m_fromNumber;
59         double m_toNumber;
60         double m_animatedNumber;
61         String m_numberUnit;
62         Color m_fromColor;
63         Color m_toColor;
64         Color m_animatedColor;
65         String m_fromString;
66         String m_toString;
67         String m_animatedString;
68         OwnPtr<SVGPathByteStream> m_fromPath;
69         OwnPtr<SVGPathByteStream> m_toPath;
70         OwnPtr<SVGPathByteStream> m_animatedPath;
71         SVGPathByteStream* m_animatedPathPointer;
72         RefPtr<SVGPointList> m_fromPoints;
73         RefPtr<SVGPointList> m_toPoints;
74         RefPtr<SVGPointList> m_animatedPoints;
75     };
76
77 } // namespace WebCore
78
79 #endif // ENABLE(SVG)
80 #endif // SVGAnimateElement_h
81
82 // vim:ts=4:noet