Joins a gtk.RadioButton object to the group of another gtk.RadioButton object
Use this in language bindings instead of the RadioButton.getGroup and RadioButton.setGroup 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; }
a radio button object whos group we are joining, or NULL to remove the radio button from its group
3.0
Joins a gtk.RadioButton object to the group of another gtk.RadioButton object
Use this in language bindings instead of the RadioButton.getGroup and RadioButton.setGroup 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; }