| 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 InheritValue | 50 InheritValue |
| 51 }; | 51 }; |
| 52 | 52 |
| 53 enum CalcMode { | 53 enum CalcMode { |
| 54 CalcModeDiscrete, | 54 CalcModeDiscrete, |
| 55 CalcModeLinear, | 55 CalcModeLinear, |
| 56 CalcModePaced, | 56 CalcModePaced, |
| 57 CalcModeSpline | 57 CalcModeSpline |
| 58 }; | 58 }; |
| 59 | 59 |
| 60 class ConditionEventListener; | |
| 61 class TimeContainer; | |
| 62 class SVGAnimatedType; | |
| 63 | |
| 64 class SVGAnimationElement : public SVGSMILElement, | 60 class SVGAnimationElement : public SVGSMILElement, |
| 65 public SVGTests { | 61 public SVGTests { |
| 66 public: | 62 public: |
| 67 // SVGAnimationElement | 63 // SVGAnimationElement |
| 68 float getStartTime() const; | 64 float getStartTime() const; |
| 69 float getCurrentTime() const; | 65 float getCurrentTime() const; |
| 70 float getSimpleDuration() const; | 66 float getSimpleDuration() const; |
| 71 | 67 |
| 72 void beginElement(); | 68 void beginElement(); |
| 73 void beginElementAt(float offset); | 69 void beginElementAt(float offset); |
| (...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 208 String m_lastValuesAnimationFrom; | 204 String m_lastValuesAnimationFrom; |
| 209 String m_lastValuesAnimationTo; | 205 String m_lastValuesAnimationTo; |
| 210 bool m_hasInvalidCSSAttributeType; | 206 bool m_hasInvalidCSSAttributeType; |
| 211 CalcMode m_calcMode; | 207 CalcMode m_calcMode; |
| 212 AnimationMode m_animationMode; | 208 AnimationMode m_animationMode; |
| 213 }; | 209 }; |
| 214 | 210 |
| 215 } // namespace WebCore | 211 } // namespace WebCore |
| 216 | 212 |
| 217 #endif // SVGAnimationElement_h | 213 #endif // SVGAnimationElement_h |
| OLD | NEW |