Top "Qcombobox" questions

QComboBox is a Qt class that implements a standard combo-box, which is a list of elements that can contract to occupy less screen space, and expand to show all of the options.

Setting style in using QStyleFactory from a list of styles in a QComboBox

I've been implementing an application using PyQt4. In this application I want to set the style according to the user's …

python pyqt4 qcombobox qstyle
Show tooltip when the user selects item in QComboBox

I want to show the tooltip with the text and the time when user selects the item in list view (…

qt qcombobox
How to make QComboBox popup upwards?

my QComboBox-derived class lives in a QGraphicsScene at the bottom end of the (visible) screen - but it pops up …

qt popup stylesheet qcombobox
QComboBox - Select no entry

I have a QComboBox on my ui and set the model like this: QStringListModel* model = new QStringListModel; QStringList stringlist; stringlist &…

qt qcombobox
How to catch QComboBox popup close event

A am using QComboBox derived class to show my items. My combo box is read only. But how can I …

qt popup qcombobox