仅显示具有正确扩展名的文件

发布于 2024-12-20 12:48:44 字数 616 浏览 1 评论 0原文

我正在尝试在 QFileSystemModel 中仅显示扩展名为 *.txt 的文件,而其他类型则变为阴影/灰色:

  • proxy_ 的类型为 QSortFilterProxyModel

  • model_ 的类型为 QFileSystemModel

这是我的代码:

proxy_->setFilterWildcard("*.txt");  
proxy_->setSourceModel(model_);
model_->setNameFilters(QStringList(proxy_->filterRegExp().pattern()));
model_->setNameFilterDisables(true);
sel_model_ = (new QItemSelectionModel(proxy_));
treeView->setModel(proxy_);
treeView->setSelectionModel(sel_model_);

...但是这样做在我的视图中什么也没有显示。有人知道我做错了什么吗?

I'm trying in QFileSystemModel display just files with extention *.txt and the other types shaded/grayed out:

  • proxy_ is of type QSortFilterProxyModel

  • model_ is of type QFileSystemModel

Here's my code:

proxy_->setFilterWildcard("*.txt");  
proxy_->setSourceModel(model_);
model_->setNameFilters(QStringList(proxy_->filterRegExp().pattern()));
model_->setNameFilterDisables(true);
sel_model_ = (new QItemSelectionModel(proxy_));
treeView->setModel(proxy_);
treeView->setSelectionModel(sel_model_);

...but by doing so nothing is shown in my view. Anyone knows what I'm doing wrong?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

梦行七里 2024-12-27 12:48:45

您可以使用QFileSystemModel::setNameFilters设置文件名过滤器。

在下面的示例程序中,.txt 和文件夹正常显示,其他文件被禁用(灰显)。

nameFilterDisables 属性允许您选择禁用或隐藏已过滤的文件。

#include <QtGui>

int main(int argc, char** argv)
{
    QApplication app(argc, argv);

    QFileSystemModel model;
    model.setRootPath(QDir::rootPath());

    QStringList filters;
    filters << "*.txt";

    model.setNameFilters(filters);

    QTreeView view;
    view.setModel(&model);
    view.show();

    return app.exec();
}

You can set a file name filter with QFileSystemModel::setNameFilters.

In the example program below .txt and folders are displayed normally, and other files are disabled (greyed out).

The nameFilterDisables property allows you to choose between filtered out files being disabled or hidden.

#include <QtGui>

int main(int argc, char** argv)
{
    QApplication app(argc, argv);

    QFileSystemModel model;
    model.setRootPath(QDir::rootPath());

    QStringList filters;
    filters << "*.txt";

    model.setNameFilters(filters);

    QTreeView view;
    view.setModel(&model);
    view.show();

    return app.exec();
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文