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.

How to use Model for QCombobox

I want to use QCombobox as a the Combobox of Swing in Java. So i need to use Model for …

c++ qt qt4 qcombobox qabstractitemmodel
Qt, How do I change the text color of one item of a QComboBox? (C++)

I cannot figure out how to change the text color of one particular item of a QComboBox. I was able …

c++ qt colors qcombobox
remove items from QComboBox from ui

I am trying to tweak the ui of a QComboBox in a way that the user can remove items from …

qt pyqt qcombobox
PyQt: How to customize QComboBox item appearance

Is it possible to create a combo-box item first, then set its display properties (such as background-color, icon, font-color, font-size, …

python qt pyqt qcombobox
Separate user interaction from programmical change: PyQt, QComboBox

I have several QComboBoxes in my PyQt4/Python3 GUI and they are filled with some entries from a database during …

python-3.x pyqt pyqt4 signals-slots qcombobox
How can I add item data to QComboBox from Qt Designer/.ui file

I'm using Qt Designer (well, Qt Creator actually, but specifically the part derived from Qt Designer), and I've added a …

qt designer qt-designer qcombobox
How do I Filter the PyQt QCombobox Items based on the text input?

I need a QCombox which Items are filtered based on the text input. If I set the QCombobox editable, the …

python qt pyqt qcombobox
QCompleter Custom Completion Rules

I'm using Qt4.6 and I have a QComboBox with a QCompleter in it. The usual functionality is to provide completion …

qt qt4 qt4.6 qcombobox qcompleter
Qt How to disable mouse scrolling of QComboBox?

I have some embedded QComboBox in a QTableView. To make them show by default I made those indexes "persistent editor". …

qt scroll mouse qcombobox
How to set non-selectable default text on QComboBox?

Using a regular QComboBox populated with items, if currentIndex is set to -1, the widget is empty. It would be …

c++ qt qcombobox