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/gtkradiotoolbutton.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/gtkradiotoolbutton.h')
-rw-r--r-- | gtk/gtkradiotoolbutton.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/gtk/gtkradiotoolbutton.h b/gtk/gtkradiotoolbutton.h index 95593fce56..c6e9ce7b84 100644 --- a/gtk/gtkradiotoolbutton.h +++ b/gtk/gtkradiotoolbutton.h @@ -55,15 +55,22 @@ struct _GtkRadioToolButtonClass void (* _gtk_reserved4) (void); }; +GDK_AVAILABLE_IN_ALL GType gtk_radio_tool_button_get_type (void) G_GNUC_CONST; +GDK_AVAILABLE_IN_ALL GtkToolItem *gtk_radio_tool_button_new (GSList *group); +GDK_AVAILABLE_IN_ALL GtkToolItem *gtk_radio_tool_button_new_from_stock (GSList *group, const gchar *stock_id); +GDK_AVAILABLE_IN_ALL GtkToolItem *gtk_radio_tool_button_new_from_widget (GtkRadioToolButton *group); +GDK_AVAILABLE_IN_ALL GtkToolItem *gtk_radio_tool_button_new_with_stock_from_widget (GtkRadioToolButton *group, const gchar *stock_id); +GDK_AVAILABLE_IN_ALL GSList * gtk_radio_tool_button_get_group (GtkRadioToolButton *button); +GDK_AVAILABLE_IN_ALL void gtk_radio_tool_button_set_group (GtkRadioToolButton *button, GSList *group); |