aboutsummaryrefslogtreecommitdiff
path: root/src/headerview.c
diff options
context:
space:
mode:
authorhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2006-10-10 05:03:10 +0000
committerhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2006-10-10 05:03:10 +0000
commit5be8bc64abeef5279a06b492f0e9a8cdd141e188 (patch)
tree19b10916bc8ccb5662209959baa741cb9a08b531 /src/headerview.c
parent3e185903fd0f6992eed7900fc52e48fa6ae078ee (diff)
modified the style of labels which are set not to have focus to make the selection visible.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@1222 ee746299-78ed-0310-b773-934348b2243d
Diffstat (limited to 'src/headerview.c')
-rw-r--r--src/headerview.c19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/headerview.c b/src/headerview.c
index deb17861..a47adbb1 100644
--- a/src/headerview.c
+++ b/src/headerview.c
@@ -144,6 +144,9 @@ HeaderView *headerview_create(void)
void headerview_init(HeaderView *headerview)
{
static PangoFontDescription *boldfont = NULL;
+#ifdef G_OS_WIN32
+ GtkStyle *style;
+#endif
if (!boldfont) {
boldfont = pango_font_description_new();
@@ -157,6 +160,22 @@ void headerview_init(HeaderView *headerview)
gtk_widget_modify_font(headerview->subject_header_label, boldfont);
}
+#ifdef G_OS_WIN32
+#define SET_LABEL_STYLE(label) \
+ style = gtk_widget_get_style(label); \
+ gtk_widget_modify_base(label, GTK_STATE_ACTIVE, \
+ &style->base[GTK_STATE_SELECTED]); \
+ gtk_widget_modify_text(label, GTK_STATE_ACTIVE, \
+ &style->text[GTK_STATE_SELECTED]);
+
+ SET_LABEL_STYLE(headerview->from_body_label);
+ SET_LABEL_STYLE(headerview->to_body_label);
+ SET_LABEL_STYLE(headerview->ng_body_label);
+ SET_LABEL_STYLE(headerview->subject_body_label);
+
+#undef SET_LABEL_STYLE
+#endif
+
headerview_clear(headerview);
headerview_set_visibility(headerview, prefs_common.display_header_pane);