- -background
-
type: color
Background colour of the widget.
- -child
-
type: widget-ID
Widget ID of the child.
- -dragTargets
-
type: list of strings
List of source targets
(e.g. text/plain or application/x-color)
which are supported.
- -dropTargets
-
type: list of strings
List of destination targets
(e.g. text/plain or application/x-color)
which are supported.
- -name
-
type: string
Name of the widget, can be used to set options in an rc file.
- -onButtonPress
-
type: string (default: "")
Tcl command which is executed if a mouse button is press
inside the widget.
Before evaluation the
following percent strings are substituted:
%w widget name
%t type of event: one of buttonPress, button2Press or button3Press
%x x coordinate
%y y coordinate
%b button number
%s state of the buttons and modifiers (bitmask)
- -onButtonRelease
-
type: string (default: "")
Tcl command which is executed if a mouse button is released
inside the widget.
Before evaluation the
following percent strings are substituted:
%w widget name
%t type of event: always buttonRelease
%x x coordinate
%y y coordinate
%b button number
%s state of the buttons and modifiers (bitmask)
- -onChangeOrientation
-
type: string (default: "")
Command to be executed in the global scope if the panel including
the applet changes its orientation.
Before evaluation the
following percent strings are substituted:
%w widget name
- -onChangeSize
-
type: string (default: "")
Command to be executed in the global scope if the panel including
the applet changes its size.
Before evaluation the
following percent strings are substituted:
%w widget name
- -onDestroy
-
type: string (default: "")
Tcl command which is executed if the widget is destroyed.
Before evaluation the
following percent strings are substituted:
%w widget name
- -onDragData
-
type: string (default: "")
Tcl command which is executed if data is draged from
this the widget to another. This command must return
the data to be draged.
Before evaluation the
following percent strings are substituted:
%w widget name
%t time
%T type of data
- -onDropData
-
type: string (default: "")
Tcl command which is executed if data is dropped on the widget.
Before evaluation the
following percent strings are substituted:
%w widget name
%d data
%l length of data
%t time
%T type of data
%x x coordinate
%y y coordinate
- -onMotion
-
type: string (default: "")
Tcl command which is executed if the mouse is moved inside
the widget.
Before evaluation the
following percent strings are substituted:
%w widget name
%x x coordinate
%y y coordinate
%s state of the buttons and modifiers (bitmask)
- -onPopupMenu
-
type: string (default: "")
Tcl command which is executed if the "popup-menu" signal
is received, which is normally the case if the user presses
Shift-F10.
Before evaluation the
following percent strings are substituted:
%w widget name
- -onRealize
-
type: string (default: "")
Tcl command whih is executed in the global scope if
the widget has been realized.
Before evaluation the following percent strings are substituted:
%w widget name
- -onShowHelp
-
type: string (default: "")
Tcl command which is executed in the global scope
if the "show-help" signal
is received, which is normally the case if the user presses
F1 or Ctrl-F1.
Before evaluation the following percent strings are substituted:
%w widget name
%h help type: either "whatsThis" or "tooltip"
- -sensitive
-
type: boolean (default: 1)
Whether or not the item is sensitive to user input.
- -tooltip
-
type: string
Message that appear next to this widget when the mouse
pointer is held over it for a short amount of time.
- -visible
-
type: boolean (default: 1)
Whether or not the item is visible.