I want to have a simple column header with a checkbox that selects/ deselects all rows in a QTableView. Clicking the check box in the header causes either to select or deselect all rows.
When I want to add a check box in a table cell, I have to just return the check state for the Qt::CheckStateRole in the data(..) for the required model indices as below. This is working as expected.
QVariant MyModel::data( const QModelIndex & rIndex, int iRole) const
{
...
if (iRole == Qt::Qt::CheckStateRole)
{
return checkstate;
}
}
But when I want to add a checkbox in a header cell, the above method is not working. Hear is my sample code.
QVariant MyModel::headerData( int iSection, Qt::Orientation eOrientation, int iRole) const
{
...
if (iRole == Qt::CheckStateRole)
{
return checkstate;
}
}
The QTableView does not call headerData() function in my model with the Qt::CheckStateRole, as it does with data() function.
Why is this behavior? How can I insert a check box in a header cell by only modifying my custom table model?
(I do not want to create a custom QTableView or QHeaderView for this purpose)
See Question&Answers more detail:os