Radio Buttons
A radio button allows the user to select one of a group of options. A radio button should be used when 2 or more options are needed.
A radio button is created by :
DDgui_radio(id$, text$ [, width%])
with id$ being a unique identifier, and text$ is the text to be displayed. The text contains all the options to be displayed, with each separated by “|”
width% is optional. If this is given, the the widget will be created with the horizontal size defined by width%.
If this values isn't given, the the widget with take the horizontal size of the largest text length
By default the first line will be checked. This can be changed using DDgui_set
Which radio button is selected can be detected using DDgui_get
A group of radio buttons look like :