summaryrefslogtreecommitdiff
path: root/gtk/gtkcssvalueprivate.h
diff options
context:
space:
mode:
authorAlexander Larsson <alexl@redhat.com>2013-06-27 18:26:05 +0200
committerAlexander Larsson <alexl@redhat.com>2013-07-03 14:39:25 +0200
commitaf2c40bd54149237cd4ab998b5515167018fdc47 (patch)
tree09b605f0a8192ea4215863cdca2082eaf263d3a8 /gtk/gtkcssvalueprivate.h
parent38e1748df89ef0a92b050f77529cd42cea9b3caa (diff)
downloadgtk+-af2c40bd54149237cd4ab998b5515167018fdc47.tar.gz
css: Add a scale argument to css-value compute vfunc
We need to be able to compute different GtkCssImage values depending on the scale, and we need this at compute time so that we don't need to read any images other than the scale in used (to e.g. calculate the image size). GtkStyleProviderPrivate is shared for all style contexts, so its not right.
Diffstat (limited to 'gtk/gtkcssvalueprivate.h')
-rw-r--r--gtk/gtkcssvalueprivate.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/gtk/gtkcssvalueprivate.h b/gtk/gtkcssvalueprivate.h
index 1d2424e5f7..9871ab3c42 100644
--- a/gtk/gtkcssvalueprivate.h
+++ b/gtk/gtkcssvalueprivate.h
@@ -43,6 +43,7 @@ struct _GtkCssValueClass {
GtkCssValue * (* compute) (GtkCssValue *value,
guint property_id,
GtkStyleProviderPrivate *provider,
+ int scale,
GtkCssComputedValues *values,
GtkCssComputedValues *parent_values,
GtkCssDependencies *dependencies);
@@ -68,6 +69,7 @@ void _gtk_css_value_unref (GtkCssValue
GtkCssValue *_gtk_css_value_compute (GtkCssValue *value,
guint property_id,
GtkStyleProviderPrivate *provider,
+ int scale,
GtkCssComputedValues *values,
GtkCssComputedValues *parent_values,
GtkCssDependencies *dependencies);