Python GTK:确认覆盖对话框阻止文件选择器对话框
Python GTK: confirm overwrite dialog blocks filechooser dialog
我有一个 Gtk.Button 打开一个 Gtk.FileChooserDialog 来保存文件。我实现了一个 Gtk.Dialog 用于确认,当所选文件名已存在于要保存文件的目标文件夹中时弹出。如果我在此对话框中单击 'cancel',确认对话框将被破坏,但我不能不再使用 Gtk.FileChooserDialog 的 'cancel' 或 'save' 按钮。
任何帮助表示赞赏。谢谢
#!/usr/bin/python
# -*- coding: utf-8 -*-
import os
from gi.repository import Gtk
class MainWindow(Gtk.Window):
def __init__(self):
Gtk.Window.__init__(self, title="demo")
self.set_position(Gtk.WindowPosition.CENTER)
self.button = Gtk.Button()
self.button.set_image(Gtk.Image(stock=Gtk.STOCK_SAVE))
self.button.connect('clicked', self.on_button_clicked)
self.add(self.button)
def on_button_clicked(self, widget):
dialog = Gtk.FileChooserDialog("Save file", self,
Gtk.FileChooserAction.SAVE,
(Gtk.STOCK_CANCEL, Gtk.ResponseType.CANCEL,
Gtk.STOCK_SAVE, Gtk.ResponseType.OK))
response = dialog.run()
if response == Gtk.ResponseType.OK: # OK button was pressed or existing file was double clicked
cansave = False
if os.path.exists(dialog.get_filename()) == True: # does file already exists?
dialog2 = DialogSaveFile(self, dialog.get_filename()) # ask to confirm overwrite
response = dialog2.run()
if response == Gtk.ResponseType.OK:
cansave = True
else:
pass
dialog2.destroy()
else:
cansave = True
if cansave == True: # save new file
open(dialog.get_filename(), "w").close
dialog.destroy()
else:
pass
else:
dialog.destroy()
class DialogSaveFile(Gtk.Dialog):
def __init__(self, parent, db):
Gtk.Dialog.__init__(self, "Confirm overwrite", parent, 0,
(Gtk.STOCK_CANCEL, Gtk.ResponseType.CANCEL,
Gtk.STOCK_OK, Gtk.ResponseType.OK))
self.box = self.get_content_area()
self.label = Gtk.Label("The file `" + db + "` exists.\nDo you want it to be overwritten?")
self.box.add(self.label)
self.show_all()
win = MainWindow()
win.connect("delete-event", Gtk.main_quit)
win.show_all()
Gtk.main()
离开 response = dialog.run()
运行 循环后,您需要重新创建文件对话框,或再次调用 dialog.run()
将文件对话框放回 运行 循环,这样你就可以找出按下了哪些按钮。
重组它,使文件对话框处理程序在一个单独的函数中应该可以解决问题(未经测试,但您会明白的)
def on_button_clicked(self, widget):
dialog = Gtk.FileChooserDialog("Save file", self,
Gtk.FileChooserAction.SAVE,
(Gtk.STOCK_CANCEL, Gtk.ResponseType.CANCEL,
Gtk.STOCK_SAVE, Gtk.ResponseType.OK))
self.handle_file_dialog(dialog)
def handle_file_dialog(self, dialog):
response = dialog.run()
if response == Gtk.ResponseType.OK: # OK button was pressed or existing file was double clicked
cansave = False
if os.path.exists(dialog.get_filename()) == True: # does file already exists?
dialog2 = DialogSaveFile(self, dialog.get_filename()) # ask to confirm overwrite
response = dialog2.run()
if response == Gtk.ResponseType.OK:
cansave = True
dialog2.destroy()
else:
dialog2.destroy()
# We need to re-run the file dialog to detect the buttons
self.handle_file_dialog(dialog)
return
else:
cansave = True
if cansave == True: # save new file
open(dialog.get_filename(), "w").close
dialog.destroy()
else:
pass
else:
dialog.destroy()
您可以使用:
dialog.set_do_overwrite_confirmation(真)
如果用户键入已存在的文件名,此模式将显示一个确认对话框!
import os
import gi
gi.require_version('Gtk', '3.0')
from gi.repository import Gtk
class MainWindow(Gtk.Window):
def __init__(self):
Gtk.Window.__init__(self, title="demo")
self.set_position(Gtk.WindowPosition.CENTER)
self.button = Gtk.Button()
self.button.set_image(Gtk.Image(stock=Gtk.STOCK_SAVE))
self.button.connect('clicked', self.on_button_clicked)
self.add(self.button)
def on_button_clicked(self, widget):
dialog = Gtk.FileChooserDialog(parent=self,title="Save file",
action=Gtk.FileChooserAction.SAVE)
dialog.add_buttons(Gtk.STOCK_CANCEL,Gtk.ResponseType.CANCEL)
dialog.add_buttons(Gtk.STOCK_OK,Gtk.ResponseType.OK)
dialog.set_do_overwrite_confirmation(True)
# This mode will present a confirmation dialog if the user types a file name that already exists.
response = dialog.run()
print(response)
if response == Gtk.ResponseType.OK: # save new file
open(dialog.get_filename(), "w").close
dialog.destroy()
if response == Gtk.ResponseType.CANCEL:
dialog.destroy()
dialog.destroy()
win = MainWindow()
win.connect("delete-event", Gtk.main_quit)
win.show_all()
Gtk.main()
我有一个 Gtk.Button 打开一个 Gtk.FileChooserDialog 来保存文件。我实现了一个 Gtk.Dialog 用于确认,当所选文件名已存在于要保存文件的目标文件夹中时弹出。如果我在此对话框中单击 'cancel',确认对话框将被破坏,但我不能不再使用 Gtk.FileChooserDialog 的 'cancel' 或 'save' 按钮。 任何帮助表示赞赏。谢谢
#!/usr/bin/python
# -*- coding: utf-8 -*-
import os
from gi.repository import Gtk
class MainWindow(Gtk.Window):
def __init__(self):
Gtk.Window.__init__(self, title="demo")
self.set_position(Gtk.WindowPosition.CENTER)
self.button = Gtk.Button()
self.button.set_image(Gtk.Image(stock=Gtk.STOCK_SAVE))
self.button.connect('clicked', self.on_button_clicked)
self.add(self.button)
def on_button_clicked(self, widget):
dialog = Gtk.FileChooserDialog("Save file", self,
Gtk.FileChooserAction.SAVE,
(Gtk.STOCK_CANCEL, Gtk.ResponseType.CANCEL,
Gtk.STOCK_SAVE, Gtk.ResponseType.OK))
response = dialog.run()
if response == Gtk.ResponseType.OK: # OK button was pressed or existing file was double clicked
cansave = False
if os.path.exists(dialog.get_filename()) == True: # does file already exists?
dialog2 = DialogSaveFile(self, dialog.get_filename()) # ask to confirm overwrite
response = dialog2.run()
if response == Gtk.ResponseType.OK:
cansave = True
else:
pass
dialog2.destroy()
else:
cansave = True
if cansave == True: # save new file
open(dialog.get_filename(), "w").close
dialog.destroy()
else:
pass
else:
dialog.destroy()
class DialogSaveFile(Gtk.Dialog):
def __init__(self, parent, db):
Gtk.Dialog.__init__(self, "Confirm overwrite", parent, 0,
(Gtk.STOCK_CANCEL, Gtk.ResponseType.CANCEL,
Gtk.STOCK_OK, Gtk.ResponseType.OK))
self.box = self.get_content_area()
self.label = Gtk.Label("The file `" + db + "` exists.\nDo you want it to be overwritten?")
self.box.add(self.label)
self.show_all()
win = MainWindow()
win.connect("delete-event", Gtk.main_quit)
win.show_all()
Gtk.main()
离开 response = dialog.run()
运行 循环后,您需要重新创建文件对话框,或再次调用 dialog.run()
将文件对话框放回 运行 循环,这样你就可以找出按下了哪些按钮。
重组它,使文件对话框处理程序在一个单独的函数中应该可以解决问题(未经测试,但您会明白的)
def on_button_clicked(self, widget):
dialog = Gtk.FileChooserDialog("Save file", self,
Gtk.FileChooserAction.SAVE,
(Gtk.STOCK_CANCEL, Gtk.ResponseType.CANCEL,
Gtk.STOCK_SAVE, Gtk.ResponseType.OK))
self.handle_file_dialog(dialog)
def handle_file_dialog(self, dialog):
response = dialog.run()
if response == Gtk.ResponseType.OK: # OK button was pressed or existing file was double clicked
cansave = False
if os.path.exists(dialog.get_filename()) == True: # does file already exists?
dialog2 = DialogSaveFile(self, dialog.get_filename()) # ask to confirm overwrite
response = dialog2.run()
if response == Gtk.ResponseType.OK:
cansave = True
dialog2.destroy()
else:
dialog2.destroy()
# We need to re-run the file dialog to detect the buttons
self.handle_file_dialog(dialog)
return
else:
cansave = True
if cansave == True: # save new file
open(dialog.get_filename(), "w").close
dialog.destroy()
else:
pass
else:
dialog.destroy()
您可以使用: dialog.set_do_overwrite_confirmation(真) 如果用户键入已存在的文件名,此模式将显示一个确认对话框!
import os
import gi
gi.require_version('Gtk', '3.0')
from gi.repository import Gtk
class MainWindow(Gtk.Window):
def __init__(self):
Gtk.Window.__init__(self, title="demo")
self.set_position(Gtk.WindowPosition.CENTER)
self.button = Gtk.Button()
self.button.set_image(Gtk.Image(stock=Gtk.STOCK_SAVE))
self.button.connect('clicked', self.on_button_clicked)
self.add(self.button)
def on_button_clicked(self, widget):
dialog = Gtk.FileChooserDialog(parent=self,title="Save file",
action=Gtk.FileChooserAction.SAVE)
dialog.add_buttons(Gtk.STOCK_CANCEL,Gtk.ResponseType.CANCEL)
dialog.add_buttons(Gtk.STOCK_OK,Gtk.ResponseType.OK)
dialog.set_do_overwrite_confirmation(True)
# This mode will present a confirmation dialog if the user types a file name that already exists.
response = dialog.run()
print(response)
if response == Gtk.ResponseType.OK: # save new file
open(dialog.get_filename(), "w").close
dialog.destroy()
if response == Gtk.ResponseType.CANCEL:
dialog.destroy()
dialog.destroy()
win = MainWindow()
win.connect("delete-event", Gtk.main_quit)
win.show_all()
Gtk.main()