]> Dogcows Code - chaz/openbox/blob - engines/openbox/obtheme.c
use 'toggled' in the new button masks' resource names instead of 'pressed' to be...
[chaz/openbox] / engines / openbox / obtheme.c
1 #include "obengine.h"
2 #include "../../kernel/config.h"
3 #include "../../kernel/openbox.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 ConfigValue theme;
119
120 if (XrmGetResource(db, rname, rclass, &rettype, &retvalue) &&
121 retvalue.addr != NULL) {
122 if (!config_get("theme", Config_String, &theme))
123 g_assert_not_reached(); /* where's the default!? its not set? */
124
125 button_dir = g_strdup_printf("%s_buttons", theme.string);
126
127 s = g_build_filename(g_get_home_dir(), ".openbox", "themes",
128 "openbox", button_dir, retvalue.addr, NULL);
129
130 if (XReadBitmapFileData(s, &w, &h, &b, &hx, &hy) == BitmapSuccess)
131 ret = TRUE;
132 else {
133 g_free(s);
134 s = g_build_filename(THEMEDIR, button_dir, retvalue.addr, NULL);
135
136 if (XReadBitmapFileData(s, &w, &h, &b, &hx, &hy) == BitmapSuccess)
137 ret = TRUE;
138 else {
139 char *themename;
140
141 g_free(s);
142 themename = g_path_get_basename(theme.string);
143 s = g_strdup_printf("%s_buttons/%s", theme.string,
144 themename);
145 g_free(themename);
146 if (XReadBitmapFileData(s, &w, &h, &b, &hx, &hy) ==
147 BitmapSuccess)
148 ret = TRUE;
149 else
150 g_message("Unable to find bitmap '%s'", s);
151 }
152 }
153
154 if (ret) {
155 *value = pixmap_mask_new(w, h, (char*)b);
156 XFree(b);
157 }
158
159 g_free(s);
160 g_free(button_dir);
161 }
162
163 g_free(rclass);
164 return ret;
165 }
166
167 static void parse_appearance(char *tex, SurfaceColorType *grad,
168 ReliefType *relief, BevelType *bevel,
169 gboolean *interlaced, gboolean *border)
170 {
171 char *t;
172
173 /* convert to all lowercase */
174 for (t = tex; *t != '\0'; ++t)
175 *t = g_ascii_tolower(*t);
176
177 if (strstr(tex, "parentrelative") != NULL) {
178 *grad = Background_ParentRelative;
179 } else {
180 if (strstr(tex, "gradient") != NULL) {
181 if (strstr(tex, "crossdiagonal") != NULL)
182 *grad = Background_CrossDiagonal;
183 else if (strstr(tex, "rectangle") != NULL)
184 *grad = Background_Rectangle;
185 else if (strstr(tex, "pyramid") != NULL)
186 *grad = Background_Pyramid;
187 else if (strstr(tex, "pipecross") != NULL)
188 *grad = Background_PipeCross;
189 else if (strstr(tex, "elliptic") != NULL)
190 *grad = Background_Elliptic;
191 else if (strstr(tex, "horizontal") != NULL)
192 *grad = Background_Horizontal;
193 else if (strstr(tex, "vertical") != NULL)
194 *grad = Background_Vertical;
195 else
196 *grad = Background_Diagonal;
197 } else {
198 *grad = Background_Solid;
199 }
200
201 if (strstr(tex, "sunken") != NULL)
202 *relief = Sunken;
203 else if (strstr(tex, "flat") != NULL)
204 *relief = Flat;
205 else
206 *relief = Raised;
207
208 *border = FALSE;
209 if (*relief == Flat) {
210 if (strstr(tex, "border") != NULL)
211 *border = TRUE;
212 } else {
213 if (strstr(tex, "bevel2") != NULL)
214 *bevel = Bevel2;
215 else
216 *bevel = Bevel1;
217 }
218
219 if (strstr(tex, "interlaced") != NULL)
220 *interlaced = TRUE;
221 else
222 *interlaced = FALSE;
223 }
224 }
225
226
227 static gboolean read_appearance(XrmDatabase db, char *rname, Appearance *value)
228 {
229 gboolean ret = FALSE;
230 char *rclass = create_class_name(rname), *cname, *ctoname, *bcname;
231 char *rettype;
232 XrmValue retvalue;
233
234 cname = g_strconcat(rname, ".color", NULL);
235 ctoname = g_strconcat(rname, ".colorTo", NULL);
236 bcname = g_strconcat(rname, ".borderColor", NULL);
237
238 if (XrmGetResource(db, rname, rclass, &rettype, &retvalue) &&
239 retvalue.addr != NULL) {
240 parse_appearance(retvalue.addr,
241 &value->surface.data.planar.grad,
242 &value->surface.data.planar.relief,
243 &value->surface.data.planar.bevel,
244 &value->surface.data.planar.interlaced,
245 &value->surface.data.planar.border);
246 if (!read_color(db, cname, &value->surface.data.planar.primary))
247 value->surface.data.planar.primary = color_new(0, 0, 0);
248 if (!read_color(db, ctoname, &value->surface.data.planar.secondary))
249 value->surface.data.planar.secondary = color_new(0, 0, 0);
250 if (value->surface.data.planar.border)
251 if (!read_color(db, bcname,
252 &value->surface.data.planar.border_color))
253 value->surface.data.planar.border_color = color_new(0, 0, 0);
254 ret = TRUE;
255 }
256
257 g_free(bcname);
258 g_free(ctoname);
259 g_free(cname);
260 g_free(rclass);
261 return ret;
262 }
263
264 static void set_default_appearance(Appearance *a)
265 {
266 a->surface.data.planar.grad = Background_Solid;
267 a->surface.data.planar.relief = Flat;
268 a->surface.data.planar.bevel = Bevel1;
269 a->surface.data.planar.interlaced = FALSE;
270 a->surface.data.planar.border = FALSE;
271 a->surface.data.planar.primary = color_new(0, 0, 0);
272 a->surface.data.planar.secondary = color_new(0, 0, 0);
273 }
274
275 gboolean obtheme_load()
276 {
277 XrmDatabase db = NULL;
278 Justify winjust;
279 char *winjuststr;
280 ConfigValue theme, shadow, offset, font;
281
282 if (config_get("theme", Config_String, &theme)) {
283 db = loaddb(theme.string);
284 if (db == NULL) {
285 g_warning("Failed to load the theme '%s'", theme.string);
286 g_message("Falling back to the default: '%s'", DEFAULT_THEME);
287 }
288 }
289 if (db == NULL) {
290 db = loaddb(DEFAULT_THEME);
291 if (db == NULL) {
292 g_warning("Failed to load the theme '%s'.", DEFAULT_THEME);
293 return FALSE;
294 }
295 /* change to reflect what was actually loaded */
296 theme.string = DEFAULT_THEME;
297 config_set("theme", Config_String, theme);
298 }
299
300 /* load the font, not from the theme file tho, its in the config */
301
302 if (!config_get("font.shadow", Config_Bool, &shadow)) {
303 shadow.bool = TRUE; /* default */
304 config_set("font.shadow", Config_Bool, shadow);
305 }
306 ob_s_winfont_shadow = shadow.bool;
307 if (!config_get("font.shadow.offset", Config_Integer, &offset) ||
308 offset.integer < 0 || offset.integer >= 10) {
309 offset.integer = 1; /* default */
310 config_set("font.shadow.offset", Config_Integer, offset);
311 }
312 ob_s_winfont_shadow_offset = offset.integer;
313 if (!config_get("font", Config_String, &font)) {
314 font.string = DEFAULT_FONT;
315 config_set("font", Config_String, font);
316 }
317 ob_s_winfont = font_open(font.string);
318 ob_s_winfont_height = font_height(ob_s_winfont, ob_s_winfont_shadow,
319 ob_s_winfont_shadow_offset);
320
321 winjust = Justify_Left;
322 if (read_string(db, "window.justify", &winjuststr)) {
323 if (!g_ascii_strcasecmp(winjuststr, "right"))
324 winjust = Justify_Right;
325 else if (!g_ascii_strcasecmp(winjuststr, "center"))
326 winjust = Justify_Center;
327 g_free(winjuststr);
328 }
329
330 if (!read_int(db, "handleWidth", &ob_s_handle_height) ||
331 ob_s_handle_height < 0 || ob_s_handle_height > 100) ob_s_handle_height = 6;
332 if (!read_int(db, "bevelWidth", &ob_s_bevel) ||
333 ob_s_bevel <= 0 || ob_s_bevel > 100) ob_s_bevel = 3;
334 if (!read_int(db, "borderWidth", &ob_s_bwidth) ||
335 ob_s_bwidth < 0 || ob_s_bwidth > 100) ob_s_bwidth = 1;
336 if (!read_int(db, "frameWidth", &ob_s_cbwidth) ||
337 ob_s_cbwidth < 0 || ob_s_cbwidth > 100) ob_s_cbwidth = ob_s_bevel;
338
339 if (!read_color(db, "borderColor", &ob_s_b_color))
340 ob_s_b_color = color_new(0, 0, 0);
341 if (!read_color(db, "window.frame.focusColor", &ob_s_cb_focused_color))
342 ob_s_cb_focused_color = color_new(0xff, 0xff, 0xff);
343 if (!read_color(db, "window.frame.unfocusColor", &ob_s_cb_unfocused_color))
344 ob_s_cb_unfocused_color = color_new(0xff, 0xff, 0xff);
345 if (!read_color(db, "window.label.focus.textColor",
346 &ob_s_title_focused_color))
347 ob_s_title_focused_color = color_new(0xff, 0xff, 0xff);
348 if (!read_color(db, "window.label.unfocus.textColor",
349 &ob_s_title_unfocused_color))
350 ob_s_title_unfocused_color = color_new(0xff, 0xff, 0xff);
351 if (!read_color(db, "window.button.focus.picColor",
352 &ob_s_titlebut_focused_color))
353 ob_s_titlebut_focused_color = color_new(0, 0, 0);
354 if (!read_color(db, "window.button.unfocus.picColor",
355 &ob_s_titlebut_unfocused_color))
356 ob_s_titlebut_unfocused_color = color_new(0xff, 0xff, 0xff);
357
358 if (read_mask(db, "window.button.max.mask", &ob_s_max_unset_mask)) {
359 if (!read_mask(db, "window.button.max.toggled.mask",
360 &ob_s_max_set_mask)) {
361 ob_s_max_set_mask = pixmap_mask_copy(ob_s_max_unset_mask);
362 }
363 } else {
364 {
365 char data[] = { 0x3f, 0x3f, 0x21, 0x21, 0x21, 0x3f };
366 ob_s_max_unset_mask = pixmap_mask_new(6, 6, data);
367 }
368 {
369 char data[] = { 0x3c, 0x24, 0x27, 0x3f, 0x0f, 0x0f };
370 ob_s_max_set_mask = pixmap_mask_new(6, 6, data);
371 }
372 }
373
374 if (!read_mask(db, "window.button.icon.mask",
375 &ob_s_iconify_mask)) {
376 char data[] = { 0x00, 0x00, 0x00, 0x3f, 0x3f, 0x3f };
377 ob_s_iconify_mask = pixmap_mask_new(6, 6, data);
378 }
379
380 if (read_mask(db, "window.button.stick.mask",
381 &ob_s_desk_unset_mask)) {
382 if (!read_mask(db, "window.button.stick.toggled.mask",
383 &ob_s_desk_set_mask)) {
384 ob_s_desk_set_mask =
385 pixmap_mask_copy(ob_s_desk_unset_mask);
386 }
387 } else {
388 {
389 char data[] = { 0x33, 0x33, 0x00, 0x00, 0x33, 0x33 };
390 ob_s_desk_unset_mask = pixmap_mask_new(6, 6, data);
391 }
392 {
393 char data[] = { 0x0c, 0x0c, 0x3f, 0x3f, 0x0c, 0x0c };
394 ob_s_desk_set_mask = pixmap_mask_new(6, 6, data);
395 }
396 }
397
398 if (!read_mask(db, "window.button.close.mask",
399 &ob_s_close_mask)) {
400 char data[] = { 0x33, 0x3f, 0x1e, 0x1e, 0x3f, 0x33 };
401 ob_s_close_mask = pixmap_mask_new(6, 6, 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_iconify =
452 appearance_copy(ob_a_unfocused_unpressed_max);
453 ob_a_unfocused_pressed_iconify =
454 appearance_copy(ob_a_unfocused_pressed_max);
455 ob_a_focused_unpressed_iconify =
456 appearance_copy(ob_a_focused_unpressed_max);
457 ob_a_focused_pressed_iconify = appearance_copy(ob_a_focused_pressed_max);
458 ob_a_unfocused_pressed_set_max =
459 appearance_copy(ob_a_unfocused_pressed_max);
460 ob_a_focused_pressed_set_max = appearance_copy(ob_a_focused_pressed_max);
461
462 ob_a_icon->surface.data.planar.grad = Background_ParentRelative;
463
464 /* set up the textures */
465 ob_a_focused_label->texture[0].type = Text;
466 ob_a_focused_label->texture[0].data.text.justify = winjust;
467 ob_a_focused_label->texture[0].data.text.font = ob_s_winfont;
468 ob_a_focused_label->texture[0].data.text.shadow = ob_s_winfont_shadow;
469 ob_a_focused_label->texture[0].data.text.offset =
470 ob_s_winfont_shadow_offset;
471 ob_a_focused_label->texture[0].data.text.color = ob_s_title_focused_color;
472
473 ob_a_unfocused_label->texture[0].type = Text;
474 ob_a_unfocused_label->texture[0].data.text.justify = winjust;
475 ob_a_unfocused_label->texture[0].data.text.font = ob_s_winfont;
476 ob_a_unfocused_label->texture[0].data.text.shadow = ob_s_winfont_shadow;
477 ob_a_unfocused_label->texture[0].data.text.offset =
478 ob_s_winfont_shadow_offset;
479 ob_a_unfocused_label->texture[0].data.text.color =
480 ob_s_title_unfocused_color;
481
482 ob_a_focused_unpressed_max->texture[0].type =
483 ob_a_focused_pressed_max->texture[0].type =
484 ob_a_focused_pressed_set_max->texture[0].type =
485 ob_a_unfocused_unpressed_max->texture[0].type =
486 ob_a_unfocused_pressed_max->texture[0].type =
487 ob_a_unfocused_pressed_set_max->texture[0].type =
488 ob_a_focused_unpressed_close->texture[0].type =
489 ob_a_focused_pressed_close->texture[0].type =
490 ob_a_unfocused_unpressed_close->texture[0].type =
491 ob_a_unfocused_pressed_close->texture[0].type =
492 ob_a_focused_unpressed_desk->texture[0].type =
493 ob_a_focused_pressed_desk->texture[0].type =
494 ob_a_focused_pressed_set_desk->texture[0].type =
495 ob_a_unfocused_unpressed_desk->texture[0].type =
496 ob_a_unfocused_pressed_desk->texture[0].type =
497 ob_a_unfocused_pressed_set_desk->texture[0].type =
498 ob_a_focused_unpressed_iconify->texture[0].type =
499 ob_a_focused_pressed_iconify->texture[0].type =
500 ob_a_unfocused_unpressed_iconify->texture[0].type =
501 ob_a_unfocused_pressed_iconify->texture[0].type = Bitmask;
502 ob_a_focused_unpressed_max->texture[0].data.mask.mask =
503 ob_a_unfocused_unpressed_max->texture[0].data.mask.mask =
504 ob_a_focused_pressed_max->texture[0].data.mask.mask =
505 ob_a_unfocused_pressed_max->texture[0].data.mask.mask =
506 ob_s_max_unset_mask;
507 ob_a_focused_pressed_set_max->texture[0].data.mask.mask =
508 ob_a_unfocused_pressed_set_max->texture[0].data.mask.mask =
509 ob_s_max_set_mask;
510 ob_a_focused_pressed_close->texture[0].data.mask.mask =
511 ob_a_unfocused_pressed_close->texture[0].data.mask.mask =
512 ob_a_focused_unpressed_close->texture[0].data.mask.mask =
513 ob_a_unfocused_unpressed_close->texture[0].data.mask.mask =
514 ob_s_close_mask;
515 ob_a_focused_unpressed_desk->texture[0].data.mask.mask =
516 ob_a_unfocused_unpressed_desk->texture[0].data.mask.mask =
517 ob_a_focused_pressed_desk->texture[0].data.mask.mask =
518 ob_a_unfocused_pressed_desk->texture[0].data.mask.mask =
519 ob_s_desk_unset_mask;
520 ob_a_focused_pressed_set_desk->texture[0].data.mask.mask =
521 ob_a_unfocused_pressed_set_desk->texture[0].data.mask.mask =
522 ob_s_desk_set_mask;
523 ob_a_focused_unpressed_iconify->texture[0].data.mask.mask =
524 ob_a_unfocused_unpressed_iconify->texture[0].data.mask.mask =
525 ob_a_focused_pressed_iconify->texture[0].data.mask.mask =
526 ob_a_unfocused_pressed_iconify->texture[0].data.mask.mask =
527 ob_s_iconify_mask;
528 ob_a_focused_unpressed_max->texture[0].data.mask.color =
529 ob_a_focused_pressed_max->texture[0].data.mask.color =
530 ob_a_focused_pressed_set_max->texture[0].data.mask.color =
531 ob_a_focused_unpressed_close->texture[0].data.mask.color =
532 ob_a_focused_pressed_close->texture[0].data.mask.color =
533 ob_a_focused_unpressed_desk->texture[0].data.mask.color =
534 ob_a_focused_pressed_desk->texture[0].data.mask.color =
535 ob_a_focused_pressed_set_desk->texture[0].data.mask.color =
536 ob_a_focused_unpressed_iconify->texture[0].data.mask.color =
537 ob_a_focused_pressed_iconify->texture[0].data.mask.color =
538 ob_s_titlebut_focused_color;
539 ob_a_unfocused_unpressed_max->texture[0].data.mask.color =
540 ob_a_unfocused_pressed_max->texture[0].data.mask.color =
541 ob_a_unfocused_pressed_set_max->texture[0].data.mask.color =
542 ob_a_unfocused_unpressed_close->texture[0].data.mask.color =
543 ob_a_unfocused_pressed_close->texture[0].data.mask.color =
544 ob_a_unfocused_unpressed_desk->texture[0].data.mask.color =
545 ob_a_unfocused_pressed_desk->texture[0].data.mask.color =
546 ob_a_unfocused_pressed_set_desk->texture[0].data.mask.color =
547 ob_a_unfocused_unpressed_iconify->texture[0].data.mask.color =
548 ob_a_unfocused_pressed_iconify->texture[0].data.mask.color =
549 ob_s_titlebut_unfocused_color;
550
551 XrmDestroyDatabase(db);
552 return TRUE;
553 }
554
555
This page took 0.071022 seconds and 5 git commands to generate.