Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
3answers
10k views

QListView/QListWidget with custom items

I'm writing my first Qt application with PyQt and am having some trouble creating a custom list view. I'd like the list to contain arbitrary widgets (one custom widget in particular). How would I go ...
6
votes
2answers
2k views

Model - View - Controler in Qt

I understand more or less how does MPV works. But I don't get what classes: QAbstractItemModel QAbstractItemView QAbstractItemDelegate / QItemDelegate Can do for me? If that is relevant, I'm using ...
4
votes
2answers
2k views

Qt - QTableView - Clickable button in table row

I require the ability to have a button/link within a table row of a QTableView. This is to open a dialog to allow that row to be edited more efficiently. After hours of looking on the web I am yet to ...
3
votes
1answer
393 views

Qt QTableView draw border around active cells

I'm trying to implement behavior similar Excel in a QTableView, where a border is painted around the entire current selection. I have tried this what feels like a hundred different ways and keep ...
3
votes
1answer
1k views

Use QItemDelegate to show image thumbnails

What's the best way to use QT4's QItemDelegate to show thumbnails for images in a view? Specifically, how do you stop the item delegate from blocking when generating pixmaps from very large image ...
2
votes
2answers
3k views

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-02 I want this column to show the date at this format (but without changing the ...
2
votes
1answer
341 views

Should I use Delegate Classes if I want items to be edited using a dialog in Qt?

All examples in Qt show that one should use delegate classes to provide editors that reside within QTreeView (QListView, etc). I want to have a separate non-modal dialog to edit item's attributes. ...
2
votes
2answers
4k views

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 at all times. One way I can think of is using a custom delegate and QAbstractListModel. ...
1
vote
1answer
321 views

custom delegate doesn't follow when reordering QTableView

I'm using a custom delegate to display a column of comboBoxes in my QTableView. In addition to the default selection issue (enter link description here) I have a problem when I reorder the data of my ...
1
vote
1answer
770 views

selected item of comboBox in custom Delegate from QTableView

I use a custom delegate to display a column of comboBoxes in my QTableView. The values are the same for all the comboBoxes so it's not really the population part that gives me trouble. I want them ...
1
vote
2answers
250 views

How to create Symbian style list views in Qt

I've never done any item delegates in Qt before, and I think the documentation doesn't explain well about more complex delegates. I need to create 2 styles of Symbian(^3) style lists Type 1: This ...
1
vote
1answer
215 views

'C++ object destroyed' in QComboBox descendant editor in delegate

all! I have modified combobox to hold colors, using QtColorCombo (http://qt.nokia.com/products/appdev/add-on-products/catalog/4/Widgets/qtcolorcombobox) as howto for the 'more...' button ...
1
vote
1answer
193 views

How do I determine if the item is selected or not in the paint() function of QItemDelegate?

I am making a table using QItemDelegate. I use the paint(..) method to draw delegated items to look the same when they go out of edit mode but I also need to draw the items differently when they are ...
1
vote
2answers
873 views

Mystery: In Qt, why would editorEvent be called, but not createEditor?

I'm subclassing QAbstractItemDelegate. This is my code. Suggestions are welcome: QWidget *ParmDelegate::createWidget(Parm *p, const QModelIndex &index) const { QWidget *w; if ...
1
vote
4answers
3k views

How to make QCombobox painting item delegate for it's current Item? (Qt 4)

QCombobox set Item delegate not painting for current Item.. I am trying to create a combo box showing different line types (Solid, Dotted, Dash etc). Currently i am setting item delegate for its ...
0
votes
1answer
45 views

How to get QTreeView cell width inside QItemDelegate sizeHint()?

I have a custom QItemDelegate drawing text within a QTreeView. In paint(), I get the size of the cell from the style. I then draw the text, with wordwrap, using the current cell's width. In ...
0
votes
2answers
276 views

Using QItemDelegate with QAbstractTableModel

I have a QAbstractItemModel and a QItemDelegate and here is my problem. The Delegate does nothing. Its subroutines are being called but nothing happens. Here is what I would like to see in my table. ...
0
votes
2answers
757 views

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. WHen a user clicks on the button something should happen ( ie I need to get the signal ). What is ...
0
votes
0answers
421 views

QTableView with comboBox

I want my QTableView to have a column of comboBoxes. After a lot of try-outs, I've reached my goal : display the comboBoxes. Now my problem is that they won't keep the selected item displayed. I use ...
0
votes
2answers
244 views

QAbstractItemDelegate painting while dragging problem

I'm overloading the paint() function in QAbstractItemDelegate (my own Item delegate class). When dragging, it paints the contents of the entire cell, which I don't want. I'm assuming that the ...
0
votes
1answer
419 views

Qt: Checkbox & QItemDelegate- not painting checkbox when selection occurs

I am using a QItemDelegate combined with the QTableView's IsUserCheckable flag to draw a centered checkbox column. All has been working fine until I have enabled row selection for the table. When ...
0
votes
2answers
158 views

Call QFileDialog when trying to edit cell in QTableView

Is there a way of doing this without using a QItemDelegate? I've been having a lot of trouble with it. For example, if I use a Delegate: 1) Won't have a native dialog. 2) I'll have to implement my ...
0
votes
2answers
562 views

Formatting data in a QTableView

I'm using a custom delegate to display QDoubleSpinBoxes in a QTableView. Those spinboxes display their contents with two decimals. My problem is that I would like the QTableView to also display ...
0
votes
2answers
2k views

HowTo combine QAbstractTableModel and QItemDelegate to one working source?

I have a QTableView defines in UI file. Here is the figure: I'd like to make month change (where the red array points) with QComboBox widget, dealing with delegates, but for me, for my custom ...
0
votes
0answers
1k views

PyQt4 and QTableView with spinbox and checkbox

I have a QTableView with QSqlTableModel and with 3 columns, now I need to have: - second column: spinbox after clicked to edit - third column: checkbox (displayed center) My code: class ...
0
votes
1answer
1k views

How does one paint the entire row's background in a QStyledItemDelegate?

I have a QTableView which I am setting a custom QStyledItemDelegate on. In addition to the custom item painting, I want to style the row's background color for the selection/hovered states. The look ...
0
votes
2answers
1k views

PyQt QTreeWidget problem with custom delegate

All! I'm trying to write simple property editor. I have automatically generated pyqt class (WorkZone in the code below), and I need to view/edit some of it's properties with PropertyEditor, with the ...
0
votes
6answers
2k views

What is the best way to make a QTableView's cells have up and down button pushed states in Qt?

I'm trying to make the cells of a QTableView look like 3D clickable buttons. So that when you click on a cell, the button looks pushed. Everyone seems to think I merely want to change the colour, I ...
0
votes
4answers
1k views

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 where the user should be able to always change the value.) I think I've seen the solution in ...