QTreeView / QFileSystemModel设置标题标签

时间:2012-11-15 20:34:13

标签: c++ qt qtreeview qfilesystemmodel

非常简单的任务,但我没有设法在文档中找到任何有用的东西。我希望QTreeView包含一个名为“Files”的列,其中包含来自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);
    }

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

3 个答案:

答案 0 :(得分:3)

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

答案 1 :(得分: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();
}

答案 2 :(得分:0)

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

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);
    }
}