1 /* -*- indent-tabs-mode: nil; tab-width: 4; c-basic-offset: 4; -*-
3 theme.h for the Openbox window manager
4 Copyright (c) 2006 Mikael Magnusson
5 Copyright (c) 2003-2007 Dana Jansens
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.
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.
17 See the COPYING file for a copy of the GNU General Public License.
27 typedef struct _RrTheme RrTheme
;
30 const RrInstance
*inst
;
32 /* style settings - fonts */
33 RrFont
*win_font_focused
;
34 RrFont
*win_font_unfocused
;
35 RrFont
*menu_title_font
;
39 /* style settings - geometry */
43 gint fbwidth
; /*!< frame border width */
44 gint mbwidth
; /*!< menu border width */
48 /* these ones are calculated, not set directly by the theme file */
50 gint menu_title_font_height
;
51 gint menu_font_height
;
56 gint menu_title_label_height
;
57 gint menu_title_height
;
59 /* style settings - colors */
60 RrColor
*menu_border_color
;
61 RrColor
*frame_focused_border_color
;
62 RrColor
*frame_unfocused_border_color
;
63 RrColor
*title_separator_focused_color
;
64 RrColor
*title_separator_unfocused_color
;
65 RrColor
*cb_focused_color
;
66 RrColor
*cb_unfocused_color
;
67 RrColor
*title_focused_color
;
68 RrColor
*title_unfocused_color
;
69 RrColor
*titlebut_disabled_focused_color
;
70 RrColor
*titlebut_disabled_unfocused_color
;
71 RrColor
*titlebut_hover_focused_color
;
72 RrColor
*titlebut_hover_unfocused_color
;
73 RrColor
*titlebut_toggled_hover_focused_color
;
74 RrColor
*titlebut_toggled_hover_unfocused_color
;
75 RrColor
*titlebut_toggled_focused_pressed_color
;
76 RrColor
*titlebut_toggled_unfocused_pressed_color
;
77 RrColor
*titlebut_toggled_focused_unpressed_color
;
78 RrColor
*titlebut_toggled_unfocused_unpressed_color
;
79 RrColor
*titlebut_focused_pressed_color
;
80 RrColor
*titlebut_unfocused_pressed_color
;
81 RrColor
*titlebut_focused_unpressed_color
;
82 RrColor
*titlebut_unfocused_unpressed_color
;
83 RrColor
*menu_title_color
;
85 RrColor
*menu_selected_color
;
86 RrColor
*menu_disabled_color
;
87 RrColor
*menu_disabled_selected_color
;
88 RrColor
*title_focused_shadow_color
;
89 gchar title_focused_shadow_alpha
;
90 RrColor
*title_unfocused_shadow_color
;
91 gchar title_unfocused_shadow_alpha
;
93 RrColor
*osd_shadow_color
;
94 gchar osd_shadow_alpha
;
95 RrColor
*menu_title_shadow_color
;
96 gchar menu_title_shadow_alpha
;
97 RrColor
*menu_text_normal_shadow_color
;
98 gchar menu_text_normal_shadow_alpha
;
99 RrColor
*menu_text_selected_shadow_color
;
100 gchar menu_text_selected_shadow_alpha
;
101 RrColor
*menu_text_disabled_shadow_color
;
102 gchar menu_text_disabled_shadow_alpha
;
103 RrColor
*menu_text_disabled_selected_shadow_color
;
104 gchar menu_text_disabled_selected_shadow_alpha
;
106 /* style settings - pics */
107 RrPixel32
*def_win_icon
; /* 48x48 RGBA */
109 /* style settings - masks */
110 RrPixmapMask
*max_mask
;
111 RrPixmapMask
*max_hover_mask
;
112 RrPixmapMask
*max_pressed_mask
;
113 RrPixmapMask
*max_toggled_mask
;
114 RrPixmapMask
*max_toggled_hover_mask
;
115 RrPixmapMask
*max_toggled_pressed_mask
;
116 RrPixmapMask
*max_disabled_mask
;
117 RrPixmapMask
*iconify_mask
;
118 RrPixmapMask
*iconify_hover_mask
;
119 RrPixmapMask
*iconify_pressed_mask
;
120 RrPixmapMask
*iconify_disabled_mask
;
121 RrPixmapMask
*desk_mask
;
122 RrPixmapMask
*desk_hover_mask
;
123 RrPixmapMask
*desk_pressed_mask
;
124 RrPixmapMask
*desk_toggled_mask
;
125 RrPixmapMask
*desk_toggled_hover_mask
;
126 RrPixmapMask
*desk_toggled_pressed_mask
;
127 RrPixmapMask
*desk_disabled_mask
;
128 RrPixmapMask
*shade_mask
;
129 RrPixmapMask
*shade_hover_mask
;
130 RrPixmapMask
*shade_pressed_mask
;
131 RrPixmapMask
*shade_toggled_mask
;
132 RrPixmapMask
*shade_toggled_hover_mask
;
133 RrPixmapMask
*shade_toggled_pressed_mask
;
134 RrPixmapMask
*shade_disabled_mask
;
135 RrPixmapMask
*close_mask
;
136 RrPixmapMask
*close_hover_mask
;
137 RrPixmapMask
*close_disabled_mask
;
138 RrPixmapMask
*close_pressed_mask
;
140 RrPixmapMask
*menu_bullet_mask
; /* submenu pointer */
142 RrPixmapMask
*menu_toggle_mask
; /* menu boolean */
145 /* global appearances */
146 RrAppearance
*a_disabled_focused_max
;
147 RrAppearance
*a_disabled_unfocused_max
;
148 RrAppearance
*a_hover_focused_max
;
149 RrAppearance
*a_hover_unfocused_max
;
150 RrAppearance
*a_focused_unpressed_max
;
151 RrAppearance
*a_focused_pressed_max
;
152 RrAppearance
*a_unfocused_unpressed_max
;
153 RrAppearance
*a_unfocused_pressed_max
;
154 RrAppearance
*a_toggled_hover_focused_max
;
155 RrAppearance
*a_toggled_hover_unfocused_max
;
156 RrAppearance
*a_toggled_focused_unpressed_max
;
157 RrAppearance
*a_toggled_focused_pressed_max
;
158 RrAppearance
*a_toggled_unfocused_unpressed_max
;
159 RrAppearance
*a_toggled_unfocused_pressed_max
;
160 RrAppearance
*a_disabled_focused_close
;
161 RrAppearance
*a_disabled_unfocused_close
;
162 RrAppearance
*a_hover_focused_close
;
163 RrAppearance
*a_hover_unfocused_close
;
164 RrAppearance
*a_focused_unpressed_close
;
165 RrAppearance
*a_focused_pressed_close
;
166 RrAppearance
*a_unfocused_unpressed_close
;
167 RrAppearance
*a_unfocused_pressed_close
;
168 RrAppearance
*a_disabled_focused_desk
;
169 RrAppearance
*a_disabled_unfocused_desk
;
170 RrAppearance
*a_hover_focused_desk
;
171 RrAppearance
*a_hover_unfocused_desk
;
172 RrAppearance
*a_focused_unpressed_desk
;
173 RrAppearance
*a_focused_pressed_desk
;
174 RrAppearance
*a_unfocused_unpressed_desk
;
175 RrAppearance
*a_unfocused_pressed_desk
;
176 RrAppearance
*a_toggled_hover_focused_desk
;
177 RrAppearance
*a_toggled_hover_unfocused_desk
;
178 RrAppearance
*a_toggled_focused_unpressed_desk
;
179 RrAppearance
*a_toggled_focused_pressed_desk
;
180 RrAppearance
*a_toggled_unfocused_unpressed_desk
;
181 RrAppearance
*a_toggled_unfocused_pressed_desk
;
182 RrAppearance
*a_disabled_focused_shade
;
183 RrAppearance
*a_disabled_unfocused_shade
;
184 RrAppearance
*a_hover_focused_shade
;
185 RrAppearance
*a_hover_unfocused_shade
;
186 RrAppearance
*a_focused_unpressed_shade
;
187 RrAppearance
*a_focused_pressed_shade
;
188 RrAppearance
*a_unfocused_unpressed_shade
;
189 RrAppearance
*a_unfocused_pressed_shade
;
190 RrAppearance
*a_toggled_hover_focused_shade
;
191 RrAppearance
*a_toggled_hover_unfocused_shade
;
192 RrAppearance
*a_toggled_focused_unpressed_shade
;
193 RrAppearance
*a_toggled_focused_pressed_shade
;
194 RrAppearance
*a_toggled_unfocused_unpressed_shade
;
195 RrAppearance
*a_toggled_unfocused_pressed_shade
;
196 RrAppearance
*a_disabled_focused_iconify
;
197 RrAppearance
*a_disabled_unfocused_iconify
;
198 RrAppearance
*a_hover_focused_iconify
;
199 RrAppearance
*a_hover_unfocused_iconify
;
200 RrAppearance
*a_focused_unpressed_iconify
;
201 RrAppearance
*a_focused_pressed_iconify
;
202 RrAppearance
*a_unfocused_unpressed_iconify
;
203 RrAppearance
*a_unfocused_pressed_iconify
;
204 RrAppearance
*a_focused_grip
;
205 RrAppearance
*a_unfocused_grip
;
206 RrAppearance
*a_focused_title
;
207 RrAppearance
*a_unfocused_title
;
208 RrAppearance
*a_focused_label
;
209 RrAppearance
*a_unfocused_label
;
210 /* always parentrelative, so no focused/unfocused */
211 RrAppearance
*a_icon
;
212 RrAppearance
*a_focused_handle
;
213 RrAppearance
*a_unfocused_handle
;
214 RrAppearance
*a_menu_text_title
;
215 RrAppearance
*a_menu_title
;
216 RrAppearance
*a_menu
;
217 RrAppearance
*a_menu_normal
;
218 RrAppearance
*a_menu_selected
;
219 RrAppearance
*a_menu_disabled
;
220 RrAppearance
*a_menu_disabled_selected
;
221 RrAppearance
*a_menu_text_normal
;
222 RrAppearance
*a_menu_text_disabled
;
223 RrAppearance
*a_menu_text_disabled_selected
;
224 RrAppearance
*a_menu_text_selected
;
225 RrAppearance
*a_menu_bullet_normal
;
226 RrAppearance
*a_menu_bullet_selected
;
227 RrAppearance
*a_clear
; /* clear with no texture */
228 RrAppearance
*a_clear_tex
; /* clear with a texture */
230 RrAppearance
*osd_hilite_bg
; /* can never be parent relative */
231 RrAppearance
*osd_hilite_fg
; /* can never be parent relative */
232 RrAppearance
*osd_hilite_label
; /* can be parent relative */
233 RrAppearance
*osd_unhilite_fg
; /* can never be parent relative */
238 /*! The font values are all optional. If a NULL is used for any of them, then
239 the default font will be used. */
240 RrTheme
* RrThemeNew(const RrInstance
*inst
, const gchar
*theme
,
241 gboolean allow_fallback
,
242 RrFont
*active_window_font
, RrFont
*inactive_window_font
,
243 RrFont
*menu_title_font
, RrFont
*menu_item_font
,
245 void RrThemeFree(RrTheme
*theme
);