| 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, 2010 Rob Buis <buis@kde.org> | 3 * Copyright (C) 2004, 2005, 2010 Rob Buis <buis@kde.org> |
| 4 * Copyright (C) 2006 Samuel Weinig <sam.weinig@gmail.com> | 4 * Copyright (C) 2006 Samuel Weinig <sam.weinig@gmail.com> |
| 5 * Copyright (C) 2006 Apple Inc. All rights reserved. | 5 * Copyright (C) 2006 Apple Inc. All rights reserved. |
| 6 * | 6 * |
| 7 * This library is free software; you can redistribute it and/or | 7 * This library is free software; you can redistribute it and/or |
| 8 * modify it under the terms of the GNU Library General Public | 8 * modify it under the terms of the GNU Library General Public |
| 9 * License as published by the Free Software Foundation; either | 9 * License as published by the Free Software Foundation; either |
| 10 * version 2 of the License, or (at your option) any later version. | 10 * version 2 of the License, or (at your option) any later version. |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 readonly attribute SVGRect viewport; | 35 readonly attribute SVGRect viewport; |
| 36 readonly attribute float pixelUnitToMillimeterX; | 36 readonly attribute float pixelUnitToMillimeterX; |
| 37 readonly attribute float pixelUnitToMillimeterY; | 37 readonly attribute float pixelUnitToMillimeterY; |
| 38 readonly attribute float screenPixelToMillimeterX; | 38 readonly attribute float screenPixelToMillimeterX; |
| 39 readonly attribute float screenPixelToMillimeterY; | 39 readonly attribute float screenPixelToMillimeterY; |
| 40 readonly attribute boolean useCurrentView; | 40 readonly attribute boolean useCurrentView; |
| 41 readonly attribute SVGViewSpec currentView; | 41 readonly attribute SVGViewSpec currentView; |
| 42 attribute float currentScale; | 42 attribute float currentScale; |
| 43 [ImplementedAs=currentTranslateFromJavascript] readonly attribute SVGPoint c
urrentTranslate; | 43 [ImplementedAs=currentTranslateFromJavascript] readonly attribute SVGPoint c
urrentTranslate; |
| 44 | 44 |
| 45 [RuntimeEnabled=SVG1DOM, MeasureAs=SVG1DOM] unsigned long suspendRedraw(unsi
gned long maxWaitMilliseconds); | |
| 46 [RuntimeEnabled=SVG1DOM, MeasureAs=SVG1DOM] void unsuspendRedraw(unsigned lo
ng suspendHandleId); | |
| 47 [RuntimeEnabled=SVG1DOM, MeasureAs=SVG1DOM] void unsuspendRedrawAll(); | |
| 48 [RuntimeEnabled=SVG1DOM, MeasureAs=SVG1DOM] void forceRedraw(); | |
| 49 void pauseAnimations(); | 45 void pauseAnimations(); |
| 50 void unpauseAnimations(); | 46 void unpauseAnimations(); |
| 51 boolean animationsPaused(); | 47 boolean animationsPaused(); |
| 52 float getCurrentTime(); | 48 float getCurrentTime(); |
| 53 void setCurrentTime(float seconds); | 49 void setCurrentTime(float seconds); |
| 54 NodeList getIntersectionList(SVGRect rect, SVGElement? referenceElement); | 50 NodeList getIntersectionList(SVGRect rect, SVGElement? referenceElement); |
| 55 NodeList getEnclosureList(SVGRect rect, SVGElement? referenceElement); | 51 NodeList getEnclosureList(SVGRect rect, SVGElement? referenceElement); |
| 56 boolean checkIntersection(SVGElement element, SVGRect rect); | 52 boolean checkIntersection(SVGElement element, SVGRect rect); |
| 57 boolean checkEnclosure(SVGElement element, SVGRect rect); | 53 boolean checkEnclosure(SVGElement element, SVGRect rect); |
| 58 void deselectAll(); | 54 void deselectAll(); |
| 59 | 55 |
| 60 [RuntimeEnabled=SVG1DOM, MeasureAs=SVG1DOM] SVGNumber createSVGNumber(); | 56 [RuntimeEnabled=SVG1DOM, MeasureAs=SVG1DOM] SVGNumber createSVGNumber(); |
| 61 [RuntimeEnabled=SVG1DOM, MeasureAs=SVG1DOM] SVGLength createSVGLength(); | 57 [RuntimeEnabled=SVG1DOM, MeasureAs=SVG1DOM] SVGLength createSVGLength(); |
| 62 [RuntimeEnabled=SVG1DOM, MeasureAs=SVG1DOM] SVGAngle createSVGAngle(); | 58 [RuntimeEnabled=SVG1DOM, MeasureAs=SVG1DOM] SVGAngle createSVGAngle(); |
| 63 [RuntimeEnabled=SVG1DOM, MeasureAs=SVG1DOM] SVGPoint createSVGPoint(); | 59 [RuntimeEnabled=SVG1DOM, MeasureAs=SVG1DOM] SVGPoint createSVGPoint(); |
| 64 [RuntimeEnabled=SVG1DOM, MeasureAs=SVG1DOM] SVGMatrix createSVGMatrix(); | 60 [RuntimeEnabled=SVG1DOM, MeasureAs=SVG1DOM] SVGMatrix createSVGMatrix(); |
| 65 [RuntimeEnabled=SVG1DOM, MeasureAs=SVG1DOM] SVGRect createSVGRect(); | 61 [RuntimeEnabled=SVG1DOM, MeasureAs=SVG1DOM] SVGRect createSVGRect(); |
| 66 [RuntimeEnabled=SVG1DOM, MeasureAs=SVG1DOM] SVGTransform createSVGTransform(
); | 62 [RuntimeEnabled=SVG1DOM, MeasureAs=SVG1DOM] SVGTransform createSVGTransform(
); |
| 67 [RuntimeEnabled=SVG1DOM, MeasureAs=SVG1DOM] SVGTransform createSVGTransformF
romMatrix(SVGMatrix matrix); | 63 [RuntimeEnabled=SVG1DOM, MeasureAs=SVG1DOM] SVGTransform createSVGTransformF
romMatrix(SVGMatrix matrix); |
| 68 Element getElementById(DOMString elementId); | 64 Element getElementById(DOMString elementId); |
| 69 }; | 65 }; |
| 70 | 66 |
| 71 SVGSVGElement implements SVGFitToViewBox; | 67 SVGSVGElement implements SVGFitToViewBox; |
| 72 SVGSVGElement implements SVGZoomAndPan; | 68 SVGSVGElement implements SVGZoomAndPan; |
| OLD | NEW |