| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2004, 2005, 2006 Nikolas Zimmermann <zimmermann@kde.org> | 2 * Copyright (C) 2004, 2005, 2006 Nikolas Zimmermann <zimmermann@kde.org> |
| 3 * Copyright (C) 2004, 2005, 2006, 2007, 2010 Rob Buis <buis@kde.org> | 3 * Copyright (C) 2004, 2005, 2006, 2007, 2010 Rob Buis <buis@kde.org> |
| 4 * Copyright (C) 2014 Google, Inc. | 4 * Copyright (C) 2014 Google, Inc. |
| 5 * | 5 * |
| 6 * This library is free software; you can redistribute it and/or | 6 * This library is free software; you can redistribute it and/or |
| 7 * modify it under the terms of the GNU Library General Public | 7 * modify it under the terms of the GNU Library General Public |
| 8 * License as published by the Free Software Foundation; either | 8 * License as published by the Free Software Foundation; either |
| 9 * version 2 of the License, or (at your option) any later version. | 9 * version 2 of the License, or (at your option) any later version. |
| 10 * | 10 * |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 79 | 79 |
| 80 SMILTimeContainer* timeContainer() const { return m_timeContainer.get(); } | 80 SMILTimeContainer* timeContainer() const { return m_timeContainer.get(); } |
| 81 | 81 |
| 82 void pauseAnimations(); | 82 void pauseAnimations(); |
| 83 void unpauseAnimations(); | 83 void unpauseAnimations(); |
| 84 bool animationsPaused() const; | 84 bool animationsPaused() const; |
| 85 | 85 |
| 86 float getCurrentTime() const; | 86 float getCurrentTime() const; |
| 87 void setCurrentTime(float seconds); | 87 void setCurrentTime(float seconds); |
| 88 | 88 |
| 89 // Stubs for the deprecated 'redraw' interface. | |
| 90 unsigned suspendRedraw(unsigned) { return 1; } | |
| 91 void unsuspendRedraw(unsigned) { } | |
| 92 void unsuspendRedrawAll() { } | |
| 93 void forceRedraw() { } | |
| 94 | |
| 95 PassRefPtrWillBeRawPtr<StaticNodeList> getIntersectionList(PassRefPtrWillBeR
awPtr<SVGRectTearOff>, SVGElement* referenceElement) const; | 89 PassRefPtrWillBeRawPtr<StaticNodeList> getIntersectionList(PassRefPtrWillBeR
awPtr<SVGRectTearOff>, SVGElement* referenceElement) const; |
| 96 PassRefPtrWillBeRawPtr<StaticNodeList> getEnclosureList(PassRefPtrWillBeRawP
tr<SVGRectTearOff>, SVGElement* referenceElement) const; | 90 PassRefPtrWillBeRawPtr<StaticNodeList> getEnclosureList(PassRefPtrWillBeRawP
tr<SVGRectTearOff>, SVGElement* referenceElement) const; |
| 97 bool checkIntersection(SVGElement*, PassRefPtrWillBeRawPtr<SVGRectTearOff>)
const; | 91 bool checkIntersection(SVGElement*, PassRefPtrWillBeRawPtr<SVGRectTearOff>)
const; |
| 98 bool checkEnclosure(SVGElement*, PassRefPtrWillBeRawPtr<SVGRectTearOff>) con
st; | 92 bool checkEnclosure(SVGElement*, PassRefPtrWillBeRawPtr<SVGRectTearOff>) con
st; |
| 99 void deselectAll(); | 93 void deselectAll(); |
| 100 | 94 |
| 101 static PassRefPtrWillBeRawPtr<SVGNumberTearOff> createSVGNumber(); | 95 static PassRefPtrWillBeRawPtr<SVGNumberTearOff> createSVGNumber(); |
| 102 static PassRefPtrWillBeRawPtr<SVGLengthTearOff> createSVGLength(); | 96 static PassRefPtrWillBeRawPtr<SVGLengthTearOff> createSVGLength(); |
| 103 static PassRefPtrWillBeRawPtr<SVGAngleTearOff> createSVGAngle(); | 97 static PassRefPtrWillBeRawPtr<SVGAngleTearOff> createSVGAngle(); |
| 104 static PassRefPtrWillBeRawPtr<SVGPointTearOff> createSVGPoint(); | 98 static PassRefPtrWillBeRawPtr<SVGPointTearOff> createSVGPoint(); |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 164 RefPtrWillBeMember<SMILTimeContainer> m_timeContainer; | 158 RefPtrWillBeMember<SMILTimeContainer> m_timeContainer; |
| 165 RefPtrWillBeMember<SVGPoint> m_translation; | 159 RefPtrWillBeMember<SVGPoint> m_translation; |
| 166 RefPtrWillBeMember<SVGViewSpec> m_viewSpec; | 160 RefPtrWillBeMember<SVGViewSpec> m_viewSpec; |
| 167 | 161 |
| 168 friend class SVGCurrentTranslateTearOff; | 162 friend class SVGCurrentTranslateTearOff; |
| 169 }; | 163 }; |
| 170 | 164 |
| 171 } // namespace blink | 165 } // namespace blink |
| 172 | 166 |
| 173 #endif // SVGSVGElement_h | 167 #endif // SVGSVGElement_h |
| OLD | NEW |