diff options
author | Benjamin Otte <otte@redhat.com> | 2012-07-16 14:48:43 +0200 |
---|---|---|
committer | Benjamin Otte <otte@redhat.com> | 2012-08-28 15:42:23 +0200 |
commit | 0e2f35ed882ab11d010866d32f2f65232145b8d0 (patch) | |
tree | f8e1af229adca8cdcce0b08808c3f6571615dd22 /gtk/gtkcssvalueprivate.h | |
parent | 9e7e65ca6e01246cf9eea156f0153014b58e4d36 (diff) | |
download | gtk+-0e2f35ed882ab11d010866d32f2f65232145b8d0.tar.gz |
css: Introduce dependencies for value computations
When values are computed, they might depend on various other values and
we need to track this so we can update the values when those other
values change. This is the first step in making that happen.
This patch does not do any dependency tracking at all, instead it uses
GTK_CSS_DEPENDS_ON_EVERYTHING as a sort of FIXME.
Diffstat (limited to 'gtk/gtkcssvalueprivate.h')
-rw-r--r-- | gtk/gtkcssvalueprivate.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gtk/gtkcssvalueprivate.h b/gtk/gtkcssvalueprivate.h index 74550f794e..629cc754b2 100644 --- a/gtk/gtkcssvalueprivate.h +++ b/gtk/gtkcssvalueprivate.h @@ -44,7 +44,8 @@ struct _GtkCssValueClass { GtkCssValue * (* compute) (GtkCssValue *value, guint property_id, - GtkStyleContext *context); + GtkStyleContext *context, + GtkCssDependencies *dependencies); gboolean (* equal) (const GtkCssValue *value1, const GtkCssValue *value2); GtkCssValue * (* transition) (GtkCssValue *start, @@ -65,7 +66,8 @@ void _gtk_css_value_unref (GtkCssValue GtkCssValue *_gtk_css_value_compute (GtkCssValue *value, guint property_id, - GtkStyleContext *context); + GtkStyleContext *context, + GtkCssDependencies *dependencies); gboolean _gtk_css_value_equal (const GtkCssValue *value1, const GtkCssValue *value2); gboolean _gtk_css_value_equal0 (const GtkCssValue *value1, |