summaryrefslogtreecommitdiff
path: root/render/theme.h
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2009-12-21 10:35:06 -0500
committerDana Jansens <danakj@orodu.net>2009-12-21 10:35:06 -0500
commitcfdbe23e0d9b72b4c220a10ddf60a4e981967b63 (patch)
treea048dc335adbf3b05a56fdce603add94d94612a5 /render/theme.h
parentad812e6299223efb0cb4faee03ce99870e5c7ce5 (diff)
Add themeing options for inactive osd labels, osd.inactive.label.*
(rename the current osd label options from osd.label to osd.active.label, similar to the window.(in)?active.label options.
Diffstat (limited to 'render/theme.h')
-rw-r--r--render/theme.h14
1 files changed, 9 insertions, 5 deletions
diff --git a/render/theme.h b/render/theme.h
index da8e80d3..06014cbb 100644
--- a/render/theme.h
+++ b/render/theme.h
@@ -96,9 +96,12 @@ struct _RrTheme {
gchar title_focused_shadow_alpha;
RrColor *title_unfocused_shadow_color;
gchar title_unfocused_shadow_alpha;
- RrColor *osd_color;
- RrColor *osd_shadow_color;
- gchar osd_shadow_alpha;
+ RrColor *osd_text_active_color;
+ RrColor *osd_text_inactive_color;
+ RrColor *osd_text_active_shadow_color;
+ RrColor *osd_text_inactive_shadow_color;
+ gchar osd_text_active_shadow_alpha;
+ gchar osd_text_inactive_shadow_alpha;
RrColor *menu_title_shadow_color;
gchar menu_title_shadow_alpha;
RrColor *menu_text_normal_shadow_color;
@@ -239,10 +242,11 @@ struct _RrTheme {
RrAppearance *a_clear; /* clear with no texture */
RrAppearance *a_clear_tex; /* clear with a texture */
+ RrAppearance *osd_bg; /* can never be parent relative */
RrAppearance *osd_hilite_bg; /* can never be parent relative */
- RrAppearance *osd_hilite_fg; /* can never be parent relative */
RrAppearance *osd_hilite_label; /* can be parent relative */
- RrAppearance *osd_unhilite_fg; /* can never be parent relative */
+ RrAppearance *osd_unhilite_bg; /* can never be parent relative */
+ RrAppearance *osd_unhilite_label; /* can be parent relative */
gchar *name;
};