MenuInt()

Display an integer menu in the panel window.

Usage

MenuInt( name, node, par,
                   default=None, tooltip=None, whatsthis=None,
                   helpURL=None, redraw=False, cond=None )

Parameters

name (string)
Label of the menu. This is displayed on the left.
node (string)
Data base path of the node containing the parameter.
par (string)
Parameter name. The value of the menu is extracted from this parameter under the above node, and upon change by you, the value is deposited therein.
default (integer)
Default value. If the data base does not contain the parameter given by the node and par arguments, it is first initialized to this value.
tooltip (string)
Tooltip help information, also known as bubble. The content of this argument is displayed in a small dynamic box placed opened above the menu, when the cursor remains at the menu for short time. This is typically a short phrase.
whatsthis (string)
Whatsthis help information. When you click on the whatsthis icon followed by clicking on this menu, a small box opens above the menu and the content of this argument is displayed in it. This is typically a short sentence or two, which provides more information than that given by the tooltip argument. The whatsthis argument is a rich text format, which means you can embed many of the HTML tags, such as <br> for line separator and <b> for bold.
helpURL (string)
This is the HTML-URL address containing detailed help on the menu item. When you press the F1 key while the cursor is on top of this menu, the assistance help system opens and displays this page.
redraw (boolean)
Flag specifying whether to redraw the panel when you change the value. This allows inclusion of complex menus that dynamically depend on the value of this menu.
cond (string)
A valid condition of the entry. It defines the condition that the entry is valid (None means no condition).

Return Value

None

Errors

  • The parameter in the data base must be of type integer.
  • The parameter must exist in the data base or the default must not be None.
  • The entry must be in accordance with cond (condition).

Description

This routine places an integer menu in the panel window. The menu contains a label given by the name argument. The displayed value is extracted from the data base node and par. Upon change, the value is deposited back onto the data base. Now, if redraw is True, the entire panel is redrawn. This provides the opportunity to change the other menu selections. The cond defines some conditions for entry validation. For example,
nodeStg = ROOT + RS + 'STAGGER' + RS + item.name
MenuInt( name = 'Min stagger iterations',
         tooltip = 'Min allowed stagger iterations',
         whatsthis= 'Min number of nonlinear iterations before\n'
                    'ending this stagger',
         helpURL = URL + '#min_stagger_iterations',
         node = nodeStg,
         par = 'min_stagger_iterations',
         cond = 'par >= 0',
         default = 1 )