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