Common Procedure Arguments

procedure
                        All except :frame and :panel

The following arguments are available for all procedures (except :frame and
:panel).

                        :show                   T|F
        If the value is True then the window or widget is made visible; if False
then the window or widget is made non visible.
The default is that widgets are visible.

                        :deaf                   T|F
        If the value is True then the window or widget is made non-interactive;
if False then the window or widget is made interactive.
The default is that widgets are interactive. Note however that some widgets (e.g. panel and
message) are only non-interactive.

                        :inactive               T|F
        If the value is True then the window or widget is made inactive
(displayed dimmer than normal); if False then the window or widget is made
active (normal state). The window or widget will also be made non-interactive.
The default is that widgets are active.

                        :bold                   T|F
        If the value is True then text displayed within the window or widget will
use a bold font; if False then text will be displayed using a normal font.
The default is that a normal font is used.

                        :double-click   T|F
        If the value is True then interactive windows and widgets are bound to
a double mouse click event in addition to the normal single mouse click event.
The first click causes the click procedure to be entered and the second click
causes the double-click procedure to be entered. If the value is False then
only single mouse click events are enabled.
The default is that only single click events are enabled.

                        :help                   text
        text is information to be used for level 1 (task local) help. For further
information see the section on the Help System later in this document.

                        :helpitem               name
        name is the name to be used when storing and accessing level 1 help.
. For further information see the section on the Help System later in this
document.
The default is that the widget name is used.




                        All except :frame

The following arguments are available for all procedures ( including :panel).

                        :after                  widget
        widget defines a widget name to be used by the packer geometry
manager when inserting the widget into the pack list. The current widget is
inserted into the list after widget. This also becomes the default action for all
further widgets within the current frame widget.

                        :before         widget
        widget defines a widget name to be used by the packer geometry
manager when inserting the widget into the pack list. The current widget is
inserted into the list before widget. This also becomes the default action for all
further widgets within the current frame widget.