1

非常简单的任务,但我没有设法在文档中找到任何有用的东西。我希望 QTreeView 包含一个名为“文件”的列,其中包含来自 QFileSystemView 的数据。这是我所拥有的:

    QFileSystemModel *projectFiles = new QFileSystemModel();
    projectFiles->setRootPath(QDir::currentPath());
    ui->filesTree->setModel(projectFiles);
    ui->filesTree->setRootIndex(projectFiles->index(QDir::currentPath()));

    // hide all but first column
    for (int i = 3; i > 0; --i)
    {
        ui->filesTree->hideColumn(i);
    }

这给了我一个带有“名称”标题的单列。如何重命名此标题?

4

3 回答 3

3

QAbstractItemModel::setHeaderData()应该管用。如果没有,您始终可以继承QFileSystemModel并覆盖headerData().

于 2012-11-15T20:45:41.113 回答
0

快速但有点肮脏的技巧(请注意w.hideColumn()):

#include <QApplication>

#include <QFileSystemModel>
#include <QTreeView>

int main(int argc, char *argv[])
{
    QApplication a(argc, argv);

    QTreeView w;

    QFileSystemModel m;
    m.setFilter(QDir::Dirs | QDir::NoDotAndDotDot);
    m.setRootPath("C:\\");

    w.setModel(&m);
    w.setRootIndex(m.index(m.rootPath()));
    w.hideColumn(3);
    w.hideColumn(2);
    w.hideColumn(1);

    w.show();

    return a.exec();
}
于 2013-01-27T09:11:57.863 回答
0

您可以继承 QFileSystemModel 并覆盖方法 headerData()。例如,如果您只想更改第一个标题标签并将其余部分保留其原始值,您可以执行以下操作:

QVariant MyFileSystemModel::headerData(int section, Qt::Orientation orientation, int role) const {

    if ((section == 0) && (role == Qt::DisplayRole)) {
        return "Folder";
    } else {
        return QFileSystemModel::headerData(section,orientation,role);
    }
}
于 2013-08-27T23:00:47.673 回答