有些时候我们需要更多ResponseType
用于我们程序的对话框。例如,当用户关闭文件编辑器时,编辑器显示对话框以获得用户选择:“取消”,“关闭而不保存”“保存”但{{1}中不存在“保存”和“关闭而不保存”那么如何为此创建新的响应类型。可以用另一种方式解决这个问题。
感谢。
答案 0 :(得分:2)
Gtk.ResponseType
它是一小组预定义值。这些是负值,而正值(包括零)留给应用程序开发人员根据需要使用它们。来自documentation:
在Gtk.Dialog.add_button()中用作响应ID的预定义值。 所有预定义值均为负数; GTK +保留0或更大的值 对于应用程序定义的响应ID。
因此,当您向对话框添加按钮时,您可以使用自己的一组响应值,而不是使用预定义的Gtk.ResponseType。
让我们从this example中取出python-gtk3 tutorial,然后使用我们自己的响应类型值添加第三个选项:
import gi
gi.require_version('Gtk', '3.0')
from gi.repository import Gtk
class DialogExample(Gtk.Dialog):
def __init__(self, parent):
Gtk.Dialog.__init__(self, "My Dialog", parent, 0,
(Gtk.STOCK_CANCEL, Gtk.ResponseType.CANCEL,
Gtk.STOCK_OK, Gtk.ResponseType.OK, "OPTION 3", 1))
self.set_default_size(150, 100)
label = Gtk.Label("This is a dialog to display additional information")
box = self.get_content_area()
box.add(label)
self.show_all()
class DialogWindow(Gtk.Window):
def __init__(self):
Gtk.Window.__init__(self, title="Dialog Example")
self.set_border_width(6)
button = Gtk.Button("Open dialog")
button.connect("clicked", self.on_button_clicked)
self.add(button)
def on_button_clicked(self, widget):
dialog = DialogExample(self)
response = dialog.run()
if response == Gtk.ResponseType.OK:
print("The OK button was clicked")
elif response == Gtk.ResponseType.CANCEL:
print("The Cancel button was clicked")
elif response == 1:
print("OPTION 3 was clicked")
dialog.destroy()
win = DialogWindow()
win.connect("delete-event", Gtk.main_quit)
win.show_all()
Gtk.main()
做了什么?
我们添加了第三个标签 OPTION 3 的按钮,其响应ID值为1
:
Gtk.Dialog.__init__(self, "My Dialog", parent, 0,
(Gtk.STOCK_CANCEL, Gtk.ResponseType.CANCEL,
Gtk.STOCK_OK, Gtk.ResponseType.OK, "OPTION 3", 1))
然后,在处理响应时,我们可以检查该响应id值并执行不同的操作:
...
print("The Cancel button was clicked")
elif response == 1:
print("OPTION 3 was clicked")
...
您可以创建自己的枚举正响应值集,并根据需要使用它们(包括零)。祝你好运。
修改强>:
在glade中,使用按钮时,可以将response_id
的值设置为整数。它位于小部件的常规设置选项卡中。