]> git.tdb.fi Git - r2c2.git/blob - engineer.res
7f75ae494214146e84dc095614b84b2882c64d8e
[r2c2.git] / engineer.res
1 default_font "dejavu-12.font";
2
3 graphic "greybutton"
4 {
5         texture "gui.png";
6         slice 0 54 21 10;
7         border { top 2; right 3; bottom 4; left 2; };
8         shadow { top 0; right 1; bottom 2; left 0; };
9 };
10
11 graphic "greybuttondown"
12 {
13         texture "gui.png";
14         slice 24 54 21 10;
15         border { top 2; right 3; bottom 4; left 2; };
16         shadow { top 0; right 1; bottom 2; left 0; };
17 };
18
19 graphic "greenbutton"
20 {
21         texture "gui.png";
22         slice 0 42 21 10;
23         border { top 2; right 3; bottom 4; left 2; };
24         shadow { top 0; right 1; bottom 2; left 0; };
25 };
26
27 graphic "greenbuttondown"
28 {
29         texture "gui.png";
30         slice 24 42 21 10;
31         border { top 2; right 3; bottom 4; left 2; };
32         shadow { top 0; right 1; bottom 2; left 0; };
33 };
34
35 graphic "redbutton"
36 {
37         texture "gui.png";
38         slice 0 30 21 10;
39         border { top 2; right 3; bottom 4; left 2; };
40         shadow { top 0; right 1; bottom 2; left 0; };
41 };
42
43 graphic "redbuttondown"
44 {
45         texture "gui.png";
46         slice 24 30 21 10;
47         border { top 2; right 3; bottom 4; left 2; };
48         shadow { top 0; right 1; bottom 2; left 0; };
49 };
50
51 graphic "panelbg"
52 {
53         texture "gui.png";
54         slice 0 68 30 20;
55         border { top 2; right 2; bottom 2; left 2; };
56 };
57
58 graphic "entrybg"
59 {
60         texture "gui.png";
61         slice 32 72 20 16;
62         border { top 2; right 2; bottom 2; left 2; };
63 };
64
65 graphic "entrycursor"
66 {
67         texture "gui.png";
68         slice 54 74 2 12;
69 };
70
71 graphic "yellowlamp"
72 {
73         texture "gui.png";
74         slice 30 102 12 12;
75 };
76
77 graphic "yellowlamplit"
78 {
79         texture "gui.png";
80         slice 30 116 12 12;
81 };
82
83 graphic "greenlamp"
84 {
85         texture "gui.png";
86         slice 44 102 12 12;
87 };
88
89 graphic "greenlamplit"
90 {
91         texture "gui.png";
92         slice 44 116 12 12;
93 };
94
95 graphic "redlamp"
96 {
97         texture "gui.png";
98         slice 58 102 12 12;
99 };
100
101 graphic "redlamplit"
102 {
103         texture "gui.png";
104         slice 58 116 12 12;
105 };
106
107 graphic "digidisplay"
108 {
109         texture "gui.png";
110         slice 0 108 28 20;
111         border { top 5; right 5; bottom 5; left 5; };
112 };
113
114 graphic "hsliderslot"
115 {
116         texture "gui.png";
117         slice 0 90 60 10;
118         border { top 0; right 5; bottom 0; left 5; };
119 };
120
121 graphic "hsliderknob"
122 {
123         texture "gui.png";
124         slice 0 15 32 13;
125         shadow { top 0; right 2; bottom 3; left 0; };
126 };
127
128 style "button"
129 {
130         font_color 0 0 0;
131
132         part
133         {
134                 graphic NORMAL "greybutton";
135                 graphic ACTIVE "greybuttondown";
136                 align 0.5 0.0;
137                 fill 0.0 0.0;
138         };
139
140         special "text"
141         {
142                 align 0.5 1.0;
143                 fill 0.0 0.0;
144         };
145 };
146
147 style "button-green"
148 {
149         font_color 0 0 0;
150
151         part
152         {
153                 graphic NORMAL "greenbutton";
154                 graphic ACTIVE "greenbuttondown";
155                 align 0.5 0.0;
156                 fill 0.0 0.0;
157         };
158
159         special "text"
160         {
161                 align 0.5 1.0;
162                 fill 0.0 0.0;
163         };
164 };
165
166 style "button-red"
167 {
168         font_color 0 0 0;
169
170         part
171         {
172                 graphic NORMAL "redbutton";
173                 graphic ACTIVE "redbuttondown";
174                 align 0.5 0.0;
175                 fill 0.0 0.0;
176         };
177
178         special "text"
179         {
180                 align 0.5 1.0;
181                 fill 0.0 0.0;
182         };
183 };
184
185 style "panel"
186 {
187         part
188         {
189                 graphic NORMAL "panelbg";
190         };
191         special "children";
192 };
193
194 style "indicator"
195 {
196         part
197         {
198                 graphic NORMAL "yellowlamp";
199                 graphic ACTIVE "yellowlamplit";
200                 align 0.5 0.5;
201                 fill 0.0 0.0;
202         };
203 };
204
205 style "indicator-green"
206 {
207         part
208         {
209                 graphic NORMAL "greenlamp";
210                 graphic ACTIVE "greenlamplit";
211                 align 0.5 0.5;
212                 fill 0.0 0.0;
213         };
214 };
215
216 style "indicator-red"
217 {
218         part
219         {
220                 graphic NORMAL "redlamp";
221                 graphic ACTIVE "redlamplit";
222                 align 0.5 0.5;
223                 fill 0.0 0.0;
224         };
225 };
226
227 style "label"
228 {
229         font_color 0 0 0;
230         special "text";
231 };
232
233 style "label-digital"
234 {
235         font "digitalreadout-16.font";
236         font_color 0.3 1 0.3;
237
238         part
239         {
240                 graphic NORMAL "digidisplay";
241         };
242
243         special "text"
244         {
245                 fill 0.0 0.0;
246                 align 0.5 0.5;
247         };
248 };
249
250 style "hslider"
251 {
252         part
253         {
254                 graphic NORMAL "hsliderslot";
255                 fill 1.0 0.0;
256         };
257
258         special "slider"
259         {
260                 graphic NORMAL "hsliderknob";
261                 fill 0.0 0.0;
262         };
263 };
264
265 style "entry"
266 {
267         font_color 0 0 0;
268
269         part
270         {
271                 graphic NORMAL "entrybg";
272         };
273
274         special "text"
275         {
276                 align 0.0 0.5;
277                 fill 0.0 0.0;
278                 margin { left 3; right 3; };
279         };
280
281         special "cursor"
282         {
283                 graphic FOCUS "entrycursor";
284                 align 0.0 0.5;
285                 fill 0.0 0.0;
286                 margin { left 3; right 3; };
287         };
288 };
289
290 style "root"
291 {
292         special "children";
293 };