Search code examples
c++qtqt5qtableviewqitemdelegate

How to locate the row number of my button in QTableview in Qt


I have a function that adds a QStyleOptionButton to certain column in QTableview, I want to be able to get the row number of each of the button when clicked and store the value in a variable.

This is my code delegate.cpp

MyDelegate::MyDelegate(QObject *parent)
     : QItemDelegate(parent)
 {

 }


 void MyDelegate::paint(QPainter *painter, const QStyleOptionViewItem &option, const QModelIndex &index) const
 {
     QStyleOptionButton button;
     QRect r = option.rect;//getting the rect of the cell
     int x,y,w,h;
     x = r.left() + r.width() - 30;//the X coordinate
     y = r.top();//the Y coordinate
     w = 30;//button width
     h = 30;//button height
     button.rect = QRect(x,y,w,h);
     button.text = "View log";
     button.state = QStyle::State_Enabled;

     QApplication::style()->drawControl( QStyle::CE_PushButton, &button, painter);
 }

 bool MyDelegate::editorEvent(QEvent *event, QAbstractItemModel *model, const QStyleOptionViewItem &option, const QModelIndex &index)
 {
     if( event->type() == QEvent::MouseButtonRelease )
     {
         QMouseEvent * e = (QMouseEvent *)event;
         int clickX = e->x();
         int clickY = e->y();

         QRect r = option.rect;//getting the rect of the cell
         int x,y,w,h;
         x = r.left() + r.width() - 30;//the X coordinate
         y = r.top();//the Y coordinate
         w = 30;//button width
         h = 30;//button height

         if( clickX > x && clickX < x + w )
             if( clickY > y && clickY < y + h )
             {
                // int row=tableview->rowAt(pos.y());
                 // int column=tableview->columnAt(pos.x());

                 QDialog * d = new QDialog();
                 d->setGeometry(0,0,100,100);
                // QTextBrowser *txt = new QTextBrowser(row, column);
                 d->show();
             }
     }

     return true;
 }

Solution

  • You have to use the QModelIndex:

    bool MyDelegate::editorEvent(QEvent *event, QAbstractItemModel *model, const QStyleOptionViewItem &option, const QModelIndex &index)
    {
        Q_UNUSED(model)
        if( event->type() == QEvent::MouseButtonRelease )
        {
            QMouseEvent * e = (QMouseEvent *)event;
            QPoint p = e->pos();
    
            QRect r = option.rect;//getting the rect of the cell
            QRect re(r.topRight() - QPoint(30, 0), QSize(30, 30));
    
            if(re.contains(p)){
                int row = index.row(); // <---- row
                int column = index.column(); // <---- column
    
                QDialog * d = new QDialog();
                d->setGeometry(0,0,100,100);
                d->show();
             }
        }
        return true;
    }