]> icculus.org git repositories - dana/obconf.git/blob - src/preview.c
ix/add copyight comments
[dana/obconf.git] / src / preview.c
1 /* -*- indent-tabs-mode: nil; tab-width: 4; c-basic-offset: 4; -*-
2
3    preview.c for ObConf, the configuration tool for Openbox
4    Copyright (c) 2007        Javeed Shaikh
5    Copyright (c) 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 "theme.h"
21 #include "main.h"
22 #include "tree.h"
23
24 #include <string.h>
25
26 #include <openbox/theme.h>
27
28 #define PADDING 2 /* openbox does it :/ */
29
30 static void theme_pixmap_paint(RrAppearance *a, gint w, gint h)
31 {
32     Pixmap out = RrPaintPixmap(a, w, h);
33     if (out) XFreePixmap(RrDisplay(a->inst), out);
34 }
35
36 static guint32 rr_color_pixel(const RrColor *c)
37 {
38     return (guint32)((RrColorRed(c) << 24) + (RrColorGreen(c) << 16) +
39                      + (RrColorBlue(c) << 8) + 0xff);
40 }
41
42 /* XXX: Make this more general */
43 static GdkPixbuf* preview_menu(RrTheme *theme)
44 {
45     RrAppearance *title;
46     RrAppearance *title_text;
47
48     RrAppearance *menu;
49     RrAppearance *background;
50
51     RrAppearance *normal;
52     RrAppearance *disabled;
53     RrAppearance *selected;
54     RrAppearance *bullet; /* for submenu */
55
56     GdkPixmap *pixmap;
57     GdkPixbuf *pixbuf;
58
59     /* width and height of the whole menu */
60     gint width, height;
61     gint x, y;
62     gint title_h;
63     gint tw, th;
64     gint bw, bh;
65     gint unused;
66
67     /* set up appearances */
68     title = theme->a_menu_title;
69
70     title_text = theme->a_menu_text_title;
71     title_text->surface.parent = title;
72     title_text->texture[0].data.text.string = "menu";
73
74     normal = theme->a_menu_text_normal;
75     normal->texture[0].data.text.string = "normal";
76
77     disabled = theme->a_menu_text_disabled;
78     disabled->texture[0].data.text.string = "disabled";
79
80     selected = theme->a_menu_text_selected;
81     selected->texture[0].data.text.string = "selected";
82
83     bullet = theme->a_menu_bullet_normal;
84
85     /* determine window size */
86     RrMinSize(normal, &width, &th);
87     width += th + PADDING; /* make space for the bullet */
88     //height = th;
89
90     width += 2*theme->mbwidth + 2*PADDING;
91
92     /* get minimum title size */
93     RrMinSize(title, &tw, &title_h);
94
95     /* size of background behind each text line */
96     bw = width - 2*theme->mbwidth;
97     //title_h += 2*PADDING;
98     title_h = theme->menu_title_height;
99
100     RrMinSize(normal, &unused, &th);
101     bh = th + 2*PADDING;
102
103     height = title_h + 3*bh + 3*theme->mbwidth;
104
105     //height += 3*th + 3*theme->mbwidth + 5*PADDING;
106
107     /* set border */
108     pixbuf = gdk_pixbuf_new(GDK_COLORSPACE_RGB, FALSE, 8, width, height);
109     gdk_pixbuf_fill(pixbuf, rr_color_pixel(theme->menu_border_color));
110
111     /* draw title */
112     x = y = theme->mbwidth;
113     theme_pixmap_paint(title, bw, title_h);
114
115     /* draw title text */
116     title_text->surface.parentx = 0;
117     title_text->surface.parenty = 0;
118
119     theme_pixmap_paint(title_text, bw, title_h);
120
121     pixmap = gdk_pixmap_foreign_new(title_text->pixmap);
122     pixbuf = gdk_pixbuf_get_from_drawable(pixbuf, pixmap,
123                                           gdk_colormap_get_system(),
124                                           0, 0, x, y, bw, title_h);
125
126     /* menu appears after title */
127     y += theme->mbwidth + title_h;
128
129     /* fill in menu appearance, used as the parent to every menu item's bg */
130     menu = theme->a_menu;
131     th = height - 3*theme->mbwidth - title_h;
132     theme_pixmap_paint(menu, bw, th);
133
134     pixmap = gdk_pixmap_foreign_new(menu->pixmap);
135     pixbuf = gdk_pixbuf_get_from_drawable(pixbuf, pixmap,
136                                           gdk_colormap_get_system(),
137                                           0, 0, x, y, bw, th);
138
139     /* fill in background appearance, used as the parent to text items */
140     background = theme->a_menu_normal;
141     background->surface.parent = menu;
142     background->surface.parentx = 0;
143     background->surface.parenty = 0;
144
145     /* draw background for normal entry */
146     theme_pixmap_paint(background, bw, bh);
147     pixmap = gdk_pixmap_foreign_new(background->pixmap);
148     pixbuf = gdk_pixbuf_get_from_drawable(pixbuf, pixmap,
149                                           gdk_colormap_get_system(),
150                                           0, 0, x, y, bw, bh);
151
152     /* draw normal entry */
153     normal->surface.parent = background;
154     normal->surface.parentx = PADDING;
155     normal->surface.parenty = PADDING;
156     x += PADDING;
157     y += PADDING;
158     RrMinSize(normal, &tw, &th);
159     theme_pixmap_paint(normal, tw, th);
160     pixmap = gdk_pixmap_foreign_new(normal->pixmap);
161     pixbuf = gdk_pixbuf_get_from_drawable(pixbuf, pixmap,
162                                           gdk_colormap_get_system(),
163                                           0, 0, x, y, tw, th);
164
165     /* draw bullet */
166     RrMinSize(normal, &tw, &th);
167     bullet->surface.parent = background;
168     bullet->surface.parentx = bw - th;
169     bullet->surface.parenty = PADDING;
170     theme_pixmap_paint(bullet, th, th);
171     pixmap = gdk_pixmap_foreign_new(bullet->pixmap);
172     pixbuf = gdk_pixbuf_get_from_drawable(pixbuf, pixmap,
173                                           gdk_colormap_get_system(),
174                                           0, 0, width - theme->mbwidth - th, y,
175                                           th, th);
176
177     y += th + 2*PADDING;
178
179     /* draw background for disabled entry */
180     background->surface.parenty = bh;
181     theme_pixmap_paint(background, bw, bh);
182     pixmap = gdk_pixmap_foreign_new(background->pixmap);
183     pixbuf = gdk_pixbuf_get_from_drawable(pixbuf, pixmap,
184                                           gdk_colormap_get_system(),
185                                           0, 0, x - PADDING, y - PADDING,
186                                           bw, bh);
187
188     /* draw disabled entry */
189     RrMinSize(disabled, &tw, &th);
190     disabled->surface.parent = background;
191     disabled->surface.parentx = PADDING;
192     disabled->surface.parenty = PADDING;
193     theme_pixmap_paint(disabled, tw, th);
194     pixmap = gdk_pixmap_foreign_new(disabled->pixmap);
195     pixbuf = gdk_pixbuf_get_from_drawable(pixbuf, pixmap,
196                                           gdk_colormap_get_system(),
197                                           0, 0, x, y, tw, th);
198
199     y += th + 2*PADDING;
200
201     /* draw background for selected entry */
202     background = theme->a_menu_selected;
203     background->surface.parent = menu;
204     background->surface.parentx = 2*bh;
205
206     theme_pixmap_paint(background, bw, bh);
207     pixmap = gdk_pixmap_foreign_new(background->pixmap);
208     pixbuf = gdk_pixbuf_get_from_drawable(pixbuf, pixmap,
209                                           gdk_colormap_get_system(),
210                                           0, 0, x - PADDING, y - PADDING,
211                                           bw, bh);
212
213     /* draw selected entry */
214     RrMinSize(selected, &tw, &th);
215     selected->surface.parent = background;
216     selected->surface.parentx = PADDING;
217     selected->surface.parenty = PADDING;
218     theme_pixmap_paint(selected, tw, th);
219     pixmap = gdk_pixmap_foreign_new(selected->pixmap);
220     pixbuf = gdk_pixbuf_get_from_drawable(pixbuf, pixmap,
221                                           gdk_colormap_get_system(),
222                                           0, 0, x, y, tw, th);
223
224     return pixbuf;
225 }
226
227 static GdkPixbuf* preview_window(RrTheme *theme, const gchar *titlelayout,
228                                  gboolean focus, gint width, gint height)
229 {
230     RrAppearance *title;
231     RrAppearance *handle;
232     RrAppearance *a;
233
234     GdkPixmap *pixmap;
235     GdkPixbuf *pixbuf = NULL;
236     GdkPixbuf *scratch;
237
238     gint w, label_w, h, x, y;
239
240     const gchar *layout;
241
242     title = focus ? theme->a_focused_title : theme->a_unfocused_title;
243
244     /* set border */
245     pixbuf = gdk_pixbuf_new(GDK_COLORSPACE_RGB, FALSE, 8, width, height);
246     gdk_pixbuf_fill(pixbuf, rr_color_pixel(theme->menu_border_color));
247
248     /* title */
249     w = width - 2*theme->fbwidth;
250     h = theme->title_height;
251     theme_pixmap_paint(title, w, h);
252
253     x = y = theme->fbwidth;;
254     pixmap = gdk_pixmap_foreign_new(title->pixmap);
255     pixbuf = gdk_pixbuf_get_from_drawable(pixbuf, pixmap,
256                                           gdk_colormap_get_system(),
257                                           0, 0, x, y, w, h);
258
259     /* calculate label width */
260     label_w = width - (theme->paddingx + theme->fbwidth + 1) * 2;
261
262     for (layout = titlelayout; *layout; layout++) {
263         switch (*layout) {
264         case 'N':
265             label_w -= theme->button_size + 2 + theme->paddingx + 1;
266             break;
267         case 'D':
268         case 'S':
269         case 'I':
270         case 'M':
271         case 'C':
272             label_w -= theme->button_size + theme->paddingx + 1;
273             break;
274         default:
275             break;
276         }
277     }
278
279     x = theme->paddingx + theme->fbwidth + 1;
280     y += theme->paddingy + 1;
281     for (layout = titlelayout; *layout; layout++) {
282         /* icon */
283         if (*layout == 'N') {
284             a = theme->a_icon;
285             /* set default icon */
286             a->texture[0].type = RR_TEXTURE_RGBA;
287             a->texture[0].data.rgba.width = 48;
288             a->texture[0].data.rgba.height = 48;
289             a->texture[0].data.rgba.data = theme->def_win_icon;
290
291             a->surface.parent = title;
292             a->surface.parentx = x;
293             a->surface.parenty = theme->paddingy;
294
295             w = h = theme->button_size + 2;
296
297             theme_pixmap_paint(a, w, h);
298             pixmap = gdk_pixmap_foreign_new(a->pixmap);
299             pixbuf = gdk_pixbuf_get_from_drawable(pixbuf, pixmap,
300                                                   gdk_colormap_get_system(),
301                                                   0, 0, x, y - 1, w, h);
302
303             x += theme->button_size + 2 + theme->paddingx + 1;
304         } else if (*layout == 'L') { /* label */
305             a = focus ? theme->a_focused_label : theme->a_unfocused_label;
306             a->texture[0].data.text.string = focus ? "active" : "inactive";
307
308             a->surface.parent = title;
309             a->surface.parentx = x;
310             a->surface.parenty = theme->paddingy;
311             w = label_w;
312             h = theme->label_height;
313
314             theme_pixmap_paint(a, w, h);
315             pixmap = gdk_pixmap_foreign_new(a->pixmap);
316             pixbuf = gdk_pixbuf_get_from_drawable(pixbuf, pixmap,
317                                                   gdk_colormap_get_system(),
318                                                   0, 0, x, y - 1, w, h);
319
320             x += w + theme->paddingx + 1;
321         } else {
322             /* buttons */
323             switch (*layout) {
324             case 'D':
325                 a = focus ?
326                     theme->a_focused_unpressed_desk :
327                     theme->a_unfocused_unpressed_desk;
328                 break;
329             case 'S':
330                 a = focus ?
331                     theme->a_focused_unpressed_shade :
332                     theme->a_unfocused_unpressed_shade;
333                 break;
334             case 'I':
335                 a = focus ?
336                     theme->a_focused_unpressed_iconify :
337                     theme->a_unfocused_unpressed_iconify;
338                 break;
339             case 'M':
340                 a = focus ?
341                     theme->a_focused_unpressed_max :
342                     theme->a_unfocused_unpressed_max;
343                 break;
344             case 'C':
345                 a = focus ?
346                     theme->a_focused_unpressed_close :
347                     theme->a_unfocused_unpressed_close;
348                 break;
349             default:
350                 continue;
351             }
352
353             a->surface.parent = title;
354             a->surface.parentx = x;
355             a->surface.parenty = theme->paddingy + 1;
356
357             w = theme->button_size;
358             h = theme->button_size;
359
360             theme_pixmap_paint(a, w, h);
361             pixmap = gdk_pixmap_foreign_new(a->pixmap);
362             pixbuf = gdk_pixbuf_get_from_drawable(pixbuf, pixmap,
363                                                   gdk_colormap_get_system(),
364                                                   0, 0, x, y, w, h);
365
366             x += theme->button_size + theme->paddingx + 1;
367         }
368     }
369
370     if (theme->handle_height) {
371         /* handle */
372         handle = focus ? theme->a_focused_handle : theme->a_unfocused_handle;
373         x = 2*theme->fbwidth + theme->grip_width;
374         y = height - theme->fbwidth - theme->handle_height;
375         w = width - 4*theme->fbwidth - 2*theme->grip_width;
376         h = theme->handle_height;
377
378         theme_pixmap_paint(handle, w, h);
379         pixmap = gdk_pixmap_foreign_new(handle->pixmap);
380         pixbuf = gdk_pixbuf_get_from_drawable(pixbuf, pixmap,
381                                               gdk_colormap_get_system(),
382                                               0, 0, x, y, w, h);
383
384         /* openbox handles this drawing stuff differently (it fills the bottom
385          * of the window with the handle), so it avoids this bug where
386          * parentrelative grips are not fully filled. i'm avoiding it slightly
387          * differently. */
388
389         theme_pixmap_paint(handle, width, h);
390
391         /* grips */
392         a = focus ? theme->a_focused_grip : theme->a_unfocused_grip;
393         a->surface.parent = handle;
394
395         x = theme->fbwidth;
396         /* same y and h as handle */
397         w = theme->grip_width;
398
399         theme_pixmap_paint(a, w, h);
400         pixmap = gdk_pixmap_foreign_new(a->pixmap);
401         pixbuf = gdk_pixbuf_get_from_drawable(pixbuf, pixmap,
402                                               gdk_colormap_get_system(),
403                                               0, 0, x, y, w, h);
404
405         /* right grip */
406         x = width - theme->fbwidth - theme->grip_width;
407         pixbuf = gdk_pixbuf_get_from_drawable(pixbuf, pixmap,
408                                               gdk_colormap_get_system(),
409                                               0, 0, x, y, w, h);
410     }
411
412     /* retarded way of adding client colour */
413     x = theme->fbwidth;
414     y = theme->title_height + 2*theme->fbwidth;
415     w = width - 2*theme->fbwidth;
416     h = height - theme->title_height - 3*theme->fbwidth -
417         (theme->handle_height ? (theme->fbwidth + theme->handle_height) : 0);
418
419     scratch = gdk_pixbuf_new(GDK_COLORSPACE_RGB, FALSE, 8, w, h);
420     gdk_pixbuf_fill(scratch, rr_color_pixel(focus ?
421                                             theme->cb_focused_color :
422                                             theme->cb_unfocused_color));
423
424     gdk_pixbuf_copy_area(scratch, 0, 0, w, h, pixbuf, x, y);
425
426     return pixbuf;
427 }
428
429 static gint theme_label_width(RrTheme *theme, gboolean active)
430 {
431     gint w, h;
432     RrAppearance *label;
433
434     if (active) {
435         label = theme->a_focused_label;
436         label->texture[0].data.text.string = "active";
437     } else {
438         label = theme->a_unfocused_label;
439         label->texture[0].data.text.string = "inactive";
440     }
441
442     return RrMinWidth(label);
443 }
444
445 static gint theme_window_min_width(RrTheme *theme, const gchar *titlelayout)
446 {
447     gint numbuttons = strlen(titlelayout);
448     gint w =  2 * (theme->fbwidth + theme->paddingx + 1);
449
450     if (g_strrstr(titlelayout, "L")) {
451         numbuttons--;
452         w += MAX(theme_label_width(theme, TRUE),
453                  theme_label_width(theme, FALSE)) + theme->paddingx + 1;
454     }
455
456     w += (theme->button_size + theme->paddingx + 1) * numbuttons;
457
458     return w;
459 }
460
461 GdkPixbuf *preview_theme(const gchar *name, const gchar *titlelayout,
462                          RrFont *active_window_font,
463                          RrFont *inactive_window_font,
464                          RrFont *menu_title_font,
465                          RrFont *menu_item_font,
466                          RrFont *osd_font)
467 {
468
469     GdkPixbuf *preview;
470     GdkPixbuf *menu;
471     GdkPixbuf *window;
472
473     gint window_w;
474     gint menu_w;
475
476     gint w, h;
477
478     RrTheme *theme = RrThemeNew(rrinst, name,
479                                 active_window_font, inactive_window_font,
480                                 menu_title_font, menu_item_font, osd_font);
481
482     menu = preview_menu(theme);
483   
484     window_w = theme_window_min_width(theme, titlelayout);
485
486     menu_w = gdk_pixbuf_get_width(menu);
487     h = gdk_pixbuf_get_height(menu);
488
489     w = MAX(window_w, menu_w) + 20;
490   
491     preview = gdk_pixbuf_new(GDK_COLORSPACE_RGB, TRUE, 8,
492                              w, h + 2*(theme->title_height +5) + 1);
493     gdk_pixbuf_fill(preview, 0); /* clear */
494
495     window = preview_window(theme, titlelayout, FALSE, window_w, h);
496     gdk_pixbuf_copy_area(window, 0, 0, window_w, h, preview, 20, 0);
497
498     window = preview_window(theme, titlelayout, TRUE, window_w, h);
499     gdk_pixbuf_copy_area(window, 0, 0, window_w, h,
500                          preview, 10, theme->title_height + 5);
501
502     gdk_pixbuf_copy_area(menu, 0, 0, menu_w, h,
503                          preview, 0, 2 * (theme->title_height + 5));
504
505     RrThemeFree(theme);
506
507     return preview;
508 }