Tcl8.6.10/Tk8.6.10 Documentation > Tk Commands > ttk_combobox
Tcl/Tk Applications | Tcl Commands | Tk Commands | [incr Tcl] Package Commands | SQLite3 Package Commands | TDBC Package Commands | tdbc::mysql Package Commands | tdbc::odbc Package Commands | tdbc::postgres Package Commands | tdbc::sqlite3 Package Commands | Thread Package Commands | Tcl C API | Tk C API | [incr Tcl] Package C API | TDBC Package C API
- NAME
- ttk::combobox — text field with popdown selection list
- SYNOPSIS
- DESCRIPTION
- STANDARD OPTIONS
- -class, undefined, undefined
- -cursor, cursor, Cursor
- -style, style, Style
- -takefocus, takeFocus, TakeFocus
- -cursor, cursor, Cursor
- WIDGET-SPECIFIC OPTIONS
- -exportselection, exportSelection, ExportSelection
- -justify, justify, Justify
- -height, height, Height
- -postcommand, postCommand, PostCommand
- -state, state, State
- -textvariable, textVariable, TextVariable
- -values, values, Values
- -width, width, Width
- -justify, justify, Justify
- WIDGET COMMAND
- VIRTUAL EVENTS
- STYLING OPTIONS
- SEE ALSO
- KEYWORDS
NAME
ttk::combobox — text field with popdown selection listSYNOPSIS
ttk::combobox pathName ?options?DESCRIPTION
A ttk::combobox combines a text field with a pop-down list of values; the user may select the value of the text field from among the values in the list.STANDARD OPTIONS
- -class, undefined, undefined
- -cursor, cursor, Cursor
- -style, style, Style
- -takefocus, takeFocus, TakeFocus
- -cursor, cursor, Cursor
WIDGET-SPECIFIC OPTIONS
- Command-Line Name: -exportselection
- Database Name: exportSelection
- Database Class: ExportSelection
- Database Name: exportSelection
- Boolean value. If set, the widget selection is linked to the X selection.
- Command-Line Name: -justify
- Database Name: justify
- Database Class: Justify
- Database Name: justify
- Specifies how the text is aligned within the widget. Must be one of left, center, or right.
- Command-Line Name: -height
- Database Name: height
- Database Class: Height
- Database Name: height
- Specifies the height of the pop-down listbox, in rows.
- Command-Line Name: -postcommand
- Database Name: postCommand
- Database Class: PostCommand
- Database Name: postCommand
- A Tcl script to evaluate immediately before displaying the listbox. The -postcommand script may specify the -values to display.
- Command-Line Name: -state
- Database Name: state
- Database Class: State
- Database Name: state
- One of normal, readonly, or disabled. In the readonly state, the value may not be edited directly, and the user can only select one of the -values from the dropdown list. In the normal state, the text field is directly editable. In the disabled state, no interaction is possible.
- Command-Line Name: -textvariable
- Database Name: textVariable
- Database Class: TextVariable
- Database Name: textVariable
- Specifies the name of a global variable whose value is linked to the widget value. Whenever the variable changes value the widget value is updated, and vice versa.
- Command-Line Name: -values
- Database Name: values
- Database Class: Values
- Database Name: values
- Specifies the list of values to display in the drop-down listbox.
- Command-Line Name: -width
- Database Name: width
- Database Class: Width
- Database Name: width
- Specifies an integer value indicating the desired width of the entry window, in average-size characters of the widget's font.
WIDGET COMMAND
The following subcommands are possible for combobox widgets:
The combobox widget also supports the following ttk::entry widget subcommands (see ttk::entry(n) for details):
bbox
delete
icursor
index
insert
selection
xview
cget
configure
identify
instate
state
VIRTUAL EVENTS
The combobox widget generates a <<ComboboxSelected>> virtual event when the user selects an element from the list of values. If the selection action unposts the listbox, this event is delivered after the listbox is unposted.STYLING OPTIONS
The class name for a ttk::combobox is TCombobox. The ttk::combobox uses the entry and listbox widgets internally. The listbox frame has a class name of ComboboxPopdownFrame.Dynamic states: disabled, focus, pressed, readonly.
TCombobox styling options configurable with ttk::style are:
-arrowcolor color
-arrowsize amount
-background color
-bordercolor color
-darkcolor color
-focusfill color
-foreground color
-fieldbackground color
- Can only be changed when using non-native and non-graphical themes.
-lightcolor color
-padding padding
-postoffset padding
-selectbackground color
- Text entry select background.
- Text entry select foreground.
The ttk::combobox popdown listbox cannot be configured using ttk::style nor via the widget configure command. The listbox can be configured using the option database.
option add *TCombobox*Listbox.background color
option add *TCombobox*Listbox.font font
option add *TCombobox*Listbox.foreground color
option add *TCombobox*Listbox.selectBackground color
option add *TCombobox*Listbox.selectForeground color
To configure a specific listbox (subject to future change):
set popdown [ttk::combobox::PopdownWindow .mycombobox] $popdown.f.l configure -font font
ComboboxPopdownFrame styling options configurable with ttk::style are:
-borderwidth amount
-relief relief
Some options are only available for specific themes.
See the ttk::style manual page for information on how to configure ttk styles.