OLD | NEW |
1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file |
2 // for details. All rights reserved. Use of this source code is governed by a | 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. | 3 // BSD-style license that can be found in the LICENSE file. |
4 | 4 |
5 // WARNING: Do not edit - generated code. | 5 // WARNING: Do not edit - generated code. |
6 | 6 |
7 interface SVGSVGElement extends SVGElement, SVGTests, SVGLangSpace, SVGExternalR
esourcesRequired, SVGStylable, SVGLocatable, SVGFitToViewBox, SVGZoomAndPan { | 7 interface SVGSVGElement extends SVGElement, SVGTests, SVGLangSpace, SVGExternalR
esourcesRequired, SVGStylable, SVGLocatable, SVGFitToViewBox, SVGZoomAndPan { |
8 | 8 |
9 String get contentScriptType(); | 9 String contentScriptType; |
10 | 10 |
11 void set contentScriptType(String value); | 11 String contentStyleType; |
12 | 12 |
13 String get contentStyleType(); | 13 num currentScale; |
14 | 14 |
15 void set contentStyleType(String value); | 15 final SVGPoint currentTranslate; |
16 | 16 |
17 num get currentScale(); | 17 final SVGAnimatedLength height; |
18 | 18 |
19 void set currentScale(num value); | 19 final num pixelUnitToMillimeterX; |
20 | 20 |
21 SVGPoint get currentTranslate(); | 21 final num pixelUnitToMillimeterY; |
22 | 22 |
23 SVGAnimatedLength get height(); | 23 final num screenPixelToMillimeterX; |
24 | 24 |
25 num get pixelUnitToMillimeterX(); | 25 final num screenPixelToMillimeterY; |
26 | 26 |
27 num get pixelUnitToMillimeterY(); | 27 bool useCurrentView; |
28 | 28 |
29 num get screenPixelToMillimeterX(); | 29 final SVGRect viewport; |
30 | 30 |
31 num get screenPixelToMillimeterY(); | 31 final SVGAnimatedLength width; |
32 | 32 |
33 bool get useCurrentView(); | 33 final SVGAnimatedLength x; |
34 | 34 |
35 void set useCurrentView(bool value); | 35 final SVGAnimatedLength y; |
36 | |
37 SVGRect get viewport(); | |
38 | |
39 SVGAnimatedLength get width(); | |
40 | |
41 SVGAnimatedLength get x(); | |
42 | |
43 SVGAnimatedLength get y(); | |
44 | 36 |
45 bool animationsPaused(); | 37 bool animationsPaused(); |
46 | 38 |
47 bool checkEnclosure(SVGElement element, SVGRect rect); | 39 bool checkEnclosure(SVGElement element, SVGRect rect); |
48 | 40 |
49 bool checkIntersection(SVGElement element, SVGRect rect); | 41 bool checkIntersection(SVGElement element, SVGRect rect); |
50 | 42 |
51 SVGAngle createSVGAngle(); | 43 SVGAngle createSVGAngle(); |
52 | 44 |
53 SVGLength createSVGLength(); | 45 SVGLength createSVGLength(); |
(...skipping 27 matching lines...) Expand all Loading... |
81 void setCurrentTime(num seconds); | 73 void setCurrentTime(num seconds); |
82 | 74 |
83 int suspendRedraw(int maxWaitMilliseconds); | 75 int suspendRedraw(int maxWaitMilliseconds); |
84 | 76 |
85 void unpauseAnimations(); | 77 void unpauseAnimations(); |
86 | 78 |
87 void unsuspendRedraw(int suspendHandleId); | 79 void unsuspendRedraw(int suspendHandleId); |
88 | 80 |
89 void unsuspendRedrawAll(); | 81 void unsuspendRedrawAll(); |
90 } | 82 } |
OLD | NEW |