mirror of
https://github.com/gnustep/libs-gsweb.git
synced 2025-02-23 11:41:20 +00:00
18 lines
333 B
Text
18 lines
333 B
Text
|
#include "Base"
|
||
|
|
||
|
ARadioButtonList: GSWRadioButtonList
|
||
|
{
|
||
|
list = application.bundleInfo.RadioButtonList.list;
|
||
|
item = anItem;
|
||
|
value = anItem.value;
|
||
|
displayString = anItem.label;
|
||
|
selection = selectedItem;
|
||
|
name = "RADIONAME";
|
||
|
};
|
||
|
|
||
|
SelectedItem: GSWString
|
||
|
{
|
||
|
value = selectedItem;
|
||
|
};
|
||
|
|