我有一个QTableWidget中显示的项目列表,每个项目对应一个特定的文件夹。
接下来,我有一个带有QFileSystemModel的QTreeView。当我从QTableWidget中选择一个项目时,它会调用一个插槽(如下所示)以显示相应的文件夹内容。
void MyWidget::diplayFolder(int row)
{
if (auto item = table->item(row, 1))
{
QString correspondingDirectory = item->text();
if (QDir(correspondingDirectory).exists())
{
// treeModel => QFileSystemModel
// tree => QTreeView
treeModel->setRootPath("");
treeModel->setRootPath(correspondingDirectory);
tree->setRootIndex(treeModel->index(correspondingDirectory));
}
else
{
qDebug() << "Reset tree => do not display anything!";
// treeModel->setRootPath("");
// tree->reset();
}
}
}
如果目录不存在,我不想显示任何内容。但是,当我尝试设置空根路径或重置视图时,它会显示我的所有计算机驱动器。
如何重置或清除QTreeView?
答案 0 :(得分:4)
有类似的问题。我不太确定我是如何解决它的,因为它是很久以前的事了。我认为如果你将QTreeview设置为nullptr作为模型它应该可行。因此,当QDir存在时,您设置一个新的QFileSystemModel,否则您调用:
tree->setModel(nullptr);
希望这会对你有所帮助。
编辑: 如果您这样做,标题也会被删除。