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 10 matching lines...) Expand all Loading... |
21 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | 21 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
22 * Boston, MA 02110-1301, USA. | 22 * Boston, MA 02110-1301, USA. |
23 */ | 23 */ |
24 | 24 |
25 #ifndef SVGAnimationElement_h | 25 #ifndef SVGAnimationElement_h |
26 #define SVGAnimationElement_h | 26 #define SVGAnimationElement_h |
27 | 27 |
28 #include "core/platform/graphics/UnitBezier.h" | 28 #include "core/platform/graphics/UnitBezier.h" |
29 #include "core/svg/SVGAnimatedBoolean.h" | 29 #include "core/svg/SVGAnimatedBoolean.h" |
30 #include "core/svg/SVGExternalResourcesRequired.h" | 30 #include "core/svg/SVGExternalResourcesRequired.h" |
31 #include "core/svg/SVGStringList.h" | |
32 #include "core/svg/SVGTests.h" | 31 #include "core/svg/SVGTests.h" |
33 #include "core/svg/animation/SMILTime.h" | |
34 #include "core/svg/animation/SVGSMILElement.h" | 32 #include "core/svg/animation/SVGSMILElement.h" |
35 | 33 |
36 namespace WebCore { | 34 namespace WebCore { |
37 | 35 |
38 enum AnimationMode { | 36 enum AnimationMode { |
39 NoAnimation, | 37 NoAnimation, |
40 FromToAnimation, | 38 FromToAnimation, |
41 FromByAnimation, | 39 FromByAnimation, |
42 ToAnimation, | 40 ToAnimation, |
43 ByAnimation, | 41 ByAnimation, |
(...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
245 String m_lastValuesAnimationFrom; | 243 String m_lastValuesAnimationFrom; |
246 String m_lastValuesAnimationTo; | 244 String m_lastValuesAnimationTo; |
247 bool m_hasInvalidCSSAttributeType; | 245 bool m_hasInvalidCSSAttributeType; |
248 CalcMode m_calcMode; | 246 CalcMode m_calcMode; |
249 AnimationMode m_animationMode; | 247 AnimationMode m_animationMode; |
250 }; | 248 }; |
251 | 249 |
252 } // namespace WebCore | 250 } // namespace WebCore |
253 | 251 |
254 #endif // SVGAnimationElement_h | 252 #endif // SVGAnimationElement_h |
OLD | NEW |