Summary:
See also: Action Defaults, Toolbars, Form Specification Files
A Topmenu is a view for actions presented as a typical pull-down menu, having options that can trigger events in an interactive instruction. This page describes how to use Topmenus in programs; it is also possible to define Topmenus in forms with the TOPMENU section.
<TopMenu [ topmenu-attribute="value"
[...] ] >
group
[...]
</TopMenu>
where group is:
<TopMenuGroup group-attribute="value" [...]>
{ <TopMenuSeparator separator-attribute="value"
[...] />
| <TopMenuCommand command-attribute="value"
[...] />
| group
} [...]
</TopMenuGroup>
TopMenu
node can hold TopMenuSeparator
,
TopMenuGroup
or TopMenuCommand
children.TopMenu
.TopMenuGroup
node can hold TopMenuSeparator
,
TopMenuGroup
or TopMenuCommand
children.TopMenuGroup
.TopMenuCommand
node defines a leaf of the TopMenu
tree and can be selected to execute an action.TopMenuCommand
.TopMenuSeparator
node defines an horizontal line in a
TopMenu group.TopMenuSeparator
.Topmenu
is different
from TopMenu
.name
attribute. As ON ACTION and COMMAND generate lowercase
identifiers, it is recommended to use lowercase names
.name
attribute value is in
lowercase letters ("f5
").A Topmenu defines a graphical pull-down menu that holds views for actions
controlled in BDL programs with ON ACTION
clauses. See Interaction
Model for more details about action management.
A Topmenu is part of a form definition; the TopMenu
node must be created
under the Form
node.
The following table shows the list of topmenu-attributes supported
for the TopMenu
node:
Attribute | Type | Description |
tag | STRING | User-defined attribute to identify the node |
You can define a Topmenu in form files with the TOPMENU section, or you can load a Topmenu at runtime into the current form by using the following methods: ui.Form.loadTopMenu()
The Topmenu commands (pull-down menu options) are enabled according to the actions defined by the current interactive instruction, which can be MENU, INPUT, INPUT ARRAY, DISPLAY ARRAY or CONSTRUCT. When a Topmenu option is selected, the program executes the action trigger the Topmenu command is bound to.
A Topmenu command is bound to an action node of the current
interactive instruction if its name
attribute corresponds to an action node
name (typically, the name of a ring menu option). In this
case, a Topmenu command selection has the same effect as raising the
action. For example, if the current interactive instruction is a ring menu,
this would have the same effect as selecting the ring menu option.
A Topmenu command is bound to a key trigger if the name
attribute of the
command corresponds to a valid
hot key, in lowercase letters. In this case, selecting a Topmenu
command has the same effect as pressing the hot key.
A Topmenu command is automatically disabled if the corresponding action is not available (for example, when a ring menu option is hidden).
The following table shows the list of command-attributes supported
for the TopMenuCommand
node:
Attribute | Type | Description |
name | STRING | Identifies the action corresponding to the Topmenu command. |
tag | STRING | User-defined attribute to identify the node |
text | STRING | The text to be displayed in the pull-down menu option. |
comment | STRING | The message to be shown for this element. |
hidden | INTEGER | Indicates if the command is hidden. |
image | STRING | The icon to be used in the pull-down menu option. |
In order to define the tree structure of the pull-down menu, the TopMenuGroup
node is provided to hold Topmenu commands and Topmenu groups:
TopMenu +- TopMenuGroup +- TopMenuCommand +- TopMenuCommand +- TopMenuCommand +- TopMenuGroup +- TopMenuGroup +- TopMenuCommand +- TopMenuCommand +- TopMenuGroup +- TopMenuCommand +- TopMenuCommand +- TopMenuCommand
The following table shows the list of group-attributes supported
for the TopMenuGroup
node:
Attribute | Type | Description |
tag | STRING | User-defined attribute to identify the node |
text | STRING | The text to be displayed in the pull-down menu group. |
comment | STRING | The message to be shown for this element. |
hidden | INTEGER | Indicates if the group is hidden. |
image | STRING | The icon to be used in the pull-down menu group. Warning: Images cannot be displayed for the first level of TopMenuGroup elements. |
The following table shows the list of separator-attributes supported
for the TopMenuSeparator
node:
Attribute | Type | Description |
tag | STRING | User-defined attribute to identify the node |
hidden | INTEGER | Indicates if the separator is hidden. |
You typically define a Topmenu in the form specification file, with the TOPMENU section; see below for an example.
To load a Topmenu definition file, use the utility method provided by the Form built-in class:
01
CALL myform.loadTopMenu("standard")
When using this utility method, do not specify any path or file extension
in the file name. The runtime system automatically searches for a file with the
"4tm
" extension in the current directory and in the path list defined in
the DBPATH environment variable.
To load a default topmenu from an XML definition file, use the utility method provided by the Interface built-in class:
01
CALL ui.Interface.loadTopMenu("standard")
When using this utility method, do not specify any path or file extension
in the file name. The runtime system automatically searches for a file with the "4tm
"
extension in the current directory and in the path list defined
in the DBPATH environment variable.
This example show how to create a Topmenu to handle all forms by using the default initialization function:
01
CALL ui.Form.setDefaultInitializer("myinit")02
OPEN FORM f1 FROM "form1"03
DISPLAY FORM f104
...05
FUNCTION myinit(fn)06
DEFINE fn ui.Form07
-- here you can add the Topmenu in fn.08
END FUNCTION
After getting the DOM node of the form, create a node with the "TopMenu
" tag name:
01
DEFINE tm om.DomNode02
LET tm = f.createChild("TopMenu")
For each Topmenu group, create a sub-node with the "TopMenuGroup
" tag name
and set the attributes to define the group:
01
DEFINE tmg om.DomNode02
LET tmg = tm.createChild("TopMenuGroup")03
CALL tmg.setAttribute("text","Reports")
For each Topmenu option, create a sub-node in a group node with the "TopMenuCommand
" tag name
and set the attributes to define the option:
01
DEFINE tmi om.DomNode02
LET tmi = tmg.createChild("TopMenuCommand")03
CALL tmi.setAttribute("name","report")0
4
CALL tmi.setAttribute("text","Order report")05
CALL tmi.setAttribute("comment","Orders entered today")06
CALL tmi.setAttribute("image","smiley")
If needed, you can create a "TopMenuSeparator
" node
inside a group, to separate menu options:
01
DEFINE tms om.DomNode02
LET tms = tmg.createChild("TopMenuSeparator")
01
<TopMenu>02
<TopMenuGroup text="Form" >03
<TopMenuCommand name="help" text="Help" image="quest" />04
<TopMenuCommand name="quit" text="Quit" />05
</TopMenuGroup>06
<TopMenuGroup text="Edit" >07
<TopMenuCommand name="accept" text="Validate" image="ok" />08
<TopMenuCommand name="cancel" text="Cancel" image="cancel" />09
<TopMenuSeparator/>10
<TopMenuCommand name="cut" text="Cut" />11
<TopMenuCommand name="copy" text="Copy" />12
<TopMenuCommand name="paste" text="Paste" />13
</TopMenuGroup>14
<TopMenuGroup text="Records" >15
<TopMenuCommand name="append" text="Add" image="add" />16
<TopMenuCommand name="delete" text="Remove" image="delete" />17
<TopMenuCommand name="update" text="Modify" image="change" />18
<TopMenuSeparator/>19
<TopMenuCommand name="search" text="Query" image="find" />20
</TopMenuGroup>21
</TopMenu>
01
TOPMENU02
GROUP form (TEXT="Form")03
COMMAND help (TEXT="Help", IMAGE="quest")04
COMMAND quit (TEXT="Quit")05
END06
GROUP edit (TEXT="Edit")07
COMMAND accept (TEXT="Validate", IMAGE="ok")08
COMMAND cancel (TEXT="Cancel", MAGE="cancel")09
SEPARATOR10
COMMAND editcut -- Gets decoration from action defaults11
COMMAND editcopy -- Gets decoration from action defaults12
COMMAND editpaste -- Gets decoration from action defaults13
END14
GROUP records (TEXT="Records")15
COMMAND append (TEXT="Add", IMAGE="add")16
COMMAND delete (TEXT="Remove", IMAGE="del")17
COMMAND update (TEXT="Modify", IMAGE="change")18
SEPARATOR19
COMMAND search (TEXT="Search", IMAGE="find")20
END21
END