logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

ttk::combobox - text field with popdown selection list

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.

Keywords

       choice, entry, list box, text box, widget

Tk                                                     8.5                                    ttk::combobox(3tk)

Name

       ttk::combobox - text field with popdown selection list

See Also

       ttk::widget(3tk), ttk::entry(3tk)

Standard Options

-class-cursor-takefocus-style-placeholder-placeholderforeground

       See the ttk_widget manual entry for details on the standard options.

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:

       -arrowcolorcolor-arrowsizeamount-backgroundcolor-bordercolorcolor-darkcolorcolor-focusfillcolor-foregroundcolor-fieldbackgroundcolor
              Can only be changed when using non-native and non-graphical themes.
       -insertcolorcolor-insertwidthamount-lightcolorcolor-paddingpadding-placeholderforegroundcolor-postoffsetpadding-selectbackgroundcolor
              Text entry select background.
       -selectforegroundcolor
              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 fontComboboxPopdownFrame styling options configurable with ttk::style are:

       -borderwidthamount-reliefrelief

       Some options are only available for specific themes.

       See the ttk::style manual page for information on how to configure ttk styles.

Synopsis

ttk::comboboxpathName ?options?
________________________________________________________________________________________________________________

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.

Widget Command

       In  addition  to  the  standard cget, configure, identifyelement, instate, state and style commands (see
       ttk::widget), combobox widgets support the following additional commands:

       pathNamecurrent ?newIndex?
              If newIndex is supplied, sets the combobox value to the element at position newIndex in  the  list
              of  -values (in addition to integers, the end index is supported and indicates the last element of
              the list, moreover the same simple interpretation as for the command stringindex  is  supported,
              with  simple integer index arithmetic and indexing relative to end).  Otherwise, returns the index
              of the current value in the list of -values or {} if the current value  does  not  appear  in  the
              list.

       pathNameget
              Returns the current value of the combobox.

       pathNamesetvalue
              Sets the value of the combobox to value.

       The combobox widget also supports the following ttk::entry widget commands:

              bboxdeleteicursorindexinsertselectionxview

Widget-Specific Options

       Command-Line Name:-exportselection
       Database Name:  exportSelection
       Database Class: ExportSelection

              Boolean value.  If set, the widget selection is linked to the X selection.

       Command-Line Name:-justify
       Database Name:  justify
       Database Class: 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

              Specifies the height of the pop-down listbox, in rows.

       Command-Line Name:-postcommand
       Database Name:  postCommand
       Database Class: 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

              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

              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

              Specifies the list of values to display in the drop-down listbox.

       Command-Line Name:-width
       Database Name:  width
       Database Class: Width

              Specifies an integer value indicating the desired width  of  the  entry  window,  in  average-size
              characters of the widget's font.

See Also