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 n
QAbstractTableModel
QPushButton
You can use setCellWidget(row,column,QWidget*) to set a widget in a specific cell.
setCellWidget(row,column,QWidget*)