]> git.tdb.fi Git - r2c2.git/blob - engineer.res
Initial revision
[r2c2.git] / engineer.res
1 font "dejavu-12.font";
2 font "digitalreadout-16.font";
3
4 texture "gui.png";
5
6 graphic "button"
7 {
8         texture "gui";
9         slice 8 112 21 10;
10         border { top 2; right 3; bottom 4; left 2; };
11         shadow { top 0; right 1; bottom 2; left 0; };
12 };
13
14 graphic "buttondown"
15 {
16         texture "gui";
17         slice 38 112 21 10;
18         border { top 2; right 3; bottom 4; left 2; };
19         shadow { top 0; right 1; bottom 2; left 0; };
20 };
21
22 graphic "greenbutton"
23 {
24         texture "gui";
25         slice 8 97 21 10;
26         border { top 2; right 3; bottom 4; left 2; };
27         shadow { top 0; right 1; bottom 2; left 0; };
28 };
29
30 graphic "greenbuttondown"
31 {
32         texture "gui";
33         slice 38 97 21 10;
34         border { top 2; right 3; bottom 4; left 2; };
35         shadow { top 0; right 1; bottom 2; left 0; };
36 };
37
38 graphic "redbutton"
39 {
40         texture "gui";
41         slice 8 82 21 10;
42         border { top 2; right 3; bottom 4; left 2; };
43         shadow { top 0; right 1; bottom 2; left 0; };
44 };
45
46 graphic "redbuttondown"
47 {
48         texture "gui";
49         slice 38 82 21 10;
50         border { top 2; right 3; bottom 4; left 2; };
51         shadow { top 0; right 1; bottom 2; left 0; };
52 };
53
54 graphic "panel"
55 {
56         texture "gui";
57         slice 8 158 30 20;
58         border { top 2; right 2; bottom 2; left 2; };
59 };
60
61 graphic "greenlamp"
62 {
63         texture "gui";
64         slice 87 222 12 12;
65 };
66
67 graphic "greenlamplit"
68 {
69         texture "gui";
70         slice 87 236 12 12;
71 };
72
73 graphic "redlamp"
74 {
75         texture "gui";
76         slice 101 222 12 12;
77 };
78
79 graphic "redlamplit"
80 {
81         texture "gui";
82         slice 101 236 12 12;
83 };
84
85 graphic "digidisplay"
86 {
87         texture "gui";
88         slice 14 226 48 24;
89         border { top 5; right 5; bottom 5; left 5; };
90 };
91
92 graphic "hsliderslot"
93 {
94         texture "gui";
95         slice 8 188 60 10;
96         border { top 0; right 5; bottom 0; left 5; };
97 };
98
99 graphic "hslider"
100 {
101         texture "gui";
102         slice 73 105 32 13;
103         shadow { top 0; right 2; bottom 3; left 0; };
104 };
105
106 style "button" ""
107 {
108         font_color 0 0 0;
109
110         part "button"
111         {
112                 graphic normal "button";
113                 graphic active "buttondown";
114                 align 0 -1;
115                 fill false false;
116         };
117
118         part "text"
119         {
120                 align 0 1;
121         };
122 };
123
124 style "button" "green"
125 {
126         font_color 0 0 0;
127
128         part "button"
129         {
130                 graphic normal "greenbutton";
131                 graphic active "greenbuttondown";
132                 align 0 -1;
133                 fill false false;
134         };
135
136         part "text"
137         {
138                 align 0 1;
139         };
140 };
141
142 style "button" "red"
143 {
144         font_color 0 0 0;
145
146         part "button"
147         {
148                 graphic normal "redbutton";
149                 graphic active "redbuttondown";
150                 align 0 -1;
151                 fill false false;
152         };
153
154         part "text"
155         {
156                 align 0 1;
157         };
158 };
159
160 style "panel" ""
161 {
162         part "background"
163         {
164                 graphic normal "panel";
165         };
166         part "children";
167 };
168
169 style "indicator" "";
170
171 style "indicator" "green"
172 {
173         part "lamp"
174         {
175                 graphic normal "greenlamp";
176                 graphic active "greenlamplit";
177                 fill false false;
178         };
179 };
180
181 style "indicator" "red"
182 {
183         part "lamp"
184         {
185                 graphic normal "redlamp";
186                 graphic active "redlamplit";
187                 fill false false;
188         };
189 };
190
191 style "label" ""
192 {
193         font_color 0 0 0;
194         part "text";
195 };
196
197 style "label" "digital"
198 {
199         font "digitalreadout-16";
200         font_color 0.3 1 0.3;
201
202         part "background"
203         {
204                 graphic normal "digidisplay";
205         };
206
207         part "text"
208         {
209                 fill false false;
210                 align 0 0;
211         };
212 };
213
214 style "hslider" ""
215 {
216         part "background"
217         {
218                 graphic normal "hsliderslot";
219                 fill true false;
220         };
221
222         part "slider"
223         {
224                 graphic normal "hslider";
225         };
226 };