我有一个QTableView
和一个QSortFilterProxyModel
,其中QStandardItemModel
为sourcemodel。我非常绝望,因为我得到了以下代码的无效QModelIndex
。无效意味着索引的列和行为-1,当我想获取indexWidget时,我将null作为小部件。
我真的不知道QModelIndex中的行和列实际上会发生什么。
QStandardItemModel* model = static_cast<QStandardItemModel*> (proxyModel.sourceModel());
QModelIndex index = model->horizontalHeaderItem (0)->index ();
我实际上想要从headerView访问各个小部件。
答案 0 :(得分:0)
试试这个方法
connect(m_adminTable, SIGNAL(doubleClicked(QModelIndex)), this, SLOT(onTableDoubleClickedSlot(QModelIndex)));
后
void UsersTableWidget::onTableDoubleClickedSlot(const QModelIndex& modelIndex)
{
QModelIndex sourceModelIndex = m_adminModelProxy->mapToSource(modelIndex);
m_currentUserID = m_adminModel->data(sourceModelIndex, Qt::UserRole).toInt(nullptr);//patientIDs.at(row);;
emit onUserSelectionChanged(m_currentUserID);
}
QVariant AdminModel::data(const QModelIndex &index, int role) const
{
if (!index.isValid())
return QVariant();
if (index.row() >= m_users.size() || index.row() < 0)
return QVariant();
if (role == Qt::DisplayRole) {
RowType row = m_users.at(index.row());
return row.getColumnValue(index.column());
} else if(role == Qt::UserRole) {
return m_users.at(index.row()).getId();
}
if (role == Qt::TextAlignmentRole)
return Qt::AlignCenter;
return QVariant();
}