我已经实现了自己的基于QAbstractListModel
的std::vector
。现在,我想以QGraphicsScene
显示此模型的内容。为此,我实现了自己的QGraphicsItem
,将QPersistentModelIndex
存储为指向数据的指针。
我已经实现了removeRows
方法,如下所示:
bool VectorModel::removeRows(int row, int count, const QModelIndex& parent) {
if (row + count < _vector.size()) {
beginRemoveRows(QModelIndex(), row, row + count);
_vector.erase(_vector.begin() + row, _vector.begin() + row + count);
endRemoveRows();
return true;
}
return false;
}
现在,由于我删除了某些元素,因此以下元素的索引将更改。因此,需要调整
QPersistentModelIndex
。我在
changePersistentIndex()
中找到了QAbstractItemModel
方法,并且我知道我可以使用persistentIndexList()
获得所有持久索引。但是我不知道如何使用这种方法来相应地调整指标。如何才能做到这一点?更改这些索引是否足以防止
Invalid index
错误?更新
我使用@Sebastian Lange的增强功能更改了
removeRows()
,但是它仍无法按预期工作,并且我收到Invalid index
错误:bool LabelModel::removeRows(int row, int count, const QModelIndex& parent) {
Q_UNUSED(parent)
if (row + count < _vector.size()) {
beginRemoveRows(QModelIndex(), row, row + count);
_vector.erase(_vector.begin() + row, _vector.begin() + row + count);
endRemoveRows();
auto pil = persistentIndexList();
for(int i = 0; i < pil.size(); ++i)
{
if (i >= row + count) {
changePersistentIndex(pil[i], pil[i-count]);
}
}
return true;
}
return false;
}
发出的错误如下所示(删除第7个元素时):
QAbstractItemModel::endRemoveRows: Invalid index ( 7 , 1 ) in model QAbstractListModel(0x101559320)
QAbstractItemModel::endRemoveRows: Invalid index ( 8 , 1 ) in model QAbstractListModel(0x101559320)
QAbstractItemModel::endRemoveRows: Invalid index ( 9 , 1 ) in model QAbstractListModel(0x101559320)
QAbstractItemModel::endRemoveRows: Invalid index ( 10 , 1 ) in model QAbstractListModel(0x101559320)
QAbstractItemModel::endRemoveRows: Invalid index ( 6 , 1 ) in model QAbstractListModel(0x101559320)
最佳答案
好吧,您无需摆弄changePersistentIndex,调用beginRemoveRows和endRemoveRows将自动更新模型上当前存在的所有持久性索引。删除行之后,唯一应具有的无效QPersistentModelIndex是实际已删除的行上的索引