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