Joins a #GtkRadioButton object to the group of another #GtkRadioButton object
Use this in language bindings instead of the gtk_radio_button_get_group() and gtk_radio_button_set_group() methods
A common way to set up a group of radio buttons is the following: |[<!-- language="C" --> GtkRadioButton *radio_button; GtkRadioButton *last_button;
while ( ...more buttons to add... ) { radio_button = gtk_radio_button_new (...);
gtk_radio_button_join_group (radio_button, last_button); last_button = radio_button; } ]|
a radio button object whos group we are joining, or %NULL to remove the radio button from its group
3.0
See Implementation
Joins a #GtkRadioButton object to the group of another #GtkRadioButton object
Use this in language bindings instead of the gtk_radio_button_get_group() and gtk_radio_button_set_group() methods
A common way to set up a group of radio buttons is the following: |[<!-- language="C" --> GtkRadioButton *radio_button; GtkRadioButton *last_button;
while ( ...more buttons to add... ) { radio_button = gtk_radio_button_new (...);
gtk_radio_button_join_group (radio_button, last_button); last_button = radio_button; } ]|