[ Version ( since = "3.0" ) ]
public void join_group (RadioButton? group_source)
Joins a RadioButton object to the group of another RadioButton object
Use this in language bindings instead of the get_group and set_group methods
A common way to set up a group of radio buttons is the following:
GtkRadioButton *radio_button;
GtkRadioButton *last_button;
while (some_condition)
{
radio_button = gtk_radio_button_new (NULL);
gtk_radio_button_join_group (radio_button, last_button);
last_button = radio_button;
}
this |
the RadioButton object |
group_source |
a radio button object whos group we are joining, or null to remove the radio button from its group |