| 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 |
| 11 * License as published by the Free Software Foundation; either | 11 * License as published by the Free Software Foundation; either |
| 12 * version 2 of the License, or (at your option) any later version. | 12 * version 2 of the License, or (at your option) any later version. |
| 13 * | 13 * |
| 14 * This library is distributed in the hope that it will be useful, | 14 * This library is distributed in the hope that it will be useful, |
| 15 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 15 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 17 * Library General Public License for more details. | 17 * Library General Public License for more details. |
| 18 * | 18 * |
| 19 * You should have received a copy of the GNU Library General Public License | 19 * You should have received a copy of the GNU Library General Public License |
| 20 * along with this library; see the file COPYING.LIB. If not, write to | 20 * along with this library; see the file COPYING.LIB. If not, write to |
| 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 #if ENABLE(SVG) | 28 #if ENABLE(SVG) |
| 29 #include "ElementTimeControl.h" | 29 #include "ElementTimeControl.h" |
| 30 #include "SMILTime.h" | |
| 31 #include "SVGAnimatedBoolean.h" | 30 #include "SVGAnimatedBoolean.h" |
| 32 #include "SVGExternalResourcesRequired.h" | 31 #include "SVGExternalResourcesRequired.h" |
| 33 #include "SVGSMILElement.h" | |
| 34 #include "SVGStringList.h" | 32 #include "SVGStringList.h" |
| 35 #include "SVGTests.h" | 33 #include "SVGTests.h" |
| 36 #include "core/platform/graphics/UnitBezier.h" | 34 #include "core/platform/graphics/UnitBezier.h" |
| 35 #include "core/svg/animation/SMILTime.h" |
| 36 #include "core/svg/animation/SVGSMILElement.h" |
| 37 | 37 |
| 38 namespace WebCore { | 38 namespace WebCore { |
| 39 | 39 |
| 40 enum AnimationMode { | 40 enum AnimationMode { |
| 41 NoAnimation, | 41 NoAnimation, |
| 42 FromToAnimation, | 42 FromToAnimation, |
| 43 FromByAnimation, | 43 FromByAnimation, |
| 44 ToAnimation, | 44 ToAnimation, |
| 45 ByAnimation, | 45 ByAnimation, |
| 46 ValuesAnimation, | 46 ValuesAnimation, |
| (...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 250 String m_lastValuesAnimationTo; | 250 String m_lastValuesAnimationTo; |
| 251 bool m_hasInvalidCSSAttributeType; | 251 bool m_hasInvalidCSSAttributeType; |
| 252 CalcMode m_calcMode; | 252 CalcMode m_calcMode; |
| 253 AnimationMode m_animationMode; | 253 AnimationMode m_animationMode; |
| 254 }; | 254 }; |
| 255 | 255 |
| 256 } // namespace WebCore | 256 } // namespace WebCore |
| 257 | 257 |
| 258 #endif // ENABLE(SVG) | 258 #endif // ENABLE(SVG) |
| 259 #endif // SVGAnimationElement_h | 259 #endif // SVGAnimationElement_h |
| OLD | NEW |