我需要选择几个QTableWidgetItem
个对象。我怎么能在我的程序中做到这一点?如果我需要做我自己的模型视图,或者我可以在简单的QTableWidget
对象中做到这一点?怎么样?
这是我的代码(不工作)
int col = current->column();
int row = current->row();
int spancols = current->data(TableItem::SpannedCols).toUInt();
for (int ic = col; ic < spancols; ++ic)
{
for (int ir = row; ir < rowCount() - 1; ++ir)
{
QModelIndex index = model()->index(ir, ic);
selectionModel()->select(index, QItemSelectionModel::Select);
}
}