Qt logo

QComboBox Class Reference


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

#include <qcombobox.h>

Inherits QWidget.

List of all member functions.

Public Members

Public Slots

Signals

Protected Members


Detailed Description

The QComboBox widget is a combined button and popup list.

A combo box may be defined as a selection widget which displays the current selection, and which can pop up a list of possible selections. Some combo boxes also allow the user to select arbitrary strings, using a line editor.

Since combo boxes occupy little screen space and always display the current selection, they are very well suited to displaying and selecting modes (such as font family and size): The user can always see what mode he/she is in, and the majority of the screen space is available for real work.

QComboBox supports three different appearances: Motif 1.x, Motif 2.0 and Windows 95. In Motif 1.x, a combo box was called XmOptionMenu. In Motif 2.0, OSF introduced an improved combo box and named that XmComboBox. QComboBox provides both.

QComboBox provides two different constructors. The simplest one creates an old-style combo box in Motif style:

      QComboBox * c = new QCombBox( this, "read-only combo" );

The other one creates a new-style combo box in Motif style, and can create both read-only and read-write combo boxes:

      QComboBox * c1 = new QCombBox( FALSE, this, "read-only combo" );
      QComboBox * c2 = new QCombBox( TRUE, this, "read-write combo" );

New-style combo boxes use a list box in both Motif and Windows styles, and both the content size and the on-screen size of the list box can be limited. Old-style combo boxes use a popup in Motif style, and that popup will happily grow larger than the desktop if you put enough data in it.

The two constructors create identical-looking combos in Windows style.

Read-only combo boxes can contain pixmaps as well as texts; the insert() and changeItem() functions are suitably overloaded. If you try to insert a pixmap in a read-write combo box, QComboBox simply ignores you. For read-write combo boxes, the function clearEdit() is provided, to clear the displayed string without changing the combo box' contents.

A combo box emits two signals, activated() and highlighted(), when a new item has been activated (selected) or highlighted (set to current). Both signals exist in two versions, one with a char* argument and one with an int argument. If the user highlights or activates a pixmap, only the int signals are emitted.

Read-write combo boxes offer four policies for dealing with typed input:

If inserting the typed string would cause the combo box to breach its content size limit, the item at the other end of the list is deleted. The default insertion policy is AtBottom, you can change it using setInsertionPolicy().

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

A combo box has a default focusPolicy() of TabFocus, i.e. it will not grab focus if clicked. This differs from both Windows and Motif.

(Motif 1, read-only)
(Motif 2, read-write)
(Motif 2, read-only)
(Windows style)

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

Examples: tictac/tictac.cpp qmag/qmag.cpp widgets/widgets.cpp


Member Function Documentation

QComboBox::QComboBox ( QWidget * parent=0, const char * name=0 )

Constructs a combo box widget with a parent and a name.

This constructor creates a popup menu if the program uses Motif look and feel; this is compatible with Motif 1.x.

QComboBox::QComboBox ( bool rw, QWidget * parent=0, const char * name=0 )

Constructs a combo box with a maximum size and either Motif 2.0 or Windows look and feel.

The input field can be edited if rw is TRUE, otherwise the user may only choose one of the items in the combo box.

QComboBox::~QComboBox ()

Destroys the combo box.

void QComboBox::activated ( const char * string ) [signal]

This signal is emitted when a new item has been activated (selected). string is the activated string.

You can also use activated(int) signal, but be aware that its argument meaningful only for selected strings, not for typed strings.

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

This signal is emitted when a new item has been activated (selected). The index is the position of the item in the popup list.

bool QComboBox::autoCompletion () const

Returns TRUE if this combo box is in auto-completion mode.

See also: setAutoCompletion().

bool QComboBox::autoResize () const

Returns TRUE if auto-resizing is enabled, or FALSE if auto-resizing is disabled.

Auto-resizing is disabled by default.

See also: setAutoResize().

void QComboBox::changeItem ( const QPixmap & im, int index )

Replaces the item at position index with a pixmap, unless the combo box is writable.

See also: insertItem().

void QComboBox::changeItem ( const char * t, int index )

Replaces the item at position index with a text.

void QComboBox::clear ()

Removes all combo box items.

void QComboBox::clearEdit () [slot]

Clears the line edit without changing the combo's contents. Does nothing if the combo isn't editable.

This is particularly handy when using a combo box as a line edit with history. For example you can connect the combo's activated() signal to clearEdit() in order to present the user with a new, empty line as soon as return is pressed.

See also: setEditText().

void QComboBox::clearValidator () [slot]

This slot is equivalent to setValidator( 0 ).

int QComboBox::count () const

Returns the number of items in the combo box.

int QComboBox::currentItem () const

Returns the index of the current combo box item.

See also: setCurrentItem().

const char * QComboBox::currentText () const

Returns the text item being edited, or the current text item if the combo box is not editable.

See also: text().

bool QComboBox::eventFilter ( QObject * object, QEvent * event ) [virtual]

This event filter is used to manipulate the line editor in magic ways. In Qt 2.0 it will all change, until then binary compatibility lays down the law.

The event filter steals events from the popup or listbox when they are popped up. It makes the popup stay up after a short click in motif style. In windows style it toggles the arrow button of the combo box field, and activates an item and takes down the listbox when the mouse button is released.

Reimplemented from QObject.

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

Handles focus in events.

Reimplemented from QWidget.

void QComboBox::highlighted ( const char * string ) [signal]

This signal is emitted when a new item has been highlighted. string is the highlighted string.

You can also use highlighted(int) signal.

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

This signal is emitted when a new item has been set to current. The index is the position of the item in the popup list.

void QComboBox::insertItem ( const QPixmap & pixmap, int index=-1 )

Inserts a pixmap item at position index. The item will be appended if index is negative.

If the combo box is writable, the pixmap is not inserted.

void QComboBox::insertItem ( const char * t, int index=-1 )

Inserts a text item at position index. The item will be appended if index is negative.

Examples: widgets/widgets.cpp

void QComboBox::insertStrList ( const QStrList * list, int index=-1 )

Inserts the list of strings at the index index in the combo box.

Examples: qmag/qmag.cpp

void QComboBox::insertStrList ( const char ** strings, int numStrings=-1, int index=-1 )

Inserts the array of strings at the index index in the combo box.

The numStrings argument is the number of strings. If numStrings is -1 (default), the strs array must be terminated with 0.

Example:

    static const char *items[] = { "red", "green", "blue", 0 };
    combo->insertStrList( items );

QComboBox::Policy QComboBox::insertionPolicy() const

Returns the current insertion policy of the combo box.

See also: setPolicy().

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

Handles key press events for the combo box.

In Motif style, up and down change the selected item and both enter and return pops up the list. In Windows style, all four arrow keys change the selected item, and Space pops up the list.

Reimplemented from QWidget.

QListBox * QComboBox::listBox () const

Returns the current list box, or 0 if there is no list box currently. (QComboBox can use QPopupMenu instead of QListBox.) Provided to match setListBox().

See also: setListBox().

int QComboBox::maxCount () const

Returns the current maximum size of the combo box. By default, there is no limit, so this function returns INT_MAX.

See also: setMaxCount() and count().

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

Handles mouse double click events for the combo box.

Reimplemented from QWidget.

void QComboBox::mouseMoveEvent ( QMouseEvent * ) [virtual protected]

Handles mouse move events for the combo box.

Reimplemented from QWidget.

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

Handles mouse press events for the combo box.

Reimplemented from QWidget.

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

Handles mouse release events for the combo box.

Reimplemented from QWidget.

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

Handles paint events for the combo box.

Reimplemented from QWidget.

const QPixmap * QComboBox::pixmap ( int index ) const

Returns the pixmap item at a given index, or 0 if the item is not a pixmap.

void QComboBox::popup () [protected]

Popups the combo box popup list. If the list is empty, inserts a single, empty, string.

void QComboBox::removeItem ( int index )

Removes the item at position indexan class="fn">bool autoCompletion () const

  • virtual bool eventFilter ( QObject * object, QEvent * event ) 

    Public Slots

    Signals

    Protected Members


    Detailed Description

    The QComboBox widget is a combined button and popup list.

    A combo box may be defined as a selection widget which displays the current selection, and which can pop up a list of possible selections. Some combo boxes also allow the user to select arbitrary strings, using a line editor.

    Since combo boxes occupy little screen space and always display the current selection, they are very well suited to displaying and selecting modes (such as font family and size): The user can always see what mode he/she is in, and the majority of the screen space is available for real work.

    QComboBox supports three different appearances: Motif 1.x, Motif 2.0 and Windows 95. In Motif 1.x, a combo box was called XmOptionMenu. In Motif 2.0, OSF introduced an improved combo box and named that XmComboBox. QComboBox provides both.

    QComboBox provides two different constructors. The simplest one creates an old-style combo box in Motif style:

          QComboBox * c = new QCombBox( this, "read-only combo" );
    

    The other one creates a new-style combo box in Motif style, and can create both read-only and read-write combo boxes:

          QComboBox * c1 = new QCombBox( FALSE, this, "read-only combo" );
          QComboBox * c2 = new QCombBox( TRUE, this, "read-write combo" );
    

    New-style combo boxes use a list box in both Motif and Windows styles, and both the content size and the on-screen size of the list box can be limited. Old-style combo boxes use a popup in Motif style, and that popup will happily grow larger than the desktop if you put enough data in it.

    The two constructors create identical-looking combos in Windows style.

    Read-only combo boxes can contain pixmaps as well as texts; the insert() and changeItem() functions are suitably overloaded. If you try to insert a pixmap in a read-write combo box, QComboBox simply ignores you. For read-write combo boxes, the function clearEdit() is provided, to clear the displayed string without changing the combo box' contents.

    A combo box emits two signals, activated() and highlighted(), when a new item has been activated (selected) or highlighted (set to current). Both signals exist in two versions, one with a char* argument and one with an int argument. If the user highlights or activates a pixmap, only the int signals are emitted.

    Read-write combo boxes offer four policies for dealing with typed input:

    If inserting the typed string would cause the combo box to breach its content size limit, the item at the other end of the list is deleted. The default insertion policy is AtBottom, you can change it using setInsertionPolicy().

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

    A combo box has a default focusPolicy() of TabFocus, i.e. it will not grab focus if clicked. This differs from both Windows and Motif.

    (Motif 1, read-only)
    (Motif 2, read-write)
    (Motif 2, read-only)
    (Windows style)

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

    Examples: tictac/tictac.cpp qmag/qmag.cpp widgets/widgets.cpp


    Member Function Documentation

    QComboBox::QComboBox ( QWidget * parent=0, const char * name=0 )

    Constructs a combo box widget with a parent and a name.

    This constructor creates a popup menu if the program uses Motif look and feel; this is compatible with Motif 1.x.

    QComboBox::QComboBox ( bool rw, QWidget * parent=0, const char * name=0 )

    Constructs a combo box with a maximum size and either Motif 2.0 or Windows look and feel.

    The input field can be edited if rw is TRUE, otherwise the user may only choose one of the items in the combo box.

    QComboBox::~QComboBox ()

    Destroys the combo box.

    void QComboBox::activated ( const char * string ) [signal]

    This signal is emitted when a new item has been activated (selected). string is the activated string.

    You can also use activated(int) signal, but be aware that its argument meaningful only for selected strings, not for typed strings.

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

    This signal is emitted when a new item has been activated (selected). The index is the position of the item in the popup list.

    bool QComboBox::autoCompletion () const

    Returns TRUE if this c