1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18 package org.vectomatic.client.rep;
19
20 import com.google.gwt.user.client.ui.AbstractImagePrototype;
21 import com.google.gwt.user.client.ui.ImageBundle;
22
23
24
25
26 public interface UIImageBundle extends ImageBundle {
27
28 @Resource("select.png")
29 public AbstractImagePrototype selectIcon();
30
31 @Resource("save.png")
32 public AbstractImagePrototype saveIcon();
33
34 @Resource("saveDisabled.png")
35 public AbstractImagePrototype saveDisabledIcon();
36
37 @Resource("rectangle.png")
38 public AbstractImagePrototype rectIcon();
39
40 @Resource("ellipse.png")
41 public AbstractImagePrototype ellipseIcon();
42
43 @Resource("polyline.png")
44 public AbstractImagePrototype polylineIcon();
45
46 @Resource("editpolyline.png")
47 public AbstractImagePrototype editPolylineIcon();
48
49 @Resource("path.png")
50 public AbstractImagePrototype pathIcon();
51
52 @Resource("editpath.png")
53 public AbstractImagePrototype editPathIcon();
54
55 @Resource("undo.png")
56 public AbstractImagePrototype undoIcon();
57
58 @Resource("undoDisabled.png")
59 public AbstractImagePrototype undoDisabledIcon();
60
61 @Resource("redo.png")
62 public AbstractImagePrototype redoIcon();
63
64 @Resource("redoDisabled.png")
65 public AbstractImagePrototype redoDisabledIcon();
66
67 @Resource("chslider.png")
68 public AbstractImagePrototype chslider();
69
70 @Resource("chsliderSliding.png")
71 public AbstractImagePrototype chsliderSliding();
72
73 @Resource("cvslider.png")
74 AbstractImagePrototype cvslider();
75
76 @Resource("cvsliderSliding.png")
77 AbstractImagePrototype cvsliderSliding();
78
79 @Resource("up.png")
80 public AbstractImagePrototype upIcon();
81
82 @Resource("down.png")
83 public AbstractImagePrototype downIcon();
84
85 @Resource("associateTangents.png")
86 public AbstractImagePrototype associateTangents();
87
88 @Resource("associateTangentsDisabled.png")
89 public AbstractImagePrototype associateTangentsDisabled();
90
91 @Resource("breakPath.png")
92 public AbstractImagePrototype breakPath();
93
94 @Resource("breakPathDisabled.png")
95 public AbstractImagePrototype breakPathDisabled();
96
97 @Resource("deleteVertex.png")
98 public AbstractImagePrototype deleteVertex();
99
100 @Resource("deleteVertexDisabled.png")
101 public AbstractImagePrototype deleteVertexDisabled();
102
103 @Resource("dissociateTangents.png")
104 public AbstractImagePrototype dissociateTangents();
105
106 @Resource("dissociateTangentsDisabled.png")
107 public AbstractImagePrototype dissociateTangentsDisabled();
108
109 @Resource("insertVertex.png")
110 public AbstractImagePrototype insertVertex();
111
112 @Resource("insertVertexDisabled.png")
113 public AbstractImagePrototype insertVertexDisabled();
114
115 @Resource("jointVertices.png")
116 public AbstractImagePrototype jointVertices();
117
118 @Resource("jointVerticesDisabled.png")
119 public AbstractImagePrototype jointVerticesDisabled();
120
121 @Resource("joinVerticesWithSegment.png")
122 public AbstractImagePrototype joinVerticesWithSegment();
123
124 @Resource("joinVerticesWithSegmentDisabled.png")
125 public AbstractImagePrototype joinVerticesWithSegmentDisabled();
126
127 @Resource("makeCurve.png")
128 public AbstractImagePrototype makeCurve();
129
130 @Resource("makeCurveDisabled.png")
131 public AbstractImagePrototype makeCurveDisabled();
132
133 @Resource("makeLine.png")
134 public AbstractImagePrototype makeLine();
135
136 @Resource("makeLineDisabled.png")
137 public AbstractImagePrototype makeLineDisabled();
138
139 @Resource("removeSegment.png")
140 public AbstractImagePrototype removeSegment();
141
142 @Resource("removeSegmentDisabled.png")
143 public AbstractImagePrototype removeSegmentDisabled();
144
145 @Resource("symmetricTangents.png")
146 public AbstractImagePrototype symmetricTangents();
147
148 @Resource("symmetricTangentsDisabled.png")
149 public AbstractImagePrototype symmetricTangentsDisabled();
150
151 @Resource("exit.png")
152 public AbstractImagePrototype exit();
153 }