Inheritance diagram for DzComboBox:
Properties | |
Number | count |
Number | currentItem |
String | currentText |
void | clear () |
void | insertItem (String text) |
void | removeItem (Number index) |
String | text (Number index) |
Constructors | |
DzComboBox (DzWidget parent) | |
Signals | |
void | activated (String string) |
Signature: "activated(const QString&)" | |
void | activated (Number index) |
Signature: "activated(int)" | |
void | highlighted (String string) |
Signature: "highlighted(const QString&)" | |
void | highlighted (Number index) |
Signature: "highlighted(int)" | |
void | textChanged (String string) |
Signature: "textChanged(const QString &)" |
DzComboBox::DzComboBox | ( | DzWidget | parent | ) |
Creates combo box with the given parent widget
void DzComboBox::activated | ( | String | string | ) | [signal] |
Signature: "activated(const QString&)"
Emitted when an item is selected, passes the text of the item that was activated.
void DzComboBox::activated | ( | Number | index | ) | [signal] |
Signature: "activated(int)"
Emitted when an item is selected, passes the index of the item that was activated.
void DzComboBox::clear | ( | ) |
Removes all items from the combo box.
void DzComboBox::highlighted | ( | String | string | ) | [signal] |
Signature: "highlighted(const QString&)"
Emitted when the highlighted item changes, passes the text of the item that is highlighted.
void DzComboBox::highlighted | ( | Number | index | ) | [signal] |
Signature: "highlighted(int)"
Emitted when the highlighted item changes, passes the index of the item that is highlighted.
void DzComboBox::insertItem | ( | String | text | ) |
Adds the given item to the list of items in the combo box.
void DzComboBox::removeItem | ( | Number | index | ) |
Removes the given item from the list of items in the combo box.
void DzComboBox::textChanged | ( | String | string | ) | [signal] |
Signature: "textChanged(const QString &)"
Emitted when the text of the box changes, passes the new text of the box.
Holds the number of items in the combo box. (Read Only)
Holds the index of the currently selected item in the combo box.
QString DzComboBox::currentText |
Holds the text of the currently selected item in the combo box.