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/gtksettings.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/gtksettings.h')
-rw-r--r-- | gtk/gtksettings.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/gtk/gtksettings.h b/gtk/gtksettings.h index 9e6434a12e..b6a13dc372 100644 --- a/gtk/gtksettings.h +++ b/gtk/gtksettings.h @@ -78,44 +78,58 @@ struct _GtkSettingsValue /* --- functions --- */ +GDK_AVAILABLE_IN_ALL GType gtk_settings_get_type (void) G_GNUC_CONST; #ifndef GDK_MULTIHEAD_SAFE +GDK_AVAILABLE_IN_ALL GtkSettings* gtk_settings_get_default (void); #endif +GDK_AVAILABLE_IN_ALL GtkSettings* gtk_settings_get_for_screen (GdkScreen *screen); +GDK_AVAILABLE_IN_ALL void gtk_settings_install_property (GParamSpec *pspec); +GDK_AVAILABLE_IN_ALL void gtk_settings_install_property_parser (GParamSpec *pspec, GtkRcPropertyParser parser); /* --- precoded parsing functions --- */ +GDK_AVAILABLE_IN_ALL gboolean gtk_rc_property_parse_color (const GParamSpec *pspec, const GString *gstring, GValue *property_value); +GDK_AVAILABLE_IN_ALL gboolean gtk_rc_property_parse_enum (const GParamSpec *pspec, const GString *gstring, GValue *property_value); +GDK_AVAILABLE_IN_ALL gboolean gtk_rc_property_parse_flags (const GParamSpec *pspec, const GString *gstring, GValue *property_value); +GDK_AVAILABLE_IN_ALL gboolean gtk_rc_property_parse_requisition (const GParamSpec *pspec, const GString *gstring, GValue *property_value); +GDK_AVAILABLE_IN_ALL gboolean gtk_rc_property_parse_border (const GParamSpec *pspec, const GString *gstring, GValue *property_value); +GDK_AVAILABLE_IN_ALL void gtk_settings_set_property_value (GtkSettings *settings, const gchar *name, const GtkSettingsValue *svalue); +GDK_AVAILABLE_IN_ALL void gtk_settings_set_string_property (GtkSettings *settings, const gchar *name, const gchar *v_string, const gchar *origin); +GDK_AVAILABLE_IN_ALL void gtk_settings_set_long_property (GtkSettings *settings, const gchar *name, glong v_long, const gchar *origin); +GDK_AVAILABLE_IN_ALL void gtk_settings_set_double_property (GtkSettings *settings, const gchar *name, gdouble v_double, |