Qt MVC - 用户点击时获取文件名?

发布于 2024-11-25 02:19:11 字数 471 浏览 3 评论 0原文

好的,我有以下代码:

 QFileSystemModel *model = new QFileSystemModel;
 model->setRootPath(QDir::currentPath());
 model->setFilter(QDir::Files | QDir::NoSymLinks | QDir::NoDotAndDotDot |
                  QDir::Readable | QDir::Writable | QDir::CaseSensitive );

 ui->fileList->setModel(model);
 ui->fileList->setRootIndex(model->index(QDir::currentPath()));

如何找出已选择哪个项目(具体来说,其相应的文件名)?我希望用户使用鼠标选择一个文件,这样所选的文件名就可以传递给我的方法。

Okay, I have the following code:

 QFileSystemModel *model = new QFileSystemModel;
 model->setRootPath(QDir::currentPath());
 model->setFilter(QDir::Files | QDir::NoSymLinks | QDir::NoDotAndDotDot |
                  QDir::Readable | QDir::Writable | QDir::CaseSensitive );

 ui->fileList->setModel(model);
 ui->fileList->setRootIndex(model->index(QDir::currentPath()));

How can I find out which item (specifically, its corresponding filename) has been selected? I want the user to select a file using the mouse, such that the selected filename can be passed to a method I have.

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

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

发布评论

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

评论(1

恋竹姑娘 2024-12-02 02:19:11

你在使用QTreeWidget吗?它有一个抽象项模型。您需要从 所选项目

Are you using QTreeWidget? It has an abstract item model. You need to get the model index from the selected item

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