]> git.tdb.fi Git - r2c2.git/blob - r2c2.res
Allow custom objects for tracks
[r2c2.git] / r2c2.res
1 /* $Id$ */
2
3 default_font "dejavu-12.font";
4
5 style "root"
6 {
7         special "children";
8 };
9
10 style "label"
11 {
12         font_color 0 0 0;
13         special "text"
14         {
15                 align 0.0 0.5;
16                 fill 0.0 0.0;
17         };
18 };
19
20 style "image"
21 {
22         special "image"
23         {
24                 fill 1.0 1.0;
25         };
26 };
27
28 graphic "tooltip"
29 {
30         texture "gui.png";
31         slice 50 93 20 10;
32         border { top 2; right 2; bottom 2; left 2; };
33 };
34
35 style "label-tooltip"
36 {
37         font_color 0.0 0.0 0.0;
38
39         part
40         {
41                 graphic NORMAL "tooltip";
42         };
43
44         special "text"
45         {
46                 align 0.0 0.5;
47                 fill 0.0 0.0;
48                 margin { top 2; right 2; bottom 2; left 2; };
49         };
50 };
51
52 graphic "grey_button"
53 {
54         texture "gui.png";
55         slice 2 54 21 10;
56         border { top 2; right 3; bottom 4; left 2; };
57         shadow { top 0; right 1; bottom 2; left 0; };
58 };
59
60 graphic "grey_button_pressed"
61 {
62         texture "gui.png";
63         slice 25 54 21 10;
64         border { top 2; right 3; bottom 4; left 2; };
65         shadow { top 0; right 1; bottom 2; left 0; };
66 };
67
68 graphic "green_button"
69 {
70         texture "gui.png";
71         slice 2 43 21 10;
72         border { top 2; right 3; bottom 4; left 2; };
73         shadow { top 0; right 1; bottom 2; left 0; };
74 };
75
76 graphic "green_button_pressed"
77 {
78         texture "gui.png";
79         slice 25 43 21 10;
80         border { top 2; right 3; bottom 4; left 2; };
81         shadow { top 0; right 1; bottom 2; left 0; };
82 };
83
84 graphic "red_button"
85 {
86         texture "gui.png";
87         slice 2 32 21 10;
88         border { top 2; right 3; bottom 4; left 2; };
89         shadow { top 0; right 1; bottom 2; left 0; };
90 };
91
92 graphic "red_button_pressed"
93 {
94         texture "gui.png";
95         slice 25 32 21 10;
96         border { top 2; right 3; bottom 4; left 2; };
97         shadow { top 0; right 1; bottom 2; left 0; };
98 };
99
100 graphic "up_arrow_button"
101 {
102         texture "gui.png";
103         slice 2 18 13 13;
104         shadow { right 1; bottom 2; };
105 };
106
107 graphic "up_arrow_button_pressed"
108 {
109         texture "gui.png";
110         slice 17 19 13 12;
111         shadow { right 1; bottom 1; };
112 };
113
114 graphic "down_arrow_button"
115 {
116         texture "gui.png";
117         slice 2 4 13 13;
118         shadow { right 1; bottom 2; };
119 };
120
121 graphic "down_arrow_button_pressed"
122 {
123         texture "gui.png";
124         slice 17 5 13 12;
125         shadow { right 1; bottom 1; };
126 };
127
128 graphic "right_arrow_button"
129 {
130         texture "gui.png";
131         slice 32 17 12 14;
132         shadow { right 1; bottom 2; };
133 };
134
135 graphic "right_arrow_button_pressed"
136 {
137         texture "gui.png";
138         slice 32 3 12 13;
139         shadow { right 1; bottom 1; };
140 };
141
142 graphic "left_arrow_button"
143 {
144         texture "gui.png";
145         slice 46 2 12 14;
146         shadow { right 1; bottom 2; };
147 };
148
149 graphic "left_arrow_button_pressed"
150 {
151         texture "gui.png";
152         slice 60 3 12 13;
153         shadow { right 1; bottom 1; };
154 };
155
156 style "button"
157 {
158         font_color 0 0 0;
159
160         part
161         {
162                 graphic NORMAL "grey_button";
163                 graphic ACTIVE "grey_button_pressed";
164                 align 0.5 0.0;
165                 fill 0.0 0.0;
166         };
167
168         special "text"
169         {
170                 align 0.5 1.0;
171                 fill 0.0 0.0;
172         };
173 };
174
175 style "button-green"
176 {
177         font_color 0 0 0;
178
179         part
180         {
181                 graphic NORMAL "green_button";
182                 graphic ACTIVE "green_button_pressed";
183                 align 0.5 0.0;
184                 fill 0.0 0.0;
185         };
186
187         special "text"
188         {
189                 align 0.5 1.0;
190                 fill 0.0 0.0;
191         };
192 };
193
194 style "button-red"
195 {
196         font_color 0 0 0;
197
198         part
199         {
200                 graphic NORMAL "red_button";
201                 graphic ACTIVE "red_button_pressed";
202                 align 0.5 0.0;
203                 fill 0.0 0.0;
204         };
205
206         special "text"
207         {
208                 align 0.5 1.0;
209                 fill 0.0 0.0;
210         };
211 };
212
213 style "button-arrow_up"
214 {
215         part
216         {
217                 graphic NORMAL "up_arrow_button";
218                 graphic ACTIVE "up_arrow_button_pressed";
219                 align 0.5 0.5;
220                 fill 0.0 0.0;
221         };
222 };
223
224 style "button-arrow_down"
225 {
226         part
227         {
228                 graphic NORMAL "down_arrow_button";
229                 graphic ACTIVE "down_arrow_button_pressed";
230                 align 0.5 0.5;
231                 fill 0.0 0.0;
232         };
233 };
234
235 style "button-arrow_right"
236 {
237         part
238         {
239                 graphic NORMAL "right_arrow_button";
240                 graphic ACTIVE "right_arrow_button_pressed";
241                 align 0.5 0.5;
242                 fill 0.0 0.0;
243         };
244 };
245
246 style "button-arrow_left"
247 {
248         part
249         {
250                 graphic NORMAL "left_arrow_button";
251                 graphic ACTIVE "left_arrow_button_pressed";
252                 align 0.5 0.5;
253                 fill 0.0 0.0;
254         };
255 };
256
257 graphic "yellow_lamp"
258 {
259         texture "gui.png";
260         slice 28 105 10 10;
261 };
262
263 graphic "yellow_lamp_lit"
264 {
265         texture "gui.png";
266         slice 28 117 10 10;
267 };
268
269 graphic "green_lamp"
270 {
271         texture "gui.png";
272         slice 40 105 10 10;
273 };
274
275 graphic "green_lamp_lit"
276 {
277         texture "gui.png";
278         slice 40 117 10 10;
279 };
280
281 graphic "red_lamp"
282 {
283         texture "gui.png";
284         slice 52 105 10 10;
285 };
286
287 graphic "red_lamp_lit"
288 {
289         texture "gui.png";
290         slice 52 116 10 10;
291 };
292
293 style "indicator"
294 {
295         part
296         {
297                 graphic NORMAL "yellow_lamp";
298                 graphic ACTIVE "yellow_lamp_lit";
299                 align 0.5 0.5;
300                 fill 0.0 0.0;
301         };
302 };
303
304 style "indicator-green"
305 {
306         part
307         {
308                 graphic NORMAL "green_lamp";
309                 graphic ACTIVE "green_lamp_lit";
310                 align 0.5 0.5;
311                 fill 0.0 0.0;
312         };
313 };
314
315 style "indicator-red"
316 {
317         part
318         {
319                 graphic NORMAL "red_lamp";
320                 graphic ACTIVE "red_lamp_lit";
321                 align 0.5 0.5;
322                 fill 0.0 0.0;
323         };
324 };
325
326 graphic "raised_grey_bg"
327 {
328         texture "gui.png";
329         slice 2 74 24 16;
330         border { top 4; right 4; bottom 4; left 4; };
331 };
332
333 style "panel"
334 {
335         part
336         {
337                 graphic NORMAL "raised_grey_bg";
338         };
339         special "children";
340 };
341
342 style "panel-group"
343 {
344         special "children";
345 };
346
347 graphic "sunken_black_bg"
348 {
349         texture "gui.png";
350         slice 2 110 24 16;
351         border { top 4; right 4; bottom 4; left 4; };
352 };
353
354 style "label-digital"
355 {
356         font "digitalreadout-16.font";
357         font_color 0.3 1 0.3;
358
359         part
360         {
361                 graphic NORMAL "sunken_black_bg";
362         };
363
364         special "text"
365         {
366                 fill 0.0 0.0;
367                 align 0.5 0.5;
368                 margin { top 1; };
369         };
370 };
371
372 graphic "sunken_white_bg"
373 {
374         texture "gui.png";
375         slice 2 92 24 16;
376         border { top 4; right 4; bottom 4; left 4; };
377 };
378
379 graphic "cursor"
380 {
381         texture "gui.png";
382         slice 40 81 2 10;
383 };
384
385 style "entry"
386 {
387         font_color 0 0 0;
388
389         part
390         {
391                 graphic NORMAL "sunken_white_bg";
392         };
393
394         special "text"
395         {
396                 align 0.0 0.5;
397                 fill 0.0 0.0;
398                 margin { left 3; right 3; };
399         };
400
401         special "cursor"
402         {
403                 graphic FOCUS "cursor";
404                 align 0.0 0.5;
405                 fill 0.0 0.0;
406                 size 2 12;
407                 margin { left 3; right 3; };
408         };
409 };
410
411 style "entry-multiline"
412 {
413         font_color 0 0 0;
414
415         part
416         {
417                 graphic NORMAL "sunken_white_bg";
418         };
419
420         special "text"
421         {
422                 align 0.0 1.0;
423                 fill 0.0 0.0;
424                 margin { top 2; right 13; left 3; bottom 2; };
425         };
426
427         special "cursor"
428         {
429                 graphic FOCUS "cursor";
430                 size 2 12;
431         };
432
433         special "slider"
434         {
435                 align 1.0 0.0;
436                 fill 0.0 1.0;
437                 size 10 0;
438                 margin { top 3; right 2; bottom 3; };
439         };
440 };
441
442 graphic "selection"
443 {
444         texture "gui.png";
445         slice 44 81 20 10;
446         border { top 4; right 4; bottom 4; left 4; };
447 };
448
449 style "list"
450 {
451         font_color 0.0 0.0 0.0;
452
453         part
454         {
455                 graphic NORMAL "sunken_white_bg";
456         };
457
458         special "selection"
459         {
460                 graphic NORMAL "selection";
461                 fill 1.0 1.0;
462                 margin { top 2; right 13; bottom 2; left 2; };
463         };
464
465         special "items"
466         {
467                 margin { top 2; right 13; bottom 2; left 2; };
468         };
469
470         special "slider"
471         {
472                 align 1.0 0.0;
473                 fill 0.0 1.0;
474                 size 10 0;
475                 margin { top 3; right 2; bottom 3; };
476         };
477 };
478
479 style "dropdown"
480 {
481         font_color 0.0 0.0 0.0;
482
483         part
484         {
485                 graphic NORMAL "sunken_white_bg";
486                 margin { right 14; };
487         };
488
489         part
490         {
491                 graphic NORMAL "down_arrow_button";
492                 graphic ACTIVE "down_arrow_button_pressed";
493                 align 1.0 0.5;
494                 fill 0.0 0.0;
495         };
496
497         special "text"
498         {
499                 align 0.0 0.5;
500                 fill 0.0 0.0;
501                 margin { left 2; };
502         };
503
504         special "list";
505 };
506
507 graphic "switch_up"
508 {
509         texture "gui.png";
510         slice 48 42 20 21;
511         shadow { top 0; right 2; bottom 3; left 0; };
512 };
513
514 graphic "switch_down"
515 {
516         texture "gui.png";
517         slice 48 20 20 21;
518         shadow { top 0; right 2; bottom 3; left 0; };
519 };
520
521 style "toggle"
522 {
523         font_color 0.0 0.0 0.0;
524
525         special "text"
526         {
527                 align 0.5 1.0;
528                 fill 0.0 0.0;
529         };
530
531         part
532         {
533                 align 0.5 0.0;
534                 fill 0.0 0.0;
535                 graphic NORMAL "switch_down";
536                 graphic ACTIVE "switch_up";
537         };
538 };
539
540 graphic "horizontal_slot"
541 {
542         texture "gui.png";
543         slice 32 97 12 2;
544         border { left 1; right 1; };
545 };
546
547 graphic "horizontal_knob"
548 {
549         texture "gui.png";
550         slice 70 51 32 13;
551         shadow { top 0; right 2; bottom 3; left 0; };
552 };
553
554 style "hslider"
555 {
556         part
557         {
558                 graphic NORMAL "horizontal_slot";
559                 align 0.5 0.5;
560                 fill 1.0 0.0;
561                 margin { left 4; right 4; };
562         };
563
564         special "slider"
565         {
566                 graphic NORMAL "horizontal_knob";
567                 fill 0.0 0.0;
568         };
569 };
570
571 graphic "vertical_slot"
572 {
573         texture "gui.png";
574         slice 32 75 2 12;
575         border { top 1; bottom 1; };
576 };
577
578 graphic "vertical_knob"
579 {
580         texture "gui.png";
581         slice 70 17 12 33;
582         shadow { top 0; right 2; bottom 3; left 0; };
583 };
584
585 style "vslider"
586 {
587         part
588         {
589                 graphic NORMAL "vertical_slot";
590                 align 0.5 0.5;
591                 fill 0.0 1.0;
592                 margin { top 4; bottom 4; };
593         };
594
595         special "slider"
596         {
597                 graphic NORMAL "vertical_knob";
598                 fill 0.0 0.0;
599                 align 0.0 1.0;
600         };
601 };