OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. |
| 4 |
| 5 // WARNING: Do not edit - generated code. |
| 6 |
| 7 interface SVGSVGElement extends SVGElement, SVGTests, SVGLangSpace, SVGExternalR
esourcesRequired, SVGStylable, SVGLocatable, SVGFitToViewBox, SVGZoomAndPan { |
| 8 |
| 9 String contentScriptType; |
| 10 |
| 11 String contentStyleType; |
| 12 |
| 13 num currentScale; |
| 14 |
| 15 final SVGPoint currentTranslate; |
| 16 |
| 17 final SVGAnimatedLength height; |
| 18 |
| 19 final num pixelUnitToMillimeterX; |
| 20 |
| 21 final num pixelUnitToMillimeterY; |
| 22 |
| 23 final num screenPixelToMillimeterX; |
| 24 |
| 25 final num screenPixelToMillimeterY; |
| 26 |
| 27 bool useCurrentView; |
| 28 |
| 29 final SVGRect viewport; |
| 30 |
| 31 final SVGAnimatedLength width; |
| 32 |
| 33 final SVGAnimatedLength x; |
| 34 |
| 35 final SVGAnimatedLength y; |
| 36 |
| 37 bool animationsPaused(); |
| 38 |
| 39 bool checkEnclosure(SVGElement element, SVGRect rect); |
| 40 |
| 41 bool checkIntersection(SVGElement element, SVGRect rect); |
| 42 |
| 43 SVGAngle createSVGAngle(); |
| 44 |
| 45 SVGLength createSVGLength(); |
| 46 |
| 47 SVGMatrix createSVGMatrix(); |
| 48 |
| 49 SVGNumber createSVGNumber(); |
| 50 |
| 51 SVGPoint createSVGPoint(); |
| 52 |
| 53 SVGRect createSVGRect(); |
| 54 |
| 55 SVGTransform createSVGTransform(); |
| 56 |
| 57 SVGTransform createSVGTransformFromMatrix(SVGMatrix matrix); |
| 58 |
| 59 void deselectAll(); |
| 60 |
| 61 void forceRedraw(); |
| 62 |
| 63 num getCurrentTime(); |
| 64 |
| 65 Element getElementById(String elementId); |
| 66 |
| 67 NodeList getEnclosureList(SVGRect rect, SVGElement referenceElement); |
| 68 |
| 69 NodeList getIntersectionList(SVGRect rect, SVGElement referenceElement); |
| 70 |
| 71 void pauseAnimations(); |
| 72 |
| 73 void setCurrentTime(num seconds); |
| 74 |
| 75 int suspendRedraw(int maxWaitMilliseconds); |
| 76 |
| 77 void unpauseAnimations(); |
| 78 |
| 79 void unsuspendRedraw(int suspendHandleId); |
| 80 |
| 81 void unsuspendRedrawAll(); |
| 82 } |
OLD | NEW |