From 777a6846dba9eca73d06d294a3ff1ad19e22fcf4 Mon Sep 17 00:00:00 2001 From: Benjamin Otte Date: Thu, 19 May 2011 14:00:14 +0200 Subject: [PATCH] styleproperties: Put gtk_style_property_lookup() in private header --- gtk/gtkstyleproperties.c | 27 ++++++++++----------------- gtk/gtkstylepropertiesprivate.h | 10 ++++++++++ 2 files changed, 20 insertions(+), 17 deletions(-) diff --git a/gtk/gtkstyleproperties.c b/gtk/gtkstyleproperties.c index e32c6900dd..fc65f9e04c 100644 --- a/gtk/gtkstyleproperties.c +++ b/gtk/gtkstyleproperties.c @@ -19,7 +19,7 @@ #include "config.h" -#include "gtkstyleproperties.h" +#include "gtkstylepropertiesprivate.h" #include #include @@ -58,15 +58,8 @@ typedef struct GtkStylePropertiesPrivate GtkStylePropertiesPrivate; typedef struct PropertyData PropertyData; -typedef struct _GtkStyleProperty GtkStyleProperty; typedef struct ValueData ValueData; -struct _GtkStyleProperty -{ - GParamSpec *pspec; - GtkStylePropertyParser parse_func; -}; - struct ValueData { GtkStateFlags state; @@ -403,7 +396,7 @@ gtk_style_property_init (void) } const GtkStyleProperty * -gtk_style_property_lookup (const char *name) +_gtk_style_property_lookup (const char *name) { gtk_style_property_init (); @@ -435,7 +428,7 @@ gtk_style_properties_register_property (GtkStylePropertyParser parse_func, gtk_style_property_init (); - existing = gtk_style_property_lookup (pspec->name); + existing = _gtk_style_property_lookup (pspec->name); if (existing != NULL) { g_warning ("Property \"%s\" was already registered with type %s", @@ -474,7 +467,7 @@ gtk_style_properties_lookup_property (const gchar *property_name, g_return_val_if_fail (property_name != NULL, FALSE); - node = gtk_style_property_lookup (property_name); + node = _gtk_style_property_lookup (property_name); if (node) { @@ -694,7 +687,7 @@ gtk_style_properties_set_property (GtkStyleProperties *props, g_return_if_fail (property != NULL); g_return_if_fail (value != NULL); - node = gtk_style_property_lookup (property); + node = _gtk_style_property_lookup (property); if (!node) { @@ -738,7 +731,7 @@ gtk_style_properties_set_valist (GtkStyleProperties *props, gchar *error = NULL; GValue *val; - node = gtk_style_property_lookup (property_name); + node = _gtk_style_property_lookup (property_name); if (!node) { @@ -947,7 +940,7 @@ _gtk_style_properties_peek_property (GtkStyleProperties *props, g_return_val_if_fail (GTK_IS_STYLE_PROPERTIES (props), NULL); g_return_val_if_fail (prop_name != NULL, NULL); - node = gtk_style_property_lookup (prop_name); + node = _gtk_style_property_lookup (prop_name); if (!node) { @@ -999,7 +992,7 @@ gtk_style_properties_get_property (GtkStyleProperties *props, g_return_val_if_fail (property != NULL, FALSE); g_return_val_if_fail (value != NULL, FALSE); - node = gtk_style_property_lookup (property); + node = _gtk_style_property_lookup (property); if (!node) { @@ -1061,7 +1054,7 @@ gtk_style_properties_get_valist (GtkStyleProperties *props, gchar *error = NULL; GValue *val = NULL; - node = gtk_style_property_lookup (property_name); + node = _gtk_style_property_lookup (property_name); if (!node) { @@ -1152,7 +1145,7 @@ gtk_style_properties_unset_property (GtkStyleProperties *props, g_return_if_fail (GTK_IS_STYLE_PROPERTIES (props)); g_return_if_fail (property != NULL); - node = gtk_style_property_lookup (property); + node = _gtk_style_property_lookup (property); if (!node) { 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);