mirror of
https://github.com/gnustep/libs-gsweb.git
synced 2025-02-23 19:51:13 +00:00
23 lines
392 B
Text
23 lines
392 B
Text
|
#include "Base"
|
||
|
|
||
|
ACheckBoxList: GSWCheckBoxList
|
||
|
{
|
||
|
list = application.bundleInfo.CheckBoxList.list;
|
||
|
item = anItem;
|
||
|
value = anItem.value;
|
||
|
displayString = anItem.label;
|
||
|
selections = selectedItems;
|
||
|
name = "CHECKNAME";
|
||
|
};
|
||
|
|
||
|
SelectedItems: GSWString
|
||
|
{
|
||
|
value = selectedItems;
|
||
|
};
|
||
|
|
||
|
SelectedValues: GSWString
|
||
|
{
|
||
|
value = selectedValues;
|
||
|
};
|
||
|
|