我正在使用QML PathView显示我的模型。这种模型继承自 QStandardItemModel 并具有两个级别的数据(父项和子项)。我需要在PathView中显示模型的第二级,即选定父级的所有子级。使用 QAbstractItemView ,可以通过使用setRootIndex函数来实现此结果。如何使用PathView获得相同的结果?

有人能帮我吗?
提前致谢。

这是一个模型示例:

newPetModel::newPetModel()
{
...
 fillModel();
}
...
void newPetModel::fillModel()
{
 QStandardItem* rootItem = invisibleRootItem();
 // groups
 QStandardItem* GroupAnimals = new QStandardItem();
 rootItem->setChild(rootItem->rowCount(), GroupAnimals);
 GroupAnimals->setData(QString("Animals"),nameRole);

 QStandardItem* GroupPlants = new QStandardItem();
 rootItem->setChild(rootItem->rowCount(), GroupPlants);
 GroupPlants->setData(QString("Plants"),nameRole);

 QStandardItem* GroupInsects = new QStandardItem();
 rootItem->setChild(rootItem->rowCount(), GroupInsects);
 GroupInsects->setData(QString("Insects"),nameRole);
 // items
 QStandardItem* Cat = new QStandardItem();
 GroupAnimals->setChild(GroupAnimals->rowCount(), Cat);
 Cat->setData(QString("Cat"),nameRole);
 Cat->setData(QString("qrc:/cat.jpg"),imgRole);

 QStandardItem* Dog = new QStandardItem();
 GroupAnimals->setChild(GroupAnimals->rowCount(), Dog);
 Dog->setData(QString("Dog"),nameRole);
 Dog->setData("qrc:/dog.jpg",imgRole);`enter code here`
 //-----
 QStandardItem* Peas = new QStandardItem();
 GroupPlants->setChild(GroupPlants->rowCount(), Peas);
 Peas->setData(QString("Peas"),nameRole);
 Peas->setData("qrc:/peas.jpg",imgRole);
 //-----
 QStandardItem* Spider = new QStandardItem();
 GroupInsects->setChild(GroupInsects->rowCount(), Spider);
 Spider->setData(QString("Spider"),nameRole);
 Spider->setData("qrc:/peas.jpg",imgRole);

 QStandardItem* Fly = new QStandardItem();
 GroupInsects->setChild(GroupInsects->rowCount(), Fly);
 Fly->setData(QString("Fly"),nameRole);
 Fly->setData("qrc:/fly.jpg",imgRole);
}

最佳答案

正如您在案例中所见,QML与列表模型一起使用。但是,可以使用 DelegateModel 轻松克服此限制。引用文档:



这种QML类型具有 rootIndex 属性。再次引用文档:



如链接文档的示例中所述,这是您需要设置(和重置)的属性。请注意,通过使用DelegateModel,不应定义PathView中的委托(delegate)。在以下路径下的标准框架发行版中提供了一个工作示例(visualdatamodel/slideshow.qml):

Qt/QtXXX/Examples/Qt-5.4/quick/views

最后请注意,DelegateModel VisualDataModel 通常以可互换的方式使用,因为

10-06 14:30