mirror of
https://github.com/gnustep/libs-gsweb.git
synced 2025-02-22 19:21:23 +00:00
Ported to WO names. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gsweb/trunk@30689 72102866-910b-0410-8b05-ffd578937521
38 lines
626 B
Text
38 lines
626 B
Text
|
|
APopUpButton: WOPopUpButton
|
|
{
|
|
list = application.bundleInfo.PopUpButton.list;
|
|
item = anItem;
|
|
displayString = anItem.label;
|
|
selection = selectedItem;
|
|
noSelectionString = "Nothing Selected";
|
|
name = "POPNAME";
|
|
};
|
|
|
|
SelectedItem: WOString
|
|
{
|
|
value = selectedItem;
|
|
};
|
|
|
|
SelectedValue: WOString
|
|
{
|
|
value = selectedItem.value;
|
|
};
|
|
|
|
MainPageLink: WOHyperlink
|
|
{
|
|
pageName = "Main";
|
|
string = "Main Page";
|
|
};
|
|
|
|
Form: WOForm
|
|
{
|
|
enctype = "multipart/form-data";
|
|
};
|
|
|
|
SubmitButton: WOSubmitButton
|
|
{
|
|
action = submitAction;
|
|
value = "Submit";
|
|
};
|
|
|