您好,我尝试实现自定义 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);
}
我不确定“内部指针”在做什么,如果有人可以帮忙,好吗?
谢谢!