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.

Selecting QComboBox in QTableWidget

One cell in each row of a QTableWidget contains a combobox for (each row in table ... ) { QComboBox* combo = new QComboBox(); …

c++ qt qt4 qtablewidget qcombobox
PyQt (or just QT). How to get QComboBox to fire a signal whenever it is set to a value (even if unchanged)

I am using PyQt4, but this is general enough that it could just apply to QT. I have a series …

qt pyqt signals qcombobox
How to set the default item of a QComboBox

In my function I have dictionary with empty values: self.items = { 'Maya Executable': '', 'Render': '', 'Mayapy Interpreter': '', 'imgcvt': …

python pyqt4 indexing qcombobox
QComboBox style for choosen item in drop-down list

I want to style the highlighting of chosen item in drop-down of combobox. The difference to other questions is that …

qt qcombobox qtstylesheets
How to add a string to QCombobox

Normally I would add items to a QCombobox by saying: QCombobox cbb; cbb.addItem("Hello"); But if I try this …

qt qcombobox
QComboBox drop-down list - set selected item style

Is it possible to set selected item style (Qt style sheet) of the QComboBox drop-down list?

qt qcombobox
PyQT5 QComboBox - get value of combobox

I am still very new to Qt but I am developing a type of calculator and want to use a …

python pyqt5 qcombobox
QComboBox click event

I have been trying to get a QComboBox in PyQt5 to become populated from a database table. The problem is …

python events drop-down-menu pyqt5 qcombobox
QComboBox connect

I need to call a function with currentIndex+1 when the currentIndex of a QComboBox changes. I'm struggling with the syntax …

qt qcombobox slot
PyQt: How to set Combobox Items be Checkable?

To keep the GUI widgets number to minimum I need to find a way to give to user a choice …

python qt pyqt qcombobox