QComboBox Class

The QComboBox widget is a combined button and popup list. More...

Header: #include <QComboBox>
Inherits: QWidget
Inherited By:

QFontComboBox

Public Types

enum InsertPolicy { NoInsert, InsertAtTop, InsertAtCurrent, InsertAtBottom, ..., InsertAlphabetically }
enum SizeAdjustPolicy { AdjustToContents, AdjustToContentsOnFirstShow, AdjustToMinimumContentsLength, AdjustToMinimumContentsLengthWithIcon }

Properties

  • 58 properties inherited from QWidget
  • 1 property inherited from QObject

Public Functions

QComboBox(QWidget * parent = 0)
~QComboBox()
void addItem(const QString & text, const QVariant & userData = QVariant())
void addItem(const QIcon & icon, const QString & text, const QVariant & userData = QVariant())
void addItems(const QStringList & texts)
QCompleter * completer() const
int count() const
int currentIndex() const
QString currentText() const
bool duplicatesEnabled() const
int findData(const QVariant & data, int role = Qt::UserRole, Qt::MatchFlags flags = static_cast<Qt::MatchFlags> ( Qt::MatchExactly | Qt::MatchCaseSensitive )) const
int findText(const QString & text, Qt::MatchFlags flags = static_cast<Qt::MatchFlags> ( Qt::MatchExactly | Qt::MatchCaseSensitive )) const
bool hasFrame() const
virtual void hidePopup()
QSize iconSize() const
void insertItem(int index, const QString & text, const QVariant & userData = QVariant())
void insertItem(int index, const QIcon & icon, const QString & text, const QVariant & userData = QVariant())
void insertItems(int index, const QStringList & list)
InsertPolicy insertPolicy() const
void insertSeparator(int index)
bool isEditable() const
QVariant itemData(int index, int role = Qt::UserRole) const
QAbstractItemDelegate * itemDelegate() const
QIcon itemIcon(int index) const
QString itemText(int index) const
QLineEdit * lineEdit() const
int maxCount() const
int maxVisibleItems() const
int minimumContentsLength() const
QAbstractItemModel * model() const
int modelColumn() const
void removeItem(int index)
QModelIndex rootModelIndex() const
void setCompleter(QCompleter * completer)
void setDuplicatesEnabled(bool enable)
void setEditable(bool editable)
void setFrame(bool)
void setIconSize(const QSize & size)
void setInsertPolicy(InsertPolicy policy)
void setItemData(int index, const QVariant & value, int role = Qt::UserRole)
void setItemDelegate(QAbstractItemDelegate * delegate)
void setItemIcon(int index, const QIcon & icon)
void setItemText(int index, const QString & text)
void setLineEdit(QLineEdit * edit)
void setMaxCount(int max)
void setMaxVisibleItems(int maxItems)
void setMinimumContentsLength(int characters)
void setModel(QAbstractItemModel * model)
void setModelColumn(int visibleColumn)
void setRootModelIndex(const QModelIndex & index)
void setSizeAdjustPolicy(SizeAdjustPolicy policy)
void setValidator(const QValidator * validator)
void setView(QAbstractItemView * itemView)
virtual void showPopup()
SizeAdjustPolicy sizeAdjustPolicy() const
const QValidator * validator() const
QAbstractItemView * view() const

Reimplemented Public Functions

virtual bool event(QEvent * event)
virtual QSize minimumSizeHint() const
virtual QSize sizeHint() const
  • 220 public functions inherited from QWidget
  • 29 public functions inherited from QObject
  • 12 public functions inherited from QPaintDevice

Public Slots

void clear()
void clearEditText()
void setCurrentIndex(int index)
void setEditText(const QString & text)
  • 19 public slots inherited from QWidget
  • 1 public slot inherited from QObject

Signals

void activated(int index)
void activated(const QString & text)
void currentIndexChanged(int index)
void currentIndexChanged(const QString & text)
void editTextChanged(const QString & text)
void highlighted(int index)
void highlighted(const QString & text)

Protected Functions

void initStyleOption(QStyleOptionComboBox * option) const

Reimplemented Protected Functions

virtual void changeEvent(QEvent * e)
virtual void contextMenuEvent(QContextMenuEvent * e)
virtual void focusInEvent(QFocusEvent * e)
virtual void focusOutEvent(QFocusEvent * e)
virtual void hideEvent(QHideEvent * e)
virtual void inputMethodEvent(QInputMethodEvent * e)
virtual QVariant inputMethodQuery(Qt::InputMethodQuery query) const
virtual void keyPressEvent(QKeyEvent * e)
virtual void keyReleaseEvent(QKeyEvent * e)
virtual void mousePressEvent(QMouseEvent * e)
virtual void mouseReleaseEvent(QMouseEvent * e)
virtual void paintEvent(QPaintEvent * e)
virtual void resizeEvent(QResizeEvent * e)
virtual void showEvent(QShowEvent * e)
virtual void wheelEvent(QWheelEvent * e)
  • 37 protected functions inherited from QWidget
  • 8 protected functions inherited from QObject
  • 1 protected function inherited from QPaintDevice

Additional Inherited Members

  • 4 static public members inherited from QWidget
  • 7 static public members inherited from QObject
  • 1 protected slot inherited from QWidget

Detailed Description

The QComboBox widget is a combined button and popup list.

A QComboBox provides a means of presenting a list of options to the user in a way that takes up the minimum amount of screen space.

A combobox is a selection widget that displays the current item, and can pop up a list of selectable items. A combobox may be editable, allowing the user to modify each item in the list.

Comboboxes can contain pixmaps as well as strings; the insertItem() and setItemText() functions are suitably overloaded. For editable comboboxes, the function clearEditText() is provided, to clear the displayed string without changing the combobox's contents.

There are two signals emitted if the current item of a combobox changes, currentIndexChanged() and activated(). currentIndexChanged() is always emitted regardless if the change was done programmatically or by user interaction, while activated() is only emitted when the change is caused by user interaction. The highlighted() signal is emitted when the user highlights an item in the combobox popup list. All three signals exist in two versions, one with a QString argument and one with an int argument. If the user selects or highlights a pixmap, only the int signals are emitted. Whenever the text of an editable combobox is changed the editTextChanged() signal is emitted.

When the user enters a new string in an editable combobox, the widget may or may not insert it, and it can insert it in several locations. The default policy is is AtBottom but you can change this using setInsertPolicy().

It is possible to constrain the input to an editable combobox using QValidator; see setValidator(). By default, any input is accepted.

A combobox can be populated using the insert functions, insertItem() and insertItems() for example. Items can be changed with setItemText(). An item can be removed with removeItem() and all items can be removed with clear(). The text of the current item is returned by currentText(), and the text of a numbered item is returned with text(). The current item can be set with setCurrentIndex(). The number of items in the combobox is returned by count(); the maximum number of items can be set with setMaxCount(). You can allow editing using setEditable(). For editable comboboxes you can set auto-completion using setCompleter() and whether or not the user can add duplicates is set with setDuplicatesEnabled().

QComboBox uses the model/view framework for its popup list and to store its items. By default a QStandardItemModel stores the items and a QListView subclass displays the popuplist. You can access the model and view directly (with model() and view()), but QComboBox also provides functions to set and get item data (e.g., setItemData() and itemText()). You can also set a new model and view (with setModel() and setView()). For the text and icon in the combobox label, the data in the model that has the Qt::DisplayRole and Qt::DecorationRole is used. Note that you cannot alter the SelectionMode of the view(), e.g., by using setSelectionMode().

Comboboxes in the different built-in styles.

See also QLineEdit, QSpinBox, QRadioButton, QButtonGroup, and GUI Design Handbook: Combo Box, Drop-Down List Box.

Member Type Documentation

enum QComboBox::InsertPolicy

This enum specifies what the QComboBox should do when a new string is entered by the user.

ConstantValueDescription
QComboBox::NoInsert0The string will not be inserted into the combobox.
QComboBox::InsertAtTop1The string will be inserted as the first item in the combobox.
QComboBox::InsertAtCurrent2The current item will be replaced by the string.
QComboBox::InsertAtBottom3The string will be inserted after the last item in the combobox.
QComboBox::InsertAfterCurrent4The string is inserted after the current item in the combobox.
QComboBox::InsertBeforeCurrent5The string is inserted before the current item in the combobox.
QComboBox::InsertAlphabetically6The string is inserted in the alphabetic order in the combobox.

enum QComboBox::SizeAdjustPolicy

This enum specifies how the size hint of the QComboBox should adjust when new content is added or content changes.

ConstantValueDescription
QComboBox::AdjustToContents0The combobox will always adjust to the contents
QComboBox::AdjustToContentsOnFirstShow1The combobox will adjust to its contents the first time it is shown.
QComboBox::AdjustToMinimumContentsLength2Use AdjustToContents or AdjustToContentsOnFirstShow instead.
QComboBox::AdjustToMinimumContentsLengthWithIcon3The combobox will adjust to minimumContentsLength plus space for an icon. For performance reasons use this policy on large models.

Property Documentation

count : const int

This property holds the number of items in the combobox.

By default, for an empty combo box, this property has a value of 0.

Access functions:

int count() const

currentIndex : int

This property holds the index of the current item in the combobox.

The current index can change when inserting or removing items.

By default, for an empty combo box or a combo box in which no current item is set, this property has a value of -1.

Access functions:

int currentIndex() const
void setCurrentIndex(int index)

Notifier signal:

void currentIndexChanged(int index)
void currentIndexChanged(const QString & text)

currentText : const QString

This property holds the current text.

If the combo box is editable, the current text is the value displayed by the line edit. Otherwise, it is the value of the current item or an empty string if the combo box is empty or no current item is set.

Access functions:

QString currentText() const

See also editable.

duplicatesEnabled : bool

This property holds whether the user can enter duplicate items into the combobox.

Note that it is always possible to programmatically insert duplicate items into the combobox.

By default, this property is false (duplicates are not allowed).

Access functions:

bool duplicatesEnabled() const
void setDuplicatesEnabled(bool enable)

editable : bool

This property holds whether the combo box can be edited by the user.

By default, this property is false. The effect of editing depends on the insert policy.

Access functions:

bool isEditable() const
void setEditable(bool editable)

See also InsertPolicy.

frame : bool

This property holds whether the combo box draws itself with a frame.

If enabled (the default) the combo box draws itself inside a frame, otherwise the combo box draws itself without any frame.

Access functions:

bool hasFrame() const
void setFrame(bool)

iconSize : QSize

This property holds the size of the icons shown in the combobox.

Unless explicitly set this returns the default value of the current style. This size is the maximum size that icons can have; icons of smaller size are not scaled up.

Access functions:

QSize iconSize() const
void setIconSize(const QSize & size)

insertPolicy : InsertPolicy

This property holds the policy used to determine where user-inserted items should appear in the combobox.

The default value is AtBottom, indicating that new items will appear at the bottom of the list of items.

Access functions:

InsertPolicy insertPolicy() const
void setInsertPolicy(InsertPolicy policy)

See also InsertPolicy.

maxCount : int

This property holds the maximum number of items allowed in the combobox.

Note: If you set the maximum number to be less then the current amount of items in the combobox, the extra items will be truncated. This also applies if you have set an external model on the combobox.

By default, this property's value is derived from the highest signed integer available (typically 2147483647).

Access functions:

int maxCount() const
void setMaxCount(int max)

maxVisibleItems : int

This property holds the maximum allowed size on screen of the combo box, measured in items.

By default, this property has a value of 10.

Note: This property is ignored for non-editable comboboxes in styles that returns true for QStyle::SH_ComboBox_Popup such as the Mac style or the Gtk+ Style.

Access functions:

int maxVisibleItems() const
void setMaxVisibleItems(int maxItems)

minimumContentsLength : int

This property holds the minimum number of characters that should fit into the combobox.

The default value is 0.

If this property is set to a positive value, the minimumSizeHint() and sizeHint() take it into account.

Access functions:

int minimumContentsLength() const
void setMinimumContentsLength(int characters)

See also sizeAdjustPolicy.

modelColumn : int

This property holds the column in the model that is visible.

If set prior to populating the combo box, the pop-up view will not be affected and will show the first column (using this property's default value).

By default, this property has a value of 0.

Access functions:

int modelColumn() const
void setModelColumn(int visibleColumn)

sizeAdjustPolicy : SizeAdjustPolicy

This property holds the policy describing how the size of the combobox changes when the content changes.

The default value is AdjustToContentsOnFirstShow.

Access functions:

SizeAdjustPolicy sizeAdjustPolicy() const
void setSizeAdjustPolicy(SizeAdjustPolicy policy)

See also SizeAdjustPolicy.

Member Function Documentation

QComboBox::QComboBox(QWidget * parent = 0)

Constructs a combobox with the given parent, using the default model QStandardItemModel.

QComboBox::~QComboBox()

Destroys the combobox.

[signal] void QComboBox::activated(int index)

This signal is sent when the user chooses an item in the combobox. The item's index is passed. Note that this signal is sent even when the choice is not changed. If you need to know when the choice actually changes, use signal currentIndexChanged().

Note:Signal activated is overloaded in this class. To connect to this one using the function pointer syntax, you must specify the signal type in a static cast, as shown in this example:

connect(comboBox, static_cast<void(QComboBox::*)(int)>(&QComboBox::activated),
    [=](int index){ /* ... */ });

[signal] void QComboBox::activated(const QString & text)

This signal is sent when the user chooses an item in the combobox. The item's text is passed. Note that this signal is sent even when the choice is not changed. If you need to know when the choice actually changes, use signal currentIndexChanged().

Note:Signal activated is overloaded in this class. To connect to this one using the function pointer syntax, you must specify the signal type in a static cast, as shown in this example:

connect(comboBox, static_cast<void(QComboBox::*)(const QString &)>(&QComboBox::activated),
    [=](const QString &text){ /* ... */ });

void QComboBox::addItem(const QString & text, const QVariant & userData = QVariant())

Adds an item to the combobox with the given text, and containing the specified userData (stored in the Qt::UserRole). The item is appended to the list of existing items.

void QComboBox::addItem(const QIcon & icon, const QString & text, const QVariant & userData = QVariant())

Adds an item to the combobox with the given icon and text, and containing the specified userData (stored in the Qt::UserRole). The item is appended to the list of existing items.

void QComboBox::addItems(const QStringList & texts)

Adds each of the strings in the given texts to the combobox. Each item is appended to the list of existing items in turn.

[virtual protected] void QComboBox::changeEvent(QEvent * e)

Reimplemented from QWidget::changeEvent().

[slot] void QComboBox::clear()

Clears the combobox, removing all items.

Note: If you have set an external model on the combobox this model will still be cleared when calling this function.

[slot] void QComboBox::clearEditText()

Clears the contents of the line edit used for editing in the combobox.

QCompleter * QComboBox::completer() const

Returns the completer that is used to auto complete text input for the combobox.

This function was introduced in Qt 4.2.

See also setCompleter() and editable.

[virtual protected] void QComboBox::contextMenuEvent(QContextMenuEvent * e)

Reimplemented from QWidget::contextMenuEvent().

[signal] void QComboBox::editTextChanged(const QString & text)

This signal is emitted when the text in the combobox's line edit widget is changed. The new text is specified by text.

[virtual] bool QComboBox::event(QEvent * event)

Reimplemented from QObject::event().

int QComboBox::findData(const QVariant & data, int role = Qt::UserRole, Qt::MatchFlags flags = static_cast<Qt::MatchFlags> ( Qt::MatchExactly | Qt::MatchCaseSensitive )) const

Returns the index of the item containing the given data for the given role; otherwise returns -1.

The flags specify how the items in the combobox are searched.

int QComboBox::findText(const QString & text, Qt::MatchFlags flags = static_cast<Qt::MatchFlags> ( Qt::MatchExactly | Qt::MatchCaseSensitive )) const

Returns the index of the item containing the given text; otherwise returns -1.

The flags specify how the items in the combobox are searched.

[virtual protected] void QComboBox::focusInEvent(QFocusEvent * e)

Reimplemented from QWidget::focusInEvent().

[virtual protected] void QComboBox::focusOutEvent(QFocusEvent * e)

Reimplemented from QWidget::focusOutEvent().

[virtual protected] void QComboBox::hideEvent(QHideEvent * e)

Reimplemented from QWidget::hideEvent().

[virtual] void QComboBox::hidePopup()

Hides the list of items in the combobox if it is currently visible and resets the internal state, so that if the custom pop-up was shown inside the reimplemented showPopup(), then you also need to reimplement the hidePopup() function to hide your custom pop-up and call the base class implementation to reset the internal state whenever your custom pop-up widget is hidden.

See also showPopup().

[signal] void QComboBox::highlighted(int index)

This signal is sent when an item in the combobox popup list is highlighted by the user. The item's index is passed.

Note:Signal highlighted is overloaded in this class. To connect to this one using the function pointer syntax, you must specify the signal type in a static cast, as shown in this example:

connect(comboBox, static_cast<void(QComboBox::*)(int)>(&QComboBox::highlighted),
    [=](int index){ /* ... */ });

[signal] void QComboBox::highlighted(const QString & text)

This signal is sent when an item in the combobox popup list is highlighted by the user. The item's text is passed.

Note:Signal highlighted is overloaded in this class. To connect to this one using the function pointer syntax, you must specify the signal type in a static cast, as shown in this example:

connect(comboBox, static_cast<void(QComboBox::*)(const QString &)>(&QComboBox::highlighted),
    [=](const QString &text){ /* ... */ });

[protected] void QComboBox::initStyleOption(QStyleOptionComboBox * option) const

Initialize option with the values from this QComboBox. This method is useful for subclasses when they need a QStyleOptionComboBox, but don't want to fill in all the information themselves.

See also QStyleOption::initFrom().

[virtual protected] void QComboBox::inputMethodEvent(QInputMethodEvent * e)

Reimplemented from QWidget::inputMethodEvent().

[virtual protected] QVariant QComboBox::inputMethodQuery(Qt::InputMethodQuery query) const

Reimplemented from QWidget::inputMethodQuery().

void QComboBox::insertItem(int index, const QString & text, const QVariant & userData = QVariant())

Inserts the text and userData (stored in the Qt::UserRole) into the combobox at the given index.

If the index is equal to or higher than the total number of items, the new item is appended to the list of existing items. If the index is zero or negative, the new item is prepended to the list of existing items.

See also insertItems().

void QComboBox::insertItem(int index, const QIcon & icon, const QString & text, const QVariant & userData = QVariant())

Inserts the icon, text and userData (stored in the Qt::UserRole) into the combobox at the given index.

If the index is equal to or higher than the total number of items, the new item is appended to the list of existing items. If the index is zero or negative, the new item is prepended to the list of existing items.

See also insertItems().

void QComboBox::insertItems(int index, const QStringList & list)

Inserts the strings from the list into the combobox as separate items, starting at the index specified.

If the index is equal to or higher than the total number of items, the new items are appended to the list of existing items. If the index is zero or negative, the new items are prepended to the list of existing items.

See also insertItem().

void QComboBox::insertSeparator(int index)

Inserts a separator item into the combobox at the given index.

If the index is equal to or higher than the total number of items, the new item is appended to the list of existing items. If the index is zero or negative, the new item is prepended to the list of existing items.

This function was introduced in Qt 4.4.

See also insertItem().

QVariant QComboBox::itemData(int index, int role = Qt::UserRole) const

Returns the data for the given role in the given index in the combobox, or QVariant::Invalid if there is no data for this role.

See also setItemData().

QAbstractItemDelegate * QComboBox::itemDelegate() const

Returns the item delegate used by the popup list view.

See also setItemDelegate().

QIcon QComboBox::itemIcon(int index) const

Returns the icon for the given index in the combobox.

See also setItemIcon().

QString QComboBox::itemText(int index) const

Returns the text for the given index in the combobox.

See also setItemText().

[virtual protected] void QComboBox::keyPressEvent(QKeyEvent * e)

Reimplemented from QWidget::keyPressEvent().

[virtual protected] void QComboBox::keyReleaseEvent(QKeyEvent * e)

Reimplemented from QWidget::keyReleaseEvent().

QLineEdit * QComboBox::lineEdit() const

Returns the line edit used to edit items in the combobox, or 0 if there is no line edit.

Only editable combo boxes have a line edit.

See also setLineEdit().

[virtual] QSize QComboBox::minimumSizeHint() const

Reimplemented from QWidget::minimumSizeHint().

QAbstractItemModel * QComboBox::model() const

Returns the model used by the combobox.

See also setModel().

[virtual protected] void QComboBox::mousePressEvent(QMouseEvent * e)

Reimplemented from QWidget::mousePressEvent().

[virtual protected] void QComboBox::mouseReleaseEvent(QMouseEvent * e)

Reimplemented from QWidget::mouseReleaseEvent().

[virtual protected] void QComboBox::paintEvent(QPaintEvent * e)

Reimplemented from QWidget::paintEvent().

void QComboBox::removeItem(int index)

Removes the item at the given index from the combobox. This will update the current index if the index is removed.

This function does nothing if index is out of range.

[virtual protected] void QComboBox::resizeEvent(QResizeEvent * e)

Reimplemented from QWidget::resizeEvent().

QModelIndex QComboBox::rootModelIndex() const

Returns the root model item index for the items in the combobox.

See also setRootModelIndex().

void QComboBox::setCompleter(QCompleter * completer)

Sets the completer to use instead of the current completer. If completer is 0, auto completion is disabled.

By default, for an editable combo box, a QCompleter that performs case insensitive inline completion is automatically created.

This function was introduced in Qt 4.2.

See also completer().

[slot] void QComboBox::setEditText(const QString & text)

Sets the text in the combobox's text edit.

void QComboBox::setItemData(int index, const QVariant & value, int role = Qt::UserRole)

Sets the data role for the item on the given index in the combobox to the specified value.

See also itemData().

void QComboBox::setItemDelegate(QAbstractItemDelegate * delegate)

Sets the item delegate for the popup list view. The combobox takes ownership of the delegate.

Warning: You should not share the same instance of a delegate between comboboxes, widget mappers or views. Doing so can cause incorrect or unintuitive editing behavior since each view connected to a given delegate may receive the closeEditor() signal, and attempt to access, modify or close an editor that has already been closed.

See also itemDelegate().

void QComboBox::setItemIcon(int index, const QIcon & icon)

Sets the icon for the item on the given index in the combobox.

See also itemIcon().

void QComboBox::setItemText(int index, const QString & text)

Sets the text for the item on the given index in the combobox.

See also itemText().

void QComboBox::setLineEdit(QLineEdit * edit)

Sets the line edit to use instead of the current line edit widget.

The combo box takes ownership of the line edit.

See also lineEdit().

void QComboBox::setModel(QAbstractItemModel * model)

Sets the model to be model. model must not be 0. If you want to clear the contents of a model, call clear().

See also model() and clear().

void QComboBox::setRootModelIndex(const QModelIndex & index)

Sets the root model item index for the items in the combobox.

See also rootModelIndex().

void QComboBox::setValidator(const QValidator * validator)

Sets the validator to use instead of the current validator.

See also validator().

void QComboBox::setView(QAbstractItemView * itemView)

Sets the view to be used in the combobox popup to the given itemView. The combobox takes ownership of the view.

Note: If you want to use the convenience views (like QListWidget, QTableWidget or QTreeWidget), make sure to call setModel() on the combobox with the convenience widgets model before calling this function.

See also view().

[virtual protected] void QComboBox::showEvent(QShowEvent * e)

Reimplemented from QWidget::showEvent().

[virtual] void QComboBox::showPopup()

Displays the list of items in the combobox. If the list is empty then the no items will be shown.

If you reimplement this function to show a custom pop-up, make sure you call hidePopup() to reset the internal state.

See also hidePopup().

[virtual] QSize QComboBox::sizeHint() const

Reimplemented from QWidget::sizeHint().

This implementation caches the size hint to avoid resizing when the contents change dynamically. To invalidate the cached value change the sizeAdjustPolicy.

const QValidator * QComboBox::validator() const

Returns the validator that is used to constrain text input for the combobox.

See also setValidator() and editable.

QAbstractItemView * QComboBox::view() const

Returns the list view used for the combobox popup.

See also setView().

[virtual protected] void QComboBox::wheelEvent(QWheelEvent * e)

Reimplemented from QWidget::wheelEvent().

© 2016 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.