]> icculus.org git repositories - mikachu/openbox.git/blob - render/theme.h
We shouldn't enforce incr when the app resizes itself. But it's so confusing.
[mikachu/openbox.git] / render / theme.h
1 /* -*- indent-tabs-mode: nil; tab-width: 4; c-basic-offset: 4; -*-
2
3    theme.h 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 #ifndef __theme_h
21 #define __theme_h
22
23 #include "render.h"
24
25 G_BEGIN_DECLS
26
27 typedef struct _RrTheme RrTheme;
28
29 struct _RrTheme {
30     const RrInstance *inst;
31
32     /* style settings - fonts */
33     RrFont *win_font_focused;
34     RrFont *win_font_unfocused;
35     RrFont *menu_title_font;
36     RrFont *menu_font;
37     RrFont *osd_font;
38
39     /* style settings - geometry */
40     gint paddingx;
41     gint paddingy;
42     gint handle_height;
43     gint fbwidth; /*!< frame border width */
44     gint mbwidth; /*!< menu border width */
45     gint obwidth; /*!< osd border width */
46     gint cbwidthx;
47     gint cbwidthy;
48     gint menu_overlap_x;
49     gint menu_overlap_y;
50     gint menu_sep_width;
51     gint menu_sep_paddingx;
52     gint menu_sep_paddingy;
53     /* these ones are calculated, not set directly by the theme file */
54     gint win_font_height;
55     gint menu_title_font_height;
56     gint menu_font_height;
57     gint label_height;
58     gint title_height;
59     gint button_size;
60     gint grip_width;
61     gint menu_title_label_height;
62     gint menu_title_height;
63
64     /* style settings - colors */
65     RrColor *menu_border_color;
66     RrColor *osd_border_color;
67     RrColor *frame_focused_border_color;
68     RrColor *frame_unfocused_border_color;
69     RrColor *title_separator_focused_color;
70     RrColor *title_separator_unfocused_color;
71     RrColor *cb_focused_color;
72     RrColor *cb_unfocused_color;
73     RrColor *title_focused_color;
74     RrColor *title_unfocused_color;
75     RrColor *titlebut_disabled_focused_color;
76     RrColor *titlebut_disabled_unfocused_color;
77     RrColor *titlebut_hover_focused_color;
78     RrColor *titlebut_hover_unfocused_color;
79     RrColor *titlebut_toggled_hover_focused_color;
80     RrColor *titlebut_toggled_hover_unfocused_color;
81     RrColor *titlebut_toggled_focused_pressed_color;
82     RrColor *titlebut_toggled_unfocused_pressed_color;
83     RrColor *titlebut_toggled_focused_unpressed_color;
84     RrColor *titlebut_toggled_unfocused_unpressed_color;
85     RrColor *titlebut_focused_pressed_color;
86     RrColor *titlebut_unfocused_pressed_color;
87     RrColor *titlebut_focused_unpressed_color;
88     RrColor *titlebut_unfocused_unpressed_color;
89     RrColor *menu_title_color;
90     RrColor *menu_sep_color;
91     RrColor *menu_color;
92     RrColor *menu_bullet_color;
93     RrColor *menu_bullet_selected_color;
94     RrColor *menu_selected_color;
95     RrColor *menu_disabled_color;
96     RrColor *menu_disabled_selected_color;
97     RrColor *title_focused_shadow_color;
98     gchar    title_focused_shadow_alpha;
99     RrColor *title_unfocused_shadow_color;
100     gchar    title_unfocused_shadow_alpha;
101     RrColor *osd_color;
102     RrColor *osd_shadow_color;
103     gchar    osd_shadow_alpha;
104     RrColor *menu_title_shadow_color;
105     gchar    menu_title_shadow_alpha;
106     RrColor *menu_text_normal_shadow_color;
107     gchar    menu_text_normal_shadow_alpha;
108     RrColor *menu_text_selected_shadow_color;
109     gchar    menu_text_selected_shadow_alpha;
110     RrColor *menu_text_disabled_shadow_color;
111     gchar    menu_text_disabled_shadow_alpha;
112     RrColor *menu_text_disabled_selected_shadow_color;
113     gchar    menu_text_disabled_selected_shadow_alpha;
114
115     /* style settings - pics */
116     RrPixel32 *def_win_icon; /* RGBA */
117     gint       def_win_icon_w;
118     gint       def_win_icon_h;
119
120     /* style settings - masks */
121     RrPixmapMask *menu_bullet_mask; /* submenu pointer */
122 #if 0
123     RrPixmapMask *menu_toggle_mask; /* menu boolean */
124 #endif
125
126     RrPixmapMask *down_arrow_mask;
127     RrPixmapMask *up_arrow_mask;
128
129     /* buttons */
130     RrButton *btn_max;
131     RrButton *btn_close;
132     RrButton *btn_desk;
133     RrButton *btn_shade;
134     RrButton *btn_iconify;
135
136     /* global appearances */
137     RrAppearance *a_focused_grip;
138     RrAppearance *a_unfocused_grip;
139     RrAppearance *a_focused_title;
140     RrAppearance *a_unfocused_title;
141     RrAppearance *a_focused_label;
142     RrAppearance *a_unfocused_label;
143     /* always parentrelative, so no focused/unfocused */
144     RrAppearance *a_icon;
145     RrAppearance *a_focused_handle;
146     RrAppearance *a_unfocused_handle;
147     RrAppearance *a_menu_text_title;
148     RrAppearance *a_menu_title;
149     RrAppearance *a_menu;
150     RrAppearance *a_menu_normal;
151     RrAppearance *a_menu_selected;
152     RrAppearance *a_menu_disabled;
153     RrAppearance *a_menu_disabled_selected;
154     RrAppearance *a_menu_text_normal;
155     RrAppearance *a_menu_text_disabled;
156     RrAppearance *a_menu_text_disabled_selected;
157     RrAppearance *a_menu_text_selected;
158     RrAppearance *a_menu_bullet_normal;
159     RrAppearance *a_menu_bullet_selected;
160     RrAppearance *a_clear;     /* clear with no texture */
161     RrAppearance *a_clear_tex; /* clear with a texture */
162
163     RrAppearance *osd_hilite_bg; /* can never be parent relative */
164     RrAppearance *osd_hilite_fg; /* can never be parent relative */
165     RrAppearance *osd_hilite_label; /* can be parent relative */
166     RrAppearance *osd_unhilite_fg; /* can never be parent relative */
167
168     gchar *name;
169 };
170
171 /*! The font values are all optional. If a NULL is used for any of them, then
172   the default font will be used. */
173 RrTheme* RrThemeNew(const RrInstance *inst, const gchar *theme,
174                     gboolean allow_fallback,
175                     RrFont *active_window_font, RrFont *inactive_window_font,
176                     RrFont *menu_title_font, RrFont *menu_item_font,
177                     RrFont *osd_font);
178 void RrThemeFree(RrTheme *theme);
179
180 G_END_DECLS
181
182 #endif