从 QAbstractItemModel 中正确删除子树
Properly remove subtree from QAbstractItemModel
我不清楚从 QAbstractItemModel 派生的自定义模型 class 中删除分支的正确方法是什么。我有一个应该刷新树节点的方法(删除所有子分支并插入新的)。
void SessionTreeModel::refresh(const QModelIndex &index, const DbObjectI *object)
{
auto item = getItem(index);
assert(item != nullptr);
if (item != nullptr)
{
if (item->childCount() > 0)
{
beginRemoveRows(index, 0, item->childCount() - 1);
item->removeAll();
endRemoveRows();
}
if (object != nullptr && object->getChildCount() > 0)
{
beginInsertRows(index, 0, static_cast<int>(object->getChildCount()) - 1);
item->appendChildren(object);
endInsertRows();
}
}
}
void SessionTreeItem::removeAll()
{
for (auto& child : childItems_)
{
child->removeAll();
}
childItems_.clear();
}
问题是当调用 'beginRemoveRows()' 时,应用程序经常在刷新几次后崩溃,根据调用堆栈,问题是 SessionTreeModel::parent() 是用一个索引调用的,该索引包含一个悬空的内部指针。
QModelIndex SessionTreeModel::parent(const QModelIndex &child) const
{
if (child.isValid())
{
auto childItem = getItem(child);
auto parentItem = childItem->parent();
if (parentItem != nullptr &&
parentItem != rootObject_.get())
{
return createIndex(static_cast<int>(parentItem->childCount()),
0, parentItem);
}
}
return QModelIndex{};
}
看起来树视图正在为已删除的项目保存索引并正在尝试获取其父项。
请问哪里出了问题?
首先,我要感谢 Scheff 的评论。我很高兴我不必朝这个方向走 ;)
经过数小时深入研究我的代码,我终于找到了问题所在。真是个笨蛋!在 parent() 方法中,索引是使用 parentItem->childCount() 而不是 parentItem->row() 创建的。
我不清楚从 QAbstractItemModel 派生的自定义模型 class 中删除分支的正确方法是什么。我有一个应该刷新树节点的方法(删除所有子分支并插入新的)。
void SessionTreeModel::refresh(const QModelIndex &index, const DbObjectI *object)
{
auto item = getItem(index);
assert(item != nullptr);
if (item != nullptr)
{
if (item->childCount() > 0)
{
beginRemoveRows(index, 0, item->childCount() - 1);
item->removeAll();
endRemoveRows();
}
if (object != nullptr && object->getChildCount() > 0)
{
beginInsertRows(index, 0, static_cast<int>(object->getChildCount()) - 1);
item->appendChildren(object);
endInsertRows();
}
}
}
void SessionTreeItem::removeAll()
{
for (auto& child : childItems_)
{
child->removeAll();
}
childItems_.clear();
}
问题是当调用 'beginRemoveRows()' 时,应用程序经常在刷新几次后崩溃,根据调用堆栈,问题是 SessionTreeModel::parent() 是用一个索引调用的,该索引包含一个悬空的内部指针。
QModelIndex SessionTreeModel::parent(const QModelIndex &child) const
{
if (child.isValid())
{
auto childItem = getItem(child);
auto parentItem = childItem->parent();
if (parentItem != nullptr &&
parentItem != rootObject_.get())
{
return createIndex(static_cast<int>(parentItem->childCount()),
0, parentItem);
}
}
return QModelIndex{};
}
看起来树视图正在为已删除的项目保存索引并正在尝试获取其父项。
请问哪里出了问题?
首先,我要感谢 Scheff 的评论。我很高兴我不必朝这个方向走 ;)
经过数小时深入研究我的代码,我终于找到了问题所在。真是个笨蛋!在 parent() 方法中,索引是使用 parentItem->childCount() 而不是 parentItem->row() 创建的。