我已经实现了自己的基于QAbstractListModelstd::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是实际已删除的行上的索引

08-03 22:48