Home › Tk Themed Widget Tk
ttk::combobox
Text field with popdown selection list
literal type exactly as shown
argument replace with your value
?optional? may be omitted
Synopsis#
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 | -cursor | -takefocus |
| -style | -placeholder | -placeholderforeground |
See the ttk_widget manual entry for details on the standard options.
Widget-specific options#
-exportselection#-
Database name exportSelectionDatabase class ExportSelectionBoolean value. If set, the widget selection is linked to the X selection.
-justify#-
Database name justifyDatabase class JustifySpecifies how the text is aligned within the widget. Must be one of
left,center, orright. -height#-
Database name heightDatabase class HeightSpecifies the height of the pop-down listbox, in rows.
-postcommand#-
Database name postCommandDatabase class PostCommandA Tcl script to evaluate immediately before displaying the listbox. The
-postcommandscript may specify the-valuesto display. -state#-
Database name stateDatabase class StateOne of
normal,readonly, ordisabled. In thereadonlystate, the value may not be edited directly, and the user can only select one of the-valuesfrom the dropdown list. In thenormalstate, the text field is directly editable. In thedisabledstate, no interaction is possible. -textvariable#-
Database name textVariableDatabase class TextVariableSpecifies 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.
-values#-
Database name valuesDatabase class ValuesSpecifies the list of values to display in the drop-down listbox.
-width#-
Database name widthDatabase class WidthSpecifies an integer value indicating the desired width of the entry window, in average-size characters of the widget's font.
Widget command#
In addition to the standard cget, configure, identify element, instate, state and style commands (see ttk::widget), combobox widgets support the following additional commands:
- pathName
current?newIndex? -
If newIndex is supplied, sets the combobox value to the element at position newIndex in the list of
-values(in addition to integers, theendindex is supported and indicates the last element of the list, moreover the same simple interpretation as for the commandstring indexis supported, with simple integer index arithmetic and indexing relative toend). Otherwise, returns the index of the current value in the list of-valuesor{}if the current value does not appear in the list. - pathName
get -
Returns the current value of the combobox.
- pathName
setvalue -
Sets the value of the combobox to value.
The combobox widget also supports the following
ttk::entrywidget commands:bboxdeleteicursorindexinsertselectionxview
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.
-insertcolor color
-insertwidth amount
-lightcolor color
-padding padding
-placeholderforeground color
-postoffset padding
-selectbackground color
Text entry select background.
-selectforeground color
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.
Keywords#
choice · entry · list box · text box · widget
Copyright#
- Copyright © 2004 Joe English