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 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
69 class SVGAnimationElement : public SVGSMILElement, | 69 class SVGAnimationElement : public SVGSMILElement, |
70 public SVGTests, | 70 public SVGTests, |
71 public SVGExternalResourcesRequired, | 71 public SVGExternalResourcesRequired, |
72 public ElementTimeControl { | 72 public ElementTimeControl { |
73 public: | 73 public: |
74 // SVGAnimationElement | 74 // SVGAnimationElement |
75 float getStartTime() const; | 75 float getStartTime() const; |
76 float getCurrentTime() const; | 76 float getCurrentTime() const; |
77 float getSimpleDuration(ExceptionCode&) const; | 77 float getSimpleDuration(ExceptionCode&) const; |
78 | 78 |
| 79 virtual void accept(Visitor* visitor) const OVERRIDE { SVGSMILElement::accep
t(visitor); } |
| 80 |
79 // ElementTimeControl | 81 // ElementTimeControl |
80 virtual void beginElement(); | 82 virtual void beginElement(); |
81 virtual void beginElementAt(float offset); | 83 virtual void beginElementAt(float offset); |
82 virtual void endElement(); | 84 virtual void endElement(); |
83 virtual void endElementAt(float offset); | 85 virtual void endElementAt(float offset); |
84 | 86 |
85 static bool isTargetAttributeCSSProperty(SVGElement*, const QualifiedName&); | 87 static bool isTargetAttributeCSSProperty(SVGElement*, const QualifiedName&); |
86 | 88 |
87 virtual bool isAdditive() const; | 89 virtual bool isAdditive() const; |
88 bool isAccumulated() const; | 90 bool isAccumulated() const; |
(...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
250 String m_lastValuesAnimationTo; | 252 String m_lastValuesAnimationTo; |
251 bool m_hasInvalidCSSAttributeType; | 253 bool m_hasInvalidCSSAttributeType; |
252 CalcMode m_calcMode; | 254 CalcMode m_calcMode; |
253 AnimationMode m_animationMode; | 255 AnimationMode m_animationMode; |
254 }; | 256 }; |
255 | 257 |
256 } // namespace WebCore | 258 } // namespace WebCore |
257 | 259 |
258 #endif // ENABLE(SVG) | 260 #endif // ENABLE(SVG) |
259 #endif // SVGAnimationElement_h | 261 #endif // SVGAnimationElement_h |
OLD | NEW |