background cursor
See the options manual entry for details on the standard options.
Name: orient Class: Orient Command-Line Switch: -orient
Name: padX Class: PadX Command-Line Switch: -padx
Name: padY Class: PadY Command-Line Switch: -pady
The buttonbox command creates a manager widget for controlling buttons. The button box also supports the display and invocation of a default button. The button box can be configured either horizontally or vertically.
The buttonbox command creates a new Tcl command whose name is pathName. This command may be used to invoke various operations on the widget. It has the following general form:
pathName option ?arg arg ...?Option and the args determine the exact behavior of the command.
Many of the widget commands for the buttonbox take as one argument an indicator of which button of the button box to operate on. These indicators are called indexes and allow reference and manipulation of buttons regardless of their current map state. buttonbox indexes may be specified in any of the following forms:
buttonbox .bb.bb add Yes -text Yes -command "puts Yes" .bb add No -text No -command "puts No" .bb add Maybe -text Maybe -command "puts Maybe" .bb default Yes
pack .bb -expand yes -fill both