[murrine] Many fixes for textstyle = 1. Should work much better with many widgets
- From: Andrea Cimitan <acimitan src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [murrine] Many fixes for textstyle = 1. Should work much better with many widgets
- Date: Thu, 18 Mar 2010 17:51:50 +0000 (UTC)
commit b0dca36afe4484cbba053756a2a461a0621c13be
Author: Andrea Cimitan <andrea cimitan gmail com>
Date: Thu Mar 18 18:48:58 2010 +0100
Many fixes for textstyle = 1. Should work much better with many widgets
src/murrine_style.c | 21 +++++++++++++++------
src/support.h | 1 +
2 files changed, 16 insertions(+), 6 deletions(-)
---
diff --git a/src/murrine_style.c b/src/murrine_style.c
index 7b5259a..0738b6f 100644
--- a/src/murrine_style.c
+++ b/src/murrine_style.c
@@ -1922,12 +1922,12 @@ murrine_style_draw_layout (GtkStyle *style,
GdkColor etched;
MurrineRGB temp;
- if (GTK_WIDGET_NO_WINDOW (widget))
+ if (!gtk_widget_get_has_window (widget))
murrine_shade (¶ms.parentbg, 1.12, &temp);
else if (DETAIL ("cellrenderertext"))
- murrine_shade (&colors->base[widget->state], 1.12, &temp);
+ murrine_shade (&colors->base[state_type], 1.12, &temp);
else
- murrine_shade (&colors->bg[widget->state], 1.12, &temp);
+ murrine_shade (&colors->bg[state_type], 1.12, &temp);
etched.red = (int) (temp.r*65535);
etched.green = (int) (temp.g*65535);
@@ -1941,7 +1941,7 @@ murrine_style_draw_layout (GtkStyle *style,
MurrineStyle *murrine_style = MURRINE_STYLE (style);
MurrineColors *colors = &murrine_style->colors;
- if (murrine_style->textstyle != 0 && widget->state == GTK_STATE_NORMAL)
+ if (murrine_style->textstyle != 0 && state_type != GTK_STATE_PRELIGHT)
{
WidgetParameters params;
@@ -1950,10 +1950,19 @@ murrine_style_draw_layout (GtkStyle *style,
GdkColor etched;
MurrineRGB temp;
- if (GTK_WIDGET_NO_WINDOW (widget))
+ if (!gtk_widget_get_has_window (widget) && (widget->parent &&
+ (!MRN_IS_BUTTON(widget->parent) &&
+ !MRN_IS_COMBO_BOX(widget->parent) &&
+ !MRN_IS_COMBO_BOX_ENTRY(widget->parent) &&
+ !MRN_IS_COMBO(widget->parent) &&
+ !MRN_IS_OPTION_MENU(widget->parent)) ||
+ MRN_IS_CHECK_BUTTON(widget->parent) ||
+ MRN_IS_RADIO_BUTTON(widget->parent)))
murrine_shade (¶ms.parentbg, 1.06, &temp);
+ else if (DETAIL ("cellrenderertext"))
+ murrine_shade (&colors->base[state_type], 1.06, &temp);
else
- murrine_shade (&colors->bg[widget->state], 1.06, &temp);
+ murrine_shade (&colors->bg[state_type], 1.06, &temp);
etched.red = (int) (temp.r*65535);
etched.green = (int) (temp.g*65535);
diff --git a/src/support.h b/src/support.h
index 78a24d7..650b062 100644
--- a/src/support.h
+++ b/src/support.h
@@ -71,6 +71,7 @@
#define MRN_IS_TOGGLE_BUTTON(object) ((object) && murrine_object_is_a ((GObject*)(object), "GtkToggleButton"))
#define MRN_IS_CHECK_BUTTON(object) ((object) && murrine_object_is_a ((GObject*)(object), "GtkCheckButton"))
+#define MRN_IS_RADIO_BUTTON(object) ((object) && murrine_object_is_a ((GObject*)(object), "GtkRadioButton"))
#define MRN_IS_SPIN_BUTTON(object) ((object) && murrine_object_is_a ((GObject*)(object), "GtkSpinButton"))
#define MRN_IS_STATUSBAR(object) ((object) && murrine_object_is_a ((GObject*)(object), "GtkStatusbar"))
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]