]> icculus.org git repositories - mikachu/openbox.git/blob - render/theme.c
remove the title separator width thing.
[mikachu/openbox.git] / render / theme.c
1 /* -*- indent-tabs-mode: nil; tab-width: 4; c-basic-offset: 4; -*-
2
3    theme.c for the Openbox window manager
4    Copyright (c) 2006        Mikael Magnusson
5    Copyright (c) 2003-2007   Dana Jansens
6
7    This program is free software; you can redistribute it and/or modify
8    it under the terms of the GNU General Public License as published by
9    the Free Software Foundation; either version 2 of the License, or
10    (at your option) any later version.
11
12    This program is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15    GNU General Public License for more details.
16
17    See the COPYING file for a copy of the GNU General Public License.
18 */
19
20 #include "render.h"
21 #include "color.h"
22 #include "font.h"
23 #include "mask.h"
24 #include "theme.h"
25 #include "icon.h"
26 #include "parser/parse.h"
27
28 #include <X11/Xlib.h>
29 #include <ctype.h>
30 #include <stdlib.h>
31 #include <string.h>
32
33 typedef struct {
34     xmlDocPtr doc;
35     const RrInstance *inst;
36     gchar *path;
37 } ParseState;
38
39 static void parse_style(gchar *tex, RrSurfaceColorType *grad,
40                         RrReliefType *relief, RrBevelType *bevel,
41                         gboolean *interlaced, gboolean *border,
42                         gboolean allow_trans);
43 static gboolean read_mask(ParseState *ps, const gchar *maskname,
44                           RrPixmapMask **value);
45 static RrPixel32* read_c_image(gint width, gint height, const guint8 *data);
46 static void set_default_appearance(RrAppearance *a);
47 static xmlNodePtr find_node(xmlNodePtr n, const gchar *names[]);
48 static gboolean find_int(ParseState *ps, xmlNodePtr n, const gchar *names[],
49                          gint *integer, gint lower, gint upper);
50 static gboolean find_string(ParseState *ps, xmlNodePtr n, const gchar *names[],
51                             gchar **string);
52 static gboolean find_color(ParseState *ps, xmlNodePtr n, const gchar *names[],
53                            RrColor **color, gchar *alpha);
54     static gboolean find_point(ParseState *ps, xmlNodePtr n, const gchar *names[],
55                            gint *x, gint *y,
56                            gint lowx, gint lowy, gint upx, gint upy);
57 static gboolean find_shadow(ParseState *ps, xmlNodePtr n, const gchar *names[],
58                             RrAppearance *a);
59 static gboolean find_appearance(ParseState *ps, xmlNodePtr n, const gchar *names[],
60                                 RrAppearance *a, gboolean allow_trans);
61
62 /* make a null terminated array out of a list of strings */
63 #define L(args...) (const gchar*[]){args,NULL}
64 /* shortcut to the various find_* functions */
65 #define FIND(type, args...) find_##type(&ps, root, args)
66
67 RrTheme* RrThemeNew(const RrInstance *inst, const gchar *name,
68                     gboolean allow_fallback,
69                     RrFont *active_window_font, RrFont *inactive_window_font,
70                     RrFont *menu_title_font, RrFont *menu_item_font,
71                     RrFont *osd_font)
72 {
73     ParseState ps;
74     xmlNodePtr root;
75     RrJustify winjust, mtitlejust;
76     gchar *str;
77     RrTheme *theme;
78     gboolean userdef;
79
80     if (name) {
81         if (!parse_load_theme(name, &ps.doc, &root, &ps.path)) {
82             g_message("Unable to load the theme '%s'", name);
83             if (allow_fallback)
84                 g_message("Falling back to the default theme '%s'",
85                           DEFAULT_THEME);
86             /* make it fall back to default theme */
87             name = NULL;
88         }
89     }
90     if (name == NULL) {
91         if (allow_fallback) {
92             if (!parse_load_theme(DEFAULT_THEME, &ps.doc, &root, &ps.path)) {
93                 g_message("Unable to load the theme '%s'", DEFAULT_THEME);
94                 return NULL;
95             }
96         } else
97             return NULL;
98     }
99
100     ps.inst = inst;
101
102     theme = g_new0(RrTheme, 1);
103     theme->inst = inst;
104     theme->name = g_strdup(name ? name : DEFAULT_THEME);
105
106     theme->a_disabled_focused_max = RrAppearanceNew(inst, 1);
107     theme->a_disabled_unfocused_max = RrAppearanceNew(inst, 1);
108     theme->a_hover_focused_max = RrAppearanceNew(inst, 1);
109     theme->a_hover_unfocused_max = RrAppearanceNew(inst, 1);
110     theme->a_toggled_focused_pressed_max = RrAppearanceNew(inst, 1);
111     theme->a_toggled_unfocused_pressed_max = RrAppearanceNew(inst, 1);
112     theme->a_toggled_focused_unpressed_max = RrAppearanceNew(inst, 1);
113     theme->a_toggled_unfocused_unpressed_max = RrAppearanceNew(inst, 1);
114     theme->a_toggled_hover_focused_max = RrAppearanceNew(inst, 1);
115     theme->a_toggled_hover_unfocused_max = RrAppearanceNew(inst, 1);
116     theme->a_focused_unpressed_max = RrAppearanceNew(inst, 1);
117     theme->a_focused_pressed_max = RrAppearanceNew(inst, 1);
118     theme->a_unfocused_unpressed_max = RrAppearanceNew(inst, 1);
119     theme->a_unfocused_pressed_max = RrAppearanceNew(inst, 1);
120     theme->a_focused_grip = RrAppearanceNew(inst, 0);
121     theme->a_unfocused_grip = RrAppearanceNew(inst, 0);
122     theme->a_focused_title = RrAppearanceNew(inst, 0);
123     theme->a_unfocused_title = RrAppearanceNew(inst, 0);
124     theme->a_focused_label = RrAppearanceNew(inst, 1);
125     theme->a_unfocused_label = RrAppearanceNew(inst, 1);
126     theme->a_icon = RrAppearanceNew(inst, 1);
127     theme->a_focused_handle = RrAppearanceNew(inst, 0);
128     theme->a_unfocused_handle = RrAppearanceNew(inst, 0);
129     theme->a_menu = RrAppearanceNew(inst, 0);
130     theme->a_menu_title = RrAppearanceNew(inst, 0);
131     theme->a_menu_text_title = RrAppearanceNew(inst, 1);
132     theme->a_menu_normal = RrAppearanceNew(inst, 0);
133     theme->a_menu_disabled = RrAppearanceNew(inst, 0);
134     theme->a_menu_disabled_selected = RrAppearanceNew(inst, 0);
135     theme->a_menu_selected = RrAppearanceNew(inst, 0);
136     theme->a_menu_text_normal = RrAppearanceNew(inst, 1);
137     theme->a_menu_text_selected = RrAppearanceNew(inst, 1);
138     theme->a_menu_text_disabled = RrAppearanceNew(inst, 1);
139     theme->a_menu_text_disabled_selected = RrAppearanceNew(inst, 1);
140     theme->a_menu_bullet_normal = RrAppearanceNew(inst, 1);
141     theme->a_menu_bullet_selected = RrAppearanceNew(inst, 1);
142     theme->a_clear = RrAppearanceNew(inst, 0);
143     theme->a_clear_tex = RrAppearanceNew(inst, 1);
144
145     /* load the font stuff */
146
147     if (active_window_font) {
148         theme->win_font_focused = active_window_font;
149         RrFontRef(active_window_font);
150     } else
151         theme->win_font_focused = RrFontOpenDefault(inst);
152
153     if (inactive_window_font) {
154         theme->win_font_unfocused = inactive_window_font;
155         RrFontRef(inactive_window_font);
156     } else
157         theme->win_font_unfocused = RrFontOpenDefault(inst);
158
159     winjust = RR_JUSTIFY_LEFT;
160     if (FIND(string, L( "window", "justify"), &str)) {
161         if (strcmp(str, "right") == 0)
162             winjust = RR_JUSTIFY_RIGHT;
163         else if (strcmp(str, "center") == 0)
164             winjust = RR_JUSTIFY_CENTER;
165         g_free(str);
166     }
167
168     if (menu_title_font) {
169         theme->menu_title_font = menu_title_font;
170         RrFontRef(menu_title_font);
171     } else
172         theme->menu_title_font = RrFontOpenDefault(inst);
173
174     mtitlejust = RR_JUSTIFY_LEFT;
175     if (FIND(string, L("menu", "justify"), &str)) {
176         if (strcmp(str, "right") == 0)
177             mtitlejust = RR_JUSTIFY_RIGHT;
178         else if (strcmp(str, "center") == 0)
179             mtitlejust = RR_JUSTIFY_CENTER;
180         g_free(str);
181     }
182
183     if (menu_item_font) {
184         theme->menu_font = menu_item_font;
185         RrFontRef(menu_item_font);
186     } else
187         theme->menu_font = RrFontOpenDefault(inst);
188
189     if (osd_font) {
190         theme->osd_font = osd_font;
191         RrFontRef(osd_font);
192     } else
193         theme->osd_font = RrFontOpenDefault(inst);
194
195     /* load direct dimensions */
196     if (!FIND(int, L("menu","overlap"),
197               &theme->menu_overlap, -100, 100))
198         theme->menu_overlap = 0;
199
200     if (!FIND(int, L("dimensions","handle"), &theme->handle_height, 0, 100))
201         theme->handle_height = 6;
202
203     if (!FIND(point, L("dimensions","padding"),
204               &theme->paddingx, &theme->paddingy, 0, 100, 0, 100))
205         theme->paddingx = theme->paddingy = 3;
206
207     if (!FIND(int, L("dimensions","window","border"),
208               &theme->fbwidth, 0, 100))
209         theme->fbwidth = 1;
210
211     /* menu border width inherits from frame border width */
212     if (!FIND(int, L("dimensions","menu","border"),
213               &theme->mbwidth, 0, 100))
214         theme->mbwidth = theme->fbwidth;
215
216     if (!FIND(point, L("dimensions","window","clientpadding"),
217               &theme->cbwidthx, &theme->cbwidthy, 0, 100, 0, 100))
218         theme->cbwidthx = theme->cbwidthy = 1;
219
220     /* load colors */
221     if (!FIND(color, L("window","active","border"),
222               &theme->frame_focused_border_color, NULL))
223         theme->frame_focused_border_color = RrColorNew(inst, 0, 0, 0);
224     /* title separator focused color inherits from focused boder color */
225     if (!FIND(color, L("window","active","titleseparator"),
226               &theme->title_separator_focused_color, NULL))
227         theme->title_separator_focused_color =
228             RrColorNew(inst, theme->frame_focused_border_color->r,
229                        theme->frame_focused_border_color->g,
230                        theme->frame_focused_border_color->b);
231     /* frame unfocused border color inherits from frame focused border color */
232     if (!FIND(color, L("window","inactive","border"),
233               &theme->frame_unfocused_border_color, NULL))
234         theme->frame_unfocused_border_color =
235             RrColorNew(inst,
236                        theme->frame_focused_border_color->r,
237                        theme->frame_focused_border_color->g,
238                        theme->frame_focused_border_color->b);
239     /* title separator unfocused color inherits from unfocused boder color */
240     if (!FIND(color, L("window","inactive","titleseparator"),
241               &theme->title_separator_unfocused_color, NULL))
242         theme->title_separator_unfocused_color =
243             RrColorNew(inst, theme->frame_unfocused_border_color->r,
244                        theme->frame_unfocused_border_color->g,
245                        theme->frame_unfocused_border_color->b);
246
247     /* menu border color inherits from frame focused border color */
248     if (!FIND(color, L("menu","border"),
249               &theme->menu_border_color, NULL))
250         theme->menu_border_color =
251             RrColorNew(inst,
252                        theme->frame_focused_border_color->r,
253                        theme->frame_focused_border_color->g,
254                        theme->frame_focused_border_color->b);
255     if (!FIND(color, L("window","active","clientpadding"),
256               &theme->cb_focused_color, NULL))
257         theme->cb_focused_color = RrColorNew(inst, 255, 255, 255);
258     if (!FIND(color, L("window","inactive","clientpadding"),
259               &theme->cb_unfocused_color, NULL))
260         theme->cb_unfocused_color = RrColorNew(inst, 255, 255, 255);
261     if (!FIND(color, L("window","active","label","text","primary"),
262               &theme->title_focused_color, NULL))
263         theme->title_focused_color = RrColorNew(inst, 0x0, 0x0, 0x0);
264     if (!FIND(color, L("osd","text","primary"),
265               &theme->osd_color, NULL))
266         theme->osd_color = RrColorNew(inst,
267                                       theme->title_focused_color->r,
268                                       theme->title_focused_color->g,
269                                       theme->title_focused_color->b);
270     if (!FIND(color, L("window","inactive","label","text","primary"),
271               &theme->title_unfocused_color, NULL))
272         theme->title_unfocused_color = RrColorNew(inst, 0xff, 0xff, 0xff);
273     if (!FIND(color, L("window","active","buttons","unpressed","image"),
274               &theme->titlebut_focused_unpressed_color, NULL))
275         theme->titlebut_focused_unpressed_color = RrColorNew(inst, 0, 0, 0);
276     if (!FIND(color, L("window","inactive","buttons", "unpressed","image"),
277               &theme->titlebut_unfocused_unpressed_color, NULL))
278         theme->titlebut_unfocused_unpressed_color =
279             RrColorNew(inst, 0xff, 0xff, 0xff);
280     if (!FIND(color, L("window","active","buttons","pressed","image"),
281               &theme->titlebut_focused_pressed_color, NULL))
282         theme->titlebut_focused_pressed_color =
283             RrColorNew(inst,
284                        theme->titlebut_focused_unpressed_color->r,
285                        theme->titlebut_focused_unpressed_color->g,
286                        theme->titlebut_focused_unpressed_color->b);
287     if (!FIND(color, L("window","inactive","buttons","pressed","image"),
288               &theme->titlebut_unfocused_pressed_color, NULL))
289         theme->titlebut_unfocused_pressed_color =
290             RrColorNew(inst,
291                        theme->titlebut_unfocused_unpressed_color->r,
292                        theme->titlebut_unfocused_unpressed_color->g,
293                        theme->titlebut_unfocused_unpressed_color->b);
294     if (!FIND(color, L("window","active","buttons","disabled","image"),
295               &theme->titlebut_disabled_focused_color, NULL))
296         theme->titlebut_disabled_focused_color =
297             RrColorNew(inst, 0xff, 0xff, 0xff);
298     if (!FIND(color, L("window","inactive","buttons","disabled","image"),
299               &theme->titlebut_disabled_unfocused_color, NULL))
300         theme->titlebut_disabled_unfocused_color = RrColorNew(inst, 0, 0, 0);
301     if (!FIND(color,
302               L("window","active","buttons","hover","image"),
303               &theme->titlebut_hover_focused_color, NULL))
304         theme->titlebut_hover_focused_color =
305             RrColorNew(inst,
306                        theme->titlebut_focused_unpressed_color->r,
307                        theme->titlebut_focused_unpressed_color->g,
308                        theme->titlebut_focused_unpressed_color->b);
309     if (!FIND(color, L("window","inactive","buttons","hover","image"),
310               &theme->titlebut_hover_unfocused_color, NULL))
311         theme->titlebut_hover_unfocused_color =
312             RrColorNew(inst,
313                        theme->titlebut_unfocused_unpressed_color->r,
314                        theme->titlebut_unfocused_unpressed_color->g,
315                        theme->titlebut_unfocused_unpressed_color->b);
316     if (!FIND(color,
317               L("window","active","buttons","toggled-pressed","image"),
318               &theme->titlebut_toggled_focused_pressed_color, NULL))
319         theme->titlebut_toggled_focused_pressed_color =
320             RrColorNew(inst,
321                        theme->titlebut_focused_pressed_color->r,
322                        theme->titlebut_focused_pressed_color->g,
323                        theme->titlebut_focused_pressed_color->b);
324     if (!FIND(color,
325               L("window","inactive","buttons","toggled-pressed","image"),
326               &theme->titlebut_toggled_unfocused_pressed_color, NULL))
327         theme->titlebut_toggled_unfocused_pressed_color =
328             RrColorNew(inst,
329                        theme->titlebut_unfocused_pressed_color->r,
330                        theme->titlebut_unfocused_pressed_color->g,
331                        theme->titlebut_unfocused_pressed_color->b);
332     if (!FIND(color,
333               L("window","active","buttons","toggled-unpressed","image"),
334               &theme->titlebut_toggled_focused_unpressed_color, NULL))
335         theme->titlebut_toggled_focused_unpressed_color =
336             RrColorNew(inst,
337                        theme->titlebut_focused_pressed_color->r,
338                        theme->titlebut_focused_pressed_color->g,
339                        theme->titlebut_focused_pressed_color->b);
340     if (!FIND(color,
341               L("window","inactive","buttons","toggled-unpressed","image"),
342               &theme->titlebut_toggled_unfocused_unpressed_color, NULL))
343         theme->titlebut_toggled_unfocused_unpressed_color =
344             RrColorNew(inst,
345                        theme->titlebut_unfocused_pressed_color->r,
346                        theme->titlebut_unfocused_pressed_color->g,
347                        theme->titlebut_unfocused_pressed_color->b);
348     if (!FIND(color,
349               L("window","active","buttons","toggled-hover","image"),
350               &theme->titlebut_toggled_hover_focused_color, NULL))
351         theme->titlebut_toggled_hover_focused_color =
352             RrColorNew(inst,
353                        theme->titlebut_toggled_focused_unpressed_color->r,
354                        theme->titlebut_toggled_focused_unpressed_color->g,
355                        theme->titlebut_toggled_focused_unpressed_color->b);
356     if (!FIND(color,
357               L("window","inactive","buttons","toggled-hover","image"),
358               &theme->titlebut_toggled_hover_unfocused_color, NULL))
359         theme->titlebut_toggled_hover_unfocused_color =
360             RrColorNew(inst,
361                        theme->titlebut_toggled_unfocused_unpressed_color->r,
362                        theme->titlebut_toggled_unfocused_unpressed_color->g,
363                        theme->titlebut_toggled_unfocused_unpressed_color->b);
364     if (!FIND(color, L("menu","title","text","primary"),
365               &theme->menu_title_color, NULL))
366         theme->menu_title_color = RrColorNew(inst, 0, 0, 0);
367     if (!FIND(color, L("menu","inactive","primary"), &theme->menu_color, NULL))
368         theme->menu_color = RrColorNew(inst, 0xff, 0xff, 0xff);
369     if (!FIND(color, L("menu","disabled","primary"),
370               &theme->menu_disabled_color, NULL))
371         theme->menu_disabled_color = RrColorNew(inst, 0, 0, 0);
372     if (!FIND(color, L("menu","active-disabled","text","primary"),
373               &theme->menu_disabled_selected_color, NULL))
374         theme->menu_disabled_selected_color =
375             RrColorNew(inst,
376                        theme->menu_disabled_color->r,
377                        theme->menu_disabled_color->g,
378                        theme->menu_disabled_color->b);
379     if (!FIND(color, L("menu","active","text","primary"),
380               &theme->menu_selected_color, NULL))
381         theme->menu_selected_color = RrColorNew(inst, 0, 0, 0);
382     if (!FIND(color, L("window","active","label","text","shadow","primary"),
383               &theme->title_focused_shadow_color,
384               &theme->title_focused_shadow_alpha))
385     {
386         theme->title_focused_shadow_color = RrColorNew(inst, 0, 0, 0);
387         theme->title_focused_shadow_alpha = 50;
388     }
389     if (!FIND(color, L("osd","text","shadow","primary"),
390               &theme->osd_shadow_color, &theme->osd_shadow_alpha))
391     {
392         theme->osd_shadow_color = 
393             RrColorNew(inst, theme->title_focused_shadow_color->r,
394                        theme->title_focused_shadow_color->g,
395                        theme->title_focused_shadow_color->b);
396         theme->osd_shadow_alpha = theme->title_focused_shadow_alpha;
397     }
398     if (!FIND(color, L("window","inactive","label","text","shadow","primary"),
399               &theme->title_unfocused_shadow_color,
400               &theme->title_unfocused_shadow_alpha))
401     {
402         theme->title_unfocused_shadow_color = RrColorNew(inst, 0, 0, 0);
403         theme->title_unfocused_shadow_alpha = 50;
404     }
405     if (!FIND(color, L("menu","title","text","shadow","primary"),
406               &theme->menu_title_shadow_color,
407               &theme->menu_title_shadow_alpha))
408     {
409         theme->menu_title_shadow_color = RrColorNew(inst, 0, 0, 0);
410         theme->menu_title_shadow_alpha = 50;
411     }
412     if (!FIND(color, L("menu","inactive","shadow","primary"),
413               &theme->menu_text_normal_shadow_color,
414               &theme->menu_text_normal_shadow_alpha))
415     {
416         theme->menu_text_normal_shadow_color = RrColorNew(inst, 0, 0, 0);
417         theme->menu_text_normal_shadow_alpha = 50;
418     }
419     if (!FIND(color, L("menu","active","text","shadow","primary"),
420               &theme->menu_text_selected_shadow_color,
421               &theme->menu_text_selected_shadow_alpha))
422     {
423         theme->menu_text_selected_shadow_color = RrColorNew(inst, 0, 0, 0);
424         theme->menu_text_selected_shadow_alpha = 50;
425     }
426     if (!FIND(color, L("menu","disabled","shadow","primary"),
427               &theme->menu_text_disabled_shadow_color,
428               &theme->menu_text_disabled_shadow_alpha))
429     {
430         theme->menu_text_disabled_shadow_color =
431             RrColorNew(inst, theme->menu_text_normal_shadow_color->r,
432                        theme->menu_text_normal_shadow_color->g,
433                        theme->menu_text_normal_shadow_color->b);
434         theme->menu_text_disabled_shadow_alpha = 
435             theme->menu_text_normal_shadow_alpha;
436     }
437     if (!FIND(color, L("menu","active-disabled","shadow","primary"),
438               &theme->menu_text_disabled_selected_shadow_color,
439               &theme->menu_text_disabled_selected_shadow_alpha))
440     {
441         theme->menu_text_disabled_selected_shadow_color =
442             RrColorNew(inst, theme->menu_text_disabled_shadow_color->r,
443                        theme->menu_text_disabled_shadow_color->g,
444                        theme->menu_text_disabled_shadow_color->b);
445         theme->menu_text_disabled_selected_shadow_alpha = 
446             theme->menu_text_disabled_shadow_alpha;
447     }
448     
449     /* load the image masks */
450
451     /* maximize button masks */
452     userdef = TRUE;
453     if (!read_mask(&ps, "max.xbm", &theme->max_mask)) {
454             guchar data[] = { 0x3f, 0x3f, 0x21, 0x21, 0x21, 0x3f };
455             theme->max_mask = RrPixmapMaskNew(inst, 6, 6, (gchar*)data);
456             userdef = FALSE;
457     }
458     if (!read_mask(&ps, "max_toggled.xbm",  &theme->max_toggled_mask)) {
459         if (userdef)
460             theme->max_toggled_mask = RrPixmapMaskCopy(theme->max_mask);
461         else {
462             guchar data[] = { 0x3e, 0x22, 0x2f, 0x29, 0x39, 0x0f };
463             theme->max_toggled_mask = RrPixmapMaskNew(inst, 6, 6,(gchar*)data);
464         }
465     }
466     if (!read_mask(&ps, "max_pressed.xbm", &theme->max_pressed_mask))
467         theme->max_pressed_mask = RrPixmapMaskCopy(theme->max_mask);
468     if (!read_mask(&ps, "max_disabled.xbm", &theme->max_disabled_mask))
469         theme->max_disabled_mask = RrPixmapMaskCopy(theme->max_mask);
470     if (!read_mask(&ps, "max_hover.xbm", &theme->max_hover_mask))
471         theme->max_hover_mask = RrPixmapMaskCopy(theme->max_mask);
472     if (!read_mask(&ps, "max_toggled_pressed.xbm",
473                    &theme->max_toggled_pressed_mask))
474         theme->max_toggled_pressed_mask =
475             RrPixmapMaskCopy(theme->max_toggled_mask);
476     if (!read_mask(&ps, "max_toggled_hover.xbm",
477                    &theme->max_toggled_hover_mask))
478         theme->max_toggled_hover_mask =
479             RrPixmapMaskCopy(theme->max_toggled_mask);
480
481     /* iconify button masks */
482     if (!read_mask(&ps, "iconify.xbm", &theme->iconify_mask)) {
483         guchar data[] = { 0x00, 0x00, 0x00, 0x00, 0x3f, 0x3f };
484         theme->iconify_mask = RrPixmapMaskNew(inst, 6, 6, (gchar*)data);
485     }
486     if (!read_mask(&ps, "iconify_pressed.xbm", &theme->iconify_pressed_mask))
487         theme->iconify_pressed_mask = RrPixmapMaskCopy(theme->iconify_mask);
488     if (!read_mask(&ps, "iconify_disabled.xbm", &theme->iconify_disabled_mask))
489         theme->iconify_disabled_mask = RrPixmapMaskCopy(theme->iconify_mask);
490     if (!read_mask(&ps, "iconify_hover.xbm", &theme->iconify_hover_mask))
491         theme->iconify_hover_mask = RrPixmapMaskCopy(theme->iconify_mask);
492
493     /* all desktops button masks */
494     userdef = TRUE;
495     if (!read_mask(&ps, "desk.xbm", &theme->desk_mask)) {
496         guchar data[] = { 0x33, 0x33, 0x00, 0x00, 0x33, 0x33 };
497         theme->desk_mask = RrPixmapMaskNew(inst, 6, 6, (gchar*)data);
498         userdef = FALSE;
499     }
500     if (!read_mask(&ps, "desk_toggled.xbm", &theme->desk_toggled_mask)) {
501         if (userdef)
502             theme->desk_toggled_mask = RrPixmapMaskCopy(theme->desk_mask);
503         else {
504             guchar data[] = { 0x00, 0x1e, 0x1a, 0x16, 0x1e, 0x00 };
505             theme->desk_toggled_mask =
506                 RrPixmapMaskNew(inst, 6, 6, (gchar*)data);
507         }
508     }
509     if (!read_mask(&ps, "desk_pressed.xbm", &theme->desk_pressed_mask))
510         theme->desk_pressed_mask = RrPixmapMaskCopy(theme->desk_mask);
511     if (!read_mask(&ps, "desk_disabled.xbm", &theme->desk_disabled_mask))
512         theme->desk_disabled_mask = RrPixmapMaskCopy(theme->desk_mask);
513     if (!read_mask(&ps, "desk_hover.xbm", &theme->desk_hover_mask))
514         theme->desk_hover_mask = RrPixmapMaskCopy(theme->desk_mask);
515     if (!read_mask(&ps, "desk_toggled_pressed.xbm",
516                    &theme->desk_toggled_pressed_mask))
517         theme->desk_toggled_pressed_mask =
518             RrPixmapMaskCopy(theme->desk_toggled_mask);
519     if (!read_mask(&ps, "desk_toggled_hover.xbm",
520                    &theme->desk_toggled_hover_mask))
521         theme->desk_toggled_hover_mask =
522             RrPixmapMaskCopy(theme->desk_toggled_mask);
523
524     /* shade button masks */
525     if (!read_mask(&ps, "shade.xbm", &theme->shade_mask)) {
526         guchar data[] = { 0x3f, 0x3f, 0x00, 0x00, 0x00, 0x00 };
527         theme->shade_mask = RrPixmapMaskNew(inst, 6, 6, (gchar*)data);
528     }
529     if (!read_mask(&ps, "shade_toggled.xbm", &theme->shade_toggled_mask))
530         theme->shade_toggled_mask = RrPixmapMaskCopy(theme->shade_mask);
531     if (!read_mask(&ps, "shade_pressed.xbm", &theme->shade_pressed_mask))
532         theme->shade_pressed_mask = RrPixmapMaskCopy(theme->shade_mask);
533     if (!read_mask(&ps, "shade_disabled.xbm", &theme->shade_disabled_mask))
534         theme->shade_disabled_mask = RrPixmapMaskCopy(theme->shade_mask);
535     if (!read_mask(&ps, "shade_hover.xbm", &theme->shade_hover_mask))
536         theme->shade_hover_mask = RrPixmapMaskCopy(theme->shade_mask);
537     if (!read_mask(&ps, "shade_toggled_pressed.xbm",
538                    &theme->shade_toggled_pressed_mask))
539         theme->shade_toggled_pressed_mask =
540             RrPixmapMaskCopy(theme->shade_toggled_mask);
541     if (!read_mask(&ps, "shade_toggled_hover.xbm",
542                    &theme->shade_toggled_hover_mask))
543         theme->shade_toggled_hover_mask =
544             RrPixmapMaskCopy(theme->shade_toggled_mask);
545
546     /* close button masks */
547     if (!read_mask(&ps, "close.xbm", &theme->close_mask)) {
548         guchar data[] = { 0x33, 0x3f, 0x1e, 0x1e, 0x3f, 0x33 };
549         theme->close_mask = RrPixmapMaskNew(inst, 6, 6, (gchar*)data);
550     }
551     if (!read_mask(&ps, "close_pressed.xbm", &theme->close_pressed_mask))
552         theme->close_pressed_mask = RrPixmapMaskCopy(theme->close_mask);
553     if (!read_mask(&ps, "close_disabled.xbm", &theme->close_disabled_mask))
554         theme->close_disabled_mask = RrPixmapMaskCopy(theme->close_mask);
555     if (!read_mask(&ps, "close_hover.xbm", &theme->close_hover_mask))
556         theme->close_hover_mask = RrPixmapMaskCopy(theme->close_mask);
557
558     /* submenu bullet mask */
559     if (!read_mask(&ps, "bullet.xbm", &theme->menu_bullet_mask)) {
560         guchar data[] = { 0x01, 0x03, 0x07, 0x0f, 0x07, 0x03, 0x01 };
561         theme->menu_bullet_mask = RrPixmapMaskNew(inst, 4, 7, (gchar*)data);
562     }
563
564     /* setup the default window icon */
565     theme->def_win_icon = read_c_image(OB_DEFAULT_ICON_WIDTH,
566                                        OB_DEFAULT_ICON_HEIGHT,
567                                        OB_DEFAULT_ICON_pixel_data);
568
569     /* read the decoration textures */
570     if (!FIND(appearance, L("window","active","titlebar"),
571               theme->a_focused_title, FALSE))
572         set_default_appearance(theme->a_focused_title);
573     if (!FIND(appearance, L("window","inactive","titlebar"),
574                          theme->a_unfocused_title, FALSE))
575         set_default_appearance(theme->a_unfocused_title);
576     if (!FIND(appearance, L("window","active","label"),
577                          theme->a_focused_label, TRUE))
578         set_default_appearance(theme->a_focused_label);
579     if (!FIND(appearance, L("window","inactive","label"),
580                          theme->a_unfocused_label, TRUE))
581         set_default_appearance(theme->a_unfocused_label);
582     if (!FIND(appearance, L("window","active","handle"),
583                          theme->a_focused_handle, FALSE))
584         set_default_appearance(theme->a_focused_handle);
585     if (!FIND(appearance, L("window","inactive","handle"),
586                          theme->a_unfocused_handle, FALSE))
587         set_default_appearance(theme->a_unfocused_handle);
588     if (!FIND(appearance, L("window","active","grip"),
589                          theme->a_focused_grip, TRUE))
590         set_default_appearance(theme->a_focused_grip);
591     if (!FIND(appearance, L("window","inactive","grip"),
592                          theme->a_unfocused_grip, TRUE))
593         set_default_appearance(theme->a_unfocused_grip);
594     if (!FIND(appearance, L("menu","entries"), theme->a_menu, FALSE))
595         set_default_appearance(theme->a_menu);
596     if (!FIND(appearance, L("menu","title"), theme->a_menu_title, TRUE))
597         set_default_appearance(theme->a_menu_title);
598     if (!FIND(appearance, L("menu", "active"), theme->a_menu_selected, TRUE))
599         set_default_appearance(theme->a_menu_selected);
600     if (!FIND(appearance, L("menu", "active-disabled"),
601               theme->a_menu_disabled_selected, TRUE))
602         theme->a_menu_disabled_selected =
603             RrAppearanceCopy(theme->a_menu_selected);
604
605     /* read the appearances for rendering non-decorations */
606     theme->osd_hilite_bg = RrAppearanceCopy(theme->a_focused_title);
607     theme->osd_hilite_label = RrAppearanceCopy(theme->a_focused_label);
608     if (theme->a_focused_label->surface.grad != RR_SURFACE_PARENTREL)
609         theme->osd_hilite_fg = RrAppearanceCopy(theme->a_focused_label);
610     else
611         theme->osd_hilite_fg = RrAppearanceCopy(theme->a_focused_title);
612     if (theme->a_unfocused_label->surface.grad != RR_SURFACE_PARENTREL)
613         theme->osd_unhilite_fg = RrAppearanceCopy(theme->a_unfocused_label);
614     else
615         theme->osd_unhilite_fg = RrAppearanceCopy(theme->a_unfocused_title);
616
617     /* read buttons textures */
618     if (!FIND(appearance, L("window","active","buttons","disabled"),
619                          theme->a_disabled_focused_max, TRUE))
620         set_default_appearance(theme->a_disabled_focused_max);
621     if (!FIND(appearance, L("window","inactive","buttons","disabled"),
622                          theme->a_disabled_unfocused_max, TRUE))
623         set_default_appearance(theme->a_disabled_unfocused_max);
624     if (!FIND(appearance, L("window","active","buttons","pressed"),
625               theme->a_focused_pressed_max, TRUE))
626         set_default_appearance(theme->a_focused_pressed_max);
627     if (!FIND(appearance, L("window","inactive","buttons","pressed"),
628                          theme->a_unfocused_pressed_max, TRUE))
629         set_default_appearance(theme->a_unfocused_pressed_max);
630     if (!FIND(appearance, L("window","active","buttons","unpressed"),
631                          theme->a_focused_unpressed_max, TRUE))
632         set_default_appearance(theme->a_focused_unpressed_max);
633     if (!FIND(appearance, L("window","inactive","buttons","unpressed"),
634                          theme->a_unfocused_unpressed_max, TRUE))
635         set_default_appearance(theme->a_unfocused_unpressed_max);
636     if (!FIND(appearance, L("window","active","buttons","hover"),
637                          theme->a_hover_focused_max, TRUE))
638     {
639         RrAppearanceFree(theme->a_hover_focused_max);
640         theme->a_hover_focused_max =
641             RrAppearanceCopy(theme->a_focused_unpressed_max);
642     }
643     if (!FIND(appearance, L("window","inactive","buttons","hover"),
644                          theme->a_hover_unfocused_max, TRUE))
645     {
646         RrAppearanceFree(theme->a_hover_unfocused_max);
647         theme->a_hover_unfocused_max =
648             RrAppearanceCopy(theme->a_unfocused_unpressed_max);
649     }
650     if (!FIND(appearance, L("window","active","buttons","toggled-pressed"),
651               theme->a_toggled_focused_pressed_max, TRUE))
652     {
653         RrAppearanceFree(theme->a_toggled_focused_pressed_max);
654         theme->a_toggled_focused_pressed_max =
655             RrAppearanceCopy(theme->a_focused_pressed_max);
656     }
657     if (!FIND(appearance, L("window","inactive","buttons","toggled-pressed"),
658               theme->a_toggled_unfocused_pressed_max, TRUE))
659     {
660         RrAppearanceFree(theme->a_toggled_unfocused_pressed_max);
661         theme->a_toggled_unfocused_pressed_max =
662             RrAppearanceCopy(theme->a_unfocused_pressed_max);
663     }
664     if (!FIND(appearance, L("window","active","buttons","toggled-unpressed"),
665               theme->a_toggled_focused_unpressed_max, TRUE))
666     {
667         RrAppearanceFree(theme->a_toggled_focused_unpressed_max);
668         theme->a_toggled_focused_unpressed_max =
669             RrAppearanceCopy(theme->a_focused_pressed_max);
670     }
671     if (!FIND(appearance, L("window","inactive","buttons","toggled-unpressed"),
672               theme->a_toggled_unfocused_unpressed_max, TRUE))
673     {
674         RrAppearanceFree(theme->a_toggled_unfocused_unpressed_max);
675         theme->a_toggled_unfocused_unpressed_max =
676             RrAppearanceCopy(theme->a_unfocused_pressed_max);
677     }
678     if (!FIND(appearance, L("window","active","buttons","toggled-hover"),
679               theme->a_toggled_hover_focused_max, TRUE))
680     {
681         RrAppearanceFree(theme->a_toggled_hover_focused_max);
682         theme->a_toggled_hover_focused_max =
683             RrAppearanceCopy(theme->a_toggled_focused_unpressed_max);
684     }
685     if (!FIND(appearance, L("window","inactive","buttons","toggled-hover"),
686               theme->a_toggled_hover_unfocused_max, TRUE))
687     {
688         RrAppearanceFree(theme->a_toggled_hover_unfocused_max);
689         theme->a_toggled_hover_unfocused_max =
690             RrAppearanceCopy(theme->a_toggled_unfocused_unpressed_max);
691     }
692
693    theme->a_disabled_focused_close =
694         RrAppearanceCopy(theme->a_disabled_focused_max);
695     theme->a_disabled_unfocused_close =
696         RrAppearanceCopy(theme->a_disabled_unfocused_max);
697     theme->a_hover_focused_close =
698         RrAppearanceCopy(theme->a_hover_focused_max);
699     theme->a_hover_unfocused_close =
700         RrAppearanceCopy(theme->a_hover_unfocused_max);
701     theme->a_unfocused_unpressed_close =
702         RrAppearanceCopy(theme->a_unfocused_unpressed_max);
703     theme->a_unfocused_pressed_close =
704         RrAppearanceCopy(theme->a_unfocused_pressed_max);
705     theme->a_focused_unpressed_close =
706         RrAppearanceCopy(theme->a_focused_unpressed_max);
707     theme->a_focused_pressed_close =
708         RrAppearanceCopy(theme->a_focused_pressed_max);
709     theme->a_disabled_focused_desk =
710         RrAppearanceCopy(theme->a_disabled_focused_max);
711     theme->a_disabled_unfocused_desk =
712         RrAppearanceCopy(theme->a_disabled_unfocused_max);
713     theme->a_hover_focused_desk =
714         RrAppearanceCopy(theme->a_hover_focused_max);
715     theme->a_hover_unfocused_desk =
716         RrAppearanceCopy(theme->a_hover_unfocused_max); 
717     theme->a_toggled_focused_pressed_desk =
718         RrAppearanceCopy(theme->a_toggled_focused_pressed_max);
719     theme->a_toggled_unfocused_pressed_desk =
720         RrAppearanceCopy(theme->a_toggled_unfocused_pressed_max);
721     theme->a_toggled_focused_unpressed_desk =
722         RrAppearanceCopy(theme->a_toggled_focused_unpressed_max);
723     theme->a_toggled_unfocused_unpressed_desk =
724         RrAppearanceCopy(theme->a_toggled_unfocused_unpressed_max);
725     theme->a_toggled_hover_focused_desk =
726         RrAppearanceCopy(theme->a_toggled_hover_focused_max);
727     theme->a_toggled_hover_unfocused_desk =
728         RrAppearanceCopy(theme->a_toggled_hover_unfocused_max);
729     theme->a_unfocused_unpressed_desk =
730         RrAppearanceCopy(theme->a_unfocused_unpressed_max);
731     theme->a_unfocused_pressed_desk =
732         RrAppearanceCopy(theme->a_unfocused_pressed_max);
733     theme->a_focused_unpressed_desk =
734         RrAppearanceCopy(theme->a_focused_unpressed_max);
735     theme->a_focused_pressed_desk =
736         RrAppearanceCopy(theme->a_focused_pressed_max);
737     theme->a_disabled_focused_shade =
738         RrAppearanceCopy(theme->a_disabled_focused_max);
739     theme->a_disabled_unfocused_shade =
740         RrAppearanceCopy(theme->a_disabled_unfocused_max);
741     theme->a_hover_focused_shade =
742         RrAppearanceCopy(theme->a_hover_focused_max);
743     theme->a_hover_unfocused_shade =
744         RrAppearanceCopy(theme->a_hover_unfocused_max);
745     theme->a_toggled_focused_pressed_shade =
746         RrAppearanceCopy(theme->a_toggled_focused_pressed_max);
747     theme->a_toggled_unfocused_pressed_shade =
748         RrAppearanceCopy(theme->a_toggled_unfocused_pressed_max);
749     theme->a_toggled_focused_unpressed_shade =
750         RrAppearanceCopy(theme->a_toggled_focused_unpressed_max);
751     theme->a_toggled_unfocused_unpressed_shade =
752         RrAppearanceCopy(theme->a_toggled_unfocused_unpressed_max);
753     theme->a_toggled_hover_focused_shade =
754         RrAppearanceCopy(theme->a_toggled_hover_focused_max);
755     theme->a_toggled_hover_unfocused_shade =
756         RrAppearanceCopy(theme->a_toggled_hover_unfocused_max);
757     theme->a_unfocused_unpressed_shade =
758         RrAppearanceCopy(theme->a_unfocused_unpressed_max);
759     theme->a_unfocused_pressed_shade =
760         RrAppearanceCopy(theme->a_unfocused_pressed_max);
761     theme->a_focused_unpressed_shade =
762         RrAppearanceCopy(theme->a_focused_unpressed_max);
763     theme->a_focused_pressed_shade =
764         RrAppearanceCopy(theme->a_focused_pressed_max);
765     theme->a_disabled_focused_iconify =
766         RrAppearanceCopy(theme->a_disabled_focused_max);
767     theme->a_disabled_unfocused_iconify =
768         RrAppearanceCopy(theme->a_disabled_focused_max);
769     theme->a_hover_focused_iconify =
770         RrAppearanceCopy(theme->a_hover_focused_max);
771     theme->a_hover_unfocused_iconify =
772         RrAppearanceCopy(theme->a_hover_unfocused_max);
773     theme->a_unfocused_unpressed_iconify =
774         RrAppearanceCopy(theme->a_unfocused_unpressed_max);
775     theme->a_unfocused_pressed_iconify =
776         RrAppearanceCopy(theme->a_unfocused_pressed_max);
777     theme->a_focused_unpressed_iconify =
778         RrAppearanceCopy(theme->a_focused_unpressed_max);
779     theme->a_focused_pressed_iconify =
780         RrAppearanceCopy(theme->a_focused_pressed_max);
781
782     theme->a_icon->surface.grad =
783         theme->a_clear->surface.grad =
784         theme->a_clear_tex->surface.grad =
785         theme->a_menu_text_title->surface.grad =
786         theme->a_menu_normal->surface.grad =
787         theme->a_menu_disabled->surface.grad =
788         theme->a_menu_text_normal->surface.grad =
789         theme->a_menu_text_selected->surface.grad =
790         theme->a_menu_text_disabled->surface.grad =
791         theme->a_menu_text_disabled_selected->surface.grad =
792         theme->a_menu_bullet_normal->surface.grad =
793         theme->a_menu_bullet_selected->surface.grad = RR_SURFACE_PARENTREL;
794
795     /* set up the textures */
796     theme->a_focused_label->texture[0].type = 
797         theme->osd_hilite_label->texture[0].type = RR_TEXTURE_TEXT;
798     theme->a_focused_label->texture[0].data.text.justify = winjust;
799     theme->osd_hilite_label->texture[0].data.text.justify = RR_JUSTIFY_LEFT;
800     theme->a_focused_label->texture[0].data.text.font =
801         theme->win_font_focused;
802     theme->osd_hilite_label->texture[0].data.text.font = theme->osd_font;
803     theme->a_focused_label->texture[0].data.text.color =
804         theme->title_focused_color;
805     theme->osd_hilite_label->texture[0].data.text.color =
806         theme->osd_color;
807
808     if (!FIND(shadow, L("window","active","label","text","shadow","offset"),
809               theme->a_focused_label))
810         theme->a_focused_label->texture[0].data.text.shadow_offset_x =
811             theme->a_focused_label->texture[0].data.text.shadow_offset_y = 0;
812     theme->a_focused_label->texture[0].data.text.shadow_color =
813         theme->title_focused_shadow_color;
814     theme->a_focused_label->texture[0].data.text.shadow_alpha =
815         theme->title_focused_shadow_alpha;
816
817     if (!FIND(shadow, L("osd","text","shadow","offset"),
818               theme->osd_hilite_label))
819     {
820         theme->osd_hilite_label->texture[0].data.text.shadow_offset_x =
821             theme->a_focused_label->texture[0].data.text.shadow_offset_x;
822         theme->osd_hilite_label->texture[0].data.text.shadow_offset_y =
823             theme->a_focused_label->texture[0].data.text.shadow_offset_y;
824     }
825     theme->osd_hilite_label->texture[0].data.text.shadow_color =
826         theme->osd_shadow_color;
827     theme->osd_hilite_label->texture[0].data.text.shadow_alpha =
828         theme->osd_shadow_alpha;
829
830     theme->a_unfocused_label->texture[0].type = RR_TEXTURE_TEXT;
831     theme->a_unfocused_label->texture[0].data.text.justify = winjust;
832     theme->a_unfocused_label->texture[0].data.text.font =
833         theme->win_font_unfocused;
834     theme->a_unfocused_label->texture[0].data.text.color =
835         theme->title_unfocused_color;
836
837     if (!FIND(shadow, L("window","inactive","label","text","shadow","offset"),
838               theme->a_unfocused_label))
839         theme->a_unfocused_label->texture[0].data.text.shadow_offset_x =
840             theme->a_unfocused_label->texture[0].data.text.shadow_offset_y = 0;
841     theme->a_unfocused_label->texture[0].data.text.shadow_color =
842         theme->title_unfocused_shadow_color;
843     theme->a_unfocused_label->texture[0].data.text.shadow_alpha =
844         theme->title_unfocused_shadow_alpha;
845
846     theme->a_menu_text_title->texture[0].type = RR_TEXTURE_TEXT;
847     theme->a_menu_text_title->texture[0].data.text.justify = mtitlejust;
848     theme->a_menu_text_title->texture[0].data.text.font =
849         theme->menu_title_font;
850     theme->a_menu_text_title->texture[0].data.text.color =
851         theme->menu_title_color;
852
853     if (!FIND(shadow, L("menu","title","text","shadow","offset"),
854               theme->a_menu_text_title))
855         theme->a_menu_text_title->texture[0].data.text.shadow_offset_x =
856             theme->a_menu_text_title->texture[0].data.text.shadow_offset_y = 0;
857     theme->a_menu_text_title->texture[0].data.text.shadow_color =
858         theme->menu_title_shadow_color;
859     theme->a_menu_text_title->texture[0].data.text.shadow_alpha =
860         theme->menu_title_shadow_alpha;
861
862     theme->a_menu_text_normal->texture[0].type =
863         theme->a_menu_text_selected->texture[0].type =
864         theme->a_menu_text_disabled->texture[0].type = 
865         theme->a_menu_text_disabled_selected->texture[0].type = 
866         RR_TEXTURE_TEXT;
867     theme->a_menu_text_normal->texture[0].data.text.justify = 
868         theme->a_menu_text_selected->texture[0].data.text.justify =
869         theme->a_menu_text_disabled->texture[0].data.text.justify = 
870         theme->a_menu_text_disabled_selected->texture[0].data.text.justify = 
871         RR_JUSTIFY_LEFT;
872     theme->a_menu_text_normal->texture[0].data.text.font =
873         theme->a_menu_text_selected->texture[0].data.text.font =
874         theme->a_menu_text_disabled->texture[0].data.text.font =
875         theme->a_menu_text_disabled_selected->texture[0].data.text.font =
876         theme->menu_font;
877     theme->a_menu_text_normal->texture[0].data.text.color = theme->menu_color;
878     theme->a_menu_text_selected->texture[0].data.text.color =
879         theme->menu_selected_color;
880     theme->a_menu_text_disabled->texture[0].data.text.color =
881         theme->menu_disabled_color;
882     theme->a_menu_text_disabled_selected->texture[0].data.text.color =
883         theme->menu_disabled_selected_color;
884
885     if (!FIND(shadow, L("menu","inactive","shadow","offset"),
886               theme->a_menu_text_normal))
887         theme->a_menu_text_normal->texture[0].data.text.shadow_offset_x =
888             theme->a_menu_text_normal->texture[0].data.text.shadow_offset_y =
889             0;
890     if (!FIND(shadow, L("menu","active","text","shadow","offset"),
891               theme->a_menu_text_selected))
892         theme->a_menu_text_selected->texture[0].data.text.shadow_offset_x =
893             theme->a_menu_text_selected->texture[0].data.text.shadow_offset_y =
894             0;
895     if (!FIND(shadow, L("menu","disabled","shadow","offset"),
896               theme->a_menu_text_disabled))
897         theme->a_menu_text_disabled->texture[0].data.text.shadow_offset_x =
898             theme->a_menu_text_disabled->texture[0].data.text.shadow_offset_y =
899             0;
900     if (!FIND(shadow, L("menu","active-disabled","shadow","offset"),
901               theme->a_menu_text_disabled_selected))
902         theme->a_menu_text_disabled_selected->
903             texture[0].data.text.shadow_offset_x = 0;
904     theme->a_menu_text_disabled_selected->
905         texture[0].data.text.shadow_offset_y = 0;
906     theme->a_menu_text_normal->texture[0].data.text.shadow_color =
907         theme->menu_text_normal_shadow_color;
908     theme->a_menu_text_normal->texture[0].data.text.shadow_alpha =
909         theme->menu_text_normal_shadow_alpha;
910     theme->a_menu_text_selected->texture[0].data.text.shadow_color =
911         theme->menu_text_selected_shadow_color;
912     theme->a_menu_text_selected->texture[0].data.text.shadow_alpha =
913         theme->menu_text_selected_shadow_alpha;
914     theme->a_menu_text_disabled->texture[0].data.text.shadow_color =
915         theme->menu_text_disabled_shadow_color;
916     theme->a_menu_text_disabled->texture[0].data.text.shadow_alpha =
917         theme->menu_text_disabled_shadow_alpha;
918     theme->a_menu_text_disabled_selected->texture[0].data.text.shadow_color =
919         theme->menu_text_disabled_selected_shadow_color;
920     theme->a_menu_text_disabled_selected->texture[0].data.text.shadow_alpha =
921         theme->menu_text_disabled_selected_shadow_alpha;
922
923     theme->a_disabled_focused_max->texture[0].type = 
924         theme->a_disabled_unfocused_max->texture[0].type = 
925         theme->a_hover_focused_max->texture[0].type = 
926         theme->a_hover_unfocused_max->texture[0].type = 
927         theme->a_toggled_focused_pressed_max->texture[0].type = 
928         theme->a_toggled_unfocused_pressed_max->texture[0].type = 
929         theme->a_toggled_focused_unpressed_max->texture[0].type = 
930         theme->a_toggled_unfocused_unpressed_max->texture[0].type = 
931         theme->a_toggled_hover_focused_max->texture[0].type = 
932         theme->a_toggled_hover_unfocused_max->texture[0].type = 
933         theme->a_focused_unpressed_max->texture[0].type = 
934         theme->a_focused_pressed_max->texture[0].type = 
935         theme->a_unfocused_unpressed_max->texture[0].type = 
936         theme->a_unfocused_pressed_max->texture[0].type = 
937         theme->a_disabled_focused_close->texture[0].type = 
938         theme->a_disabled_unfocused_close->texture[0].type = 
939         theme->a_hover_focused_close->texture[0].type = 
940         theme->a_hover_unfocused_close->texture[0].type = 
941         theme->a_focused_unpressed_close->texture[0].type = 
942         theme->a_focused_pressed_close->texture[0].type = 
943         theme->a_unfocused_unpressed_close->texture[0].type = 
944         theme->a_unfocused_pressed_close->texture[0].type = 
945         theme->a_disabled_focused_desk->texture[0].type = 
946         theme->a_disabled_unfocused_desk->texture[0].type = 
947         theme->a_hover_focused_desk->texture[0].type = 
948         theme->a_hover_unfocused_desk->texture[0].type = 
949         theme->a_toggled_focused_pressed_desk->texture[0].type = 
950         theme->a_toggled_unfocused_pressed_desk->texture[0].type = 
951         theme->a_toggled_focused_unpressed_desk->texture[0].type = 
952         theme->a_toggled_unfocused_unpressed_desk->texture[0].type = 
953         theme->a_toggled_hover_focused_desk->texture[0].type = 
954         theme->a_toggled_hover_unfocused_desk->texture[0].type = 
955         theme->a_focused_unpressed_desk->texture[0].type = 
956         theme->a_focused_pressed_desk->texture[0].type = 
957         theme->a_unfocused_unpressed_desk->texture[0].type = 
958         theme->a_unfocused_pressed_desk->texture[0].type = 
959         theme->a_disabled_focused_shade->texture[0].type = 
960         theme->a_disabled_unfocused_shade->texture[0].type = 
961         theme->a_hover_focused_shade->texture[0].type = 
962         theme->a_hover_unfocused_shade->texture[0].type = 
963         theme->a_toggled_focused_pressed_shade->texture[0].type = 
964         theme->a_toggled_unfocused_pressed_shade->texture[0].type = 
965         theme->a_toggled_focused_unpressed_shade->texture[0].type = 
966         theme->a_toggled_unfocused_unpressed_shade->texture[0].type = 
967         theme->a_toggled_hover_focused_shade->texture[0].type = 
968         theme->a_toggled_hover_unfocused_shade->texture[0].type = 
969         theme->a_focused_unpressed_shade->texture[0].type = 
970         theme->a_focused_pressed_shade->texture[0].type = 
971         theme->a_unfocused_unpressed_shade->texture[0].type = 
972         theme->a_unfocused_pressed_shade->texture[0].type = 
973         theme->a_disabled_focused_iconify->texture[0].type = 
974         theme->a_disabled_unfocused_iconify->texture[0].type = 
975         theme->a_hover_focused_iconify->texture[0].type = 
976         theme->a_hover_unfocused_iconify->texture[0].type = 
977         theme->a_focused_unpressed_iconify->texture[0].type = 
978         theme->a_focused_pressed_iconify->texture[0].type = 
979         theme->a_unfocused_unpressed_iconify->texture[0].type = 
980         theme->a_unfocused_pressed_iconify->texture[0].type =
981         theme->a_menu_bullet_normal->texture[0].type =
982         theme->a_menu_bullet_selected->texture[0].type = RR_TEXTURE_MASK;
983
984     theme->a_disabled_focused_max->texture[0].data.mask.mask = 
985         theme->a_disabled_unfocused_max->texture[0].data.mask.mask = 
986         theme->max_disabled_mask;
987     theme->a_hover_focused_max->texture[0].data.mask.mask = 
988         theme->a_hover_unfocused_max->texture[0].data.mask.mask = 
989         theme->max_hover_mask;
990     theme->a_focused_pressed_max->texture[0].data.mask.mask = 
991         theme->a_unfocused_pressed_max->texture[0].data.mask.mask =
992         theme->max_pressed_mask;
993     theme->a_focused_unpressed_max->texture[0].data.mask.mask = 
994         theme->a_unfocused_unpressed_max->texture[0].data.mask.mask = 
995         theme->max_mask;
996     theme->a_toggled_focused_pressed_max->texture[0].data.mask.mask = 
997         theme->a_toggled_unfocused_pressed_max->texture[0].data.mask.mask =
998         theme->max_toggled_pressed_mask;
999     theme->a_toggled_focused_unpressed_max->texture[0].data.mask.mask = 
1000         theme->a_toggled_unfocused_unpressed_max->texture[0].data.mask.mask =
1001         theme->max_toggled_mask;
1002     theme->a_toggled_hover_focused_max->texture[0].data.mask.mask = 
1003         theme->a_toggled_hover_unfocused_max->texture[0].data.mask.mask =
1004         theme->max_toggled_hover_mask;
1005     theme->a_disabled_focused_close->texture[0].data.mask.mask = 
1006         theme->a_disabled_unfocused_close->texture[0].data.mask.mask = 
1007         theme->close_disabled_mask;
1008     theme->a_hover_focused_close->texture[0].data.mask.mask = 
1009         theme->a_hover_unfocused_close->texture[0].data.mask.mask = 
1010         theme->close_hover_mask;
1011     theme->a_focused_pressed_close->texture[0].data.mask.mask = 
1012         theme->a_unfocused_pressed_close->texture[0].data.mask.mask =
1013         theme->close_pressed_mask;
1014     theme->a_focused_unpressed_close->texture[0].data.mask.mask = 
1015         theme->a_unfocused_unpressed_close->texture[0].data.mask.mask =
1016         theme->close_mask;
1017     theme->a_disabled_focused_desk->texture[0].data.mask.mask = 
1018         theme->a_disabled_unfocused_desk->texture[0].data.mask.mask = 
1019         theme->desk_disabled_mask;
1020     theme->a_hover_focused_desk->texture[0].data.mask.mask = 
1021         theme->a_hover_unfocused_desk->texture[0].data.mask.mask = 
1022         theme->desk_hover_mask;
1023     theme->a_focused_pressed_desk->texture[0].data.mask.mask = 
1024         theme->a_unfocused_pressed_desk->texture[0].data.mask.mask =
1025         theme->desk_pressed_mask;
1026     theme->a_focused_unpressed_desk->texture[0].data.mask.mask = 
1027         theme->a_unfocused_unpressed_desk->texture[0].data.mask.mask = 
1028         theme->desk_mask;
1029     theme->a_toggled_focused_pressed_desk->texture[0].data.mask.mask = 
1030         theme->a_toggled_unfocused_pressed_desk->texture[0].data.mask.mask =
1031         theme->desk_toggled_pressed_mask;
1032     theme->a_toggled_focused_unpressed_desk->texture[0].data.mask.mask = 
1033         theme->a_toggled_unfocused_unpressed_desk->texture[0].data.mask.mask =
1034         theme->desk_toggled_mask;
1035     theme->a_toggled_hover_focused_desk->texture[0].data.mask.mask = 
1036         theme->a_toggled_hover_unfocused_desk->texture[0].data.mask.mask =
1037         theme->desk_toggled_hover_mask;
1038     theme->a_disabled_focused_shade->texture[0].data.mask.mask = 
1039         theme->a_disabled_unfocused_shade->texture[0].data.mask.mask = 
1040         theme->shade_disabled_mask;
1041     theme->a_hover_focused_shade->texture[0].data.mask.mask = 
1042         theme->a_hover_unfocused_shade->texture[0].data.mask.mask = 
1043         theme->shade_hover_mask;
1044     theme->a_focused_pressed_shade->texture[0].data.mask.mask = 
1045         theme->a_unfocused_pressed_shade->texture[0].data.mask.mask =
1046         theme->shade_pressed_mask;
1047     theme->a_focused_unpressed_shade->texture[0].data.mask.mask = 
1048         theme->a_unfocused_unpressed_shade->texture[0].data.mask.mask = 
1049         theme->shade_mask;
1050     theme->a_toggled_focused_pressed_shade->texture[0].data.mask.mask = 
1051         theme->a_toggled_unfocused_pressed_shade->texture[0].data.mask.mask =
1052         theme->shade_toggled_pressed_mask;
1053     theme->a_toggled_focused_unpressed_shade->texture[0].data.mask.mask = 
1054         theme->a_toggled_unfocused_unpressed_shade->texture[0].data.mask.mask =
1055         theme->shade_toggled_mask;
1056     theme->a_toggled_hover_focused_shade->texture[0].data.mask.mask = 
1057         theme->a_toggled_hover_unfocused_shade->texture[0].data.mask.mask =
1058         theme->shade_toggled_hover_mask;
1059     theme->a_disabled_focused_iconify->texture[0].data.mask.mask = 
1060         theme->a_disabled_unfocused_iconify->texture[0].data.mask.mask = 
1061         theme->iconify_disabled_mask;
1062     theme->a_hover_focused_iconify->texture[0].data.mask.mask = 
1063         theme->a_hover_unfocused_iconify->texture[0].data.mask.mask = 
1064         theme->iconify_hover_mask;
1065     theme->a_focused_pressed_iconify->texture[0].data.mask.mask = 
1066         theme->a_unfocused_pressed_iconify->texture[0].data.mask.mask =
1067         theme->iconify_pressed_mask;
1068     theme->a_focused_unpressed_iconify->texture[0].data.mask.mask = 
1069         theme->a_unfocused_unpressed_iconify->texture[0].data.mask.mask = 
1070         theme->iconify_mask;
1071     theme->a_menu_bullet_normal->texture[0].data.mask.mask = 
1072     theme->a_menu_bullet_selected->texture[0].data.mask.mask = 
1073         theme->menu_bullet_mask;
1074     theme->a_disabled_focused_max->texture[0].data.mask.color = 
1075         theme->a_disabled_focused_close->texture[0].data.mask.color = 
1076         theme->a_disabled_focused_desk->texture[0].data.mask.color = 
1077         theme->a_disabled_focused_shade->texture[0].data.mask.color = 
1078         theme->a_disabled_focused_iconify->texture[0].data.mask.color = 
1079         theme->titlebut_disabled_focused_color;
1080     theme->a_disabled_unfocused_max->texture[0].data.mask.color = 
1081         theme->a_disabled_unfocused_close->texture[0].data.mask.color = 
1082         theme->a_disabled_unfocused_desk->texture[0].data.mask.color = 
1083         theme->a_disabled_unfocused_shade->texture[0].data.mask.color = 
1084         theme->a_disabled_unfocused_iconify->texture[0].data.mask.color = 
1085         theme->titlebut_disabled_unfocused_color;
1086     theme->a_hover_focused_max->texture[0].data.mask.color = 
1087         theme->a_hover_focused_close->texture[0].data.mask.color = 
1088         theme->a_hover_focused_desk->texture[0].data.mask.color = 
1089         theme->a_hover_focused_shade->texture[0].data.mask.color = 
1090         theme->a_hover_focused_iconify->texture[0].data.mask.color = 
1091         theme->titlebut_hover_focused_color;
1092     theme->a_hover_unfocused_max->texture[0].data.mask.color = 
1093         theme->a_hover_unfocused_close->texture[0].data.mask.color = 
1094         theme->a_hover_unfocused_desk->texture[0].data.mask.color = 
1095         theme->a_hover_unfocused_shade->texture[0].data.mask.color = 
1096         theme->a_hover_unfocused_iconify->texture[0].data.mask.color = 
1097         theme->titlebut_hover_unfocused_color;
1098     theme->a_toggled_hover_focused_max->texture[0].data.mask.color = 
1099         theme->a_toggled_hover_focused_desk->texture[0].data.mask.color = 
1100         theme->a_toggled_hover_focused_shade->texture[0].data.mask.color = 
1101         theme->titlebut_toggled_hover_focused_color;
1102     theme->a_toggled_hover_unfocused_max->texture[0].data.mask.color = 
1103         theme->a_toggled_hover_unfocused_desk->texture[0].data.mask.color = 
1104         theme->a_toggled_hover_unfocused_shade->texture[0].data.mask.color = 
1105         theme->titlebut_toggled_hover_unfocused_color;
1106     theme->a_toggled_focused_pressed_max->texture[0].data.mask.color = 
1107         theme->a_toggled_focused_pressed_desk->texture[0].data.mask.color = 
1108         theme->a_toggled_focused_pressed_shade->texture[0].data.mask.color = 
1109         theme->titlebut_toggled_focused_pressed_color;
1110     theme->a_toggled_unfocused_pressed_max->texture[0].data.mask.color = 
1111         theme->a_toggled_unfocused_pressed_desk->texture[0].data.mask.color = 
1112         theme->a_toggled_unfocused_pressed_shade->texture[0].data.mask.color = 
1113         theme->titlebut_toggled_unfocused_pressed_color;
1114     theme->a_toggled_focused_unpressed_max->texture[0].data.mask.color = 
1115         theme->a_toggled_focused_unpressed_desk->texture[0].data.mask.color = 
1116         theme->a_toggled_focused_unpressed_shade->texture[0].data.mask.color = 
1117         theme->titlebut_toggled_focused_unpressed_color;
1118     theme->a_toggled_unfocused_unpressed_max->texture[0].data.mask.color = 
1119         theme->a_toggled_unfocused_unpressed_desk->texture[0].data.mask.color =
1120         theme->a_toggled_unfocused_unpressed_shade->texture[0].data.mask.color=
1121         theme->titlebut_toggled_unfocused_unpressed_color;
1122     theme->a_focused_unpressed_max->texture[0].data.mask.color = 
1123         theme->a_focused_unpressed_close->texture[0].data.mask.color = 
1124         theme->a_focused_unpressed_desk->texture[0].data.mask.color = 
1125         theme->a_focused_unpressed_shade->texture[0].data.mask.color = 
1126         theme->a_focused_unpressed_iconify->texture[0].data.mask.color = 
1127         theme->titlebut_focused_unpressed_color;
1128     theme->a_focused_pressed_max->texture[0].data.mask.color = 
1129         theme->a_focused_pressed_close->texture[0].data.mask.color = 
1130         theme->a_focused_pressed_desk->texture[0].data.mask.color = 
1131         theme->a_focused_pressed_shade->texture[0].data.mask.color = 
1132         theme->a_focused_pressed_iconify->texture[0].data.mask.color =
1133         theme->titlebut_focused_pressed_color;
1134     theme->a_unfocused_unpressed_max->texture[0].data.mask.color = 
1135         theme->a_unfocused_unpressed_close->texture[0].data.mask.color = 
1136         theme->a_unfocused_unpressed_desk->texture[0].data.mask.color = 
1137         theme->a_unfocused_unpressed_shade->texture[0].data.mask.color = 
1138         theme->a_unfocused_unpressed_iconify->texture[0].data.mask.color = 
1139         theme->titlebut_unfocused_unpressed_color;
1140     theme->a_unfocused_pressed_max->texture[0].data.mask.color = 
1141         theme->a_unfocused_pressed_close->texture[0].data.mask.color = 
1142         theme->a_unfocused_pressed_desk->texture[0].data.mask.color = 
1143         theme->a_unfocused_pressed_shade->texture[0].data.mask.color = 
1144         theme->a_unfocused_pressed_iconify->texture[0].data.mask.color =
1145         theme->titlebut_unfocused_pressed_color;
1146     theme->a_menu_bullet_normal->texture[0].data.mask.color = 
1147         theme->menu_color;
1148     theme->a_menu_bullet_selected->texture[0].data.mask.color = 
1149         theme->menu_selected_color;
1150
1151     g_free(ps.path);
1152     parse_close(ps.doc);
1153
1154     {
1155         gint ft, fb, fl, fr, ut, ub, ul, ur;
1156         RrAppearance *a, *b, *c, *d;
1157
1158         /* caluclate the font heights*/
1159         a = theme->a_focused_label;
1160         theme->win_font_height =
1161             RrFontHeight(theme->win_font_focused,
1162                          a->texture[0].data.text.shadow_offset_y);
1163         a = theme->a_unfocused_label;
1164         theme->win_font_height =
1165             MAX(theme->win_font_height,
1166                 RrFontHeight(theme->win_font_unfocused,
1167                              a->texture[0].data.text.shadow_offset_y));
1168         a = theme->a_menu_text_title;
1169         theme->menu_title_font_height =
1170             RrFontHeight(theme->menu_title_font,
1171                          a->texture[0].data.text.shadow_offset_y);
1172         a = theme->a_menu_text_normal;
1173         b = theme->a_menu_text_selected;
1174         c = theme->a_menu_text_disabled;
1175         d = theme->a_menu_text_disabled_selected;
1176         theme->menu_font_height =
1177             RrFontHeight(theme->menu_font,
1178                          MAX(a->texture[0].data.text.shadow_offset_y,
1179                              MAX(b->texture[0].data.text.shadow_offset_y,
1180                                  MAX(c->texture[0].data.text.shadow_offset_y,
1181                                      d->texture[0].data.text.shadow_offset_y
1182                                      ))));
1183
1184         RrMargins(theme->a_focused_label, &fl, &ft, &fr, &fb);
1185         RrMargins(theme->a_unfocused_label, &ul, &ut, &ur, &ub);
1186         theme->label_height = theme->win_font_height + MAX(ft + fb, ut + ub);
1187         theme->label_height += theme->label_height & 1;
1188
1189         /* this would be nice I think, since padding.width can now be 0,
1190            but it breaks frame.c horribly and I don't feel like fixing that
1191            right now, so if anyone complains, here is how to keep text from
1192            going over the title's bevel/border with a padding.width of 0 and a
1193            bevelless/borderless label
1194            RrMargins(theme->a_focused_title, &fl, &ft, &fr, &fb);
1195            RrMargins(theme->a_unfocused_title, &ul, &ut, &ur, &ub);
1196            theme->title_height = theme->label_height +
1197            MAX(MAX(theme->padding * 2, ft + fb),
1198            MAX(theme->padding * 2, ut + ub));
1199         */
1200         theme->title_height = theme->label_height + theme->paddingy * 2;
1201
1202         RrMargins(theme->a_menu_title, &ul, &ut, &ur, &ub);
1203         theme->menu_title_label_height = theme->menu_title_font_height+ut+ub;
1204         theme->menu_title_height = theme->menu_title_label_height +
1205             theme->paddingy * 2;
1206     }
1207     theme->button_size = theme->label_height - 2;
1208     theme->grip_width = 25;
1209
1210     return theme;
1211 }
1212
1213 void RrThemeFree(RrTheme *theme)
1214 {
1215     if (theme) {
1216         g_free(theme->name);
1217
1218         RrColorFree(theme->menu_border_color);
1219         RrColorFree(theme->frame_focused_border_color);
1220         RrColorFree(theme->frame_unfocused_border_color);
1221         RrColorFree(theme->cb_unfocused_color);
1222         RrColorFree(theme->cb_focused_color);
1223         RrColorFree(theme->title_focused_color);
1224         RrColorFree(theme->title_unfocused_color);
1225         RrColorFree(theme->titlebut_disabled_focused_color);
1226         RrColorFree(theme->titlebut_disabled_unfocused_color);
1227         RrColorFree(theme->titlebut_hover_focused_color);
1228         RrColorFree(theme->titlebut_hover_unfocused_color);
1229         RrColorFree(theme->titlebut_focused_pressed_color);
1230         RrColorFree(theme->titlebut_unfocused_pressed_color);
1231         RrColorFree(theme->titlebut_focused_unpressed_color);
1232         RrColorFree(theme->titlebut_unfocused_unpressed_color);
1233         RrColorFree(theme->titlebut_toggled_hover_focused_color);
1234         RrColorFree(theme->titlebut_toggled_hover_unfocused_color);
1235         RrColorFree(theme->titlebut_toggled_focused_pressed_color);
1236         RrColorFree(theme->titlebut_toggled_unfocused_pressed_color);
1237         RrColorFree(theme->titlebut_toggled_focused_unpressed_color);
1238         RrColorFree(theme->titlebut_toggled_unfocused_unpressed_color);
1239         RrColorFree(theme->menu_title_color);
1240         RrColorFree(theme->menu_color);
1241         RrColorFree(theme->menu_selected_color);
1242         RrColorFree(theme->menu_disabled_color);
1243         RrColorFree(theme->menu_disabled_selected_color);
1244         RrColorFree(theme->title_focused_shadow_color);
1245         RrColorFree(theme->title_unfocused_shadow_color);
1246         RrColorFree(theme->osd_color);
1247         RrColorFree(theme->osd_shadow_color);
1248         RrColorFree(theme->menu_title_shadow_color);
1249         RrColorFree(theme->menu_text_normal_shadow_color);
1250         RrColorFree(theme->menu_text_selected_shadow_color);
1251         RrColorFree(theme->menu_text_disabled_shadow_color);
1252         RrColorFree(theme->menu_text_disabled_selected_shadow_color);
1253
1254         g_free(theme->def_win_icon);
1255
1256         RrPixmapMaskFree(theme->max_mask);
1257         RrPixmapMaskFree(theme->max_toggled_mask);
1258         RrPixmapMaskFree(theme->max_toggled_hover_mask);
1259         RrPixmapMaskFree(theme->max_toggled_pressed_mask);
1260         RrPixmapMaskFree(theme->max_disabled_mask);
1261         RrPixmapMaskFree(theme->max_hover_mask);
1262         RrPixmapMaskFree(theme->max_pressed_mask);
1263         RrPixmapMaskFree(theme->desk_mask);
1264         RrPixmapMaskFree(theme->desk_toggled_mask);
1265         RrPixmapMaskFree(theme->desk_toggled_hover_mask);
1266         RrPixmapMaskFree(theme->desk_toggled_pressed_mask);
1267         RrPixmapMaskFree(theme->desk_disabled_mask);
1268         RrPixmapMaskFree(theme->desk_hover_mask);
1269         RrPixmapMaskFree(theme->desk_pressed_mask);
1270         RrPixmapMaskFree(theme->shade_mask);
1271         RrPixmapMaskFree(theme->shade_toggled_mask);
1272         RrPixmapMaskFree(theme->shade_toggled_hover_mask);
1273         RrPixmapMaskFree(theme->shade_toggled_pressed_mask);
1274         RrPixmapMaskFree(theme->shade_disabled_mask);
1275         RrPixmapMaskFree(theme->shade_hover_mask);
1276         RrPixmapMaskFree(theme->shade_pressed_mask);
1277         RrPixmapMaskFree(theme->iconify_mask);
1278         RrPixmapMaskFree(theme->iconify_disabled_mask);
1279         RrPixmapMaskFree(theme->iconify_hover_mask);
1280         RrPixmapMaskFree(theme->iconify_pressed_mask);
1281         RrPixmapMaskFree(theme->close_mask);
1282         RrPixmapMaskFree(theme->close_disabled_mask);
1283         RrPixmapMaskFree(theme->close_hover_mask);
1284         RrPixmapMaskFree(theme->close_pressed_mask);
1285         RrPixmapMaskFree(theme->menu_bullet_mask);
1286
1287         RrFontClose(theme->win_font_focused); 
1288         RrFontClose(theme->win_font_unfocused);
1289         RrFontClose(theme->menu_title_font);
1290         RrFontClose(theme->menu_font);
1291
1292         RrAppearanceFree(theme->a_disabled_focused_max);
1293         RrAppearanceFree(theme->a_disabled_unfocused_max);
1294         RrAppearanceFree(theme->a_hover_focused_max);
1295         RrAppearanceFree(theme->a_hover_unfocused_max);
1296         RrAppearanceFree(theme->a_focused_unpressed_max);
1297         RrAppearanceFree(theme->a_focused_pressed_max);
1298         RrAppearanceFree(theme->a_unfocused_unpressed_max);
1299         RrAppearanceFree(theme->a_unfocused_pressed_max);
1300         RrAppearanceFree(theme->a_toggled_hover_focused_max);
1301         RrAppearanceFree(theme->a_toggled_hover_unfocused_max);
1302         RrAppearanceFree(theme->a_toggled_focused_unpressed_max);
1303         RrAppearanceFree(theme->a_toggled_focused_pressed_max);
1304         RrAppearanceFree(theme->a_toggled_unfocused_unpressed_max);
1305         RrAppearanceFree(theme->a_toggled_unfocused_pressed_max);
1306         RrAppearanceFree(theme->a_disabled_focused_close);
1307         RrAppearanceFree(theme->a_disabled_unfocused_close);
1308         RrAppearanceFree(theme->a_hover_focused_close);
1309         RrAppearanceFree(theme->a_hover_unfocused_close);
1310         RrAppearanceFree(theme->a_focused_unpressed_close);
1311         RrAppearanceFree(theme->a_focused_pressed_close);
1312         RrAppearanceFree(theme->a_unfocused_unpressed_close);
1313         RrAppearanceFree(theme->a_unfocused_pressed_close);
1314         RrAppearanceFree(theme->a_disabled_focused_desk);
1315         RrAppearanceFree(theme->a_disabled_unfocused_desk);
1316         RrAppearanceFree(theme->a_hover_focused_desk);
1317         RrAppearanceFree(theme->a_hover_unfocused_desk);
1318         RrAppearanceFree(theme->a_focused_unpressed_desk);
1319         RrAppearanceFree(theme->a_focused_pressed_desk);
1320         RrAppearanceFree(theme->a_unfocused_unpressed_desk);
1321         RrAppearanceFree(theme->a_unfocused_pressed_desk);
1322         RrAppearanceFree(theme->a_toggled_hover_focused_desk);
1323         RrAppearanceFree(theme->a_toggled_hover_unfocused_desk);
1324         RrAppearanceFree(theme->a_toggled_focused_unpressed_desk);
1325         RrAppearanceFree(theme->a_toggled_focused_pressed_desk);
1326         RrAppearanceFree(theme->a_toggled_unfocused_unpressed_desk);
1327         RrAppearanceFree(theme->a_toggled_unfocused_pressed_desk);
1328         RrAppearanceFree(theme->a_disabled_focused_shade);
1329         RrAppearanceFree(theme->a_disabled_unfocused_shade);
1330         RrAppearanceFree(theme->a_hover_focused_shade);
1331         RrAppearanceFree(theme->a_hover_unfocused_shade);
1332         RrAppearanceFree(theme->a_focused_unpressed_shade);
1333         RrAppearanceFree(theme->a_focused_pressed_shade);
1334         RrAppearanceFree(theme->a_unfocused_unpressed_shade);
1335         RrAppearanceFree(theme->a_unfocused_pressed_shade);
1336         RrAppearanceFree(theme->a_toggled_hover_focused_shade);
1337         RrAppearanceFree(theme->a_toggled_hover_unfocused_shade);
1338         RrAppearanceFree(theme->a_toggled_focused_unpressed_shade);
1339         RrAppearanceFree(theme->a_toggled_focused_pressed_shade);
1340         RrAppearanceFree(theme->a_toggled_unfocused_unpressed_shade);
1341         RrAppearanceFree(theme->a_toggled_unfocused_pressed_shade);
1342         RrAppearanceFree(theme->a_disabled_focused_iconify);
1343         RrAppearanceFree(theme->a_disabled_unfocused_iconify);
1344         RrAppearanceFree(theme->a_hover_focused_iconify);
1345         RrAppearanceFree(theme->a_hover_unfocused_iconify);
1346         RrAppearanceFree(theme->a_focused_unpressed_iconify);
1347         RrAppearanceFree(theme->a_focused_pressed_iconify);
1348         RrAppearanceFree(theme->a_unfocused_unpressed_iconify);
1349         RrAppearanceFree(theme->a_unfocused_pressed_iconify);
1350         RrAppearanceFree(theme->a_focused_grip);
1351         RrAppearanceFree(theme->a_unfocused_grip);
1352         RrAppearanceFree(theme->a_focused_title);
1353         RrAppearanceFree(theme->a_unfocused_title);
1354         RrAppearanceFree(theme->a_focused_label);
1355         RrAppearanceFree(theme->a_unfocused_label);
1356         RrAppearanceFree(theme->a_icon);
1357         RrAppearanceFree(theme->a_focused_handle);
1358         RrAppearanceFree(theme->a_unfocused_handle);
1359         RrAppearanceFree(theme->a_menu);
1360         RrAppearanceFree(theme->a_menu_title);
1361         RrAppearanceFree(theme->a_menu_text_title);
1362         RrAppearanceFree(theme->a_menu_normal);
1363         RrAppearanceFree(theme->a_menu_selected);
1364         RrAppearanceFree(theme->a_menu_disabled);
1365         RrAppearanceFree(theme->a_menu_disabled_selected);
1366         RrAppearanceFree(theme->a_menu_text_normal);
1367         RrAppearanceFree(theme->a_menu_text_selected);
1368         RrAppearanceFree(theme->a_menu_text_disabled);
1369         RrAppearanceFree(theme->a_menu_text_disabled_selected);
1370         RrAppearanceFree(theme->a_menu_bullet_normal);
1371         RrAppearanceFree(theme->a_menu_bullet_selected);
1372         RrAppearanceFree(theme->a_clear);
1373         RrAppearanceFree(theme->a_clear_tex);
1374         RrAppearanceFree(theme->osd_hilite_bg);
1375         RrAppearanceFree(theme->osd_hilite_fg);
1376         RrAppearanceFree(theme->osd_hilite_label);
1377         RrAppearanceFree(theme->osd_unhilite_fg);
1378
1379         g_free(theme);
1380     }
1381 }
1382
1383 static gboolean read_mask(ParseState *ps, const gchar *maskname,
1384                           RrPixmapMask **value)
1385 {
1386     gboolean ret = FALSE;
1387     gchar *s;
1388     gint hx, hy; /* ignored */
1389     guint w, h;
1390     guchar *b;
1391
1392     s = g_build_filename(ps->path, maskname, NULL);
1393     if (XReadBitmapFileData(s, &w, &h, &b, &hx, &hy) == BitmapSuccess) {
1394         ret = TRUE;
1395         *value = RrPixmapMaskNew(ps->inst, w, h, (gchar*)b);
1396         XFree(b);
1397     }
1398     g_free(s);
1399
1400     return ret;
1401 }
1402
1403 static void set_default_appearance(RrAppearance *a)
1404 {
1405     a->surface.grad = RR_SURFACE_SOLID;
1406     a->surface.relief = RR_RELIEF_FLAT;
1407     a->surface.bevel = RR_BEVEL_1;
1408     a->surface.interlaced = FALSE;
1409     a->surface.border = FALSE;
1410     a->surface.primary = RrColorNew(a->inst, 0, 0, 0);
1411     a->surface.secondary = RrColorNew(a->inst, 0, 0, 0);
1412 }
1413
1414 /* Reads the output from gimp's C-Source file format into valid RGBA data for
1415    an RrTextureRGBA. */
1416 static RrPixel32* read_c_image(gint width, gint height, const guint8 *data)
1417 {
1418     RrPixel32 *im, *p;
1419     gint i;
1420
1421     p = im = g_memdup(data, width * height * sizeof(RrPixel32));
1422
1423     for (i = 0; i < width * height; ++i) {
1424         guchar a = ((*p >> 24) & 0xff);
1425         guchar b = ((*p >> 16) & 0xff);
1426         guchar g = ((*p >>  8) & 0xff);
1427         guchar r = ((*p >>  0) & 0xff);
1428
1429         *p = ((r << RrDefaultRedOffset) +
1430               (g << RrDefaultGreenOffset) +
1431               (b << RrDefaultBlueOffset) +
1432               (a << RrDefaultAlphaOffset));
1433         p++;
1434     }
1435
1436     return im;
1437 }
1438
1439 static void parse_style(gchar *tex, RrSurfaceColorType *grad,
1440                         RrReliefType *relief, RrBevelType *bevel,
1441                         gboolean *interlaced, gboolean *border,
1442                         gboolean allow_trans)
1443 {
1444     gchar *t;
1445
1446     /* convert to all lowercase */
1447     for (t = tex; *t != '\0'; ++t)
1448         *t = g_ascii_tolower(*t);
1449
1450     if (allow_trans && strstr(tex, "parentrelative") != NULL) {
1451         *grad = RR_SURFACE_PARENTREL;
1452     } else {
1453         if (strstr(tex, "gradient") != NULL) {
1454             if (strstr(tex, "crossdiagonal") != NULL)
1455                 *grad = RR_SURFACE_CROSS_DIAGONAL;
1456             else if (strstr(tex, "pyramid") != NULL)
1457                 *grad = RR_SURFACE_PYRAMID;
1458             else if (strstr(tex, "mirrorhorizontal") != NULL)
1459                 *grad = RR_SURFACE_MIRROR_HORIZONTAL;
1460             else if (strstr(tex, "horizontal") != NULL)
1461                 *grad = RR_SURFACE_HORIZONTAL;
1462             else if (strstr(tex, "splitvertical") != NULL)
1463                 *grad = RR_SURFACE_SPLIT_VERTICAL;
1464             else if (strstr(tex, "vertical") != NULL)
1465                 *grad = RR_SURFACE_VERTICAL;
1466             else
1467                 *grad = RR_SURFACE_DIAGONAL;
1468         } else {
1469             *grad = RR_SURFACE_SOLID;
1470         }
1471
1472         if (strstr(tex, "sunken") != NULL)
1473             *relief = RR_RELIEF_SUNKEN;
1474         else if (strstr(tex, "flat") != NULL)
1475             *relief = RR_RELIEF_FLAT;
1476         else
1477             *relief = RR_RELIEF_RAISED;
1478
1479         *border = FALSE;
1480         if (*relief == RR_RELIEF_FLAT) {
1481             if (strstr(tex, "border") != NULL)
1482                 *border = TRUE;
1483         } else {
1484             if (strstr(tex, "bevel2") != NULL)
1485                 *bevel = RR_BEVEL_2;
1486             else
1487                 *bevel = RR_BEVEL_1;
1488         }
1489
1490         if (strstr(tex, "interlaced") != NULL)
1491             *interlaced = TRUE;
1492         else
1493             *interlaced = FALSE;
1494     }
1495 }
1496
1497 static xmlNodePtr find_node(xmlNodePtr n, const gchar *names[])
1498 {
1499     gint i;
1500
1501     for (i = 0; names[i] && n; ++i)
1502         n = parse_find_node(names[i], n->children);
1503     return n;
1504 }
1505
1506 static gboolean find_int(ParseState *ps, xmlNodePtr n, const gchar *names[],
1507                          gint *integer, gint lower, gint upper)
1508 {
1509     gint i;
1510
1511     if ((n = find_node(n, names))) {
1512         i = parse_int(ps->doc, n);
1513         if (i >= lower && i <= upper) {
1514             *integer = i;
1515             return TRUE;
1516         }
1517     }
1518     return FALSE;
1519 }
1520
1521 static gboolean find_string(ParseState *ps, xmlNodePtr n, const gchar *names[],
1522                             gchar **string)
1523 {
1524     if ((n = find_node(n, names))) {
1525         *string = parse_string(ps->doc, n);
1526         return TRUE;
1527     }
1528     return FALSE;
1529 }
1530
1531 static gboolean find_color(ParseState *ps, xmlNodePtr n, const gchar *names[],
1532                            RrColor **color, gchar *alpha)
1533 {
1534     if ((n = find_node(n, names))) {
1535         int r,g,b,a;
1536         if (parse_attr_int("r", n, &r) &&
1537             parse_attr_int("g", n, &g) &&
1538             parse_attr_int("b", n, &b) &&
1539             parse_attr_int("a", n, &a) &&
1540             r >= 0 && g >= 0 && b >= 0 && a >= 0 &&
1541             r < 256 && g < 256 && b < 256 && a < 256)
1542         {
1543             *color = RrColorNew(ps->inst, r, g, b);
1544             if (alpha) *alpha = a;
1545             return TRUE;
1546         }
1547     }
1548     return FALSE;
1549 }
1550
1551 static gboolean find_point(ParseState *ps, xmlNodePtr n, const gchar *names[],
1552                            gint *x, gint *y,
1553                            gint lowx, gint upx, gint lowy, gint upy)
1554 {
1555     if ((n = find_node(n, names))) {
1556         gint a, b;
1557         if (parse_attr_int("x", n, &a) &&
1558             parse_attr_int("y", n, &b) &&
1559             a >= lowx && a <= upx && b >= lowy && b <= upy)
1560         {
1561             *x = a; *y = b;
1562             return TRUE;
1563         }
1564     }
1565     return FALSE;
1566 }
1567
1568 static gboolean find_shadow(ParseState *ps, xmlNodePtr n, const gchar *names[],
1569                             RrAppearance *a)
1570 {
1571     return find_point(ps, n, names,
1572                       &a->texture[0].data.text.shadow_offset_x,
1573                       &a->texture[0].data.text.shadow_offset_y,
1574                       -20, 20, -20, 20);
1575 }
1576
1577 static gboolean find_appearance(ParseState *ps, xmlNodePtr n, const gchar *names[],
1578                                 RrAppearance *a, gboolean allow_trans)
1579 {
1580     xmlNodePtr n2;
1581
1582     if (!(n = find_node(n, names)))
1583         return FALSE;
1584
1585     if ((n2 = find_node(n, L("style")))) {
1586         gchar *s = parse_string(ps->doc, n2);
1587         parse_style(s, &a->surface.grad, &a->surface.relief,
1588                     &a->surface.bevel, &a->surface.interlaced,
1589                     &a->surface.border, allow_trans);
1590         g_free(s);
1591     } else
1592         return FALSE;
1593
1594     if (!find_color(ps, n, L("primary"), &a->surface.primary, NULL))
1595         a->surface.primary = RrColorNew(ps->inst, 0, 0, 0);
1596     if (!find_color(ps, n, L("secondary"), &a->surface.secondary, NULL))
1597         a->surface.secondary = RrColorNew(ps->inst, 0, 0, 0);
1598     if (a->surface.border)
1599         if (!find_color(ps, n, L("border"),
1600                         &a->surface.border_color, NULL))
1601             a->surface.border_color = RrColorNew(ps->inst, 0, 0, 0);
1602     if (a->surface.interlaced)
1603         if (!find_color(ps, n, L("interlace"),
1604                         &a->surface.interlace_color, NULL))
1605             a->surface.interlace_color = RrColorNew(ps->inst, 0, 0, 0);
1606
1607     return TRUE;
1608 }