GTK+用于打开文件和文件夹的文件选择器
当点击文件选择器对话框上的打开按钮时,如何让我的文件选择器能够选择文件和文件夹?我想将打开文件和文件夹的功能压缩到一个文件选择器中。我正在使用 GTK+ 和 Python。
How do I get my filechooser to be able to select both files and folders when the open button on the filechooser dialog is hit ? I want to squeeze the ability to open files and filders in just one filechooser. I am using GTK+ and Python.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我正在考虑这个问题,尽管在您的评论中您决定走另一条路,但我确实有一个建议:编写您自己的 GTK+ 文件选择器子类,并提供两个“打开”按钮,一个用于“打开文件”另一个到“打开目录”。这将消除上面讨论的歧义。
I was thinking about this, and although in your comments you've decided to go another route, I do have a suggestion: Write your own file chooser subclass of the GTK+ one and provide two "Open" buttons, one to "Open File" and another to "Open Directory". That would eliminate the ambiguity discussed above.