summaryrefslogtreecommitdiff
path: root/gtk/gtkcssstylepropertyprivate.h
diff options
context:
space:
mode:
authorAlexander Larsson <alexl@redhat.com>2012-12-06 21:14:02 +0100
committerAlexander Larsson <alexl@redhat.com>2012-12-06 21:14:02 +0100
commit6dfee46cdb6c720d19489f39d802e1d46c598a51 (patch)
treed0e1c5788e05ef9918cde929a9e87735b4ded285 /gtk/gtkcssstylepropertyprivate.h
parente6de45964dc1937781f8428c8f9d7a1457f7fba0 (diff)
downloadgtk+-6dfee46cdb6c720d19489f39d802e1d46c598a51.tar.gz
css: Add _gtk_css_style_property_affects_font
This checks if a style_update affects the font.
Diffstat (limited to 'gtk/gtkcssstylepropertyprivate.h')
-rw-r--r--gtk/gtkcssstylepropertyprivate.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/gtk/gtkcssstylepropertyprivate.h b/gtk/gtkcssstylepropertyprivate.h
index 00d8437a8b..342cdb712c 100644
--- a/gtk/gtkcssstylepropertyprivate.h
+++ b/gtk/gtkcssstylepropertyprivate.h
@@ -50,6 +50,7 @@ struct _GtkCssStyleProperty
guint inherit :1;
guint animated :1;
guint affects_size :1;
+ guint affects_font :1;
GtkCssStylePropertyParseFunc parse_value;
GtkCssStylePropertyQueryFunc query_value;
@@ -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);
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);
GtkCssValue * _gtk_css_style_property_get_initial_value
(GtkCssStyleProperty *property);