我设置了一个程序,以便它自己显示一个FileChooserDialog(没有主Gtk窗口,只有对话框)。
我遇到的问题是,即使用户选择了文件并且程序似乎继续执行,对话框也不会消失。
以下是展示此问题的摘录:
from gi.repository import Gtk
class FileChooser():
def __init__(self):
global path
dia = Gtk.FileChooserDialog("Please choose a file", None,
Gtk.FileChooserAction.OPEN,
(Gtk.STOCK_CANCEL, Gtk.ResponseType.CANCEL,
Gtk.STOCK_OPEN, Gtk.ResponseType.OK))
self.add_filters(dia)
response = dia.run()
if response == Gtk.ResponseType.OK:
print("Open clicked")
print("File selected: " + dia.get_filename())
path = dia.get_filename()
elif response == Gtk.ResponseType.CANCEL:
print("Cancel clicked")
dia.destroy()
def add_filters(self, dia):
filter_any = Gtk.FileFilter()
filter_any.set_name("Any files")
filter_any.add_pattern("*")
dia.add_filter(filter_any)
dialog = FileChooser()
print(path)
input()
quit()
当程序退出quit()
函数调用时,对话框才会消失。
我也尝试了dia.hide()
,但这也不起作用 - 代码继续运行时,对话框仍然可见。
使对话框消失的正确方法是什么?
编辑:我已经知道在没有父窗口的情况下制作Gtk对话框是不鼓励的。但是,我不想处理必须让用户关闭一个没有任何内容的窗口,只是作为对话框的父窗口。
有没有办法制作一个不可见的父窗口,然后在对话框消失时退出Gtk主循环?
答案 0 :(得分:5)
您可以先执行以下操作设置窗口:
def __init__ (self):
[.. snip ..]
w = Gtk.Window ()
dia = Gtk.FileChooserDialog("Please choose a file", w,
Gtk.FileChooserAction.OPEN,
(Gtk.STOCK_CANCEL, Gtk.ResponseType.CANCEL,
Gtk.STOCK_OPEN, Gtk.ResponseType.OK))
另外,如果用户取消,则设置路径的默认值:
path = ''
然后,在您的脚本结束时:
print (path)
while Gtk.events_pending ():
Gtk.main_iteration ()
print ("done")
收集并处理所有events。