1

您好,我尝试实现自定义 QAbstractModel 以在 QtreeView 上使用它。

主要要求是将 QDomNodes 存储为树,以便我可以轻松访问/删除/添加子项。

但是在这种方法中,我收到了分段错误

ProjectTreeItem *ProjectTreeModel::getItem(const QModelIndex &index) const
{
    if (index.isValid()) {
         ProjectTreeItem *item = static_cast<ProjectTreeItem*>(index.internalPointer());
         if (item) return item;
     }
     return rootItem;
}

这是整个文件:

http://pastebin.com/HmWZwVmC - projecttreemodel.cpp

http://pastebin.com/4nDXDVX0 - projecttreeitem.cpp

这是我尝试做的:

void Ide::slotDeleteItem()
{
    /**
      * ui->projectsView is a QTreeView with setModel(model)
          * model is a ProjectTreeModel
          */
    QItemSelectionModel* sel = ui->projectsView->selectionModel();

    QModelIndexList lst = sel->selectedIndexes();

    QModelIndex ind = lst.at(0);

    ProjectTreeItem* item = model->getItem(ind);

/** SEGFAULT even if getItem is moved to public(default is private) **/
    qDebug() << item->data(Qt::DisplayRole).toString();
/** SEGFAULT **/
    qDebug() << model->data(ind,Qt::DisplayRole);

/** Works and display information correct, but i need to access to ProjectTreeItem **/

    qdebug() << ind.data(Qt::DisplayRole);
}

我不确定“内部指针”在做什么,如果有人可以帮忙,好吗?

谢谢!

4

1 回答 1

1

我找到了问题的根源,这不是模型问题,我使用 QProxyModel 过滤了一些节点,并且提供的所有 QModelIndex 都无效。如果您想使用 selectionModel 来获取选定的索引,请不要使用 Qpr​​oxyModel。

于 2012-07-27T10:40:24.820 回答