Extracted from Pike v8.0 release 240 as of 2016-05-31.
   

Class GTK2.RadioButton

Inheritance graph
GTK2.Activatable GTK2.G.Object GTK2.G.InitiallyUnowned GTK2.Object GTK2.Widget GTK2.Container GTK2.Bin GTK2.Button GTK2.ToggleButton GTK2.CheckButton GTK2.RadioButton
Description

Radio buttons are similar to check buttons except they are grouped so that only one may be selected/depressed at a time. This is good for places in your application where you need to select from a short list of options. To connect the buttons, use another button in the desired group as the second argument to GTK2.RadioButton().

 GTK2.RadioButton("Button");

Properties: GTK2.RadioButton group

Signals: group_changed


Inherit CheckButton

inherit GTK2.CheckButton : CheckButton


Method create

GTK2.RadioButton GTK2.RadioButton(string|mapping title, GTK2.RadioButton groupmember, int|void mnemonic)

Description

Normal creation: object GTK2.RadioButton(string title) - First button (with label) object GTK2.RadioButton()->add(widget) - First button (with widget) object GTK2.RadioButton(title, another_radio_button) - Second to n:th button (with title) object GTK2.RadioButton(0,another_radio_button)->add(widget) - Second to n:th button (with widget)