diff options
author | Benjamin Otte <otte@redhat.com> | 2011-05-19 14:00:14 +0200 |
---|---|---|
committer | Benjamin Otte <otte@redhat.com> | 2011-05-21 22:49:43 +0200 |
commit | 777a6846dba9eca73d06d294a3ff1ad19e22fcf4 (patch) | |
tree | 3fe4c1be1a8db710355e040da2603adec77d4afa /gtk/gtkstylepropertiesprivate.h | |
parent | 0f211f78a59fcb91dfa85f45b1dea3714b06247b (diff) | |
download | gtk+-777a6846dba9eca73d06d294a3ff1ad19e22fcf4.tar.gz |
styleproperties: Put gtk_style_property_lookup() in private header
Diffstat (limited to 'gtk/gtkstylepropertiesprivate.h')
-rw-r--r-- | gtk/gtkstylepropertiesprivate.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/gtk/gtkstylepropertiesprivate.h b/gtk/gtkstylepropertiesprivate.h index f4cea2d44b..3b90e6c85d 100644 --- a/gtk/gtkstylepropertiesprivate.h +++ b/gtk/gtkstylepropertiesprivate.h @@ -24,6 +24,16 @@ G_BEGIN_DECLS +typedef struct _GtkStyleProperty GtkStyleProperty; + +struct _GtkStyleProperty +{ + GParamSpec *pspec; + GtkStylePropertyParser parse_func; +}; + +const GtkStyleProperty * _gtk_style_property_lookup (const char *name); + const GValue * _gtk_style_properties_peek_property (GtkStyleProperties *props, const gchar *prop_name, GtkStateFlags state); |