OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2004, 2005 Nikolas Zimmermann <zimmermann@kde.org> | 2 * Copyright (C) 2004, 2005 Nikolas Zimmermann <zimmermann@kde.org> |
3 * Copyright (C) 2004, 2005, 2006 Rob Buis <buis@kde.org> | 3 * Copyright (C) 2004, 2005, 2006 Rob Buis <buis@kde.org> |
4 * Copyright (C) 2007 Eric Seidel <eric@webkit.org> | 4 * Copyright (C) 2007 Eric Seidel <eric@webkit.org> |
5 * Copyright (C) 2008 Apple Inc. All rights reserved. | 5 * Copyright (C) 2008 Apple Inc. All rights reserved. |
6 * Copyright (C) 2008 Cameron McCormack <cam@mcc.id.au> | 6 * Copyright (C) 2008 Cameron McCormack <cam@mcc.id.au> |
7 * Copyright (C) Research In Motion Limited 2011. All rights reserved. | 7 * Copyright (C) Research In Motion Limited 2011. All rights reserved. |
8 * | 8 * |
9 * This library is free software; you can redistribute it and/or | 9 * This library is free software; you can redistribute it and/or |
10 * modify it under the terms of the GNU Library General Public | 10 * modify it under the terms of the GNU Library General Public |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
50 }; | 50 }; |
51 | 51 |
52 enum CalcMode { | 52 enum CalcMode { |
53 CalcModeDiscrete, | 53 CalcModeDiscrete, |
54 CalcModeLinear, | 54 CalcModeLinear, |
55 CalcModePaced, | 55 CalcModePaced, |
56 CalcModeSpline | 56 CalcModeSpline |
57 }; | 57 }; |
58 | 58 |
59 class SVGAnimationElement : public SVGSMILElement { | 59 class SVGAnimationElement : public SVGSMILElement { |
| 60 DEFINE_WRAPPERTYPEINFO(); |
60 public: | 61 public: |
61 // SVGAnimationElement | 62 // SVGAnimationElement |
62 float getStartTime() const; | 63 float getStartTime() const; |
63 float getCurrentTime() const; | 64 float getCurrentTime() const; |
64 float getSimpleDuration() const; | 65 float getSimpleDuration() const; |
65 | 66 |
66 void beginElement(); | 67 void beginElement(); |
67 void beginElementAt(float offset); | 68 void beginElementAt(float offset); |
68 void endElement(); | 69 void endElement(); |
69 void endElementAt(float offset); | 70 void endElementAt(float offset); |
(...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
204 String m_lastValuesAnimationFrom; | 205 String m_lastValuesAnimationFrom; |
205 String m_lastValuesAnimationTo; | 206 String m_lastValuesAnimationTo; |
206 bool m_hasInvalidCSSAttributeType; | 207 bool m_hasInvalidCSSAttributeType; |
207 CalcMode m_calcMode; | 208 CalcMode m_calcMode; |
208 AnimationMode m_animationMode; | 209 AnimationMode m_animationMode; |
209 }; | 210 }; |
210 | 211 |
211 } // namespace blink | 212 } // namespace blink |
212 | 213 |
213 #endif // SVGAnimationElement_h | 214 #endif // SVGAnimationElement_h |
OLD | NEW |