4

I am implementing QAbstractTableModel and I would like to insert a QPushButton in the last column of each row. When users click on this button, a new window is shown with more information about this row.

Do you have any idea how to insert the button? I know about delegating system but all examples are only about "how to edit color with the combo box"...

RAM
  • 2,257
  • 2
  • 19
  • 41
izidor
  • 4,068
  • 5
  • 33
  • 43

3 Answers3

10

You can use

QPushButton* viewButton = new QPushButton("View");    
tableView->setIndexWidget(model->index(counter,2), viewButton);
Jens A. Koch
  • 39,862
  • 13
  • 113
  • 141
PDH
  • 381
  • 1
  • 4
  • 13
4

The model-view architecture isn't made to insert widgets into different cells, but you can draw the push button within the cell.

The differences are:

  1. It will only be a drawing of a pushbutton
  2. Without extra work (perhaps quite a bit of extra work) the button won't be highlighted on mouseover
  3. In consequence of #1 above, you can't use signals and slots

That said, here's how to do it:

Subclass QAbstractItemDelegate (or QStyledItemDelegate) and implement the paint() method. To draw the pushbutton control (or any other control for that matter) you'll need to use a style or the QStylePainter::drawControl() method:

class PushButtonDelegate : public QAbstractItemDelegate
{
    // TODO: handle public, private, etc.
    QAbstractItemView *view;

    public PushButtonDelegate(QAbstractItemView* view)
    {
        this->view = view;
    }

    void PushButtonDelegate::paint(
        QPainter* painter,
        const QStyleOptionViewItem & option,
        const QModelIndex & index
        ) const 
    {
        // assuming this delegate is only registered for the correct column/row
        QStylePainter stylePainter(view);
        // OR: stylePainter(painter->device)

        stylePainter->drawControl(QStyle::CE_PushButton, option);
        // OR: view->style()->drawControl(QStyle::CE_PushButton, option, painter, view);
        // OR: QApplication::style()->drawControl(/* params as above */);
    }
}

Since the delegate keeps you within the model-view realm, use the views signals about selection and edits to popup your information window.

Kaleb Pederson
  • 45,767
  • 19
  • 102
  • 147
  • Voted this up but wanted to add: You could get the button to actually be a button rather than a drawing of a button, but it's probably not worth it because of the overhead. You'd have to create a custom editor and have the cell go into edit mode on mouse over. – Brian Roach May 04 '10 at 21:05
  • Interesting thought. It may be possible but I'm not sure exactly how I would implement that. The `setEditorData()` calls happen in the bowels of `QAbstractItemView` so it looks like it would be a LOT of work, assuming it's possible. On a related note, it's actually fairly easy to hook into the hover and do a repaint to show a visible hint. – Kaleb Pederson May 04 '10 at 22:53
  • What will change in your code if one would want to draw a widget, instead of just a button? What does that `QStyle::CE_PushButton` do? – The Quantum Physicist Jun 03 '17 at 08:26
0

You can use setCellWidget(row,column,QWidget*) to set a widget in a specific cell.

Jens A. Koch
  • 39,862
  • 13
  • 113
  • 141
David Menard
  • 2,261
  • 3
  • 43
  • 67