.. include:: headings.inc .. _ComboBox: ========================================================================================================================================== |phoenix_title| **ComboBox** ========================================================================================================================================== A combobox is like a combination of an edit control and a listbox. It can be displayed as static list with editable or read-only text field; or a drop-down list with text field; or a drop-down list without a text field depending on the platform and presence of ``CB_READONLY`` style. A combobox permits a single selection only. Combobox items are numbered from zero. If you need a customized combobox, have a look at `ComboCtrl`, `OwnerDrawnComboBox`, `ComboPopup` and the ready-to-use `BitmapComboBox`. Please refer to :ref:`TextEntry` documentation for the description of methods operating with the text entry part of the combobox and to :ref:`ItemContainer` for the methods operating with the list of strings. Notice that at least under MSW :ref:`ComboBox` doesn't behave correctly if it contains strings differing in case only so portable programs should avoid adding such strings to this control. .. _ComboBox-styles: |styles| Window Styles ================================ This class supports the following styles: - ``CB_SIMPLE``: Creates a combobox with a permanently displayed list. Windows only. - ``CB_DROPDOWN``: Creates a combobox with a drop-down list. MSW and Motif only. - ``CB_READONLY``: A combobox with this style behaves like a :ref:`Choice` (and may look in the same way as well, although this is platform-dependent), i.e. it allows the user to choose from the list of options but doesn't allow to enter a value not present in the list. - ``CB_SORT``: Sorts the entries in the list alphabetically. - ``TE_PROCESS_ENTER``: The control will generate the event ``wxEVT_COMMAND_TEXT_ENTER`` (otherwise pressing Enter key is either processed internally by the control or used for navigation between dialog controls). Windows only. .. _ComboBox-events: |events| Events Emitted by this Class ===================================== Handlers bound for the following event types will receive a :ref:`CommandEvent` parameter. - EVT_COMBOBOX: Process a ``wxEVT_COMMAND_COMBOBOX_SELECTED`` event, when an item on the list is selected. Note that calling :meth:`~ComboBox.GetValue` returns the new value of selection. - EVT_TEXT: Process a ``wxEVT_COMMAND_TEXT_UPDATED`` event, when the combobox text changes. - EVT_TEXT_ENTER: Process a ``wxEVT_COMMAND_TEXT_ENTER`` event, when ``RETURN`` is pressed in the combobox (notice that the combobox must have been created with ``TE_PROCESS_ENTER`` style to receive this event). - EVT_COMBOBOX_DROPDOWN: Process a ``wxEVT_COMMAND_COMBOBOX_DROPDOWN`` event, which is generated when the list box part of the combo box is shown (drops down). Notice that this event is currently only supported by wxMSW and wxGTK with GTK+ 2.10 or later. - EVT_COMBOBOX_CLOSEUP: Process a ``wxEVT_COMMAND_COMBOBOX_CLOSEUP`` event, which is generated when the list box of the combo box disappears (closes up). This event is only generated for the same platforms as ``wxEVT_COMMAND_COMBOBOX_DROPDOWN`` above. Also note that only wxMSW supports adding or deleting items in this event. .. seealso:: :ref:`ListBox`, :ref:`TextCtrl`, :ref:`Choice`, :ref:`CommandEvent` | |class_hierarchy| Inheritance Diagram ===================================== Inheritance diagram for class **ComboBox** .. raw:: html

Inheritance diagram of ComboBox

| |appearance| Control Appearance =============================== | .. figure:: _static/images/widgets/fullsize/wxmsw/combobox.png :alt: wxMSW :figclass: floatleft **wxMSW** .. figure:: _static/images/widgets/fullsize/wxmac/combobox.png :alt: wxMAC :figclass: floatright **wxMAC** .. figure:: _static/images/widgets/fullsize/wxgtk/combobox.png :alt: wxGTK :figclass: floatcenter **wxGTK** | |sub_classes| Known Subclasses ============================== `BitmapComboBox` | |method_summary| Methods Summary ================================ ================================================================================ ================================================================================ :meth:`~ComboBox.__init__` Default constructor. :meth:`~ComboBox.Create` Creates the combobox for two-step construction. :meth:`~ComboBox.Dismiss` Hides the list box portion of the combo box. :meth:`~ComboBox.FindString` Finds an item whose label matches the given string. :meth:`~ComboBox.GetCount` Returns the number of items in the control. :meth:`~ComboBox.GetCurrentSelection` Returns the item being selected right now. :meth:`~ComboBox.GetInsertionPoint` Same as :meth:`TextEntry.GetInsertionPoint` . :meth:`~ComboBox.GetSelection` Returns the index of the selected item or ``NOT_FOUND`` if no item is selected. :meth:`~ComboBox.GetString` Returns the label of the item with the given index. :meth:`~ComboBox.GetStringSelection` Gets the text currently selected in the control. :meth:`~ComboBox.IsListEmpty` Returns ``True`` if the list of combobox choices is empty. :meth:`~ComboBox.IsTextEmpty` Returns ``True`` if the text of the combobox is empty. :meth:`~ComboBox.Popup` Shows the list box portion of the combo box. :meth:`~ComboBox.SetSelection` Same as :meth:`TextEntry.SetSelection` . :meth:`~ComboBox.SetString` Changes the text of the specified combobox item. :meth:`~ComboBox.SetValue` Sets the text for the combobox text field. ================================================================================ ================================================================================ | |property_summary| Properties Summary ===================================== ================================================================================ ================================================================================ :attr:`~ComboBox.Count` See :meth:`~ComboBox.GetCount` :attr:`~ComboBox.CurrentSelection` See :meth:`~ComboBox.GetCurrentSelection` :attr:`~ComboBox.InsertionPoint` See :meth:`~ComboBox.GetInsertionPoint` :attr:`~ComboBox.Selection` See :meth:`~ComboBox.GetSelection` and :meth:`~ComboBox.SetSelection` :attr:`~ComboBox.StringSelection` See :meth:`~ComboBox.GetStringSelection` ================================================================================ ================================================================================ | |api| Class API =============== .. class:: ComboBox(Control, ItemContainer, TextEntry) A combobox is like a combination of an edit control and a listbox. **Possible constructors**:: ComboBox() ComboBox(parent, id=ID_ANY, value='', pos=DefaultPosition, size=DefaultSize, choices=[], style=0, validator=DefaultValidator, name=ComboBoxNameStr) .. method:: __init__(self, *args, **kw) |overload| **Overloaded Implementations**: **~~~** **__init__** `(self)` Default constructor. **~~~** **__init__** `(self, parent, id=ID_ANY, value='', pos=DefaultPosition, size=DefaultSize, choices=[], style=0, validator=DefaultValidator, name=ComboBoxNameStr)` Constructor, creating and showing a combobox. :param `parent`: Parent window. Must not be ``None``. :type `parent`: Window :param `id`: Window identifier. The value ``ID_ANY`` indicates a default value. :type `id`: int :param `value`: Initial selection string. An empty string indicates no selection. :type `value`: string :param `pos`: Window position. :type `pos`: Point :param `size`: Window size. If DefaultSize is specified then the window is sized appropriately. :type `size`: Size :param `choices`: An array of strings with which to initialise the control. :type `choices`: list of strings :param `style`: Window style. See :ref:`ComboBox`. :type `style`: long :param `validator`: Window validator. :type `validator`: Validator :param `name`: Window name. :type `name`: string .. seealso:: :meth:`Create` , :ref:`Validator` **~~~** .. method:: Create(self, *args, **kw) Creates the combobox for two-step construction. Derived classes should call or replace this function. See :ref:`ComboBox` for further details. .. method:: Dismiss(self) Hides the list box portion of the combo box. Currently this method is implemented in wxMSW, wxGTK and OSX/Cocoa. Notice that calling this function will generate a ``wxEVT_COMMAND_COMBOBOX_CLOSEUP`` event except under wxOSX where generation of this event is not supported at all. .. versionadded:: 2.9.1 .. method:: FindString(self, string, caseSensitive=False) Finds an item whose label matches the given string. :param `string`: String to find. :type `string`: string :param `caseSensitive`: Whether search is case sensitive (default is not). :type `caseSensitive`: bool :rtype: `int` :returns: The zero-based position of the item, or ``NOT_FOUND`` if the string was not found. .. method:: GetCount(self) Returns the number of items in the control. :rtype: `int` .. seealso:: :meth:`IsEmpty` .. method:: GetCurrentSelection(self) Returns the item being selected right now. This function does the same things as :meth:`Choice.GetCurrentSelection` and returns the item currently selected in the dropdown list if it's open or the same thing as :meth:`ControlWithItems.GetSelection` otherwise. :rtype: `int` .. method:: GetInsertionPoint(self) Same as :meth:`TextEntry.GetInsertionPoint` . :rtype: `long` .. note:: Under wxMSW, this function always returns 0 if the combobox doesn't have the focus. .. method:: GetSelection(self, *args, **kw) Returns the index of the selected item or ``NOT_FOUND`` if no item is selected. :returns: The position of the current selection. .. note:: This method can be used with single selection list boxes only, you should use :meth:`ListBox.GetSelections` for the list boxes with ``LB_MULTIPLE`` style. .. seealso:: :meth:`SetSelection` , :meth:`GetStringSelection` .. method:: GetString(self, n) Returns the label of the item with the given index. :param `n`: The zero-based index. :type `n`: int :rtype: `string` :returns: The label of the item or an empty string if the position was invalid. .. method:: GetStringSelection(self) Gets the text currently selected in the control. If there is no selection, the returned string is empty. :rtype: `string` .. method:: IsListEmpty(self) Returns ``True`` if the list of combobox choices is empty. Use this method instead of (not available in this class) :meth:`IsEmpty` to test if the list of items is empty. :rtype: `bool` .. versionadded:: 2.9.3 .. method:: IsTextEmpty(self) Returns ``True`` if the text of the combobox is empty. Use this method instead of (not available in this class) :meth:`IsEmpty` to test if the text currently entered into the combobox is empty. :rtype: `bool` .. versionadded:: 2.9.3 .. method:: Popup(self) Shows the list box portion of the combo box. Currently this method is implemented in wxMSW, wxGTK and OSX/Cocoa. Notice that calling this function will generate a ``wxEVT_COMMAND_COMBOBOX_DROPDOWN`` event except under wxOSX where generation of this event is not supported at all. .. versionadded:: 2.9.1 .. method:: SetSelection(self, *args, **kw) |overload| **Overloaded Implementations**: **~~~** **SetSelection** `(self, from, to)` Same as :meth:`TextEntry.SetSelection` . :param `from`: :type `from`: long :param `to`: :type `to`: long **~~~** **SetSelection** `(self, n)` Sets the selection to the given item `n` or removes the selection entirely if `n` == ``NOT_FOUND`` . Note that this does not cause any command events to be emitted nor does it deselect any other items in the controls which support multiple selections. :param `n`: The string position to select, starting from zero. :type `n`: int .. seealso:: :meth:`SetString` , :meth:`SetStringSelection` **~~~** .. method:: SetString(self, n, text) Changes the text of the specified combobox item. Notice that if the item is the currently selected one, i.e. if its text is displayed in the text part of the combobox, then the text is also replaced with the new `text`. :param `n`: :type `n`: int :param `text`: :type `text`: string .. method:: SetValue(self, text) Sets the text for the combobox text field. Notice that this method will generate a ``wxEVT_COMMAND_TEXT_UPDATED`` event, use :meth:`TextEntry.ChangeValue` if this is undesirable. :param `text`: The text to set. :type `text`: string .. note:: For a combobox with ``CB_READONLY`` style the string must be in the combobox choices list, otherwise the call to :meth:`SetValue` is ignored. This is case insensitive. .. attribute:: Count See :meth:`~ComboBox.GetCount` .. attribute:: CurrentSelection See :meth:`~ComboBox.GetCurrentSelection` .. attribute:: InsertionPoint See :meth:`~ComboBox.GetInsertionPoint` .. attribute:: Selection See :meth:`~ComboBox.GetSelection` and :meth:`~ComboBox.SetSelection` .. attribute:: StringSelection See :meth:`~ComboBox.GetStringSelection`