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/gtkstack.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/gtkstack.h')
-rw-r--r-- | gtk/gtkstack.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/gtk/gtkstack.h b/gtk/gtkstack.h index f910dd72a8..38824e177d 100644 --- a/gtk/gtkstack.h +++ b/gtk/gtkstack.h @@ -56,33 +56,48 @@ struct _GtkStackClass { GtkContainerClass parent_class; }; +GDK_AVAILABLE_IN_3_10 GType gtk_stack_get_type (void) G_GNUC_CONST; +GDK_AVAILABLE_IN_3_10 GtkWidget * gtk_stack_new (void); +GDK_AVAILABLE_IN_3_10 void gtk_stack_add_named (GtkStack *stack, GtkWidget *child, const gchar *name); +GDK_AVAILABLE_IN_3_10 void gtk_stack_add_titled (GtkStack *stack, GtkWidget *child, const gchar *name, const gchar *title); +GDK_AVAILABLE_IN_3_10 void gtk_stack_set_visible_child (GtkStack *stack, GtkWidget *child); +GDK_AVAILABLE_IN_3_10 GtkWidget * gtk_stack_get_visible_child (GtkStack *stack); +GDK_AVAILABLE_IN_3_10 void gtk_stack_set_visible_child_name (GtkStack *stack, const gchar *name); +GDK_AVAILABLE_IN_3_10 const gchar * gtk_stack_get_visible_child_name (GtkStack *stack); +GDK_AVAILABLE_IN_3_10 void gtk_stack_set_visible_child_full (GtkStack *stack, const gchar *name, GtkStackTransitionType transition); +GDK_AVAILABLE_IN_3_10 void gtk_stack_set_homogeneous (GtkStack *stack, gboolean homogeneous); +GDK_AVAILABLE_IN_3_10 gboolean gtk_stack_get_homogeneous (GtkStack *stack); +GDK_AVAILABLE_IN_3_10 void gtk_stack_set_transition_duration (GtkStack *stack, guint duration); +GDK_AVAILABLE_IN_3_10 guint gtk_stack_get_transition_duration (GtkStack *stack); +GDK_AVAILABLE_IN_3_10 void gtk_stack_set_transition_type (GtkStack *stack, GtkStackTransitionType transition); +GDK_AVAILABLE_IN_3_10 GtkStackTransitionType gtk_stack_get_transition_type (GtkStack *stack); G_END_DECLS |