diff options
author | Cosimo Cecchi <cosimoc@gnome.org> | 2013-08-04 11:38:56 +0200 |
---|---|---|
committer | Cosimo Cecchi <cosimoc@gnome.org> | 2013-08-20 02:50:40 +0200 |
commit | 736b350d7a42d01520a8e73c403763765d7fc867 (patch) | |
tree | a4bf3506da9683517653439becf1a6fd5f4586ee /gtk/gtkcssenumvalueprivate.h | |
parent | 723a589bddc635816556f1e2fddc5700f4cb9288 (diff) | |
download | gtk+-736b350d7a42d01520a8e73c403763765d7fc867.tar.gz |
css: Add a GtkCssValue for GtkCssImageEffect
This will allow us to use the CSS machinery to apply a highlight or dim
effect when images are prelit or insensitive.
https://bugzilla.gnome.org/show_bug.cgi?id=705443
Diffstat (limited to 'gtk/gtkcssenumvalueprivate.h')
-rw-r--r-- | gtk/gtkcssenumvalueprivate.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gtk/gtkcssenumvalueprivate.h b/gtk/gtkcssenumvalueprivate.h index b981008d53..c21df476b7 100644 --- a/gtk/gtkcssenumvalueprivate.h +++ b/gtk/gtkcssenumvalueprivate.h @@ -64,6 +64,10 @@ GtkCssValue * _gtk_css_fill_mode_value_new (GtkCssFillMode fill_m GtkCssValue * _gtk_css_fill_mode_value_try_parse (GtkCssParser *parser); GtkCssFillMode _gtk_css_fill_mode_value_get (const GtkCssValue *value); +GtkCssValue * _gtk_css_image_effect_value_new (GtkCssImageEffect image_effect); +GtkCssValue * _gtk_css_image_effect_value_try_parse (GtkCssParser *parser); +GtkCssImageEffect _gtk_css_image_effect_value_get (const GtkCssValue *value); + G_END_DECLS #endif /* __GTK_CSS_ENUM_VALUE_PRIVATE_H__ */ |