mirror of
https://github.com/gnustep/libs-gsweb.git
synced 2025-02-23 11:41:20 +00:00
46 lines
700 B
Text
46 lines
700 B
Text
|
#include "Base"
|
||
|
|
||
|
|
||
|
RadioButton1: GSWRadioButton
|
||
|
{
|
||
|
value = "MyValue1";
|
||
|
selection = value;
|
||
|
checked = isChecked1;
|
||
|
name = "RadioButton";
|
||
|
};
|
||
|
|
||
|
RadioButton2: GSWRadioButton
|
||
|
{
|
||
|
value = "MyValue2";
|
||
|
selection = value;
|
||
|
checked = isChecked2;
|
||
|
name = "RadioButton";
|
||
|
};
|
||
|
|
||
|
RadioButton3: GSWRadioButton
|
||
|
{
|
||
|
value = "MyValue3";
|
||
|
selection = value;
|
||
|
checked = isChecked3;
|
||
|
name = "RadioButton";
|
||
|
};
|
||
|
|
||
|
CheckValue: GSWString
|
||
|
{
|
||
|
value = value;
|
||
|
};
|
||
|
|
||
|
IsCheckedValue1: GSWString
|
||
|
{
|
||
|
value = isChecked1;
|
||
|
};
|
||
|
|
||
|
IsCheckedValue2: GSWString
|
||
|
{
|
||
|
value = isChecked2;
|
||
|
};
|
||
|
|
||
|
IsCheckedValue3: GSWString
|
||
|
{
|
||
|
value = isChecked3;
|
||
|
};
|