如何 pass/return 从 Gtk 对话框到主应用程序的数据 class

How to pass/return data from Gtk dialog to main application class

我在 Python Gtk 中有一个应用程序。我的主文件中有我的主应用程序 class。然后我将所有对话框放在不同的文件中。除了标准的 Gtk 响应代码之外,我需要能够 pass/return 从对话框到主应用程序的自定义数据 class,这里是一些基本的示例代码,因为我自己的代码很长:

import gi
gi.require_version('Gtk', '3.0')
from gi.repository import Gtk

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")

        dialog.destroy()

win = DialogWindow()
win.connect("destroy", Gtk.main_quit)
win.show_all()
Gtk.main()

单独文件中的对话框 window:

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))

        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()

作为标准,我们将 Gtk.ResponseType 应用于按钮。但是,如果我们想要 return 一些自定义数据 - 而不仅仅是简单的响应代码 - 作为进一步的代码示例怎么办:

class DialogExample(Gtk.Dialog):

    def __init__(self, parent):
        Gtk.Dialog.__init__(self, "My Dialog", parent, 0)

        self.set_default_size(150, 100)

        label = Gtk.Label("This is a dialog to display additional information")

        button = Gtk.Button("Return something")
        button.connect("clicked", self.on_button_clicked)

        box = self.get_content_area()
        box.add(label)
        self.show_all()

    def on_button_clicked(self, widget):
        if SOME_CONDITION:
            return <CUSTOM_RESPONSE>
        else:
            return <ALT_CUSTOM_RESPONSE>

当我做最后一个例子时,对话框没有 return 任何东西,我想做类似的事情:

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 == <CUSTOM_RESPONSE>:
            #do something with <CUSTOM_RESPONSE>
        elif response == <ALT_CUSTOM_RESPONSE>:
            #do something different with <ALT_CUSTOM_RESPONSE>

        dialog.destroy()

win = DialogWindow()
win.connect("destroy", Gtk.main_quit)
win.show_all()
Gtk.main()

DialogExample window 没有 destroy/close 并且没有任何内容 return 并且应用程序基本上只是暂停,因为它认为没有更多的方法可以 运行 - 尽管在自定义数据 return 之后还有很多工作要做(然后我需要开始向数据库添加记录)。

[更新]

我现在已经尝试了很多不同的方法来解决这个问题,我不可能在这里一一列举。我一直在无休止地寻找某种答案,似乎这不是互联网上任何人都能做到的。

gtk_dialog_run 的 C 版本仅限于 return 整数,您可以设置自定义值,但不能设置字符串或对象。您可以通过在 "response" 信号上设置一个值然后在 运行 函数 returns.

之后获取它来解决此问题
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))

        self.result = ""
        self.set_default_size(150, 100)
        self.connect("response", self.on_response)

        label = Gtk.Label(label="Type something")
        self.entry = Gtk.Entry()

        box = self.get_content_area()
        box.add(label)
        box.add(self.entry)
        self.show_all()

    def on_response(self, widget, response_id):
        self.result = self.entry.get_text ()

    def get_result(self):
        return self.result

class DialogWindow(Gtk.Window):

    def __init__(self):
        Gtk.Window.__init__(self, title="Dialog Example")
        self.set_border_width(6)

        box = Gtk.Box(orientation=Gtk.Orientation.VERTICAL, spacing=6)
        self.add(box)

        button = Gtk.Button(label="Open dialog")
        button.connect("clicked", self.on_button_clicked)
        box.add(button)

        self.label = Gtk.Label()
        box.add(self.label)

    def on_button_clicked(self, widget):
        dialog = DialogExample(self)
        response = dialog.run()

        if response == Gtk.ResponseType.OK:
            self.label.set_text(dialog.get_result())
            print("The OK button was clicked")
        elif response == Gtk.ResponseType.CANCEL:
            print("The Cancel button was clicked")

        dialog.destroy()

win = DialogWindow()
win.connect("destroy", Gtk.main_quit)
win.show_all()
Gtk.main()