diff options
author | Matthias Clasen <mclasen@redhat.com> | 2013-03-20 18:17:32 -0400 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2013-05-05 15:38:47 -0400 |
commit | 20c8c8b91cf2719249a729492ec84b7282dc03fb (patch) | |
tree | d53cf50689bceedbea093895d0e51a7c204cef76 /gtk/gtkstyleproperties.h | |
parent | 8470eb84c080718120b5daf130db744bf6ec220b (diff) | |
download | gtk+-20c8c8b91cf2719249a729492ec84b7282dc03fb.tar.gz |
Add annotations to gtk headers
Add annotations to all exported functions in GTK+ headers.
Diffstat (limited to 'gtk/gtkstyleproperties.h')
-rw-r--r-- | gtk/gtkstyleproperties.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/gtk/gtkstyleproperties.h b/gtk/gtkstyleproperties.h index fd81699678..14746edf51 100644 --- a/gtk/gtkstyleproperties.h +++ b/gtk/gtkstyleproperties.h @@ -63,6 +63,7 @@ typedef gboolean (* GtkStylePropertyParser) (const gchar *string, GValue *value, GError **error); +GDK_AVAILABLE_IN_ALL GType gtk_style_properties_get_type (void) G_GNUC_CONST; /* Next 2 are implemented in gtkcsscustomproperty.c */ @@ -74,6 +75,7 @@ gboolean gtk_style_properties_lookup_property (const gchar *proper GtkStylePropertyParser *parse_func, GParamSpec **pspec); +GDK_AVAILABLE_IN_ALL GtkStyleProperties * gtk_style_properties_new (void); GDK_DEPRECATED_IN_3_8 @@ -84,34 +86,43 @@ GDK_DEPRECATED_IN_3_8 GtkSymbolicColor * gtk_style_properties_lookup_color (GtkStyleProperties *props, const gchar *name); +GDK_AVAILABLE_IN_ALL void gtk_style_properties_set_property (GtkStyleProperties *props, const gchar *property, GtkStateFlags state, const GValue *value); +GDK_AVAILABLE_IN_ALL void gtk_style_properties_set_valist (GtkStyleProperties *props, GtkStateFlags state, va_list args); +GDK_AVAILABLE_IN_ALL void gtk_style_properties_set (GtkStyleProperties *props, GtkStateFlags state, ...) G_GNUC_NULL_TERMINATED; +GDK_AVAILABLE_IN_ALL gboolean gtk_style_properties_get_property (GtkStyleProperties *props, const gchar *property, GtkStateFlags state, GValue *value); +GDK_AVAILABLE_IN_ALL void gtk_style_properties_get_valist (GtkStyleProperties *props, GtkStateFlags state, va_list args); +GDK_AVAILABLE_IN_ALL void gtk_style_properties_get (GtkStyleProperties *props, GtkStateFlags state, ...) G_GNUC_NULL_TERMINATED; +GDK_AVAILABLE_IN_ALL void gtk_style_properties_unset_property (GtkStyleProperties *props, const gchar *property, GtkStateFlags state); +GDK_AVAILABLE_IN_ALL void gtk_style_properties_clear (GtkStyleProperties *props); +GDK_AVAILABLE_IN_ALL void gtk_style_properties_merge (GtkStyleProperties *props, const GtkStyleProperties *props_to_merge, gboolean replace); |