]> icculus.org git repositories - dana/openbox.git/blob - render/theme.c
Add theme options for menu line separators.
[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 <X11/Xresource.h>
30 #include <ctype.h>
31 #include <stdlib.h>
32 #include <string.h>
33
34 static XrmDatabase loaddb(const gchar *name, gchar **path);
35 static gboolean read_int(XrmDatabase db, const gchar *rname, gint *value);
36 static gboolean read_string(XrmDatabase db, const gchar *rname, gchar **value);
37 static gboolean read_color(XrmDatabase db, const RrInstance *inst,
38                            const gchar *rname, RrColor **value);
39 static gboolean read_mask(const RrInstance *inst, const gchar *path,
40                           RrTheme *theme, const gchar *maskname,
41                           RrPixmapMask **value);
42 static gboolean read_appearance(XrmDatabase db, const RrInstance *inst,
43                                 const gchar *rname, RrAppearance *value,
44                                 gboolean allow_trans);
45 static int parse_inline_number(const char *p);
46 static RrPixel32* read_c_image(gint width, gint height, const guint8 *data);
47 static void set_default_appearance(RrAppearance *a);
48
49 RrTheme* RrThemeNew(const RrInstance *inst, const gchar *name,
50                     gboolean allow_fallback,
51                     RrFont *active_window_font, RrFont *inactive_window_font,
52                     RrFont *menu_title_font, RrFont *menu_item_font,
53                     RrFont *osd_font)
54 {
55     XrmDatabase db = NULL;
56     RrJustify winjust, mtitlejust;
57     gchar *str;
58     RrTheme *theme;
59     gchar *path;
60     gboolean userdef;
61
62     if (name) {
63         db = loaddb(name, &path);
64         if (db == NULL) {
65             g_message("Unable to load the theme '%s'", name);
66             if (allow_fallback)
67                 g_message("Falling back to the default theme '%s'",
68                           DEFAULT_THEME);
69             /* fallback to the default theme */
70             name = NULL;
71         }
72     }
73     if (name == NULL) {
74         if (allow_fallback) {
75             db = loaddb(DEFAULT_THEME, &path);
76             if (db == NULL) {
77                 g_message("Unable to load the theme '%s'", DEFAULT_THEME);
78                 return NULL;
79             }
80         } else
81             return NULL;
82     }
83
84     theme = g_new0(RrTheme, 1);
85
86     theme->inst = inst;
87     theme->name = g_strdup(name ? name : DEFAULT_THEME);
88
89     theme->a_disabled_focused_max = RrAppearanceNew(inst, 1);
90     theme->a_disabled_unfocused_max = RrAppearanceNew(inst, 1);
91     theme->a_hover_focused_max = RrAppearanceNew(inst, 1);
92     theme->a_hover_unfocused_max = RrAppearanceNew(inst, 1);
93     theme->a_toggled_focused_unpressed_max = RrAppearanceNew(inst, 1);
94     theme->a_toggled_unfocused_unpressed_max = RrAppearanceNew(inst, 1);
95     theme->a_toggled_hover_focused_max = RrAppearanceNew(inst, 1);
96     theme->a_toggled_hover_unfocused_max = RrAppearanceNew(inst, 1);
97     theme->a_toggled_focused_pressed_max = RrAppearanceNew(inst, 1);
98     theme->a_toggled_unfocused_pressed_max = RrAppearanceNew(inst, 1);
99     theme->a_focused_unpressed_max = RrAppearanceNew(inst, 1);
100     theme->a_focused_pressed_max = RrAppearanceNew(inst, 1);
101     theme->a_unfocused_unpressed_max = RrAppearanceNew(inst, 1);
102     theme->a_unfocused_pressed_max = RrAppearanceNew(inst, 1);
103     theme->a_focused_grip = RrAppearanceNew(inst, 0);
104     theme->a_unfocused_grip = RrAppearanceNew(inst, 0);
105     theme->a_focused_title = RrAppearanceNew(inst, 0);
106     theme->a_unfocused_title = RrAppearanceNew(inst, 0);
107     theme->a_focused_label = RrAppearanceNew(inst, 1);
108     theme->a_unfocused_label = RrAppearanceNew(inst, 1);
109     theme->a_icon = RrAppearanceNew(inst, 1);
110     theme->a_focused_handle = RrAppearanceNew(inst, 0);
111     theme->a_unfocused_handle = RrAppearanceNew(inst, 0);
112     theme->a_menu = RrAppearanceNew(inst, 0);
113     theme->a_menu_title = RrAppearanceNew(inst, 0);
114     theme->a_menu_text_title = RrAppearanceNew(inst, 1);
115     theme->a_menu_normal = RrAppearanceNew(inst, 0);
116     theme->a_menu_selected = RrAppearanceNew(inst, 0);
117     theme->a_menu_disabled = RrAppearanceNew(inst, 0);
118     /* a_menu_disabled_selected is copied from a_menu_selected */
119     theme->a_menu_text_normal = RrAppearanceNew(inst, 1);
120     theme->a_menu_text_selected = RrAppearanceNew(inst, 1);
121     theme->a_menu_text_disabled = RrAppearanceNew(inst, 1);
122     theme->a_menu_text_disabled_selected = RrAppearanceNew(inst, 1);
123     theme->a_menu_bullet_normal = RrAppearanceNew(inst, 1);
124     theme->a_menu_bullet_selected = RrAppearanceNew(inst, 1);
125     theme->a_clear = RrAppearanceNew(inst, 0);
126     theme->a_clear_tex = RrAppearanceNew(inst, 1);
127     theme->osd_hilite_bg = RrAppearanceNew(inst, 0);
128     theme->osd_hilite_label = RrAppearanceNew(inst, 1);
129     theme->osd_hilite_fg = RrAppearanceNew(inst, 0);
130     theme->osd_unhilite_fg = RrAppearanceNew(inst, 0);
131
132     /* load the font stuff */
133     if (active_window_font) {
134         theme->win_font_focused = active_window_font;
135         RrFontRef(active_window_font);
136     } else
137         theme->win_font_focused = RrFontOpenDefault(inst);
138
139     if (inactive_window_font) {
140         theme->win_font_unfocused = inactive_window_font;
141         RrFontRef(inactive_window_font);
142     } else
143         theme->win_font_unfocused = RrFontOpenDefault(inst);
144
145     winjust = RR_JUSTIFY_LEFT;
146     if (read_string(db, "window.label.text.justify", &str)) {
147         if (!g_ascii_strcasecmp(str, "right"))
148             winjust = RR_JUSTIFY_RIGHT;
149         else if (!g_ascii_strcasecmp(str, "center"))
150             winjust = RR_JUSTIFY_CENTER;
151     }
152
153     if (menu_title_font) {
154         theme->menu_title_font = menu_title_font;
155         RrFontRef(menu_title_font);
156     } else
157         theme->menu_title_font = RrFontOpenDefault(inst);
158
159     mtitlejust = RR_JUSTIFY_LEFT;
160     if (read_string(db, "menu.title.text.justify", &str)) {
161         if (!g_ascii_strcasecmp(str, "right"))
162             mtitlejust = RR_JUSTIFY_RIGHT;
163         else if (!g_ascii_strcasecmp(str, "center"))
164             mtitlejust = RR_JUSTIFY_CENTER;
165     }
166
167     if (menu_item_font) {
168         theme->menu_font = menu_item_font;
169         RrFontRef(menu_item_font);
170     } else
171         theme->menu_font = RrFontOpenDefault(inst);
172
173     if (osd_font) {
174         theme->osd_font = osd_font;
175         RrFontRef(osd_font);
176     } else
177         theme->osd_font = RrFontOpenDefault(inst);
178
179     /* load direct dimensions */
180     if ((!read_int(db, "menu.overlap.x", &theme->menu_overlap_x) &&
181          !read_int(db, "menu.overlap", &theme->menu_overlap_x)) ||
182         theme->menu_overlap_x < -100 || theme->menu_overlap_x > 100)
183         theme->menu_overlap_x = 0;
184     if ((!read_int(db, "menu.overlap.y", &theme->menu_overlap_y) &&
185          !read_int(db, "menu.overlap", &theme->menu_overlap_y)) ||
186         theme->menu_overlap_y < -100 || theme->menu_overlap_y > 100)
187         theme->menu_overlap_y = 0;
188     if (!read_int(db, "window.handle.width", &theme->handle_height) ||
189         theme->handle_height < 0 || theme->handle_height > 100)
190         theme->handle_height = 6;
191     if (!read_int(db, "padding.width", &theme->paddingx) ||
192         theme->paddingx < 0 || theme->paddingx > 100)
193         theme->paddingx = 3;
194     if (!read_int(db, "padding.height", &theme->paddingy) ||
195         theme->paddingy < 0 || theme->paddingy > 100)
196         theme->paddingy = theme->paddingx;
197     if (!read_int(db, "border.width", &theme->fbwidth) ||
198         theme->fbwidth < 0 || theme->fbwidth > 100)
199         theme->fbwidth = 1;
200     /* menu border width inherits from the frame border width */
201     if (!read_int(db, "menu.border.width", &theme->mbwidth) ||
202         theme->mbwidth < 0 || theme->mbwidth > 100)
203         theme->mbwidth = theme->fbwidth;
204     /* osd border width inherits from the frame border width */
205     if (!read_int(db, "osd.border.width", &theme->obwidth) ||
206         theme->obwidth < 0 || theme->obwidth > 100)
207         theme->obwidth = theme->fbwidth;
208     if (!read_int(db, "window.client.padding.width", &theme->cbwidthx) ||
209         theme->cbwidthx < 0 || theme->cbwidthx > 100)
210         theme->cbwidthx = theme->paddingx;
211     if (!read_int(db, "window.client.padding.height", &theme->cbwidthy) ||
212         theme->cbwidthy < 0 || theme->cbwidthy > 100)
213         theme->cbwidthy = theme->cbwidthx;
214     if (!read_int(db, "menu.separator.width", &theme->menu_sep_width) ||
215         theme->menu_sep_width < 1 || theme->menu_sep_width > 100)
216         theme->menu_sep_width = 1;
217     if (!read_int(db, "menu.separator.padding.width",
218                   &theme->menu_sep_paddingx) ||
219         theme->menu_sep_paddingx < 0 || theme->menu_sep_paddingx > 100)
220         theme->menu_sep_paddingx = 6;
221     if (!read_int(db, "menu.separator.padding.height",
222                   &theme->menu_sep_paddingy) ||
223         theme->menu_sep_paddingy < 0 || theme->menu_sep_paddingy > 100)
224         theme->menu_sep_paddingy = 3;
225
226     /* load colors */
227     if (!read_color(db, inst,
228                     "window.active.border.color",
229                     &theme->frame_focused_border_color) &&
230         !read_color(db, inst,
231                     "border.color",
232                     &theme->frame_focused_border_color))
233         theme->frame_focused_border_color = RrColorNew(inst, 0, 0, 0);
234     /* title separator focused color inherits from focused border color */
235     if (!read_color(db, inst,
236                     "window.active.title.separator.color",
237                     &theme->title_separator_focused_color))
238         theme->title_separator_focused_color =
239             RrColorNew(inst,
240                        theme->frame_focused_border_color->r,
241                        theme->frame_focused_border_color->g,
242                        theme->frame_focused_border_color->b);
243     /* unfocused border color inherits from frame focused border color */
244     if (!read_color(db, inst,
245                     "window.inactive.border.color",
246                     &theme->frame_unfocused_border_color))
247         theme->frame_unfocused_border_color =
248             RrColorNew(inst, theme->frame_focused_border_color->r,
249                        theme->frame_focused_border_color->g,
250                        theme->frame_focused_border_color->b);
251     /* title separator unfocused color inherits from unfocused border color */
252     if (!read_color(db, inst,
253                     "window.inactive.title.separator.color",
254                     &theme->title_separator_unfocused_color))
255         theme->title_separator_unfocused_color =
256             RrColorNew(inst,
257                        theme->frame_unfocused_border_color->r,
258                        theme->frame_unfocused_border_color->g,
259                        theme->frame_unfocused_border_color->b);
260
261     /* menu border color inherits from frame focused border color */
262     if (!read_color(db, inst, "menu.border.color", &theme->menu_border_color))
263         theme->menu_border_color =
264             RrColorNew(inst,
265                        theme->frame_focused_border_color->r,
266                        theme->frame_focused_border_color->g,
267                        theme->frame_focused_border_color->b);
268     /* osd border color inherits from frame focused border color */
269     if (!read_color(db, inst, "osd.border.color", &theme->osd_border_color))
270         theme->osd_border_color =
271             RrColorNew(inst,
272                        theme->frame_focused_border_color->r,
273                        theme->frame_focused_border_color->g,
274                        theme->frame_focused_border_color->b);
275     if (!read_color(db, inst,
276                     "window.active.client.color",
277                     &theme->cb_focused_color))
278         theme->cb_focused_color = RrColorNew(inst, 0xff, 0xff, 0xff);
279     if (!read_color(db, inst,
280                     "window.inactive.client.color",
281                     &theme->cb_unfocused_color))
282         theme->cb_unfocused_color = RrColorNew(inst, 0xff, 0xff, 0xff);
283     if (!read_color(db, inst,
284                     "window.active.label.text.color",
285                     &theme->title_focused_color))
286         theme->title_focused_color = RrColorNew(inst, 0x0, 0x0, 0x0);
287     if (!read_color(db, inst, "osd.label.text.color", &theme->osd_color))
288         theme->osd_color = RrColorNew(inst,
289                                       theme->title_focused_color->r,
290                                       theme->title_focused_color->g,
291                                       theme->title_focused_color->b);
292     if (!read_color(db, inst,
293                     "window.inactive.label.text.color",
294                     &theme->title_unfocused_color))
295         theme->title_unfocused_color = RrColorNew(inst, 0xff, 0xff, 0xff);
296     if (!read_color(db, inst,
297                     "window.active.button.unpressed.image.color",
298                     &theme->titlebut_focused_unpressed_color))
299         theme->titlebut_focused_unpressed_color = RrColorNew(inst, 0, 0, 0);
300     if (!read_color(db, inst,
301                     "window.inactive.button.unpressed.image.color",
302                     &theme->titlebut_unfocused_unpressed_color))
303         theme->titlebut_unfocused_unpressed_color =
304             RrColorNew(inst, 0xff, 0xff, 0xff);
305     if (!read_color(db, inst,
306                     "window.active.button.pressed.image.color",
307                     &theme->titlebut_focused_pressed_color))
308         theme->titlebut_focused_pressed_color =
309             RrColorNew(inst,
310                        theme->titlebut_focused_unpressed_color->r,
311                        theme->titlebut_focused_unpressed_color->g,
312                        theme->titlebut_focused_unpressed_color->b);
313     if (!read_color(db, inst,
314                     "window.inactive.button.pressed.image.color",
315                     &theme->titlebut_unfocused_pressed_color))
316         theme->titlebut_unfocused_pressed_color =
317             RrColorNew(inst,
318                        theme->titlebut_unfocused_unpressed_color->r,
319                        theme->titlebut_unfocused_unpressed_color->g,
320                        theme->titlebut_unfocused_unpressed_color->b);
321     if (!read_color(db, inst,
322                     "window.active.button.disabled.image.color",
323                     &theme->titlebut_disabled_focused_color))
324         theme->titlebut_disabled_focused_color =
325             RrColorNew(inst, 0xff, 0xff, 0xff);
326     if (!read_color(db, inst,
327                     "window.inactive.button.disabled.image.color",
328                     &theme->titlebut_disabled_unfocused_color))
329         theme->titlebut_disabled_unfocused_color = RrColorNew(inst, 0, 0, 0);
330     if (!read_color(db, inst,
331                     "window.active.button.hover.image.color",
332                     &theme->titlebut_hover_focused_color))
333         theme->titlebut_hover_focused_color =
334             RrColorNew(inst,
335                        theme->titlebut_focused_unpressed_color->r,
336                        theme->titlebut_focused_unpressed_color->g,
337                        theme->titlebut_focused_unpressed_color->b);
338     if (!read_color(db, inst,
339                     "window.inactive.button.hover.image.color",
340                     &theme->titlebut_hover_unfocused_color))
341         theme->titlebut_hover_unfocused_color =
342             RrColorNew(inst,
343                        theme->titlebut_unfocused_unpressed_color->r,
344                        theme->titlebut_unfocused_unpressed_color->g,
345                        theme->titlebut_unfocused_unpressed_color->b);
346     if (!read_color(db, inst,
347                     "window.active.button.toggled.unpressed.image.color",
348                     &theme->titlebut_toggled_focused_unpressed_color) &&
349         !read_color(db, inst,
350                     "window.active.button.toggled.image.color",
351                     &theme->titlebut_toggled_focused_unpressed_color))
352         theme->titlebut_toggled_focused_unpressed_color =
353             RrColorNew(inst,
354                        theme->titlebut_focused_pressed_color->r,
355                        theme->titlebut_focused_pressed_color->g,
356                        theme->titlebut_focused_pressed_color->b);
357     if (!read_color(db, inst,
358                     "window.inactive.button.toggled.unpressed.image.color",
359                     &theme->titlebut_toggled_unfocused_unpressed_color) &&
360         !read_color(db, inst,
361                     "window.inactive.button.toggled.image.color",
362                     &theme->titlebut_toggled_unfocused_unpressed_color))
363         theme->titlebut_toggled_unfocused_unpressed_color =
364             RrColorNew(inst,
365                        theme->titlebut_unfocused_pressed_color->r,
366                        theme->titlebut_unfocused_pressed_color->g,
367                        theme->titlebut_unfocused_pressed_color->b);
368     if (!read_color(db, inst,
369                     "window.active.button.toggled.hover.image.color",
370                     &theme->titlebut_toggled_hover_focused_color))
371         theme->titlebut_toggled_hover_focused_color =
372             RrColorNew(inst,
373                        theme->titlebut_toggled_focused_unpressed_color->r,
374                        theme->titlebut_toggled_focused_unpressed_color->g,
375                        theme->titlebut_toggled_focused_unpressed_color->b);
376     if (!read_color(db, inst,
377                     "window.inactive.button.toggled.hover.image.color",
378                     &theme->titlebut_toggled_hover_unfocused_color))
379         theme->titlebut_toggled_hover_unfocused_color =
380             RrColorNew(inst,
381                        theme->titlebut_toggled_unfocused_unpressed_color->r,
382                        theme->titlebut_toggled_unfocused_unpressed_color->g,
383                        theme->titlebut_toggled_unfocused_unpressed_color->b);
384     if (!read_color(db, inst,
385                     "window.active.button.toggled.pressed.image.color",
386                     &theme->titlebut_toggled_focused_pressed_color))
387         theme->titlebut_toggled_focused_pressed_color =
388             RrColorNew(inst,
389                        theme->titlebut_focused_pressed_color->r,
390                        theme->titlebut_focused_pressed_color->g,
391                        theme->titlebut_focused_pressed_color->b);
392     if (!read_color(db, inst,
393                     "window.inactive.button.toggled.pressed.image.color",
394                     &theme->titlebut_toggled_unfocused_pressed_color))
395         theme->titlebut_toggled_unfocused_pressed_color =
396             RrColorNew(inst,
397                        theme->titlebut_unfocused_pressed_color->r,
398                        theme->titlebut_unfocused_pressed_color->g,
399                        theme->titlebut_unfocused_pressed_color->b);
400     if (!read_color(db, inst,
401                     "menu.title.text.color", &theme->menu_title_color))
402         theme->menu_title_color = RrColorNew(inst, 0, 0, 0);
403     if (!read_color(db, inst,
404                     "menu.items.text.color", &theme->menu_color))
405         theme->menu_color = RrColorNew(inst, 0xff, 0xff, 0xff);
406     if (!read_color(db, inst,
407                     "menu.items.disabled.text.color",
408                     &theme->menu_disabled_color))
409         theme->menu_disabled_color = RrColorNew(inst, 0, 0, 0);
410     if (!read_color(db, inst,
411                     "menu.items.active.disabled.text.color",
412                     &theme->menu_disabled_selected_color))
413         theme->menu_disabled_selected_color =
414             RrColorNew(inst,
415                        theme->menu_disabled_color->r,
416                        theme->menu_disabled_color->g,
417                        theme->menu_disabled_color->b);
418     if (!read_color(db, inst,
419                     "menu.items.active.text.color",
420                     &theme->menu_selected_color))
421         theme->menu_selected_color = RrColorNew(inst, 0, 0, 0);
422     if (!read_color(db, inst,
423                     "menu.separator.color", &theme->menu_sep_color))
424         theme->menu_sep_color = RrColorNew(inst,
425                                            theme->menu_color->r,
426                                            theme->menu_color->g,
427                                            theme->menu_color->b);
428
429     /* load the image masks */
430
431     /* maximize button masks */
432     userdef = TRUE;
433     if (!read_mask(inst, path, theme, "max.xbm", &theme->max_mask)) {
434             guchar data[] = { 0x3f, 0x3f, 0x21, 0x21, 0x21, 0x3f };
435             theme->max_mask = RrPixmapMaskNew(inst, 6, 6, (gchar*)data);
436             userdef = FALSE;
437     }
438     if (!read_mask(inst, path, theme, "max_toggled.xbm",
439                    &theme->max_toggled_mask))
440     {
441         if (userdef)
442             theme->max_toggled_mask = RrPixmapMaskCopy(theme->max_mask);
443         else {
444             guchar data[] = { 0x3e, 0x22, 0x2f, 0x29, 0x39, 0x0f };
445             theme->max_toggled_mask = RrPixmapMaskNew(inst, 6, 6,(gchar*)data);
446         }
447     }
448     if (!read_mask(inst, path, theme, "max_pressed.xbm",
449                    &theme->max_pressed_mask))
450         theme->max_pressed_mask = RrPixmapMaskCopy(theme->max_mask);
451     if (!read_mask(inst,path,theme,"max_disabled.xbm",
452                    &theme->max_disabled_mask))
453         theme->max_disabled_mask = RrPixmapMaskCopy(theme->max_mask);
454     if (!read_mask(inst, path, theme, "max_hover.xbm", &theme->max_hover_mask))
455         theme->max_hover_mask = RrPixmapMaskCopy(theme->max_mask);
456     if (!read_mask(inst, path, theme, "max_toggled_pressed.xbm",
457                    &theme->max_toggled_pressed_mask))
458         theme->max_toggled_pressed_mask =
459             RrPixmapMaskCopy(theme->max_toggled_mask);
460     if (!read_mask(inst, path, theme, "max_toggled_hover.xbm",
461                    &theme->max_toggled_hover_mask))
462         theme->max_toggled_hover_mask =
463             RrPixmapMaskCopy(theme->max_toggled_mask);
464
465     /* iconify button masks */
466     if (!read_mask(inst, path, theme, "iconify.xbm", &theme->iconify_mask)) {
467         guchar data[] = { 0x00, 0x00, 0x00, 0x00, 0x3f, 0x3f };
468         theme->iconify_mask = RrPixmapMaskNew(inst, 6, 6, (gchar*)data);
469     }
470     if (!read_mask(inst, path, theme, "iconify_pressed.xbm",
471                    &theme->iconify_pressed_mask))
472         theme->iconify_pressed_mask = RrPixmapMaskCopy(theme->iconify_mask);
473     if (!read_mask(inst, path, theme, "iconify_disabled.xbm",
474                    &theme->iconify_disabled_mask))
475         theme->iconify_disabled_mask = RrPixmapMaskCopy(theme->iconify_mask);
476     if (!read_mask(inst, path, theme, "iconify_hover.xbm",
477                    &theme->iconify_hover_mask))
478         theme->iconify_hover_mask = RrPixmapMaskCopy(theme->iconify_mask);
479
480     /* all desktops button masks */
481     userdef = TRUE;
482     if (!read_mask(inst, path, theme, "desk.xbm", &theme->desk_mask)) {
483         guchar data[] = { 0x33, 0x33, 0x00, 0x00, 0x33, 0x33 };
484         theme->desk_mask = RrPixmapMaskNew(inst, 6, 6, (gchar*)data);
485         userdef = FALSE;
486     }
487     if (!read_mask(inst, path, theme, "desk_toggled.xbm",
488                    &theme->desk_toggled_mask)) {
489         if (userdef)
490             theme->desk_toggled_mask = RrPixmapMaskCopy(theme->desk_mask);
491         else {
492             guchar data[] = { 0x00, 0x1e, 0x1a, 0x16, 0x1e, 0x00 };
493             theme->desk_toggled_mask =
494                 RrPixmapMaskNew(inst, 6, 6, (gchar*)data);
495         }
496     }
497     if (!read_mask(inst, path, theme, "desk_pressed.xbm",
498                    &theme->desk_pressed_mask))
499         theme->desk_pressed_mask = RrPixmapMaskCopy(theme->desk_mask);
500     if (!read_mask(inst, path, theme, "desk_disabled.xbm",
501                    &theme->desk_disabled_mask))
502         theme->desk_disabled_mask = RrPixmapMaskCopy(theme->desk_mask);
503     if (!read_mask(inst, path, theme, "desk_hover.xbm",
504                    &theme->desk_hover_mask))
505         theme->desk_hover_mask = RrPixmapMaskCopy(theme->desk_mask);
506     if (!read_mask(inst, path, theme, "desk_toggled_pressed.xbm",
507                    &theme->desk_toggled_pressed_mask))
508         theme->desk_toggled_pressed_mask =
509             RrPixmapMaskCopy(theme->desk_toggled_mask);
510     if (!read_mask(inst, path, theme, "desk_toggled_hover.xbm",
511                    &theme->desk_toggled_hover_mask))
512         theme->desk_toggled_hover_mask =
513             RrPixmapMaskCopy(theme->desk_toggled_mask);
514
515     /* shade button masks */
516     if (!read_mask(inst, path, theme, "shade.xbm", &theme->shade_mask)) {
517         guchar data[] = { 0x3f, 0x3f, 0x00, 0x00, 0x00, 0x00 };
518         theme->shade_mask = RrPixmapMaskNew(inst, 6, 6, (gchar*)data);
519     }
520     if (!read_mask(inst, path, theme, "shade_toggled.xbm",
521                   &theme->shade_toggled_mask))
522         theme->shade_toggled_mask = RrPixmapMaskCopy(theme->shade_mask);
523     if (!read_mask(inst, path, theme, "shade_pressed.xbm",
524                    &theme->shade_pressed_mask))
525         theme->shade_pressed_mask = RrPixmapMaskCopy(theme->shade_mask);
526     if (!read_mask(inst, path, theme, "shade_disabled.xbm",
527                    &theme->shade_disabled_mask))
528         theme->shade_disabled_mask = RrPixmapMaskCopy(theme->shade_mask);
529     if (!read_mask(inst, path, theme, "shade_hover.xbm",
530                    &theme->shade_hover_mask))
531         theme->shade_hover_mask = RrPixmapMaskCopy(theme->shade_mask);
532     if (!read_mask(inst, path, theme, "shade_toggled_pressed.xbm",
533                    &theme->shade_toggled_pressed_mask))
534         theme->shade_toggled_pressed_mask =
535             RrPixmapMaskCopy(theme->shade_toggled_mask);
536     if (!read_mask(inst, path, theme, "shade_toggled_hover.xbm",
537                    &theme->shade_toggled_hover_mask))
538         theme->shade_toggled_hover_mask =
539             RrPixmapMaskCopy(theme->shade_toggled_mask);
540
541     /* close button masks */
542     if (!read_mask(inst, path, theme, "close.xbm", &theme->close_mask)) {
543         guchar data[] = { 0x33, 0x3f, 0x1e, 0x1e, 0x3f, 0x33 };
544         theme->close_mask = RrPixmapMaskNew(inst, 6, 6, (gchar*)data);
545     }
546     if (!read_mask(inst, path, theme, "close_pressed.xbm",
547                    &theme->close_pressed_mask))
548         theme->close_pressed_mask = RrPixmapMaskCopy(theme->close_mask);
549     if (!read_mask(inst, path, theme, "close_disabled.xbm",
550                    &theme->close_disabled_mask))
551         theme->close_disabled_mask = RrPixmapMaskCopy(theme->close_mask);
552     if (!read_mask(inst, path, theme, "close_hover.xbm",
553                    &theme->close_hover_mask))
554         theme->close_hover_mask = RrPixmapMaskCopy(theme->close_mask);
555
556     /* submenu bullet mask */
557     if (!read_mask(inst, path, theme, "bullet.xbm", &theme->menu_bullet_mask))
558     {
559         guchar data[] = { 0x01, 0x03, 0x07, 0x0f, 0x07, 0x03, 0x01 };
560         theme->menu_bullet_mask = RrPixmapMaskNew(inst, 4, 7, (gchar*)data);
561     }
562
563     /* setup the default window icon */
564     theme->def_win_icon = read_c_image(OB_DEFAULT_ICON_WIDTH,
565                                        OB_DEFAULT_ICON_HEIGHT,
566                                        OB_DEFAULT_ICON_pixel_data);
567     theme->def_win_icon_w = OB_DEFAULT_ICON_WIDTH;
568     theme->def_win_icon_h = OB_DEFAULT_ICON_HEIGHT;
569
570
571     /* read the decoration textures */
572     if (!read_appearance(db, inst,
573                          "window.active.title.bg", theme->a_focused_title,
574                          FALSE))
575         set_default_appearance(theme->a_focused_title);
576     if (!read_appearance(db, inst,
577                          "window.inactive.title.bg", theme->a_unfocused_title,
578                          FALSE))
579         set_default_appearance(theme->a_unfocused_title);
580     if (!read_appearance(db, inst,
581                          "window.active.label.bg", theme->a_focused_label,
582                          TRUE))
583         set_default_appearance(theme->a_focused_label);
584     if (!read_appearance(db, inst,
585                          "window.inactive.label.bg", theme->a_unfocused_label,
586                          TRUE))
587         set_default_appearance(theme->a_unfocused_label);
588     if (!read_appearance(db, inst,
589                          "window.active.handle.bg", theme->a_focused_handle,
590                          FALSE))
591         set_default_appearance(theme->a_focused_handle);
592     if (!read_appearance(db, inst,
593                          "window.inactive.handle.bg",theme->a_unfocused_handle,
594                          FALSE))
595         set_default_appearance(theme->a_unfocused_handle);
596     if (!read_appearance(db, inst,
597                          "window.active.grip.bg", theme->a_focused_grip,
598                          TRUE))
599         set_default_appearance(theme->a_focused_grip);
600     if (!read_appearance(db, inst,
601                          "window.inactive.grip.bg", theme->a_unfocused_grip,
602                          TRUE))
603         set_default_appearance(theme->a_unfocused_grip);
604     if (!read_appearance(db, inst,
605                          "menu.items.bg", theme->a_menu,
606                          FALSE))
607         set_default_appearance(theme->a_menu);
608     if (!read_appearance(db, inst,
609                          "menu.title.bg", theme->a_menu_title,
610                          TRUE))
611         set_default_appearance(theme->a_menu_title);
612     if (!read_appearance(db, inst,
613                          "menu.items.active.bg", theme->a_menu_selected,
614                          TRUE))
615         set_default_appearance(theme->a_menu_selected);
616     theme->a_menu_disabled_selected =
617         RrAppearanceCopy(theme->a_menu_selected);
618
619     /* read appearances for non-decorations (on-screen-display) */
620     if (!read_appearance(db, inst, "osd.bg", theme->osd_hilite_bg, FALSE)) {
621         RrAppearanceFree(theme->osd_hilite_bg);
622         theme->osd_hilite_bg = RrAppearanceCopy(theme->a_focused_title);
623     }
624     if (!read_appearance(db, inst, "osd.label.bg",
625                          theme->osd_hilite_label, TRUE)) {
626         RrAppearanceFree(theme->osd_hilite_label);
627         theme->osd_hilite_label = RrAppearanceCopy(theme->a_focused_label);
628     }
629     /* osd_hilite_fg can't be parentrel */
630     if (!read_appearance(db, inst, "osd.hilight.bg",
631                          theme->osd_hilite_fg, FALSE)) {
632         RrAppearanceFree(theme->osd_hilite_fg);
633         if (theme->a_focused_label->surface.grad != RR_SURFACE_PARENTREL)
634             theme->osd_hilite_fg = RrAppearanceCopy(theme->a_focused_label);
635         else
636             theme->osd_hilite_fg = RrAppearanceCopy(theme->a_focused_title);
637     }
638     /* osd_unhilite_fg can't be parentrel either */
639     if (!read_appearance(db, inst, "osd.unhilight.bg",
640                          theme->osd_unhilite_fg, FALSE)) {
641         RrAppearanceFree(theme->osd_unhilite_fg);
642         if (theme->a_unfocused_label->surface.grad != RR_SURFACE_PARENTREL)
643             theme->osd_unhilite_fg=RrAppearanceCopy(theme->a_unfocused_label);
644         else
645             theme->osd_unhilite_fg=RrAppearanceCopy(theme->a_unfocused_title);
646     }
647
648     /* read buttons textures */
649     if (!read_appearance(db, inst,
650                          "window.active.button.disabled.bg",
651                          theme->a_disabled_focused_max,
652                          TRUE))
653         set_default_appearance(theme->a_disabled_focused_max);
654     if (!read_appearance(db, inst,
655                          "window.inactive.button.disabled.bg",
656                          theme->a_disabled_unfocused_max,
657                          TRUE))
658         set_default_appearance(theme->a_disabled_unfocused_max);
659     if (!read_appearance(db, inst,
660                          "window.active.button.pressed.bg",
661                          theme->a_focused_pressed_max,
662                          TRUE))
663         set_default_appearance(theme->a_focused_pressed_max);
664     if (!read_appearance(db, inst,
665                          "window.inactive.button.pressed.bg",
666                          theme->a_unfocused_pressed_max,
667                          TRUE))
668         set_default_appearance(theme->a_unfocused_pressed_max);
669     if (!read_appearance(db, inst,
670                          "window.active.button.toggled.unpressed.bg",
671                          theme->a_toggled_focused_unpressed_max,
672                          TRUE) &&
673         !read_appearance(db, inst,
674                          "window.active.button.toggled.bg",
675                          theme->a_toggled_focused_unpressed_max,
676                          TRUE))
677     {
678         RrAppearanceFree(theme->a_toggled_focused_unpressed_max);
679         theme->a_toggled_focused_unpressed_max =
680             RrAppearanceCopy(theme->a_focused_pressed_max);
681     }
682     if (!read_appearance(db, inst,
683                          "window.inactive.button.toggled.unpressed.bg",
684                          theme->a_toggled_unfocused_unpressed_max,
685                          TRUE) &&
686         !read_appearance(db, inst,
687                          "window.inactive.button.toggled.bg",
688                          theme->a_toggled_unfocused_unpressed_max,
689                          TRUE))
690     {
691         RrAppearanceFree(theme->a_toggled_unfocused_unpressed_max);
692         theme->a_toggled_unfocused_unpressed_max =
693             RrAppearanceCopy(theme->a_unfocused_pressed_max);
694     }
695     if (!read_appearance(db, inst,
696                          "window.active.button.toggled.hover.bg",
697                          theme->a_toggled_hover_focused_max,
698                          TRUE))
699     {
700         RrAppearanceFree(theme->a_toggled_hover_focused_max);
701         theme->a_toggled_hover_focused_max =
702             RrAppearanceCopy(theme->a_toggled_focused_unpressed_max);
703     }
704     if (!read_appearance(db, inst,
705                          "window.inactive.button.toggled.hover.bg",
706                          theme->a_toggled_hover_unfocused_max,
707                          TRUE))
708     {
709         RrAppearanceFree(theme->a_toggled_hover_unfocused_max);
710         theme->a_toggled_hover_unfocused_max =
711             RrAppearanceCopy(theme->a_toggled_unfocused_unpressed_max);
712     }
713     if (!read_appearance(db, inst,
714                          "window.active.button.toggled.pressed.bg",
715                          theme->a_toggled_focused_pressed_max,
716                          TRUE))
717     {
718         RrAppearanceFree(theme->a_toggled_focused_pressed_max);
719         theme->a_toggled_focused_pressed_max =
720             RrAppearanceCopy(theme->a_focused_pressed_max);
721     }
722     if (!read_appearance(db, inst,
723                          "window.inactive.button.toggled.pressed.bg",
724                          theme->a_toggled_unfocused_pressed_max,
725                          TRUE))
726     {
727         RrAppearanceFree(theme->a_toggled_unfocused_pressed_max);
728         theme->a_toggled_unfocused_pressed_max =
729             RrAppearanceCopy(theme->a_unfocused_pressed_max);
730     }
731     if (!read_appearance(db, inst,
732                          "window.active.button.unpressed.bg",
733                          theme->a_focused_unpressed_max,
734                          TRUE))
735         set_default_appearance(theme->a_focused_unpressed_max);
736     if (!read_appearance(db, inst,
737                          "window.inactive.button.unpressed.bg",
738                          theme->a_unfocused_unpressed_max,
739                          TRUE))
740         set_default_appearance(theme->a_unfocused_unpressed_max);
741     if (!read_appearance(db, inst,
742                          "window.active.button.hover.bg",
743                          theme->a_hover_focused_max,
744                          TRUE))
745     {
746         RrAppearanceFree(theme->a_hover_focused_max);
747         theme->a_hover_focused_max =
748             RrAppearanceCopy(theme->a_focused_unpressed_max);
749     }
750     if (!read_appearance(db, inst,
751                          "window.inactive.button.hover.bg",
752                          theme->a_hover_unfocused_max,
753                          TRUE))
754     {
755         RrAppearanceFree(theme->a_hover_unfocused_max);
756         theme->a_hover_unfocused_max =
757             RrAppearanceCopy(theme->a_unfocused_unpressed_max);
758     }
759
760     theme->a_disabled_focused_close =
761         RrAppearanceCopy(theme->a_disabled_focused_max);
762     theme->a_disabled_unfocused_close =
763         RrAppearanceCopy(theme->a_disabled_unfocused_max);
764     theme->a_hover_focused_close =
765         RrAppearanceCopy(theme->a_hover_focused_max);
766     theme->a_hover_unfocused_close =
767         RrAppearanceCopy(theme->a_hover_unfocused_max);
768     theme->a_unfocused_unpressed_close =
769         RrAppearanceCopy(theme->a_unfocused_unpressed_max);
770     theme->a_unfocused_pressed_close =
771         RrAppearanceCopy(theme->a_unfocused_pressed_max);
772     theme->a_focused_unpressed_close =
773         RrAppearanceCopy(theme->a_focused_unpressed_max);
774     theme->a_focused_pressed_close =
775         RrAppearanceCopy(theme->a_focused_pressed_max);
776     theme->a_disabled_focused_desk =
777         RrAppearanceCopy(theme->a_disabled_focused_max);
778     theme->a_disabled_unfocused_desk =
779         RrAppearanceCopy(theme->a_disabled_unfocused_max);
780     theme->a_hover_focused_desk =
781         RrAppearanceCopy(theme->a_hover_focused_max);
782     theme->a_hover_unfocused_desk =
783         RrAppearanceCopy(theme->a_hover_unfocused_max);
784     theme->a_toggled_hover_focused_desk =
785         RrAppearanceCopy(theme->a_toggled_hover_focused_max);
786     theme->a_toggled_hover_unfocused_desk =
787         RrAppearanceCopy(theme->a_toggled_hover_unfocused_max);
788     theme->a_toggled_focused_unpressed_desk =
789         RrAppearanceCopy(theme->a_toggled_focused_unpressed_max);
790     theme->a_toggled_unfocused_unpressed_desk =
791         RrAppearanceCopy(theme->a_toggled_unfocused_unpressed_max);
792     theme->a_toggled_focused_pressed_desk =
793         RrAppearanceCopy(theme->a_toggled_focused_pressed_max);
794     theme->a_toggled_unfocused_pressed_desk =
795         RrAppearanceCopy(theme->a_toggled_unfocused_pressed_max);
796     theme->a_unfocused_unpressed_desk =
797         RrAppearanceCopy(theme->a_unfocused_unpressed_max);
798     theme->a_unfocused_pressed_desk =
799         RrAppearanceCopy(theme->a_unfocused_pressed_max);
800     theme->a_focused_unpressed_desk =
801         RrAppearanceCopy(theme->a_focused_unpressed_max);
802     theme->a_focused_pressed_desk =
803         RrAppearanceCopy(theme->a_focused_pressed_max);
804     theme->a_disabled_focused_shade =
805         RrAppearanceCopy(theme->a_disabled_focused_max);
806     theme->a_disabled_unfocused_shade =
807         RrAppearanceCopy(theme->a_disabled_unfocused_max);
808     theme->a_hover_focused_shade =
809         RrAppearanceCopy(theme->a_hover_focused_max);
810     theme->a_hover_unfocused_shade =
811         RrAppearanceCopy(theme->a_hover_unfocused_max);
812     theme->a_toggled_hover_focused_shade =
813         RrAppearanceCopy(theme->a_toggled_hover_focused_max);
814     theme->a_toggled_hover_unfocused_shade =
815         RrAppearanceCopy(theme->a_toggled_hover_unfocused_max);
816     theme->a_toggled_focused_unpressed_shade =
817         RrAppearanceCopy(theme->a_toggled_focused_unpressed_max);
818     theme->a_toggled_unfocused_unpressed_shade =
819         RrAppearanceCopy(theme->a_toggled_unfocused_unpressed_max);
820     theme->a_toggled_focused_pressed_shade =
821         RrAppearanceCopy(theme->a_toggled_focused_pressed_max);
822     theme->a_toggled_unfocused_pressed_shade =
823         RrAppearanceCopy(theme->a_toggled_unfocused_pressed_max);
824     theme->a_unfocused_unpressed_shade =
825         RrAppearanceCopy(theme->a_unfocused_unpressed_max);
826     theme->a_unfocused_pressed_shade =
827         RrAppearanceCopy(theme->a_unfocused_pressed_max);
828     theme->a_focused_unpressed_shade =
829         RrAppearanceCopy(theme->a_focused_unpressed_max);
830     theme->a_focused_pressed_shade =
831         RrAppearanceCopy(theme->a_focused_pressed_max);
832     theme->a_disabled_focused_iconify =
833         RrAppearanceCopy(theme->a_disabled_focused_max);
834     theme->a_disabled_unfocused_iconify =
835         RrAppearanceCopy(theme->a_disabled_focused_max);
836     theme->a_hover_focused_iconify =
837         RrAppearanceCopy(theme->a_hover_focused_max);
838     theme->a_hover_unfocused_iconify =
839         RrAppearanceCopy(theme->a_hover_unfocused_max);
840     theme->a_unfocused_unpressed_iconify =
841         RrAppearanceCopy(theme->a_unfocused_unpressed_max);
842     theme->a_unfocused_pressed_iconify =
843         RrAppearanceCopy(theme->a_unfocused_pressed_max);
844     theme->a_focused_unpressed_iconify =
845         RrAppearanceCopy(theme->a_focused_unpressed_max);
846     theme->a_focused_pressed_iconify =
847         RrAppearanceCopy(theme->a_focused_pressed_max);
848
849     theme->a_icon->surface.grad =
850         theme->a_clear->surface.grad =
851         theme->a_clear_tex->surface.grad =
852         theme->a_menu_text_title->surface.grad =
853         theme->a_menu_normal->surface.grad =
854         theme->a_menu_disabled->surface.grad =
855         theme->a_menu_text_normal->surface.grad =
856         theme->a_menu_text_selected->surface.grad =
857         theme->a_menu_text_disabled->surface.grad =
858         theme->a_menu_text_disabled_selected->surface.grad =
859         theme->a_menu_bullet_normal->surface.grad =
860         theme->a_menu_bullet_selected->surface.grad = RR_SURFACE_PARENTREL;
861
862     /* set up the textures */
863     theme->a_focused_label->texture[0].type = RR_TEXTURE_TEXT;
864     theme->a_focused_label->texture[0].data.text.justify = winjust;
865     theme->a_focused_label->texture[0].data.text.font=theme->win_font_focused;
866     theme->a_focused_label->texture[0].data.text.color =
867         theme->title_focused_color;
868
869     if (read_string(db, "window.active.label.text.font", &str)) {
870         char *p;
871         gint i = 0;
872         gint j;
873         if (strstr(str, "shadow=y")) {
874             if ((p = strstr(str, "shadowoffset=")))
875                 i = parse_inline_number(p + strlen("shadowoffset="));
876             else
877                 i = 1;
878             theme->a_focused_label->texture[0].data.text.shadow_offset_x = i;
879             theme->a_focused_label->texture[0].data.text.shadow_offset_y = i;
880         }
881         if ((p = strstr(str, "shadowtint=")))
882         {
883             i = parse_inline_number(p + strlen("shadowtint="));
884             j = (i > 0 ? 0 : 255);
885             i = ABS(i*255/100);
886
887             theme->title_focused_shadow_color = RrColorNew(inst, j, j, j);
888             theme->title_focused_shadow_alpha = i;
889         } else {
890             theme->title_focused_shadow_color = RrColorNew(inst, 0, 0, 0);
891             theme->title_focused_shadow_alpha = 50;
892         }
893     }
894
895     theme->a_focused_label->texture[0].data.text.shadow_color =
896         theme->title_focused_shadow_color;
897     theme->a_focused_label->texture[0].data.text.shadow_alpha =
898         theme->title_focused_shadow_alpha;
899
900     theme->osd_hilite_label->texture[0].type = RR_TEXTURE_TEXT;
901     theme->osd_hilite_label->texture[0].data.text.justify = RR_JUSTIFY_LEFT;
902     theme->osd_hilite_label->texture[0].data.text.font = theme->osd_font;
903     theme->osd_hilite_label->texture[0].data.text.color = theme->osd_color;
904
905     if (read_string(db, "osd.label.text.font", &str)) {
906         char *p;
907         gint i = 0;
908         gint j;
909         if (strstr(str, "shadow=y")) {
910             if ((p = strstr(str, "shadowoffset=")))
911                 i = parse_inline_number(p + strlen("shadowoffset="));
912             else
913                 i = 1;
914             theme->a_focused_label->texture[0].data.text.shadow_offset_x = i;
915             theme->a_focused_label->texture[0].data.text.shadow_offset_y = i;
916             theme->osd_hilite_label->texture[0].data.text.shadow_offset_x = i;
917             theme->osd_hilite_label->texture[0].data.text.shadow_offset_y = i;
918         }
919         if ((p = strstr(str, "shadowtint=")))
920         {
921             i = parse_inline_number(p + strlen("shadowtint="));
922             j = (i > 0 ? 0 : 255);
923             i = ABS(i*255/100);
924
925             theme->osd_shadow_color = RrColorNew(inst, j, j, j);
926             theme->osd_shadow_alpha = i;
927         } else {
928             theme->osd_shadow_color = RrColorNew(inst, 0, 0, 0);
929             theme->osd_shadow_alpha = 50;
930         }
931     } else {
932         /* inherit the font settings from the focused label */
933         theme->osd_hilite_label->texture[0].data.text.shadow_offset_x =
934             theme->a_focused_label->texture[0].data.text.shadow_offset_x;
935         theme->osd_hilite_label->texture[0].data.text.shadow_offset_y =
936             theme->a_focused_label->texture[0].data.text.shadow_offset_y;
937         if (theme->title_focused_shadow_color)
938             theme->osd_shadow_color =
939                 RrColorNew(inst,
940                            theme->title_focused_shadow_color->r,
941                            theme->title_focused_shadow_color->g,
942                            theme->title_focused_shadow_color->b);
943         else
944             theme->osd_shadow_color = RrColorNew(inst, 0, 0, 0);
945         theme->osd_shadow_alpha = theme->title_focused_shadow_alpha;
946     }
947
948     theme->osd_hilite_label->texture[0].data.text.shadow_color =
949         theme->osd_shadow_color;
950     theme->osd_hilite_label->texture[0].data.text.shadow_alpha =
951         theme->osd_shadow_alpha;
952
953     theme->a_unfocused_label->texture[0].type = RR_TEXTURE_TEXT;
954     theme->a_unfocused_label->texture[0].data.text.justify = winjust;
955     theme->a_unfocused_label->texture[0].data.text.font =
956         theme->win_font_unfocused;
957     theme->a_unfocused_label->texture[0].data.text.color =
958         theme->title_unfocused_color;
959
960     if (read_string(db, "window.inactive.label.text.font", &str)) {
961         char *p;
962         gint i = 0;
963         gint j;
964         if (strstr(str, "shadow=y")) {
965             if ((p = strstr(str, "shadowoffset=")))
966                 i = parse_inline_number(p + strlen("shadowoffset="));
967             else
968                 i = 1;
969             theme->a_unfocused_label->texture[0].data.text.shadow_offset_x = i;
970             theme->a_unfocused_label->texture[0].data.text.shadow_offset_y = i;
971         }
972         if ((p = strstr(str, "shadowtint=")))
973         {
974             i = parse_inline_number(p + strlen("shadowtint="));
975             j = (i > 0 ? 0 : 255);
976             i = ABS(i*255/100);
977
978             theme->title_unfocused_shadow_color = RrColorNew(inst, j, j, j);
979             theme->title_unfocused_shadow_alpha = i;
980         } else {
981             theme->title_unfocused_shadow_color = RrColorNew(inst, 0, 0, 0);
982             theme->title_unfocused_shadow_alpha = 50;
983         }
984     }
985
986     theme->a_unfocused_label->texture[0].data.text.shadow_color =
987         theme->title_unfocused_shadow_color;
988     theme->a_unfocused_label->texture[0].data.text.shadow_alpha =
989         theme->title_unfocused_shadow_alpha;
990
991     theme->a_menu_text_title->texture[0].type = RR_TEXTURE_TEXT;
992     theme->a_menu_text_title->texture[0].data.text.justify = mtitlejust;
993     theme->a_menu_text_title->texture[0].data.text.font =
994         theme->menu_title_font;
995     theme->a_menu_text_title->texture[0].data.text.color =
996         theme->menu_title_color;
997
998     if (read_string(db, "menu.title.text.font", &str)) {
999         char *p;
1000         gint i = 0;
1001         gint j;
1002         if (strstr(str, "shadow=y")) {
1003             if ((p = strstr(str, "shadowoffset=")))
1004                 i = parse_inline_number(p + strlen("shadowoffset="));
1005             else
1006                 i = 1;
1007             theme->a_menu_text_title->texture[0].data.text.shadow_offset_x = i;
1008             theme->a_menu_text_title->texture[0].data.text.shadow_offset_y = i;
1009         }
1010         if ((p = strstr(str, "shadowtint=")))
1011         {
1012             i = parse_inline_number(p + strlen("shadowtint="));
1013             j = (i > 0 ? 0 : 255);
1014             i = ABS(i*255/100);
1015
1016             theme->menu_title_shadow_color = RrColorNew(inst, j, j, j);
1017             theme->menu_title_shadow_alpha = i;
1018         } else {
1019             theme->menu_title_shadow_color = RrColorNew(inst, 0, 0, 0);
1020             theme->menu_title_shadow_alpha = 50;
1021         }
1022     }
1023
1024     theme->a_menu_text_title->texture[0].data.text.shadow_color =
1025         theme->menu_title_shadow_color;
1026     theme->a_menu_text_title->texture[0].data.text.shadow_alpha =
1027         theme->menu_title_shadow_alpha;
1028
1029     theme->a_menu_text_normal->texture[0].type =
1030         theme->a_menu_text_selected->texture[0].type =
1031         theme->a_menu_text_disabled->texture[0].type =
1032         theme->a_menu_text_disabled_selected->texture[0].type =
1033         RR_TEXTURE_TEXT;
1034     theme->a_menu_text_normal->texture[0].data.text.justify =
1035         theme->a_menu_text_selected->texture[0].data.text.justify =
1036         theme->a_menu_text_disabled->texture[0].data.text.justify =
1037         theme->a_menu_text_disabled_selected->texture[0].data.text.justify =
1038         RR_JUSTIFY_LEFT;
1039     theme->a_menu_text_normal->texture[0].data.text.font =
1040         theme->a_menu_text_selected->texture[0].data.text.font =
1041         theme->a_menu_text_disabled->texture[0].data.text.font =
1042         theme->a_menu_text_disabled_selected->texture[0].data.text.font =
1043         theme->menu_font;
1044     theme->a_menu_text_normal->texture[0].data.text.color = theme->menu_color;
1045     theme->a_menu_text_selected->texture[0].data.text.color =
1046         theme->menu_selected_color;
1047     theme->a_menu_text_disabled->texture[0].data.text.color =
1048         theme->menu_disabled_color;
1049     theme->a_menu_text_disabled_selected->texture[0].data.text.color =
1050         theme->menu_disabled_selected_color;
1051
1052     if (read_string(db, "menu.items.font", &str)) {
1053         char *p;
1054         gint i = 0;
1055         gint j;
1056         if (strstr(str, "shadow=y")) {
1057             if ((p = strstr(str, "shadowoffset=")))
1058                 i = parse_inline_number(p + strlen("shadowoffset="));
1059             else
1060                 i = 1;
1061             theme->a_menu_text_normal->
1062                 texture[0].data.text.shadow_offset_x = i;
1063             theme->a_menu_text_normal->
1064                 texture[0].data.text.shadow_offset_y = i;
1065             theme->a_menu_text_selected->
1066                 texture[0].data.text.shadow_offset_x = i;
1067             theme->a_menu_text_selected->
1068                 texture[0].data.text.shadow_offset_y = i;
1069             theme->a_menu_text_disabled->
1070                 texture[0].data.text.shadow_offset_x = i;
1071             theme->a_menu_text_disabled->
1072                 texture[0].data.text.shadow_offset_y = i;
1073             theme->a_menu_text_disabled_selected->
1074                 texture[0].data.text.shadow_offset_x = i;
1075             theme->a_menu_text_disabled_selected->
1076                 texture[0].data.text.shadow_offset_y = i;
1077         }
1078         if ((p = strstr(str, "shadowtint=")))
1079         {
1080             i = parse_inline_number(p + strlen("shadowtint="));
1081             j = (i > 0 ? 0 : 255);
1082             i = ABS(i*255/100);
1083
1084             theme->menu_text_normal_shadow_color = RrColorNew(inst, j, j, j);
1085             theme->menu_text_selected_shadow_color = RrColorNew(inst, j, j, j);
1086             theme->menu_text_disabled_shadow_color = RrColorNew(inst, j, j, j);
1087             theme->menu_text_normal_shadow_alpha = i;
1088             theme->menu_text_selected_shadow_alpha = i;
1089             theme->menu_text_disabled_shadow_alpha = i;
1090             theme->menu_text_disabled_selected_shadow_alpha = i;
1091         } else {
1092             theme->menu_text_normal_shadow_color = RrColorNew(inst, 0, 0, 0);
1093             theme->menu_text_selected_shadow_color = RrColorNew(inst, 0, 0, 0);
1094             theme->menu_text_disabled_shadow_color = RrColorNew(inst, 0, 0, 0);
1095             theme->menu_text_normal_shadow_alpha = 50;
1096             theme->menu_text_selected_shadow_alpha = 50;
1097             theme->menu_text_disabled_selected_shadow_alpha = 50;
1098         }
1099     }
1100
1101     theme->a_menu_text_normal->texture[0].data.text.shadow_color =
1102         theme->menu_text_normal_shadow_color;
1103     theme->a_menu_text_normal->texture[0].data.text.shadow_alpha =
1104         theme->menu_text_normal_shadow_alpha;
1105     theme->a_menu_text_selected->texture[0].data.text.shadow_color =
1106         theme->menu_text_selected_shadow_color;
1107     theme->a_menu_text_selected->texture[0].data.text.shadow_alpha =
1108         theme->menu_text_selected_shadow_alpha;
1109     theme->a_menu_text_disabled->texture[0].data.text.shadow_color =
1110         theme->menu_text_disabled_shadow_color;
1111     theme->a_menu_text_disabled->texture[0].data.text.shadow_alpha =
1112         theme->menu_text_disabled_shadow_alpha;
1113     theme->a_menu_text_disabled_selected->texture[0].data.text.shadow_color =
1114         theme->menu_text_disabled_shadow_color;
1115     theme->a_menu_text_disabled_selected->texture[0].data.text.shadow_alpha =
1116         theme->menu_text_disabled_shadow_alpha;
1117
1118     theme->a_disabled_focused_max->texture[0].type =
1119         theme->a_disabled_unfocused_max->texture[0].type =
1120         theme->a_hover_focused_max->texture[0].type =
1121         theme->a_hover_unfocused_max->texture[0].type =
1122         theme->a_toggled_hover_focused_max->texture[0].type =
1123         theme->a_toggled_hover_unfocused_max->texture[0].type =
1124         theme->a_toggled_focused_unpressed_max->texture[0].type =
1125         theme->a_toggled_unfocused_unpressed_max->texture[0].type =
1126         theme->a_toggled_focused_pressed_max->texture[0].type =
1127         theme->a_toggled_unfocused_pressed_max->texture[0].type =
1128         theme->a_focused_unpressed_max->texture[0].type =
1129         theme->a_focused_pressed_max->texture[0].type =
1130         theme->a_unfocused_unpressed_max->texture[0].type =
1131         theme->a_unfocused_pressed_max->texture[0].type =
1132         theme->a_disabled_focused_close->texture[0].type =
1133         theme->a_disabled_unfocused_close->texture[0].type =
1134         theme->a_hover_focused_close->texture[0].type =
1135         theme->a_hover_unfocused_close->texture[0].type =
1136         theme->a_focused_unpressed_close->texture[0].type =
1137         theme->a_focused_pressed_close->texture[0].type =
1138         theme->a_unfocused_unpressed_close->texture[0].type =
1139         theme->a_unfocused_pressed_close->texture[0].type =
1140         theme->a_disabled_focused_desk->texture[0].type =
1141         theme->a_disabled_unfocused_desk->texture[0].type =
1142         theme->a_hover_focused_desk->texture[0].type =
1143         theme->a_hover_unfocused_desk->texture[0].type =
1144         theme->a_toggled_hover_focused_desk->texture[0].type =
1145         theme->a_toggled_hover_unfocused_desk->texture[0].type =
1146         theme->a_toggled_focused_unpressed_desk->texture[0].type =
1147         theme->a_toggled_unfocused_unpressed_desk->texture[0].type =
1148         theme->a_toggled_focused_pressed_desk->texture[0].type =
1149         theme->a_toggled_unfocused_pressed_desk->texture[0].type =
1150         theme->a_focused_unpressed_desk->texture[0].type =
1151         theme->a_focused_pressed_desk->texture[0].type =
1152         theme->a_unfocused_unpressed_desk->texture[0].type =
1153         theme->a_unfocused_pressed_desk->texture[0].type =
1154         theme->a_disabled_focused_shade->texture[0].type =
1155         theme->a_disabled_unfocused_shade->texture[0].type =
1156         theme->a_hover_focused_shade->texture[0].type =
1157         theme->a_hover_unfocused_shade->texture[0].type =
1158         theme->a_toggled_hover_focused_shade->texture[0].type =
1159         theme->a_toggled_hover_unfocused_shade->texture[0].type =
1160         theme->a_toggled_focused_unpressed_shade->texture[0].type =
1161         theme->a_toggled_unfocused_unpressed_shade->texture[0].type =
1162         theme->a_toggled_focused_pressed_shade->texture[0].type =
1163         theme->a_toggled_unfocused_pressed_shade->texture[0].type =
1164         theme->a_focused_unpressed_shade->texture[0].type =
1165         theme->a_focused_pressed_shade->texture[0].type =
1166         theme->a_unfocused_unpressed_shade->texture[0].type =
1167         theme->a_unfocused_pressed_shade->texture[0].type =
1168         theme->a_disabled_focused_iconify->texture[0].type =
1169         theme->a_disabled_unfocused_iconify->texture[0].type =
1170         theme->a_hover_focused_iconify->texture[0].type =
1171         theme->a_hover_unfocused_iconify->texture[0].type =
1172         theme->a_focused_unpressed_iconify->texture[0].type =
1173         theme->a_focused_pressed_iconify->texture[0].type =
1174         theme->a_unfocused_unpressed_iconify->texture[0].type =
1175         theme->a_unfocused_pressed_iconify->texture[0].type =
1176         theme->a_menu_bullet_normal->texture[0].type =
1177         theme->a_menu_bullet_selected->texture[0].type = RR_TEXTURE_MASK;
1178
1179     theme->a_disabled_focused_max->texture[0].data.mask.mask =
1180         theme->a_disabled_unfocused_max->texture[0].data.mask.mask =
1181         theme->max_disabled_mask;
1182     theme->a_hover_focused_max->texture[0].data.mask.mask =
1183         theme->a_hover_unfocused_max->texture[0].data.mask.mask =
1184         theme->max_hover_mask;
1185     theme->a_focused_pressed_max->texture[0].data.mask.mask =
1186         theme->a_unfocused_pressed_max->texture[0].data.mask.mask =
1187         theme->max_pressed_mask;
1188     theme->a_focused_unpressed_max->texture[0].data.mask.mask =
1189         theme->a_unfocused_unpressed_max->texture[0].data.mask.mask =
1190         theme->max_mask;
1191     theme->a_toggled_hover_focused_max->texture[0].data.mask.mask =
1192         theme->a_toggled_hover_unfocused_max->texture[0].data.mask.mask =
1193         theme->max_toggled_hover_mask;
1194     theme->a_toggled_focused_unpressed_max->texture[0].data.mask.mask =
1195         theme->a_toggled_unfocused_unpressed_max->texture[0].data.mask.mask =
1196         theme->max_toggled_mask;
1197     theme->a_toggled_focused_pressed_max->texture[0].data.mask.mask =
1198         theme->a_toggled_unfocused_pressed_max->texture[0].data.mask.mask =
1199         theme->max_toggled_pressed_mask;
1200     theme->a_disabled_focused_close->texture[0].data.mask.mask =
1201         theme->a_disabled_unfocused_close->texture[0].data.mask.mask =
1202         theme->close_disabled_mask;
1203     theme->a_hover_focused_close->texture[0].data.mask.mask =
1204         theme->a_hover_unfocused_close->texture[0].data.mask.mask =
1205         theme->close_hover_mask;
1206     theme->a_focused_pressed_close->texture[0].data.mask.mask =
1207         theme->a_unfocused_pressed_close->texture[0].data.mask.mask =
1208         theme->close_pressed_mask;
1209     theme->a_focused_unpressed_close->texture[0].data.mask.mask =
1210         theme->a_unfocused_unpressed_close->texture[0].data.mask.mask =
1211         theme->close_mask;
1212     theme->a_disabled_focused_desk->texture[0].data.mask.mask =
1213         theme->a_disabled_unfocused_desk->texture[0].data.mask.mask =
1214         theme->desk_disabled_mask;
1215     theme->a_hover_focused_desk->texture[0].data.mask.mask =
1216         theme->a_hover_unfocused_desk->texture[0].data.mask.mask =
1217         theme->desk_hover_mask;
1218     theme->a_focused_pressed_desk->texture[0].data.mask.mask =
1219         theme->a_unfocused_pressed_desk->texture[0].data.mask.mask =
1220         theme->desk_pressed_mask;
1221     theme->a_focused_unpressed_desk->texture[0].data.mask.mask =
1222         theme->a_unfocused_unpressed_desk->texture[0].data.mask.mask =
1223         theme->desk_mask;
1224     theme->a_toggled_hover_focused_desk->texture[0].data.mask.mask =
1225         theme->a_toggled_hover_unfocused_desk->texture[0].data.mask.mask =
1226         theme->desk_toggled_hover_mask;
1227     theme->a_toggled_focused_unpressed_desk->texture[0].data.mask.mask =
1228         theme->a_toggled_unfocused_unpressed_desk->texture[0].data.mask.mask =
1229         theme->desk_toggled_mask;
1230     theme->a_toggled_focused_pressed_desk->texture[0].data.mask.mask =
1231         theme->a_toggled_unfocused_pressed_desk->texture[0].data.mask.mask =
1232         theme->desk_toggled_pressed_mask;
1233     theme->a_disabled_focused_shade->texture[0].data.mask.mask =
1234         theme->a_disabled_unfocused_shade->texture[0].data.mask.mask =
1235         theme->shade_disabled_mask;
1236     theme->a_hover_focused_shade->texture[0].data.mask.mask =
1237         theme->a_hover_unfocused_shade->texture[0].data.mask.mask =
1238         theme->shade_hover_mask;
1239     theme->a_focused_pressed_shade->texture[0].data.mask.mask =
1240         theme->a_unfocused_pressed_shade->texture[0].data.mask.mask =
1241         theme->shade_pressed_mask;
1242     theme->a_focused_unpressed_shade->texture[0].data.mask.mask =
1243         theme->a_unfocused_unpressed_shade->texture[0].data.mask.mask =
1244         theme->shade_mask;
1245     theme->a_toggled_hover_focused_shade->texture[0].data.mask.mask =
1246         theme->a_toggled_hover_unfocused_shade->texture[0].data.mask.mask =
1247         theme->shade_toggled_hover_mask;
1248     theme->a_toggled_focused_unpressed_shade->texture[0].data.mask.mask =
1249         theme->a_toggled_unfocused_unpressed_shade->texture[0].data.mask.mask =
1250         theme->shade_toggled_mask;
1251     theme->a_toggled_focused_pressed_shade->texture[0].data.mask.mask =
1252         theme->a_toggled_unfocused_pressed_shade->texture[0].data.mask.mask =
1253         theme->shade_toggled_pressed_mask;
1254     theme->a_disabled_focused_iconify->texture[0].data.mask.mask =
1255         theme->a_disabled_unfocused_iconify->texture[0].data.mask.mask =
1256         theme->iconify_disabled_mask;
1257     theme->a_hover_focused_iconify->texture[0].data.mask.mask =
1258         theme->a_hover_unfocused_iconify->texture[0].data.mask.mask =
1259         theme->iconify_hover_mask;
1260     theme->a_focused_pressed_iconify->texture[0].data.mask.mask =
1261         theme->a_unfocused_pressed_iconify->texture[0].data.mask.mask =
1262         theme->iconify_pressed_mask;
1263     theme->a_focused_unpressed_iconify->texture[0].data.mask.mask =
1264         theme->a_unfocused_unpressed_iconify->texture[0].data.mask.mask =
1265         theme->iconify_mask;
1266     theme->a_menu_bullet_normal->texture[0].data.mask.mask =
1267     theme->a_menu_bullet_selected->texture[0].data.mask.mask =
1268         theme->menu_bullet_mask;
1269     theme->a_disabled_focused_max->texture[0].data.mask.color =
1270         theme->a_disabled_focused_close->texture[0].data.mask.color =
1271         theme->a_disabled_focused_desk->texture[0].data.mask.color =
1272         theme->a_disabled_focused_shade->texture[0].data.mask.color =
1273         theme->a_disabled_focused_iconify->texture[0].data.mask.color =
1274         theme->titlebut_disabled_focused_color;
1275     theme->a_disabled_unfocused_max->texture[0].data.mask.color =
1276         theme->a_disabled_unfocused_close->texture[0].data.mask.color =
1277         theme->a_disabled_unfocused_desk->texture[0].data.mask.color =
1278         theme->a_disabled_unfocused_shade->texture[0].data.mask.color =
1279         theme->a_disabled_unfocused_iconify->texture[0].data.mask.color =
1280         theme->titlebut_disabled_unfocused_color;
1281     theme->a_hover_focused_max->texture[0].data.mask.color =
1282         theme->a_hover_focused_close->texture[0].data.mask.color =
1283         theme->a_hover_focused_desk->texture[0].data.mask.color =
1284         theme->a_hover_focused_shade->texture[0].data.mask.color =
1285         theme->a_hover_focused_iconify->texture[0].data.mask.color =
1286         theme->titlebut_hover_focused_color;
1287     theme->a_hover_unfocused_max->texture[0].data.mask.color =
1288         theme->a_hover_unfocused_close->texture[0].data.mask.color =
1289         theme->a_hover_unfocused_desk->texture[0].data.mask.color =
1290         theme->a_hover_unfocused_shade->texture[0].data.mask.color =
1291         theme->a_hover_unfocused_iconify->texture[0].data.mask.color =
1292         theme->titlebut_hover_unfocused_color;
1293     theme->a_toggled_hover_focused_max->texture[0].data.mask.color =
1294         theme->a_toggled_hover_focused_desk->texture[0].data.mask.color =
1295         theme->a_toggled_hover_focused_shade->texture[0].data.mask.color =
1296         theme->titlebut_toggled_hover_focused_color;
1297     theme->a_toggled_hover_unfocused_max->texture[0].data.mask.color =
1298         theme->a_toggled_hover_unfocused_desk->texture[0].data.mask.color =
1299         theme->a_toggled_hover_unfocused_shade->texture[0].data.mask.color =
1300         theme->titlebut_toggled_hover_unfocused_color;
1301     theme->a_toggled_focused_unpressed_max->texture[0].data.mask.color =
1302         theme->a_toggled_focused_unpressed_desk->texture[0].data.mask.color =
1303         theme->a_toggled_focused_unpressed_shade->texture[0].data.mask.color =
1304         theme->titlebut_toggled_focused_unpressed_color;
1305     theme->a_toggled_unfocused_unpressed_max->texture[0].data.mask.color =
1306         theme->a_toggled_unfocused_unpressed_desk->texture[0].data.mask.color =
1307         theme->a_toggled_unfocused_unpressed_shade->texture[0].data.mask.color=
1308         theme->titlebut_toggled_unfocused_unpressed_color;
1309     theme->a_toggled_focused_pressed_max->texture[0].data.mask.color =
1310         theme->a_toggled_focused_pressed_desk->texture[0].data.mask.color =
1311         theme->a_toggled_focused_pressed_shade->texture[0].data.mask.color =
1312         theme->titlebut_toggled_focused_pressed_color;
1313     theme->a_toggled_unfocused_pressed_max->texture[0].data.mask.color =
1314         theme->a_toggled_unfocused_pressed_desk->texture[0].data.mask.color =
1315         theme->a_toggled_unfocused_pressed_shade->texture[0].data.mask.color =
1316         theme->titlebut_toggled_unfocused_pressed_color;
1317     theme->a_focused_unpressed_max->texture[0].data.mask.color =
1318         theme->a_focused_unpressed_close->texture[0].data.mask.color =
1319         theme->a_focused_unpressed_desk->texture[0].data.mask.color =
1320         theme->a_focused_unpressed_shade->texture[0].data.mask.color =
1321         theme->a_focused_unpressed_iconify->texture[0].data.mask.color =
1322         theme->titlebut_focused_unpressed_color;
1323     theme->a_focused_pressed_max->texture[0].data.mask.color =
1324         theme->a_focused_pressed_close->texture[0].data.mask.color =
1325         theme->a_focused_pressed_desk->texture[0].data.mask.color =
1326         theme->a_focused_pressed_shade->texture[0].data.mask.color =
1327         theme->a_focused_pressed_iconify->texture[0].data.mask.color =
1328         theme->titlebut_focused_pressed_color;
1329     theme->a_unfocused_unpressed_max->texture[0].data.mask.color =
1330         theme->a_unfocused_unpressed_close->texture[0].data.mask.color =
1331         theme->a_unfocused_unpressed_desk->texture[0].data.mask.color =
1332         theme->a_unfocused_unpressed_shade->texture[0].data.mask.color =
1333         theme->a_unfocused_unpressed_iconify->texture[0].data.mask.color =
1334         theme->titlebut_unfocused_unpressed_color;
1335     theme->a_unfocused_pressed_max->texture[0].data.mask.color =
1336         theme->a_unfocused_pressed_close->texture[0].data.mask.color =
1337         theme->a_unfocused_pressed_desk->texture[0].data.mask.color =
1338         theme->a_unfocused_pressed_shade->texture[0].data.mask.color =
1339         theme->a_unfocused_pressed_iconify->texture[0].data.mask.color =
1340         theme->titlebut_unfocused_pressed_color;
1341     theme->a_menu_bullet_normal->texture[0].data.mask.color =
1342         theme->menu_color;
1343     theme->a_menu_bullet_selected->texture[0].data.mask.color =
1344         theme->menu_selected_color;
1345
1346     g_free(path);
1347     XrmDestroyDatabase(db);
1348
1349     /* set the font heights */
1350     theme->win_font_height = RrFontHeight
1351         (theme->win_font_focused,
1352          theme->a_focused_label->texture[0].data.text.shadow_offset_y);
1353     theme->win_font_height =
1354         MAX(theme->win_font_height,
1355             RrFontHeight
1356             (theme->win_font_focused,
1357              theme->a_unfocused_label->texture[0].data.text.shadow_offset_y));
1358     theme->menu_title_font_height = RrFontHeight
1359         (theme->menu_title_font,
1360          theme->a_menu_text_title->texture[0].data.text.shadow_offset_y);
1361     theme->menu_font_height = RrFontHeight
1362         (theme->menu_font,
1363          theme->a_menu_text_normal->texture[0].data.text.shadow_offset_y);
1364
1365     /* calculate some last extents */
1366     {
1367         gint ft, fb, fl, fr, ut, ub, ul, ur;
1368
1369         RrMargins(theme->a_focused_label, &fl, &ft, &fr, &fb);
1370         RrMargins(theme->a_unfocused_label, &ul, &ut, &ur, &ub);
1371         theme->label_height = theme->win_font_height + MAX(ft + fb, ut + ub);
1372         theme->label_height += theme->label_height % 2;
1373
1374         /* this would be nice I think, since padding.width can now be 0,
1375            but it breaks frame.c horribly and I don't feel like fixing that
1376            right now, so if anyone complains, here is how to keep text from
1377            going over the title's bevel/border with a padding.width of 0 and a
1378            bevelless/borderless label
1379            RrMargins(theme->a_focused_title, &fl, &ft, &fr, &fb);
1380            RrMargins(theme->a_unfocused_title, &ul, &ut, &ur, &ub);
1381            theme->title_height = theme->label_height +
1382            MAX(MAX(theme->padding * 2, ft + fb),
1383            MAX(theme->padding * 2, ut + ub));
1384         */
1385         theme->title_height = theme->label_height + theme->paddingy * 2;
1386
1387         RrMargins(theme->a_menu_title, &ul, &ut, &ur, &ub);
1388         theme->menu_title_label_height = theme->menu_title_font_height+ut+ub;
1389         theme->menu_title_height = theme->menu_title_label_height +
1390             theme->paddingy * 2;
1391     }
1392     theme->button_size = theme->label_height - 2;
1393     theme->grip_width = 25;
1394
1395     return theme;
1396 }
1397
1398 void RrThemeFree(RrTheme *theme)
1399 {
1400     if (theme) {
1401         g_free(theme->name);
1402
1403         RrColorFree(theme->menu_border_color);
1404         RrColorFree(theme->osd_border_color);
1405         RrColorFree(theme->frame_focused_border_color);
1406         RrColorFree(theme->frame_unfocused_border_color);
1407         RrColorFree(theme->title_separator_focused_color);
1408         RrColorFree(theme->title_separator_unfocused_color);
1409         RrColorFree(theme->cb_unfocused_color);
1410         RrColorFree(theme->cb_focused_color);
1411         RrColorFree(theme->title_focused_color);
1412         RrColorFree(theme->title_unfocused_color);
1413         RrColorFree(theme->titlebut_disabled_focused_color);
1414         RrColorFree(theme->titlebut_disabled_unfocused_color);
1415         RrColorFree(theme->titlebut_hover_focused_color);
1416         RrColorFree(theme->titlebut_hover_unfocused_color);
1417         RrColorFree(theme->titlebut_toggled_hover_focused_color);
1418         RrColorFree(theme->titlebut_toggled_hover_unfocused_color);
1419         RrColorFree(theme->titlebut_toggled_focused_pressed_color);
1420         RrColorFree(theme->titlebut_toggled_unfocused_pressed_color);
1421         RrColorFree(theme->titlebut_toggled_focused_unpressed_color);
1422         RrColorFree(theme->titlebut_toggled_unfocused_unpressed_color);
1423         RrColorFree(theme->titlebut_focused_pressed_color);
1424         RrColorFree(theme->titlebut_unfocused_pressed_color);
1425         RrColorFree(theme->titlebut_focused_unpressed_color);
1426         RrColorFree(theme->titlebut_unfocused_unpressed_color);
1427         RrColorFree(theme->menu_title_color);
1428         RrColorFree(theme->menu_sep_color);
1429         RrColorFree(theme->menu_color);
1430         RrColorFree(theme->menu_selected_color);
1431         RrColorFree(theme->menu_disabled_color);
1432         RrColorFree(theme->menu_disabled_selected_color);
1433         RrColorFree(theme->title_focused_shadow_color);
1434         RrColorFree(theme->title_unfocused_shadow_color);
1435         RrColorFree(theme->osd_color);
1436         RrColorFree(theme->osd_shadow_color);
1437         RrColorFree(theme->menu_title_shadow_color);
1438         RrColorFree(theme->menu_text_normal_shadow_color);
1439         RrColorFree(theme->menu_text_selected_shadow_color);
1440         RrColorFree(theme->menu_text_disabled_shadow_color);
1441         RrColorFree(theme->menu_text_disabled_selected_shadow_color);
1442
1443         g_free(theme->def_win_icon);
1444
1445         RrPixmapMaskFree(theme->max_mask);
1446         RrPixmapMaskFree(theme->max_toggled_mask);
1447         RrPixmapMaskFree(theme->max_toggled_hover_mask);
1448         RrPixmapMaskFree(theme->max_toggled_pressed_mask);
1449         RrPixmapMaskFree(theme->max_disabled_mask);
1450         RrPixmapMaskFree(theme->max_hover_mask);
1451         RrPixmapMaskFree(theme->max_pressed_mask);
1452         RrPixmapMaskFree(theme->desk_mask);
1453         RrPixmapMaskFree(theme->desk_toggled_mask);
1454         RrPixmapMaskFree(theme->desk_toggled_hover_mask);
1455         RrPixmapMaskFree(theme->desk_toggled_pressed_mask);
1456         RrPixmapMaskFree(theme->desk_disabled_mask);
1457         RrPixmapMaskFree(theme->desk_hover_mask);
1458         RrPixmapMaskFree(theme->desk_pressed_mask);
1459         RrPixmapMaskFree(theme->shade_mask);
1460         RrPixmapMaskFree(theme->shade_toggled_mask);
1461         RrPixmapMaskFree(theme->shade_toggled_hover_mask);
1462         RrPixmapMaskFree(theme->shade_toggled_pressed_mask);
1463         RrPixmapMaskFree(theme->shade_disabled_mask);
1464         RrPixmapMaskFree(theme->shade_hover_mask);
1465         RrPixmapMaskFree(theme->shade_pressed_mask);
1466         RrPixmapMaskFree(theme->iconify_mask);
1467         RrPixmapMaskFree(theme->iconify_disabled_mask);
1468         RrPixmapMaskFree(theme->iconify_hover_mask);
1469         RrPixmapMaskFree(theme->iconify_pressed_mask);
1470         RrPixmapMaskFree(theme->close_mask);
1471         RrPixmapMaskFree(theme->close_disabled_mask);
1472         RrPixmapMaskFree(theme->close_hover_mask);
1473         RrPixmapMaskFree(theme->close_pressed_mask);
1474         RrPixmapMaskFree(theme->menu_bullet_mask);
1475
1476         RrFontClose(theme->win_font_focused);
1477         RrFontClose(theme->win_font_unfocused);
1478         RrFontClose(theme->menu_title_font);
1479         RrFontClose(theme->menu_font);
1480         RrFontClose(theme->osd_font);
1481
1482         RrAppearanceFree(theme->a_disabled_focused_max);
1483         RrAppearanceFree(theme->a_disabled_unfocused_max);
1484         RrAppearanceFree(theme->a_hover_focused_max);
1485         RrAppearanceFree(theme->a_hover_unfocused_max);
1486         RrAppearanceFree(theme->a_toggled_hover_focused_max);
1487         RrAppearanceFree(theme->a_toggled_hover_unfocused_max);
1488         RrAppearanceFree(theme->a_toggled_focused_unpressed_max);
1489         RrAppearanceFree(theme->a_toggled_focused_pressed_max);
1490         RrAppearanceFree(theme->a_toggled_unfocused_unpressed_max);
1491         RrAppearanceFree(theme->a_toggled_unfocused_pressed_max);
1492         RrAppearanceFree(theme->a_focused_unpressed_max);
1493         RrAppearanceFree(theme->a_focused_pressed_max);
1494         RrAppearanceFree(theme->a_unfocused_unpressed_max);
1495         RrAppearanceFree(theme->a_unfocused_pressed_max);
1496         RrAppearanceFree(theme->a_disabled_focused_close);
1497         RrAppearanceFree(theme->a_disabled_unfocused_close);
1498         RrAppearanceFree(theme->a_hover_focused_close);
1499         RrAppearanceFree(theme->a_hover_unfocused_close);
1500         RrAppearanceFree(theme->a_focused_unpressed_close);
1501         RrAppearanceFree(theme->a_focused_pressed_close);
1502         RrAppearanceFree(theme->a_unfocused_unpressed_close);
1503         RrAppearanceFree(theme->a_unfocused_pressed_close);
1504         RrAppearanceFree(theme->a_disabled_focused_desk);
1505         RrAppearanceFree(theme->a_disabled_unfocused_desk);
1506         RrAppearanceFree(theme->a_hover_focused_desk);
1507         RrAppearanceFree(theme->a_hover_unfocused_desk);
1508         RrAppearanceFree(theme->a_toggled_hover_focused_desk);
1509         RrAppearanceFree(theme->a_toggled_hover_unfocused_desk);
1510         RrAppearanceFree(theme->a_toggled_focused_unpressed_desk);
1511         RrAppearanceFree(theme->a_toggled_focused_pressed_desk);
1512         RrAppearanceFree(theme->a_toggled_unfocused_unpressed_desk);
1513         RrAppearanceFree(theme->a_toggled_unfocused_pressed_desk);
1514         RrAppearanceFree(theme->a_focused_unpressed_desk);
1515         RrAppearanceFree(theme->a_focused_pressed_desk);
1516         RrAppearanceFree(theme->a_unfocused_unpressed_desk);
1517         RrAppearanceFree(theme->a_unfocused_pressed_desk);
1518         RrAppearanceFree(theme->a_disabled_focused_shade);
1519         RrAppearanceFree(theme->a_disabled_unfocused_shade);
1520         RrAppearanceFree(theme->a_hover_focused_shade);
1521         RrAppearanceFree(theme->a_hover_unfocused_shade);
1522         RrAppearanceFree(theme->a_toggled_hover_focused_shade);
1523         RrAppearanceFree(theme->a_toggled_hover_unfocused_shade);
1524         RrAppearanceFree(theme->a_toggled_focused_unpressed_shade);
1525         RrAppearanceFree(theme->a_toggled_focused_pressed_shade);
1526         RrAppearanceFree(theme->a_toggled_unfocused_unpressed_shade);
1527         RrAppearanceFree(theme->a_toggled_unfocused_pressed_shade);
1528         RrAppearanceFree(theme->a_focused_unpressed_shade);
1529         RrAppearanceFree(theme->a_focused_pressed_shade);
1530         RrAppearanceFree(theme->a_unfocused_unpressed_shade);
1531         RrAppearanceFree(theme->a_unfocused_pressed_shade);
1532         RrAppearanceFree(theme->a_disabled_focused_iconify);
1533         RrAppearanceFree(theme->a_disabled_unfocused_iconify);
1534         RrAppearanceFree(theme->a_hover_focused_iconify);
1535         RrAppearanceFree(theme->a_hover_unfocused_iconify);
1536         RrAppearanceFree(theme->a_focused_unpressed_iconify);
1537         RrAppearanceFree(theme->a_focused_pressed_iconify);
1538         RrAppearanceFree(theme->a_unfocused_unpressed_iconify);
1539         RrAppearanceFree(theme->a_unfocused_pressed_iconify);
1540         RrAppearanceFree(theme->a_focused_grip);
1541         RrAppearanceFree(theme->a_unfocused_grip);
1542         RrAppearanceFree(theme->a_focused_title);
1543         RrAppearanceFree(theme->a_unfocused_title);
1544         RrAppearanceFree(theme->a_focused_label);
1545         RrAppearanceFree(theme->a_unfocused_label);
1546         RrAppearanceFree(theme->a_icon);
1547         RrAppearanceFree(theme->a_focused_handle);
1548         RrAppearanceFree(theme->a_unfocused_handle);
1549         RrAppearanceFree(theme->a_menu);
1550         RrAppearanceFree(theme->a_menu_title);
1551         RrAppearanceFree(theme->a_menu_text_title);
1552         RrAppearanceFree(theme->a_menu_normal);
1553         RrAppearanceFree(theme->a_menu_selected);
1554         RrAppearanceFree(theme->a_menu_disabled);
1555         RrAppearanceFree(theme->a_menu_disabled_selected);
1556         RrAppearanceFree(theme->a_menu_text_normal);
1557         RrAppearanceFree(theme->a_menu_text_selected);
1558         RrAppearanceFree(theme->a_menu_text_disabled);
1559         RrAppearanceFree(theme->a_menu_text_disabled_selected);
1560         RrAppearanceFree(theme->a_menu_bullet_normal);
1561         RrAppearanceFree(theme->a_menu_bullet_selected);
1562         RrAppearanceFree(theme->a_clear);
1563         RrAppearanceFree(theme->a_clear_tex);
1564         RrAppearanceFree(theme->osd_hilite_bg);
1565         RrAppearanceFree(theme->osd_hilite_fg);
1566         RrAppearanceFree(theme->osd_hilite_label);
1567         RrAppearanceFree(theme->osd_unhilite_fg);
1568
1569         g_free(theme);
1570     }
1571 }
1572
1573 static XrmDatabase loaddb(const gchar *name, gchar **path)
1574 {
1575     GSList *it;
1576     XrmDatabase db = NULL;
1577     gchar *s;
1578
1579     if (name[0] == '/') {
1580         s = g_build_filename(name, "openbox-3", "themerc", NULL);
1581         if ((db = XrmGetFileDatabase(s)))
1582             *path = g_path_get_dirname(s);
1583         g_free(s);
1584     } else {
1585         /* XXX backwards compatibility, remove me sometime later */
1586         s = g_build_filename(g_get_home_dir(), ".themes", name,
1587                              "openbox-3", "themerc", NULL);
1588         if ((db = XrmGetFileDatabase(s)))
1589             *path = g_path_get_dirname(s);
1590         g_free(s);
1591
1592         for (it = parse_xdg_data_dir_paths(); !db && it;
1593              it = g_slist_next(it))
1594         {
1595             s = g_build_filename(it->data, "themes", name,
1596                                  "openbox-3", "themerc", NULL);
1597             if ((db = XrmGetFileDatabase(s)))
1598                 *path = g_path_get_dirname(s);
1599             g_free(s);
1600         }
1601     }
1602
1603     if (db == NULL) {
1604         s = g_build_filename(name, "themerc", NULL);
1605         if ((db = XrmGetFileDatabase(s)))
1606             *path = g_path_get_dirname(s);
1607         g_free(s);
1608     }
1609
1610     return db;
1611 }
1612
1613 static gchar *create_class_name(const gchar *rname)
1614 {
1615     gchar *rclass = g_strdup(rname);
1616     gchar *p = rclass;
1617
1618     while (TRUE) {
1619         *p = toupper(*p);
1620         p = strchr(p+1, '.');
1621         if (p == NULL) break;
1622         ++p;
1623         if (*p == '\0') break;
1624     }
1625     return rclass;
1626 }
1627
1628 static gboolean read_int(XrmDatabase db, const gchar *rname, gint *value)
1629 {
1630     gboolean ret = FALSE;
1631     gchar *rclass = create_class_name(rname);
1632     gchar *rettype, *end;
1633     XrmValue retvalue;
1634
1635     if (XrmGetResource(db, rname, rclass, &rettype, &retvalue) &&
1636         retvalue.addr != NULL) {
1637         *value = (gint)strtol(retvalue.addr, &end, 10);
1638         if (end != retvalue.addr)
1639             ret = TRUE;
1640     }
1641
1642     g_free(rclass);
1643     return ret;
1644 }
1645
1646 static gboolean read_string(XrmDatabase db, const gchar *rname, gchar **value)
1647 {
1648     gboolean ret = FALSE;
1649     gchar *rclass = create_class_name(rname);
1650     gchar *rettype;
1651     XrmValue retvalue;
1652
1653     if (XrmGetResource(db, rname, rclass, &rettype, &retvalue) &&
1654         retvalue.addr != NULL) {
1655         *value = retvalue.addr;
1656         ret = TRUE;
1657     }
1658
1659     g_free(rclass);
1660     return ret;
1661 }
1662
1663 static gboolean read_color(XrmDatabase db, const RrInstance *inst,
1664                            const gchar *rname, RrColor **value)
1665 {
1666     gboolean ret = FALSE;
1667     gchar *rclass = create_class_name(rname);
1668     gchar *rettype;
1669     XrmValue retvalue;
1670
1671     if (XrmGetResource(db, rname, rclass, &rettype, &retvalue) &&
1672         retvalue.addr != NULL) {
1673         RrColor *c = RrColorParse(inst, retvalue.addr);
1674         if (c != NULL) {
1675             *value = c;
1676             ret = TRUE;
1677         }
1678     }
1679
1680     g_free(rclass);
1681     return ret;
1682 }
1683
1684 static gboolean read_mask(const RrInstance *inst, const gchar *path,
1685                           RrTheme *theme, const gchar *maskname,
1686                           RrPixmapMask **value)
1687 {
1688     gboolean ret = FALSE;
1689     gchar *s;
1690     gint hx, hy; /* ignored */
1691     guint w, h;
1692     guchar *b;
1693
1694     s = g_build_filename(path, maskname, NULL);
1695     if (XReadBitmapFileData(s, &w, &h, &b, &hx, &hy) == BitmapSuccess) {
1696         ret = TRUE;
1697         *value = RrPixmapMaskNew(inst, w, h, (gchar*)b);
1698         XFree(b);
1699     }
1700     g_free(s);
1701
1702     return ret;
1703 }
1704
1705 static void parse_appearance(gchar *tex, RrSurfaceColorType *grad,
1706                              RrReliefType *relief, RrBevelType *bevel,
1707                              gboolean *interlaced, gboolean *border,
1708                              gboolean allow_trans)
1709 {
1710     gchar *t;
1711
1712     /* convert to all lowercase */
1713     for (t = tex; *t != '\0'; ++t)
1714         *t = g_ascii_tolower(*t);
1715
1716     if (allow_trans && strstr(tex, "parentrelative") != NULL) {
1717         *grad = RR_SURFACE_PARENTREL;
1718     } else {
1719         if (strstr(tex, "gradient") != NULL) {
1720             if (strstr(tex, "crossdiagonal") != NULL)
1721                 *grad = RR_SURFACE_CROSS_DIAGONAL;
1722             else if (strstr(tex, "pyramid") != NULL)
1723                 *grad = RR_SURFACE_PYRAMID;
1724             else if (strstr(tex, "mirrorhorizontal") != NULL)
1725                 *grad = RR_SURFACE_MIRROR_HORIZONTAL;
1726             else if (strstr(tex, "horizontal") != NULL)
1727                 *grad = RR_SURFACE_HORIZONTAL;
1728             else if (strstr(tex, "splitvertical") != NULL)
1729                 *grad = RR_SURFACE_SPLIT_VERTICAL;
1730             else if (strstr(tex, "vertical") != NULL)
1731                 *grad = RR_SURFACE_VERTICAL;
1732             else
1733                 *grad = RR_SURFACE_DIAGONAL;
1734         } else {
1735             *grad = RR_SURFACE_SOLID;
1736         }
1737     }
1738
1739     if (strstr(tex, "sunken") != NULL)
1740         *relief = RR_RELIEF_SUNKEN;
1741     else if (strstr(tex, "flat") != NULL)
1742         *relief = RR_RELIEF_FLAT;
1743     else if (strstr(tex, "raised") != NULL)
1744         *relief = RR_RELIEF_RAISED;
1745     else
1746         *relief = (*grad == RR_SURFACE_PARENTREL) ?
1747                   RR_RELIEF_FLAT : RR_RELIEF_RAISED;
1748
1749     *border = FALSE;
1750     if (*relief == RR_RELIEF_FLAT) {
1751         if (strstr(tex, "border") != NULL)
1752             *border = TRUE;
1753     } else {
1754         if (strstr(tex, "bevel2") != NULL)
1755             *bevel = RR_BEVEL_2;
1756         else
1757             *bevel = RR_BEVEL_1;
1758     }
1759
1760     if (strstr(tex, "interlaced") != NULL)
1761         *interlaced = TRUE;
1762     else
1763         *interlaced = FALSE;
1764 }
1765
1766
1767 static gboolean read_appearance(XrmDatabase db, const RrInstance *inst,
1768                                 const gchar *rname, RrAppearance *value,
1769                                 gboolean allow_trans)
1770 {
1771     gboolean ret = FALSE;
1772     gchar *rclass = create_class_name(rname);
1773     gchar *cname, *ctoname, *bcname, *icname, *hname, *sname;
1774     gchar *csplitname, *ctosplitname;
1775     gchar *rettype;
1776     XrmValue retvalue;
1777     gint i;
1778
1779     cname = g_strconcat(rname, ".color", NULL);
1780     ctoname = g_strconcat(rname, ".colorTo", NULL);
1781     bcname = g_strconcat(rname, ".border.color", NULL);
1782     icname = g_strconcat(rname, ".interlace.color", NULL);
1783     hname = g_strconcat(rname, ".highlight", NULL);
1784     sname = g_strconcat(rname, ".shadow", NULL);
1785     csplitname = g_strconcat(rname, ".color.splitTo", NULL);
1786     ctosplitname = g_strconcat(rname, ".colorTo.splitTo", NULL);
1787
1788     if (XrmGetResource(db, rname, rclass, &rettype, &retvalue) &&
1789         retvalue.addr != NULL) {
1790         parse_appearance(retvalue.addr,
1791                          &value->surface.grad,
1792                          &value->surface.relief,
1793                          &value->surface.bevel,
1794                          &value->surface.interlaced,
1795                          &value->surface.border,
1796                          allow_trans);
1797         if (!read_color(db, inst, cname, &value->surface.primary))
1798             value->surface.primary = RrColorNew(inst, 0, 0, 0);
1799         if (!read_color(db, inst, ctoname, &value->surface.secondary))
1800             value->surface.secondary = RrColorNew(inst, 0, 0, 0);
1801         if (value->surface.border)
1802             if (!read_color(db, inst, bcname,
1803                             &value->surface.border_color))
1804                 value->surface.border_color = RrColorNew(inst, 0, 0, 0);
1805         if (value->surface.interlaced)
1806             if (!read_color(db, inst, icname,
1807                             &value->surface.interlace_color))
1808                 value->surface.interlace_color = RrColorNew(inst, 0, 0, 0);
1809         if (read_int(db, hname, &i) && i >= 0)
1810             value->surface.bevel_light_adjust = i;
1811         if (read_int(db, sname, &i) && i >= 0 && i <= 256)
1812             value->surface.bevel_dark_adjust = i;
1813
1814         if (value->surface.grad == RR_SURFACE_SPLIT_VERTICAL) {
1815             gint r, g, b;
1816
1817             if (!read_color(db, inst, csplitname,
1818                             &value->surface.split_primary))
1819             {
1820                 r = value->surface.primary->r;
1821                 r += r >> 2;
1822                 g = value->surface.primary->g;
1823                 g += g >> 2;
1824                 b = value->surface.primary->b;
1825                 b += b >> 2;
1826                 if (r > 0xFF) r = 0xFF;
1827                 if (g > 0xFF) g = 0xFF;
1828                 if (b > 0xFF) b = 0xFF;
1829                 value->surface.split_primary = RrColorNew(inst, r, g, b);
1830             }
1831
1832             if (!read_color(db, inst, ctosplitname,
1833                             &value->surface.split_secondary))
1834             {
1835                 r = value->surface.secondary->r;
1836                 r += r >> 4;
1837                 g = value->surface.secondary->g;
1838                 g += g >> 4;
1839                 b = value->surface.secondary->b;
1840                 b += b >> 4;
1841                 if (r > 0xFF) r = 0xFF;
1842                 if (g > 0xFF) g = 0xFF;
1843                 if (b > 0xFF) b = 0xFF;
1844                 value->surface.split_secondary = RrColorNew(inst, r, g, b);
1845             }
1846         }
1847
1848         ret = TRUE;
1849     }
1850
1851     g_free(ctosplitname);
1852     g_free(csplitname);
1853     g_free(sname);
1854     g_free(hname);
1855     g_free(icname);
1856     g_free(bcname);
1857     g_free(ctoname);
1858     g_free(cname);
1859     g_free(rclass);
1860     return ret;
1861 }
1862
1863 static int parse_inline_number(const char *p)
1864 {
1865     int neg = 1;
1866     int res = 0;
1867     if (*p == '-') {
1868         neg = -1;
1869         ++p;
1870     }
1871     for (; isdigit(*p); ++p)
1872         res = res * 10 + *p - '0';
1873     res *= neg;
1874     return res;
1875 }
1876
1877 static void set_default_appearance(RrAppearance *a)
1878 {
1879     a->surface.grad = RR_SURFACE_SOLID;
1880     a->surface.relief = RR_RELIEF_FLAT;
1881     a->surface.bevel = RR_BEVEL_1;
1882     a->surface.interlaced = FALSE;
1883     a->surface.border = FALSE;
1884     a->surface.primary = RrColorNew(a->inst, 0, 0, 0);
1885     a->surface.secondary = RrColorNew(a->inst, 0, 0, 0);
1886 }
1887
1888 /* Reads the output from gimp's C-Source file format into valid RGBA data for
1889    an RrTextureRGBA. */
1890 static RrPixel32* read_c_image(gint width, gint height, const guint8 *data)
1891 {
1892     RrPixel32 *im, *p;
1893     gint i;
1894
1895     p = im = g_memdup(data, width * height * sizeof(RrPixel32));
1896
1897     for (i = 0; i < width * height; ++i) {
1898         guchar a = ((*p >> 24) & 0xff);
1899         guchar b = ((*p >> 16) & 0xff);
1900         guchar g = ((*p >>  8) & 0xff);
1901         guchar r = ((*p >>  0) & 0xff);
1902
1903         *p = ((r << RrDefaultRedOffset) +
1904               (g << RrDefaultGreenOffset) +
1905               (b << RrDefaultBlueOffset) +
1906               (a << RrDefaultAlphaOffset));
1907         p++;
1908     }
1909
1910     return im;
1911 }