diff options
author | Benjamin Otte <otte@redhat.com> | 2015-01-27 04:32:09 +0100 |
---|---|---|
committer | Benjamin Otte <otte@redhat.com> | 2015-01-27 05:04:34 +0100 |
commit | c0650057c11b87cf7c2c063b160c54080318f7f7 (patch) | |
tree | 3ecc4f8612c66d92b4e0cfbcddea7ec503e80249 /gtk/gtkcssstylepropertyprivate.h | |
parent | 11d70f1ac30dd491d9d8dac9b9e2c31cee073cc9 (diff) | |
download | gtk+-c0650057c11b87cf7c2c063b160c54080318f7f7.tar.gz |
css: Add GtkCssStyleProperty::affects property
Diffstat (limited to 'gtk/gtkcssstylepropertyprivate.h')
-rw-r--r-- | gtk/gtkcssstylepropertyprivate.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gtk/gtkcssstylepropertyprivate.h b/gtk/gtkcssstylepropertyprivate.h index fb851899eb..bd72bc9676 100644 --- a/gtk/gtkcssstylepropertyprivate.h +++ b/gtk/gtkcssstylepropertyprivate.h @@ -47,6 +47,7 @@ struct _GtkCssStyleProperty GtkCssValue *initial_value; guint id; + GtkCssAffects affects; guint inherit :1; guint animated :1; guint affects_size :1; @@ -73,6 +74,7 @@ GtkCssStyleProperty * _gtk_css_style_property_lookup_by_id (guint gboolean _gtk_css_style_property_is_inherit (GtkCssStyleProperty *property); gboolean _gtk_css_style_property_is_animated (GtkCssStyleProperty *property); +GtkCssAffects _gtk_css_style_property_get_affects (GtkCssStyleProperty *property); gboolean _gtk_css_style_property_affects_size (GtkCssStyleProperty *property); gboolean _gtk_css_style_property_affects_font (GtkCssStyleProperty *property); guint _gtk_css_style_property_get_id (GtkCssStyleProperty *property); |