Top "Qitemdelegate" questions

QItemDelegate is a Qt class which provides display and editing facilities for data items from a model.

QListView/QListWidget with custom items and custom item widgets

I'm writing a PyQt application and am having some trouble creating a custom list view. I'd like the list to …

qt pyqt qitemdelegate qlistview qlistwidget
Qt Using Custom QItemDelegate for QTableView

I followed the Spin Box Delegate tutorial, which Qt provides, to try to implement my own QItemDelegate. It would be …

c++ qt qtableview qcombobox qitemdelegate
A ListView of checkboxes in PyQt

I want to display a QListView where each item is a checkbox with some label. The checkboxes should be visible …

python qt pyqt qitemdelegate qlistview
Qt - QTableView - Clickable button in table row

I require a button/link within a table row of a QTableView. This is to open a dialog to allow …

c++ qt qtableview qitemdelegate
Changing QCheckBox indicator rectangle color

I'm trying to change only the color of QCheckBox indicator rectangle. Currently I succeed to draw the right and the …

qt qitemdelegate qcheckbox
QListWidget or QListView with QItemDelegate?

Let's say I need to display a list of items. Each item contains a QPushButton an image and some text. …

qt qlistview qitemdelegate qlistwidget
checkbox and itemdelegate in a tableview

I'm doing an implementation of a CheckBox that inherits from QitemDelegate, to put it into a QTableView. the problem is …

qt qtableview qitemdelegate qcheckbox
Show other data in QTableView with QItemDelegate

I have a QTableView connected with an QSqlTableModel. In the first column, there are only dates at this format: 2010-01…

c++ qt qt4 qtableview qitemdelegate
How do I tell Qt to always show an editor in a QTableView?

I've got a QTableView for which I want to display the last column always in edit mode. (It's a QComboBox …

qt qtableview qitemdelegate