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/gtkappchooserwidget.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/gtkappchooserwidget.h')
-rw-r--r-- | gtk/gtkappchooserwidget.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/gtk/gtkappchooserwidget.h b/gtk/gtkappchooserwidget.h index 9434207de0..27067128e4 100644 --- a/gtk/gtkappchooserwidget.h +++ b/gtk/gtkappchooserwidget.h @@ -70,32 +70,46 @@ struct _GtkAppChooserWidgetClass { gpointer padding[16]; }; +GDK_AVAILABLE_IN_ALL GType gtk_app_chooser_widget_get_type (void) G_GNUC_CONST; +GDK_AVAILABLE_IN_ALL GtkWidget * gtk_app_chooser_widget_new (const gchar *content_type); +GDK_AVAILABLE_IN_ALL void gtk_app_chooser_widget_set_show_default (GtkAppChooserWidget *self, gboolean setting); +GDK_AVAILABLE_IN_ALL gboolean gtk_app_chooser_widget_get_show_default (GtkAppChooserWidget *self); +GDK_AVAILABLE_IN_ALL void gtk_app_chooser_widget_set_show_recommended (GtkAppChooserWidget *self, gboolean setting); +GDK_AVAILABLE_IN_ALL gboolean gtk_app_chooser_widget_get_show_recommended (GtkAppChooserWidget *self); +GDK_AVAILABLE_IN_ALL void gtk_app_chooser_widget_set_show_fallback (GtkAppChooserWidget *self, gboolean setting); +GDK_AVAILABLE_IN_ALL gboolean gtk_app_chooser_widget_get_show_fallback (GtkAppChooserWidget *self); +GDK_AVAILABLE_IN_ALL void gtk_app_chooser_widget_set_show_other (GtkAppChooserWidget *self, gboolean setting); +GDK_AVAILABLE_IN_ALL gboolean gtk_app_chooser_widget_get_show_other (GtkAppChooserWidget *self); +GDK_AVAILABLE_IN_ALL void gtk_app_chooser_widget_set_show_all (GtkAppChooserWidget *self, gboolean setting); +GDK_AVAILABLE_IN_ALL gboolean gtk_app_chooser_widget_get_show_all (GtkAppChooserWidget *self); +GDK_AVAILABLE_IN_ALL void gtk_app_chooser_widget_set_default_text (GtkAppChooserWidget *self, const gchar *text); +GDK_AVAILABLE_IN_ALL const gchar * gtk_app_chooser_widget_get_default_text (GtkAppChooserWidget *self); G_END_DECLS |