Fix ordering so fallback for inactive osd to label works
The themeing options (sic) for inactive osd labels added in
cfdbe23e0d
had the fallback to inactive
label before that was read in, so fallback failed to pick up some
things.
This commit is contained in:
parent
b3cc8f4876
commit
3e9dbc0143
1 changed files with 55 additions and 55 deletions
110
obrender/theme.c
110
obrender/theme.c
|
@ -932,13 +932,6 @@ RrTheme* RrThemeNew(const RrInstance *inst, const gchar *name,
|
|||
theme->osd_hilite_label->texture[0].data.text.color =
|
||||
theme->osd_text_active_color;
|
||||
|
||||
theme->osd_unhilite_label->texture[0].type = RR_TEXTURE_TEXT;
|
||||
theme->osd_unhilite_label->texture[0].data.text.justify = RR_JUSTIFY_LEFT;
|
||||
theme->osd_unhilite_label->texture[0].data.text.font =
|
||||
theme->osd_font_unhilite;
|
||||
theme->osd_unhilite_label->texture[0].data.text.color =
|
||||
theme->osd_text_inactive_color;
|
||||
|
||||
if (read_string(db, "osd.active.label.text.font", &str) ||
|
||||
read_string(db, "osd.label.text.font", &str))
|
||||
{
|
||||
|
@ -988,54 +981,6 @@ RrTheme* RrThemeNew(const RrInstance *inst, const gchar *name,
|
|||
theme->osd_hilite_label->texture[0].data.text.shadow_alpha =
|
||||
theme->osd_text_active_shadow_alpha;
|
||||
|
||||
if (read_string(db, "osd.inactive.label.text.font", &str))
|
||||
{
|
||||
char *p;
|
||||
gint i = 0;
|
||||
gint j;
|
||||
if (strstr(str, "shadow=y")) {
|
||||
if ((p = strstr(str, "shadowoffset=")))
|
||||
i = parse_inline_number(p + strlen("shadowoffset="));
|
||||
else
|
||||
i = 1;
|
||||
theme->osd_unhilite_label->texture[0].data.text.shadow_offset_x=i;
|
||||
theme->osd_unhilite_label->texture[0].data.text.shadow_offset_y=i;
|
||||
}
|
||||
if ((p = strstr(str, "shadowtint=")))
|
||||
{
|
||||
i = parse_inline_number(p + strlen("shadowtint="));
|
||||
j = (i > 0 ? 0 : 255);
|
||||
i = ABS(i*255/100);
|
||||
|
||||
theme->osd_text_inactive_shadow_color = RrColorNew(inst, j, j, j);
|
||||
theme->osd_text_inactive_shadow_alpha = i;
|
||||
} else {
|
||||
theme->osd_text_inactive_shadow_color = RrColorNew(inst, 0, 0, 0);
|
||||
theme->osd_text_inactive_shadow_alpha = 50;
|
||||
}
|
||||
} else {
|
||||
/* inherit the font settings from the focused label */
|
||||
theme->osd_unhilite_label->texture[0].data.text.shadow_offset_x =
|
||||
theme->a_unfocused_label->texture[0].data.text.shadow_offset_x;
|
||||
theme->osd_unhilite_label->texture[0].data.text.shadow_offset_y =
|
||||
theme->a_unfocused_label->texture[0].data.text.shadow_offset_y;
|
||||
if (theme->title_unfocused_shadow_color)
|
||||
theme->osd_text_inactive_shadow_color =
|
||||
RrColorNew(inst,
|
||||
theme->title_unfocused_shadow_color->r,
|
||||
theme->title_unfocused_shadow_color->g,
|
||||
theme->title_unfocused_shadow_color->b);
|
||||
else
|
||||
theme->osd_text_inactive_shadow_color = RrColorNew(inst, 0, 0, 0);
|
||||
theme->osd_text_inactive_shadow_alpha =
|
||||
theme->title_unfocused_shadow_alpha;
|
||||
}
|
||||
|
||||
theme->osd_unhilite_label->texture[0].data.text.shadow_color =
|
||||
theme->osd_text_inactive_shadow_color;
|
||||
theme->osd_unhilite_label->texture[0].data.text.shadow_alpha =
|
||||
theme->osd_text_inactive_shadow_alpha;
|
||||
|
||||
theme->a_unfocused_label->texture[0].type = RR_TEXTURE_TEXT;
|
||||
theme->a_unfocused_label->texture[0].data.text.justify = winjust;
|
||||
theme->a_unfocused_label->texture[0].data.text.font =
|
||||
|
@ -1074,6 +1019,61 @@ RrTheme* RrThemeNew(const RrInstance *inst, const gchar *name,
|
|||
theme->a_unfocused_label->texture[0].data.text.shadow_alpha =
|
||||
theme->title_unfocused_shadow_alpha;
|
||||
|
||||
theme->osd_unhilite_label->texture[0].type = RR_TEXTURE_TEXT;
|
||||
theme->osd_unhilite_label->texture[0].data.text.justify = RR_JUSTIFY_LEFT;
|
||||
theme->osd_unhilite_label->texture[0].data.text.font =
|
||||
theme->osd_font_unhilite;
|
||||
theme->osd_unhilite_label->texture[0].data.text.color =
|
||||
theme->osd_text_inactive_color;
|
||||
|
||||
if (read_string(db, "osd.inactive.label.text.font", &str))
|
||||
{
|
||||
char *p;
|
||||
gint i = 0;
|
||||
gint j;
|
||||
if (strstr(str, "shadow=y")) {
|
||||
if ((p = strstr(str, "shadowoffset=")))
|
||||
i = parse_inline_number(p + strlen("shadowoffset="));
|
||||
else
|
||||
i = 1;
|
||||
theme->osd_unhilite_label->texture[0].data.text.shadow_offset_x=i;
|
||||
theme->osd_unhilite_label->texture[0].data.text.shadow_offset_y=i;
|
||||
}
|
||||
if ((p = strstr(str, "shadowtint=")))
|
||||
{
|
||||
i = parse_inline_number(p + strlen("shadowtint="));
|
||||
j = (i > 0 ? 0 : 255);
|
||||
i = ABS(i*255/100);
|
||||
|
||||
theme->osd_text_inactive_shadow_color = RrColorNew(inst, j, j, j);
|
||||
theme->osd_text_inactive_shadow_alpha = i;
|
||||
} else {
|
||||
theme->osd_text_inactive_shadow_color = RrColorNew(inst, 0, 0, 0);
|
||||
theme->osd_text_inactive_shadow_alpha = 50;
|
||||
}
|
||||
} else {
|
||||
/* inherit the font settings from the unfocused label */
|
||||
theme->osd_unhilite_label->texture[0].data.text.shadow_offset_x =
|
||||
theme->a_unfocused_label->texture[0].data.text.shadow_offset_x;
|
||||
theme->osd_unhilite_label->texture[0].data.text.shadow_offset_y =
|
||||
theme->a_unfocused_label->texture[0].data.text.shadow_offset_y;
|
||||
if (theme->title_unfocused_shadow_color)
|
||||
theme->osd_text_inactive_shadow_color =
|
||||
RrColorNew(inst,
|
||||
theme->title_unfocused_shadow_color->r,
|
||||
theme->title_unfocused_shadow_color->g,
|
||||
theme->title_unfocused_shadow_color->b);
|
||||
else
|
||||
theme->osd_text_inactive_shadow_color = RrColorNew(inst, 0, 0, 0);
|
||||
theme->osd_text_inactive_shadow_alpha =
|
||||
theme->title_unfocused_shadow_alpha;
|
||||
}
|
||||
|
||||
theme->osd_unhilite_label->texture[0].data.text.shadow_color =
|
||||
theme->osd_text_inactive_shadow_color;
|
||||
theme->osd_unhilite_label->texture[0].data.text.shadow_alpha =
|
||||
theme->osd_text_inactive_shadow_alpha;
|
||||
|
||||
theme->a_menu_text_title->texture[0].type = RR_TEXTURE_TEXT;
|
||||
theme->a_menu_text_title->texture[0].data.text.justify = mtitlejust;
|
||||
theme->a_menu_text_title->texture[0].data.text.font =
|
||||
|
|
Loading…
Reference in a new issue