]> Dogcows Code - chaz/openbox/blob - engines/openbox/obtheme.c
change how rc parsing will work. a=b will be parsed in any [section] and given to...
[chaz/openbox] / engines / openbox / obtheme.c
1 #include "obengine.h"
2 #include "kernel/openbox.h"
3 #include "kernel/engine.h"
4
5 #include <glib.h>
6 #include <X11/Xlib.h>
7 #include <X11/Xresource.h>
8 #ifdef HAVE_STDLIB_H
9 # include <stdlib.h>
10 #endif
11 #ifdef HAVE_CTYPE_H
12 # include <ctype.h>
13 #endif
14 #ifdef HAVE_STRING_H
15 # include <string.h>
16 #endif
17
18 static XrmDatabase loaddb(char *theme)
19 {
20 XrmDatabase db;
21
22 db = XrmGetFileDatabase(theme);
23 if (db == NULL) {
24 char *s = g_build_filename(g_get_home_dir(), ".openbox", "themes",
25 "openbox", theme, NULL);
26 db = XrmGetFileDatabase(s);
27 g_free(s);
28 }
29 if (db == NULL) {
30 char *s = g_build_filename(THEMEDIR, theme, NULL);
31 db = XrmGetFileDatabase(s);
32 g_free(s);
33 }
34 return db;
35 }
36
37 static char *create_class_name(char *rname)
38 {
39 char *rclass = g_strdup(rname);
40 char *p = rclass;
41
42 while (TRUE) {
43 *p = toupper(*p);
44 p = strchr(p+1, '.');
45 if (p == NULL) break;
46 ++p;
47 if (*p == '\0') break;
48 }
49 return rclass;
50 }
51
52 static gboolean read_int(XrmDatabase db, char *rname, int *value)
53 {
54 gboolean ret = FALSE;
55 char *rclass = create_class_name(rname);
56 char *rettype, *end;
57 XrmValue retvalue;
58
59 if (XrmGetResource(db, rname, rclass, &rettype, &retvalue) &&
60 retvalue.addr != NULL) {
61 *value = (int)strtol(retvalue.addr, &end, 10);
62 if (end != retvalue.addr)
63 ret = TRUE;
64 }
65
66 g_free(rclass);
67 return ret;
68 }
69
70 static gboolean read_string(XrmDatabase db, char *rname, char **value)
71 {
72 gboolean ret = FALSE;
73 char *rclass = create_class_name(rname);
74 char *rettype;
75 XrmValue retvalue;
76
77 if (XrmGetResource(db, rname, rclass, &rettype, &retvalue) &&
78 retvalue.addr != NULL) {
79 *value = g_strdup(retvalue.addr);
80 ret = TRUE;
81 }
82
83 g_free(rclass);
84 return ret;
85 }
86
87 static gboolean read_color(XrmDatabase db, char *rname, color_rgb **value)
88 {
89 gboolean ret = FALSE;
90 char *rclass = create_class_name(rname);
91 char *rettype;
92 XrmValue retvalue;
93
94 if (XrmGetResource(db, rname, rclass, &rettype, &retvalue) &&
95 retvalue.addr != NULL) {
96 color_rgb *c = color_parse(retvalue.addr);
97 if (c != NULL) {
98 *value = c;
99 ret = TRUE;
100 }
101 }
102
103 g_free(rclass);
104 return ret;
105 }
106
107 static gboolean read_mask(XrmDatabase db, char *rname, pixmap_mask **value)
108 {
109 gboolean ret = FALSE;
110 char *rclass = create_class_name(rname);
111 char *rettype;
112 char *s;
113 char *button_dir;
114 XrmValue retvalue;
115 int hx, hy; /* ignored */
116 unsigned int w, h;
117 unsigned char *b;
118
119 if (XrmGetResource(db, rname, rclass, &rettype, &retvalue) &&
120 retvalue.addr != NULL) {
121
122 button_dir = g_strdup_printf("%s_buttons", engine_theme);
123
124 s = g_build_filename(g_get_home_dir(), ".openbox", "themes",
125 "openbox", button_dir, retvalue.addr, NULL);
126
127 if (XReadBitmapFileData(s, &w, &h, &b, &hx, &hy) == BitmapSuccess)
128 ret = TRUE;
129 else {
130 g_free(s);
131 s = g_build_filename(THEMEDIR, button_dir, retvalue.addr, NULL);
132
133 if (XReadBitmapFileData(s, &w, &h, &b, &hx, &hy) == BitmapSuccess)
134 ret = TRUE;
135 else {
136 char *themename;
137
138 g_free(s);
139 themename = g_path_get_basename(engine_theme);
140 s = g_strdup_printf("%s_buttons/%s", engine_theme,
141 themename);
142 g_free(themename);
143 if (XReadBitmapFileData(s, &w, &h, &b, &hx, &hy) ==
144 BitmapSuccess)
145 ret = TRUE;
146 else
147 g_message("Unable to find bitmap '%s'", s);
148 }
149 }
150
151 if (ret) {
152 *value = pixmap_mask_new(w, h, (char*)b);
153 XFree(b);
154 }
155
156 g_free(s);
157 g_free(button_dir);
158 }
159
160 g_free(rclass);
161 return ret;
162 }
163
164 static void parse_appearance(char *tex, SurfaceColorType *grad,
165 ReliefType *relief, BevelType *bevel,
166 gboolean *interlaced, gboolean *border)
167 {
168 char *t;
169
170 /* convert to all lowercase */
171 for (t = tex; *t != '\0'; ++t)
172 *t = g_ascii_tolower(*t);
173
174 if (strstr(tex, "parentrelative") != NULL) {
175 *grad = Background_ParentRelative;
176 } else {
177 if (strstr(tex, "gradient") != NULL) {
178 if (strstr(tex, "crossdiagonal") != NULL)
179 *grad = Background_CrossDiagonal;
180 else if (strstr(tex, "rectangle") != NULL)
181 *grad = Background_Rectangle;
182 else if (strstr(tex, "pyramid") != NULL)
183 *grad = Background_Pyramid;
184 else if (strstr(tex, "pipecross") != NULL)
185 *grad = Background_PipeCross;
186 else if (strstr(tex, "elliptic") != NULL)
187 *grad = Background_Elliptic;
188 else if (strstr(tex, "horizontal") != NULL)
189 *grad = Background_Horizontal;
190 else if (strstr(tex, "vertical") != NULL)
191 *grad = Background_Vertical;
192 else
193 *grad = Background_Diagonal;
194 } else {
195 *grad = Background_Solid;
196 }
197
198 if (strstr(tex, "sunken") != NULL)
199 *relief = Sunken;
200 else if (strstr(tex, "flat") != NULL)
201 *relief = Flat;
202 else
203 *relief = Raised;
204
205 *border = FALSE;
206 if (*relief == Flat) {
207 if (strstr(tex, "border") != NULL)
208 *border = TRUE;
209 } else {
210 if (strstr(tex, "bevel2") != NULL)
211 *bevel = Bevel2;
212 else
213 *bevel = Bevel1;
214 }
215
216 if (strstr(tex, "interlaced") != NULL)
217 *interlaced = TRUE;
218 else
219 *interlaced = FALSE;
220 }
221 }
222
223
224 static gboolean read_appearance(XrmDatabase db, char *rname, Appearance *value)
225 {
226 gboolean ret = FALSE;
227 char *rclass = create_class_name(rname), *cname, *ctoname, *bcname;
228 char *rettype;
229 XrmValue retvalue;
230
231 cname = g_strconcat(rname, ".color", NULL);
232 ctoname = g_strconcat(rname, ".colorTo", NULL);
233 bcname = g_strconcat(rname, ".borderColor", NULL);
234
235 if (XrmGetResource(db, rname, rclass, &rettype, &retvalue) &&
236 retvalue.addr != NULL) {
237 parse_appearance(retvalue.addr,
238 &value->surface.data.planar.grad,
239 &value->surface.data.planar.relief,
240 &value->surface.data.planar.bevel,
241 &value->surface.data.planar.interlaced,
242 &value->surface.data.planar.border);
243 if (!read_color(db, cname, &value->surface.data.planar.primary))
244 value->surface.data.planar.primary = color_new(0, 0, 0);
245 if (!read_color(db, ctoname, &value->surface.data.planar.secondary))
246 value->surface.data.planar.secondary = color_new(0, 0, 0);
247 if (value->surface.data.planar.border)
248 if (!read_color(db, bcname,
249 &value->surface.data.planar.border_color))
250 value->surface.data.planar.border_color = color_new(0, 0, 0);
251 ret = TRUE;
252 }
253
254 g_free(bcname);
255 g_free(ctoname);
256 g_free(cname);
257 g_free(rclass);
258 return ret;
259 }
260
261 static void set_default_appearance(Appearance *a)
262 {
263 a->surface.data.planar.grad = Background_Solid;
264 a->surface.data.planar.relief = Flat;
265 a->surface.data.planar.bevel = Bevel1;
266 a->surface.data.planar.interlaced = FALSE;
267 a->surface.data.planar.border = FALSE;
268 a->surface.data.planar.primary = color_new(0, 0, 0);
269 a->surface.data.planar.secondary = color_new(0, 0, 0);
270 }
271
272 gboolean obtheme_load()
273 {
274 XrmDatabase db = NULL;
275 Justify winjust;
276 char *winjuststr;
277
278 if (engine_theme) {
279 db = loaddb(engine_theme);
280 if (db == NULL) {
281 g_warning("Failed to load the theme '%s'", engine_theme);
282 g_message("Falling back to the default: '%s'", DEFAULT_THEME);
283 }
284 }
285 if (db == NULL) {
286 db = loaddb(DEFAULT_THEME);
287 if (db == NULL) {
288 g_warning("Failed to load the theme '%s'.", DEFAULT_THEME);
289 return FALSE;
290 }
291 /* set it to what was loaded */
292 g_free(engine_theme);
293 engine_theme = g_strdup(DEFAULT_THEME);
294 }
295
296 /* load the font, not from the theme file tho, its in the config */
297
298 ob_s_winfont = font_open(engine_font);
299 ob_s_winfont_height = font_height(ob_s_winfont, engine_shadow,
300 engine_shadow_offset);
301
302 winjust = Justify_Left;
303 if (read_string(db, "window.justify", &winjuststr)) {
304 if (!g_ascii_strcasecmp(winjuststr, "right"))
305 winjust = Justify_Right;
306 else if (!g_ascii_strcasecmp(winjuststr, "center"))
307 winjust = Justify_Center;
308 g_free(winjuststr);
309 }
310
311 if (!read_int(db, "handleWidth", &ob_s_handle_height) ||
312 ob_s_handle_height < 0 || ob_s_handle_height > 100)
313 ob_s_handle_height = 6;
314 if (!read_int(db, "bevelWidth", &ob_s_bevel) ||
315 ob_s_bevel <= 0 || ob_s_bevel > 100) ob_s_bevel = 3;
316 if (!read_int(db, "borderWidth", &ob_s_bwidth) ||
317 ob_s_bwidth < 0 || ob_s_bwidth > 100) ob_s_bwidth = 1;
318 if (!read_int(db, "frameWidth", &ob_s_cbwidth) ||
319 ob_s_cbwidth < 0 || ob_s_cbwidth > 100) ob_s_cbwidth = ob_s_bevel;
320
321 if (!read_color(db, "borderColor", &ob_s_b_color))
322 ob_s_b_color = color_new(0, 0, 0);
323 if (!read_color(db, "window.frame.focusColor", &ob_s_cb_focused_color))
324 ob_s_cb_focused_color = color_new(0xff, 0xff, 0xff);
325 if (!read_color(db, "window.frame.unfocusColor", &ob_s_cb_unfocused_color))
326 ob_s_cb_unfocused_color = color_new(0xff, 0xff, 0xff);
327 if (!read_color(db, "window.label.focus.textColor",
328 &ob_s_title_focused_color))
329 ob_s_title_focused_color = color_new(0x0, 0x0, 0x0);
330 if (!read_color(db, "window.label.unfocus.textColor",
331 &ob_s_title_unfocused_color))
332 ob_s_title_unfocused_color = color_new(0xff, 0xff, 0xff);
333 if (!read_color(db, "window.button.focus.picColor",
334 &ob_s_titlebut_focused_color))
335 ob_s_titlebut_focused_color = color_new(0, 0, 0);
336 if (!read_color(db, "window.button.unfocus.picColor",
337 &ob_s_titlebut_unfocused_color))
338 ob_s_titlebut_unfocused_color = color_new(0xff, 0xff, 0xff);
339
340 if (read_mask(db, "window.button.max.mask", &ob_s_max_unset_mask)) {
341 if (!read_mask(db, "window.button.max.toggled.mask",
342 &ob_s_max_set_mask)) {
343 ob_s_max_set_mask = pixmap_mask_copy(ob_s_max_unset_mask);
344 }
345 } else {
346 {
347 char data[] = { 0x7f, 0x7f, 0x7f, 0x41, 0x41, 0x41, 0x7f };
348 ob_s_max_unset_mask = pixmap_mask_new(7, 7, data);
349 }
350 {
351 char data[] = { 0x7c, 0x44, 0x47, 0x47, 0x7f, 0x1f, 0x1f };
352 ob_s_max_set_mask = pixmap_mask_new(7, 7, data);
353 }
354 }
355
356 if (!read_mask(db, "window.button.icon.mask",
357 &ob_s_iconify_mask)) {
358 char data[] = { 0x00, 0x00, 0x00, 0x00, 0x7f, 0x7f, 0x7f };
359 ob_s_iconify_mask = pixmap_mask_new(7, 7, data);
360 }
361
362 if (read_mask(db, "window.button.stick.mask",
363 &ob_s_desk_unset_mask)) {
364 if (!read_mask(db, "window.button.stick.toggled.mask",
365 &ob_s_desk_set_mask)) {
366 ob_s_desk_set_mask =
367 pixmap_mask_copy(ob_s_desk_unset_mask);
368 }
369 } else {
370 {
371 char data[] = { 0x63, 0x63, 0x00, 0x00, 0x00, 0x63, 0x63 };
372 ob_s_desk_unset_mask = pixmap_mask_new(7, 7, data);
373 }
374 {
375 char data[] = { 0x00, 0x36, 0x36, 0x08, 0x36, 0x36, 0x00 };
376 ob_s_desk_set_mask = pixmap_mask_new(7, 7, data);
377 }
378 }
379
380 if (read_mask(db, "window.button.shade.mask",
381 &ob_s_shade_unset_mask)) {
382 if (!read_mask(db, "window.button.shade.toggled.mask",
383 &ob_s_shade_set_mask)) {
384 ob_s_shade_set_mask =
385 pixmap_mask_copy(ob_s_shade_unset_mask);
386 }
387 } else {
388 {
389 char data[] = { 0x7f, 0x7f, 0x7f, 0x00, 0x00, 0x00, 0x00 };
390 ob_s_shade_unset_mask = pixmap_mask_new(7, 7, data);
391 }
392 {
393 char data[] = { 0x7f, 0x7f, 0x7f, 0x00, 0x00, 0x00, 0x7f };
394 ob_s_shade_set_mask = pixmap_mask_new(7, 7, data);
395 }
396 }
397
398 if (!read_mask(db, "window.button.close.mask",
399 &ob_s_close_mask)) {
400 char data[] = { 0x63, 0x77, 0x3e, 0x1c, 0x3e, 0x77, 0x63 };
401 ob_s_close_mask = pixmap_mask_new(7, 7, data);
402 }
403
404 if (!read_appearance(db, "window.title.focus", ob_a_focused_title))
405 set_default_appearance(ob_a_focused_title);
406 if (!read_appearance(db, "window.title.unfocus", ob_a_unfocused_title))
407 set_default_appearance(ob_a_unfocused_title);
408 if (!read_appearance(db, "window.label.focus", ob_a_focused_label))
409 set_default_appearance(ob_a_focused_label);
410 if (!read_appearance(db, "window.label.unfocus", ob_a_unfocused_label))
411 set_default_appearance(ob_a_unfocused_label);
412 if (!read_appearance(db, "window.handle.focus", ob_a_focused_handle))
413 set_default_appearance(ob_a_focused_handle);
414 if (!read_appearance(db, "window.handle.unfocus", ob_a_unfocused_handle))
415 set_default_appearance(ob_a_unfocused_handle);
416 if (!read_appearance(db, "window.grip.focus", ob_a_focused_grip))
417 set_default_appearance(ob_a_focused_grip);
418 if (!read_appearance(db, "window.grip.unfocus", ob_a_unfocused_grip))
419 set_default_appearance(ob_a_unfocused_grip);
420
421 if (!read_appearance(db, "window.button.pressed.focus",
422 ob_a_focused_pressed_max))
423 if (!read_appearance(db, "window.button.pressed",
424 ob_a_focused_pressed_max))
425 set_default_appearance(ob_a_focused_pressed_max);
426 if (!read_appearance(db, "window.button.pressed.unfocus",
427 ob_a_unfocused_pressed_max))
428 if (!read_appearance(db, "window.button.pressed",
429 ob_a_unfocused_pressed_max))
430 set_default_appearance(ob_a_unfocused_pressed_max);
431 if (!read_appearance(db, "window.button.focus",
432 ob_a_focused_unpressed_max))
433 set_default_appearance(ob_a_focused_unpressed_max);
434 if (!read_appearance(db, "window.button.unfocus",
435 ob_a_unfocused_unpressed_max))
436 set_default_appearance(ob_a_unfocused_unpressed_max);
437
438 ob_a_unfocused_unpressed_close =
439 appearance_copy(ob_a_unfocused_unpressed_max);
440 ob_a_unfocused_pressed_close = appearance_copy(ob_a_unfocused_pressed_max);
441 ob_a_focused_unpressed_close = appearance_copy(ob_a_focused_unpressed_max);
442 ob_a_focused_pressed_close = appearance_copy(ob_a_focused_pressed_max);
443 ob_a_unfocused_unpressed_desk =
444 appearance_copy(ob_a_unfocused_unpressed_max);
445 ob_a_unfocused_pressed_desk = appearance_copy(ob_a_unfocused_pressed_max);
446 ob_a_unfocused_pressed_set_desk =
447 appearance_copy(ob_a_unfocused_pressed_max);
448 ob_a_focused_unpressed_desk = appearance_copy(ob_a_focused_unpressed_max);
449 ob_a_focused_pressed_desk = appearance_copy(ob_a_focused_pressed_max);
450 ob_a_focused_pressed_set_desk = appearance_copy(ob_a_focused_pressed_max);
451 ob_a_unfocused_unpressed_shade =
452 appearance_copy(ob_a_unfocused_unpressed_max);
453 ob_a_unfocused_pressed_shade = appearance_copy(ob_a_unfocused_pressed_max);
454 ob_a_unfocused_pressed_set_shade =
455 appearance_copy(ob_a_unfocused_pressed_max);
456 ob_a_focused_unpressed_shade = appearance_copy(ob_a_focused_unpressed_max);
457 ob_a_focused_pressed_shade = appearance_copy(ob_a_focused_pressed_max);
458 ob_a_focused_pressed_set_shade = appearance_copy(ob_a_focused_pressed_max);
459 ob_a_unfocused_unpressed_iconify =
460 appearance_copy(ob_a_unfocused_unpressed_max);
461 ob_a_unfocused_pressed_iconify =
462 appearance_copy(ob_a_unfocused_pressed_max);
463 ob_a_focused_unpressed_iconify =
464 appearance_copy(ob_a_focused_unpressed_max);
465 ob_a_focused_pressed_iconify = appearance_copy(ob_a_focused_pressed_max);
466 ob_a_unfocused_pressed_set_max =
467 appearance_copy(ob_a_unfocused_pressed_max);
468 ob_a_focused_pressed_set_max = appearance_copy(ob_a_focused_pressed_max);
469
470 ob_a_icon->surface.data.planar.grad = Background_ParentRelative;
471
472 /* set up the textures */
473 ob_a_focused_label->texture[0].type = Text;
474 ob_a_focused_label->texture[0].data.text.justify = winjust;
475 ob_a_focused_label->texture[0].data.text.font = ob_s_winfont;
476 ob_a_focused_label->texture[0].data.text.shadow = engine_shadow;
477 ob_a_focused_label->texture[0].data.text.offset = engine_shadow_offset;
478 ob_a_focused_label->texture[0].data.text.tint = engine_shadow_tint;
479 ob_a_focused_label->texture[0].data.text.color = ob_s_title_focused_color;
480
481 ob_a_unfocused_label->texture[0].type = Text;
482 ob_a_unfocused_label->texture[0].data.text.justify = winjust;
483 ob_a_unfocused_label->texture[0].data.text.font = ob_s_winfont;
484 ob_a_unfocused_label->texture[0].data.text.shadow = engine_shadow;
485 ob_a_unfocused_label->texture[0].data.text.offset = engine_shadow_offset;
486 ob_a_unfocused_label->texture[0].data.text.tint = engine_shadow_tint;
487 ob_a_unfocused_label->texture[0].data.text.color =
488 ob_s_title_unfocused_color;
489
490 ob_a_focused_unpressed_max->texture[0].type =
491 ob_a_focused_pressed_max->texture[0].type =
492 ob_a_focused_pressed_set_max->texture[0].type =
493 ob_a_unfocused_unpressed_max->texture[0].type =
494 ob_a_unfocused_pressed_max->texture[0].type =
495 ob_a_unfocused_pressed_set_max->texture[0].type =
496 ob_a_focused_unpressed_close->texture[0].type =
497 ob_a_focused_pressed_close->texture[0].type =
498 ob_a_unfocused_unpressed_close->texture[0].type =
499 ob_a_unfocused_pressed_close->texture[0].type =
500 ob_a_focused_unpressed_desk->texture[0].type =
501 ob_a_focused_pressed_desk->texture[0].type =
502 ob_a_focused_pressed_set_desk->texture[0].type =
503 ob_a_unfocused_unpressed_desk->texture[0].type =
504 ob_a_unfocused_pressed_desk->texture[0].type =
505 ob_a_unfocused_pressed_set_desk->texture[0].type =
506 ob_a_focused_unpressed_shade->texture[0].type =
507 ob_a_focused_pressed_shade->texture[0].type =
508 ob_a_focused_pressed_set_shade->texture[0].type =
509 ob_a_unfocused_unpressed_shade->texture[0].type =
510 ob_a_unfocused_pressed_shade->texture[0].type =
511 ob_a_unfocused_pressed_set_shade->texture[0].type =
512 ob_a_focused_unpressed_iconify->texture[0].type =
513 ob_a_focused_pressed_iconify->texture[0].type =
514 ob_a_unfocused_unpressed_iconify->texture[0].type =
515 ob_a_unfocused_pressed_iconify->texture[0].type = Bitmask;
516 ob_a_focused_unpressed_max->texture[0].data.mask.mask =
517 ob_a_unfocused_unpressed_max->texture[0].data.mask.mask =
518 ob_a_focused_pressed_max->texture[0].data.mask.mask =
519 ob_a_unfocused_pressed_max->texture[0].data.mask.mask =
520 ob_s_max_unset_mask;
521 ob_a_focused_pressed_set_max->texture[0].data.mask.mask =
522 ob_a_unfocused_pressed_set_max->texture[0].data.mask.mask =
523 ob_s_max_set_mask;
524 ob_a_focused_pressed_close->texture[0].data.mask.mask =
525 ob_a_unfocused_pressed_close->texture[0].data.mask.mask =
526 ob_a_focused_unpressed_close->texture[0].data.mask.mask =
527 ob_a_unfocused_unpressed_close->texture[0].data.mask.mask =
528 ob_s_close_mask;
529 ob_a_focused_unpressed_desk->texture[0].data.mask.mask =
530 ob_a_unfocused_unpressed_desk->texture[0].data.mask.mask =
531 ob_a_focused_pressed_desk->texture[0].data.mask.mask =
532 ob_a_unfocused_pressed_desk->texture[0].data.mask.mask =
533 ob_s_desk_unset_mask;
534 ob_a_focused_pressed_set_desk->texture[0].data.mask.mask =
535 ob_a_unfocused_pressed_set_desk->texture[0].data.mask.mask =
536 ob_s_desk_set_mask;
537 ob_a_focused_unpressed_shade->texture[0].data.mask.mask =
538 ob_a_unfocused_unpressed_shade->texture[0].data.mask.mask =
539 ob_a_focused_pressed_shade->texture[0].data.mask.mask =
540 ob_a_unfocused_pressed_shade->texture[0].data.mask.mask =
541 ob_s_shade_unset_mask;
542 ob_a_focused_pressed_set_shade->texture[0].data.mask.mask =
543 ob_a_unfocused_pressed_set_shade->texture[0].data.mask.mask =
544 ob_s_shade_set_mask;
545 ob_a_focused_unpressed_iconify->texture[0].data.mask.mask =
546 ob_a_unfocused_unpressed_iconify->texture[0].data.mask.mask =
547 ob_a_focused_pressed_iconify->texture[0].data.mask.mask =
548 ob_a_unfocused_pressed_iconify->texture[0].data.mask.mask =
549 ob_s_iconify_mask;
550 ob_a_focused_unpressed_max->texture[0].data.mask.color =
551 ob_a_focused_pressed_max->texture[0].data.mask.color =
552 ob_a_focused_pressed_set_max->texture[0].data.mask.color =
553 ob_a_focused_unpressed_close->texture[0].data.mask.color =
554 ob_a_focused_pressed_close->texture[0].data.mask.color =
555 ob_a_focused_unpressed_desk->texture[0].data.mask.color =
556 ob_a_focused_pressed_desk->texture[0].data.mask.color =
557 ob_a_focused_pressed_set_desk->texture[0].data.mask.color =
558 ob_a_focused_unpressed_shade->texture[0].data.mask.color =
559 ob_a_focused_pressed_shade->texture[0].data.mask.color =
560 ob_a_focused_pressed_set_shade->texture[0].data.mask.color =
561 ob_a_focused_unpressed_iconify->texture[0].data.mask.color =
562 ob_a_focused_pressed_iconify->texture[0].data.mask.color =
563 ob_s_titlebut_focused_color;
564 ob_a_unfocused_unpressed_max->texture[0].data.mask.color =
565 ob_a_unfocused_pressed_max->texture[0].data.mask.color =
566 ob_a_unfocused_pressed_set_max->texture[0].data.mask.color =
567 ob_a_unfocused_unpressed_close->texture[0].data.mask.color =
568 ob_a_unfocused_pressed_close->texture[0].data.mask.color =
569 ob_a_unfocused_unpressed_desk->texture[0].data.mask.color =
570 ob_a_unfocused_pressed_desk->texture[0].data.mask.color =
571 ob_a_unfocused_pressed_set_desk->texture[0].data.mask.color =
572 ob_a_unfocused_unpressed_shade->texture[0].data.mask.color =
573 ob_a_unfocused_pressed_shade->texture[0].data.mask.color =
574 ob_a_unfocused_pressed_set_shade->texture[0].data.mask.color =
575 ob_a_unfocused_unpressed_iconify->texture[0].data.mask.color =
576 ob_a_unfocused_pressed_iconify->texture[0].data.mask.color =
577 ob_s_titlebut_unfocused_color;
578
579 XrmDestroyDatabase(db);
580 return TRUE;
581 }
582
583
This page took 0.068654 seconds and 4 git commands to generate.