Qt MVC - 用户点击时获取文件名?
好的,我有以下代码:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你在使用QTreeWidget吗?它有一个抽象项模型。您需要从 所选项目
Are you using QTreeWidget? It has an abstract item model. You need to get the model index from the selected item