1ttk::radiobutton(n) Tk Themed Widget ttk::radiobutton(n)
2
3
4
5______________________________________________________________________________
6
8 ttk::radiobutton - Mutually exclusive option widget
9
11 ttk::radiobutton pathName ?options?
12______________________________________________________________________________
13
15 ttk::radiobutton widgets are used in groups to show or change a set of
16 mutually-exclusive options. Radiobuttons are linked to a Tcl variable,
17 and have an associated value; when a radiobutton is clicked, it sets
18 the variable to its associated value.
19
21 -class -compound -cursor
22 -image -state -style
23 -takefocus -text -textvariable
24 -underline -width
25
26 See the ttk_widget manual entry for details on the standard options.
27
29 Command-Line Name:-command
30 Database Name: command
31 Database Class: Command
32
33 A Tcl script to evaluate whenever the widget is invoked.
34
35 Command-Line Name:-value
36 Database Name: Value
37 Database Class: Value
38
39 The value to store in the associated -variable when the widget
40 is selected.
41
42 Command-Line Name:-variable
43 Database Name: variable
44 Database Class: Variable
45
46 The name of a global variable whose value is linked to the wid‐
47 get. Default value is ::selectedButton.
48
50 In addition to the standard cget, configure, identify, instate, and
51 state commands, radiobuttons support the following additional widget
52 commands:
53
54 pathname invoke
55 Sets the -variable to the -value, selects the widget, and evalu‐
56 ates the associated -command. Returns the result of the -com‐
57 mand, or the empty string if no -command is specified.
58
60 The widget does not respond to user input if the disabled state is set.
61 The widget sets the selected state whenever the linked -variable is set
62 to the widget's -value, and clears it otherwise. The widget sets the
63 alternate state whenever the linked -variable is unset. (The alternate
64 state may be used to indicate a “tri-state” or “indeterminate” selec‐
65 tion.)
66
68 Ttk::radiobutton widgets support the Toolbutton style in all standard
69 themes, which is useful for creating widgets for toolbars.
70
72 The class name for a ttk::radiobutton is TRadiobutton.
73
74 Dynamic states: active, alternate, disabled, pressed, readonly,
75 selected.
76
77 TRadiobutton styling options configurable with ttk::style are:
78
79 -background color
80 -compound compound
81 -foreground color
82 -indicatorbackground color
83 -indicatorcolor color
84 -indicatormargin padding
85 -indicatorrelief relief
86 -padding padding
87
88 Some options are only available for specific themes.
89
90 See the ttk::style manual page for information on how to configure ttk
91 styles.
92
94 ttk::widget(n), ttk::checkbutton(n), radiobutton(n)
95
97 widget, button, option
98
99
100
101Tk 8.5 ttk::radiobutton(n)