initial import
[vuplus_webkit] / Source / WebCore / svg / SVGAnimatedNumber.h
1 /*
2  * Copyright (C) Research In Motion Limited 2010. All rights reserved.
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Library General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Library General Public License for more details.
13  *
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
16  * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
17  * Boston, MA 02110-1301, USA.
18  */
19
20 #ifndef SVGAnimatedNumber_h
21 #define SVGAnimatedNumber_h
22
23 #if ENABLE(SVG)
24 #include "SVGAnimatedPropertyMacros.h"
25 #include "SVGAnimatedStaticPropertyTearOff.h"
26 #include "SVGAnimatedTypeAnimator.h"
27
28 namespace WebCore {
29
30 typedef SVGAnimatedStaticPropertyTearOff<float> SVGAnimatedNumber;
31
32 // Helper macros to declare/define a SVGAnimatedNumber object
33 #define DECLARE_ANIMATED_NUMBER(UpperProperty, LowerProperty) \
34 DECLARE_ANIMATED_PROPERTY(SVGAnimatedNumber, float, UpperProperty, LowerProperty)
35
36 #define DEFINE_ANIMATED_NUMBER(OwnerType, DOMAttribute, UpperProperty, LowerProperty) \
37 DEFINE_ANIMATED_PROPERTY(AnimatedNumber, OwnerType, DOMAttribute, DOMAttribute.localName(), UpperProperty, LowerProperty)
38
39 #define DEFINE_ANIMATED_NUMBER_MULTIPLE_WRAPPERS(OwnerType, DOMAttribute, SVGDOMAttributeIdentifier, UpperProperty, LowerProperty) \
40 DEFINE_ANIMATED_PROPERTY(AnimatedNumberOptionalNumber, OwnerType, DOMAttribute, SVGDOMAttributeIdentifier, UpperProperty, LowerProperty)
41
42 #if ENABLE(SVG_ANIMATION)
43 class SVGAnimationElement;
44
45 class SVGAnimatedNumberAnimator : public SVGAnimatedTypeAnimator {
46
47 public:
48     SVGAnimatedNumberAnimator(SVGAnimationElement*, SVGElement*);
49     virtual ~SVGAnimatedNumberAnimator() { }
50
51     static void calculateAnimatedNumber(SVGAnimationElement*, float percentage, unsigned repeatCount, float& animatedNumber, float fromNumber, float toNumber);
52
53     virtual PassOwnPtr<SVGAnimatedType> constructFromString(const String&);
54
55     virtual void calculateFromAndToValues(OwnPtr<SVGAnimatedType>& fromValue, OwnPtr<SVGAnimatedType>& toValue, const String& fromString, const String& toString);
56     virtual void calculateFromAndByValues(OwnPtr<SVGAnimatedType>& fromValue, OwnPtr<SVGAnimatedType>& toValue, const String& fromString, const String& byString);
57     virtual void calculateAnimatedValue(float percentage, unsigned repeatCount,
58                                         OwnPtr<SVGAnimatedType>& fromValue, OwnPtr<SVGAnimatedType>& toValue, OwnPtr<SVGAnimatedType>& animatedValue);
59     virtual float calculateDistance(const String& fromString, const String& toString);
60 };
61 #endif // ENABLE(SVG_ANIMATION)
62
63 } // namespace WebCore
64
65 #endif // ENABLE(SVG)
66 #endif