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/gtkbox.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/gtkbox.h')
-rw-r--r-- | gtk/gtkbox.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/gtk/gtkbox.h b/gtk/gtkbox.h index e93c97f86f..9a79fbcd47 100644 --- a/gtk/gtkbox.h +++ b/gtk/gtkbox.h @@ -68,26 +68,34 @@ struct _GtkBoxClass }; +GDK_AVAILABLE_IN_ALL GType gtk_box_get_type (void) G_GNUC_CONST; +GDK_AVAILABLE_IN_ALL GtkWidget* gtk_box_new (GtkOrientation orientation, gint spacing); +GDK_AVAILABLE_IN_ALL void gtk_box_pack_start (GtkBox *box, GtkWidget *child, gboolean expand, gboolean fill, guint padding); +GDK_AVAILABLE_IN_ALL void gtk_box_pack_end (GtkBox *box, GtkWidget *child, gboolean expand, gboolean fill, guint padding); +GDK_AVAILABLE_IN_ALL void gtk_box_set_homogeneous (GtkBox *box, gboolean homogeneous); +GDK_AVAILABLE_IN_ALL gboolean gtk_box_get_homogeneous (GtkBox *box); +GDK_AVAILABLE_IN_ALL void gtk_box_set_spacing (GtkBox *box, gint spacing); +GDK_AVAILABLE_IN_ALL gint gtk_box_get_spacing (GtkBox *box); GDK_AVAILABLE_IN_3_10 void gtk_box_set_baseline_position (GtkBox *box, @@ -95,16 +103,19 @@ void gtk_box_set_baseline_position (GtkBox *box, GDK_AVAILABLE_IN_3_10 GtkBaselinePosition gtk_box_get_baseline_position (GtkBox *box); +GDK_AVAILABLE_IN_ALL void gtk_box_reorder_child (GtkBox *box, GtkWidget *child, gint position); +GDK_AVAILABLE_IN_ALL void gtk_box_query_child_packing (GtkBox *box, GtkWidget *child, gboolean *expand, gboolean *fill, guint *padding, GtkPackType *pack_type); +GDK_AVAILABLE_IN_ALL void gtk_box_set_child_packing (GtkBox *box, GtkWidget *child, gboolean expand, |