[gtk+/gtk-style-context: 383/490] GtkStyleContext: Also use screen providers for widget style properties.
- From: Carlos Garnacho <carlosg src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gtk+/gtk-style-context: 383/490] GtkStyleContext: Also use screen providers for widget style properties.
- Date: Wed, 24 Nov 2010 14:11:53 +0000 (UTC)
commit 01ca7d518aab3b195a5228e12bcb98229a825595
Author: Carlos Garnacho <carlosg gnome org>
Date: Wed Nov 17 02:41:54 2010 +0100
GtkStyleContext: Also use screen providers for widget style properties.
gtk/gtkstylecontext.c | 22 +++++++++++++++++++---
1 files changed, 19 insertions(+), 3 deletions(-)
---
diff --git a/gtk/gtkstylecontext.c b/gtk/gtkstylecontext.c
index 2fcabd2..58faf5d 100644
--- a/gtk/gtkstylecontext.c
+++ b/gtk/gtkstylecontext.c
@@ -1982,8 +1982,8 @@ _gtk_style_context_peek_style_property (GtkStyleContext *context,
{
GtkStyleContextPrivate *priv;
PropertyValue *pcache, key = { 0 };
+ GList *global_list = NULL;
StyleData *data;
- GList *list;
guint i;
priv = context->priv;
@@ -2016,13 +2016,29 @@ _gtk_style_context_peek_style_property (GtkStyleContext *context,
g_param_spec_ref (pcache->pspec);
g_value_init (&pcache->value, G_PARAM_SPEC_VALUE_TYPE (pspec));
+ if (priv->screen)
+ {
+ global_list = g_object_get_qdata (G_OBJECT (priv->screen), provider_list_quark);
+ global_list = g_list_last (global_list);
+ }
+
if (priv->widget_path)
{
- for (list = priv->providers_last; list; list = list->prev)
+ GList *list, *global, *elem;
+
+ list = priv->providers_last;
+ global = global_list;
+
+ while ((elem = find_next_candidate (list, global)) != NULL)
{
GtkStyleProviderData *provider_data;
- provider_data = list->data;
+ provider_data = elem->data;
+
+ if (elem == list)
+ list = list->prev;
+ else
+ global = global->prev;
if (gtk_style_provider_get_style_property (provider_data->provider, priv->widget_path,
pspec->name, &pcache->value))
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]