|
6 | 6 | import com.google.gwt.resources.client.DataResource; |
7 | 7 | import com.google.gwt.resources.client.ImageResource; |
8 | 8 |
|
| 9 | +/** |
| 10 | + * The resource bundle for images, css reosources. |
| 11 | + * |
| 12 | + * @author Ilya Sviridov |
| 13 | + * |
| 14 | + */ |
| 15 | + |
9 | 16 | public interface ResourceBundle extends ClientBundle { |
10 | | - public static final ResourceBundle INSTANCE = GWT.create(ResourceBundle.class); |
11 | | - |
| 17 | + public static final ResourceBundle INSTANCE = GWT.create(ResourceBundle.class); |
| 18 | + |
| 19 | + /** |
| 20 | + * The application css |
| 21 | + * |
| 22 | + */ |
12 | 23 | @Source("ApplicationStyle.css") |
13 | | - @CssResource.NotStrict |
14 | | - public Style css(); |
15 | | - |
| 24 | + @CssResource.NotStrict |
| 25 | + public Style css(); |
| 26 | + |
| 27 | + /** |
| 28 | + * The create new substitution control icon |
| 29 | + * |
| 30 | + */ |
16 | 31 | @Source("create.gif") |
17 | 32 | public ImageResource createIcon(); |
18 | | - |
| 33 | + |
| 34 | + /** |
| 35 | + * The create new substitution control icon as DataResource |
| 36 | + * |
| 37 | + */ |
19 | 38 | @Source("create.gif") |
20 | 39 | public DataResource createIconResource(); |
21 | | - |
| 40 | + |
| 41 | + /** |
| 42 | + * |
| 43 | + * Update control icon |
| 44 | + */ |
22 | 45 | @Source("update_active_icon.gif") |
23 | 46 | public DataResource updateIconResource(); |
24 | | - |
| 47 | + |
| 48 | + /** |
| 49 | + * Update controll icon in disabled state |
| 50 | + * |
| 51 | + */ |
25 | 52 | @Source("update.gif") |
26 | 53 | public DataResource updateIconDisabledResource(); |
27 | | - |
| 54 | + |
| 55 | + /** |
| 56 | + * Delete icon |
| 57 | + * |
| 58 | + */ |
28 | 59 | @Source("delete_active_icon.gif") |
29 | 60 | public DataResource deleteIconResource(); |
30 | | - |
| 61 | + |
| 62 | + /** |
| 63 | + * Delete icon disabled |
| 64 | + * |
| 65 | + */ |
31 | 66 | @Source("delete.gif") |
32 | 67 | public DataResource deleteIconDisabledResource(); |
33 | | - |
34 | | - |
| 68 | + |
| 69 | + /** |
| 70 | + * The window icon on substitution management window |
| 71 | + * |
| 72 | + */ |
35 | 73 | @Source("wind_icon.gif") |
36 | 74 | public ImageResource substitutionWindowIcon(); |
37 | | - |
| 75 | + |
| 76 | + /** |
| 77 | + * The window icon on edit substitution window |
| 78 | + * |
| 79 | + */ |
38 | 80 | @Source("wind_icon2.gif") |
39 | 81 | public ImageResource substitutionEditWindowIcon(); |
40 | | - |
| 82 | + |
| 83 | + /** |
| 84 | + * |
| 85 | + * The X image |
| 86 | + */ |
41 | 87 | @Source("close_btn.gif") |
42 | 88 | public ImageResource closeButtonIcon(); |
43 | | - |
| 89 | + |
| 90 | + /** |
| 91 | + * |
| 92 | + * The X image as resource |
| 93 | + * |
| 94 | + */ |
44 | 95 | @Source("close_btn.gif") |
45 | 96 | public DataResource closeButtonIconResource(); |
46 | | - |
| 97 | + |
| 98 | + /** |
| 99 | + * |
| 100 | + * Window styling corner |
| 101 | + * |
| 102 | + */ |
47 | 103 | @Source("top_left_corner.png") |
48 | 104 | public DataResource topLeftCorner(); |
49 | | - |
| 105 | + |
| 106 | + /** |
| 107 | + * |
| 108 | + * Window styling corner |
| 109 | + * |
| 110 | + */ |
50 | 111 | @Source("top_right_corner.png") |
51 | 112 | public DataResource topRightCorner(); |
52 | | - |
| 113 | + |
| 114 | + /** |
| 115 | + * |
| 116 | + * Window styling corner |
| 117 | + * |
| 118 | + */ |
53 | 119 | @Source("bottom_left_corner.png") |
54 | 120 | public DataResource bottomLeftCorner(); |
55 | | - |
| 121 | + |
| 122 | + /** |
| 123 | + * |
| 124 | + * Window styling corner |
| 125 | + * |
| 126 | + */ |
56 | 127 | @Source("bottom_right_corner.png") |
57 | 128 | public DataResource bottomRightCorner(); |
58 | | - |
| 129 | + |
| 130 | + /** |
| 131 | + * |
| 132 | + * Window styling background |
| 133 | + * |
| 134 | + */ |
59 | 135 | @Source("top_repeat_center.png") |
60 | 136 | public DataResource topCenterBackground(); |
61 | | - |
| 137 | + |
| 138 | + /** |
| 139 | + * |
| 140 | + * Window styling background |
| 141 | + * |
| 142 | + */ |
62 | 143 | @Source("left_middle_cen.png") |
63 | 144 | public DataResource middleLeftBackground(); |
64 | | - |
| 145 | + |
| 146 | + /** |
| 147 | + * |
| 148 | + * Window styling background |
| 149 | + * |
| 150 | + */ |
65 | 151 | @Source("bottom_repeat_center.png") |
66 | 152 | public DataResource bottomCenterBackground(); |
67 | | - |
| 153 | + |
| 154 | + /** |
| 155 | + * |
| 156 | + * Window styling background |
| 157 | + * |
| 158 | + */ |
68 | 159 | @Source("right_middle_cen.png") |
69 | 160 | public DataResource middleRightBackground(); |
70 | | - |
| 161 | + |
| 162 | + /** |
| 163 | + * |
| 164 | + * The button styling |
| 165 | + * |
| 166 | + */ |
71 | 167 | @Source("btn_bg_l.png") |
72 | 168 | public DataResource buttonLeftBackgroungResource(); |
73 | | - |
| 169 | + |
| 170 | + /** |
| 171 | + * |
| 172 | + * The button styling |
| 173 | + * |
| 174 | + */ |
74 | 175 | @Source("btn_bg_r.png") |
75 | 176 | public DataResource buttonRightBackgroungResource(); |
76 | | - |
| 177 | + |
| 178 | + /** |
| 179 | + * |
| 180 | + * The button styling |
| 181 | + * |
| 182 | + */ |
77 | 183 | @Source("btn_bg_c.png") |
78 | 184 | public DataResource buttonCenterBackgroungResource(); |
79 | | - |
| 185 | + |
| 186 | + /** |
| 187 | + * |
| 188 | + * Cancel button icon resource |
| 189 | + */ |
80 | 190 | @Source("cancel_icon.png") |
81 | 191 | public DataResource cancelIconResource(); |
82 | | - |
83 | | - |
| 192 | + |
| 193 | + /** |
| 194 | + * The tabs styling resource |
| 195 | + * |
| 196 | + */ |
84 | 197 | @Source("tab_active_bg_l.jpg") |
85 | 198 | public DataResource tabActiveBackgroundLeftResource(); |
86 | | - |
| 199 | + |
| 200 | + /** |
| 201 | + * The tabs styling resource |
| 202 | + * |
| 203 | + */ |
87 | 204 | @Source("tab_active_bg_r.jpg") |
88 | 205 | public DataResource tabActiveBackgroundRightResource(); |
89 | | - |
| 206 | + |
| 207 | + /** |
| 208 | + * The tabs styling resource |
| 209 | + * |
| 210 | + */ |
90 | 211 | @Source("tab_state_bg_l.jpg") |
91 | 212 | public DataResource tabBackgroundLeftResource(); |
92 | | - |
| 213 | + |
| 214 | + /** |
| 215 | + * The tabs styling resource |
| 216 | + * |
| 217 | + */ |
93 | 218 | @Source("tab_state_bg_r.jpg") |
94 | 219 | public DataResource tabBackgroundRightResource(); |
95 | | - |
| 220 | + |
| 221 | + /** |
| 222 | + * The tabs styling resource |
| 223 | + * |
| 224 | + */ |
96 | 225 | @Source("tab_nav_bg.gif") |
97 | 226 | public DataResource tabNavigationBackgroundRightResource(); |
98 | | - |
| 227 | + |
| 228 | + /** |
| 229 | + * The background image for control panel |
| 230 | + * |
| 231 | + */ |
99 | 232 | @Source("control_panel_bg.gif") |
100 | 233 | public DataResource controlPanelBackgroundResource(); |
101 | | - |
102 | | - |
| 234 | + |
| 235 | + /** |
| 236 | + * |
| 237 | + * The date piker icon |
| 238 | + * |
| 239 | + */ |
103 | 240 | @Source("date_picker.gif") |
104 | 241 | public DataResource datePickerIconResource(); |
105 | | - |
| 242 | + |
| 243 | + /** |
| 244 | + * Save button icom |
| 245 | + * |
| 246 | + */ |
106 | 247 | @Source("save_icon.png") |
107 | 248 | public DataResource saveButtonIconResource(); |
108 | | - |
| 249 | + |
| 250 | + /** |
| 251 | + * The CSSResource style class |
| 252 | + * |
| 253 | + * @author Ilya Sviridov |
| 254 | + * |
| 255 | + */ |
109 | 256 | public interface Style extends CssResource { |
110 | | - String tabStyle(); |
111 | | - } |
| 257 | + /** |
| 258 | + * Returns tabTyle |
| 259 | + */ |
| 260 | + String tabStyle(); |
| 261 | + } |
112 | 262 | } |
0 commit comments