mirror of
https://github.com/gnustep/libs-gsweb.git
synced 2025-02-23 19:51:13 +00:00
25 lines
478 B
Text
25 lines
478 B
Text
|
#include "Base"
|
||
|
|
||
|
APopUpButton: GSWPopUpButton
|
||
|
{
|
||
|
list = application.bundleInfo.PopUpButton.list;
|
||
|
item = anItem;
|
||
|
displayString = anItem.label;
|
||
|
selection = selectedItem;
|
||
|
selectedValue = selectedValue;
|
||
|
selectionValue = selectedValue;
|
||
|
noSelectionString = "Nothing Selected";
|
||
|
name = "POPNAME";
|
||
|
};
|
||
|
|
||
|
SelectedItem: GSWString
|
||
|
{
|
||
|
value = selectedItem;
|
||
|
};
|
||
|
|
||
|
SelectedValue: GSWString
|
||
|
{
|
||
|
value = selectedValue;
|
||
|
};
|
||
|
|