OLD | NEW |
| (Empty) |
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 | |
3 // BSD-style license that can be found in the LICENSE file. | |
4 | |
5 // WARNING: Do not edit - generated code. | |
6 | |
7 interface SVGPaint extends SVGColor { | |
8 | |
9 static final int SVG_PAINTTYPE_CURRENTCOLOR = 102; | |
10 | |
11 static final int SVG_PAINTTYPE_NONE = 101; | |
12 | |
13 static final int SVG_PAINTTYPE_RGBCOLOR = 1; | |
14 | |
15 static final int SVG_PAINTTYPE_RGBCOLOR_ICCCOLOR = 2; | |
16 | |
17 static final int SVG_PAINTTYPE_UNKNOWN = 0; | |
18 | |
19 static final int SVG_PAINTTYPE_URI = 107; | |
20 | |
21 static final int SVG_PAINTTYPE_URI_CURRENTCOLOR = 104; | |
22 | |
23 static final int SVG_PAINTTYPE_URI_NONE = 103; | |
24 | |
25 static final int SVG_PAINTTYPE_URI_RGBCOLOR = 105; | |
26 | |
27 static final int SVG_PAINTTYPE_URI_RGBCOLOR_ICCCOLOR = 106; | |
28 | |
29 int get paintType(); | |
30 | |
31 String get uri(); | |
32 | |
33 void setPaint(int paintType, String uri, String rgbColor, String iccColor); | |
34 | |
35 void setUri(String uri); | |
36 } | |
OLD | NEW |