奇怪的差异。为什么 FileChooserDialog 的结果不同?

Strange difference. Why different result in FileChooserDialog?

我已经与以下内容进行了几天的斗争,并提取了一个非常紧凑的问题版本,它仍然显示了问题。下面的程序展示了一个基本的window,首先打开了一个FileChooserDialog.

这是失败的版本 - 它没有在对话框中显示 CancelAccept 按钮:

#!/usr/bin/env python3
# -*- coding: utf-8 -*-

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

class Script():
    def __init__(self, parent, width = 800):
        self.parent = parent

    def script_file_dialog(self):
        fc = Gtk.FileChooserDialog(
                    parent = self.parent,
                    title = "title",
                    action = Gtk.FileChooserAction.OPEN,
                    do_overwrite_confirmation = True)
        fc.add_buttons = ("Cancel", Gtk.ResponseType.CANCEL,
                          "Open", Gtk.ResponseType.ACCEPT)

        return fc

class MainWindow(Gtk.Window):
    def __init__(self):
        super(MainWindow, self).__init__()
        self.connect("destroy", lambda x: Gtk.main_quit())
        self.set_default_size(1000, 580)

        self.script = Script(self)

        fc = self.script.script_file_dialog()
        if fc.run() == 1:
            print("one")
        fc.destroy()

        self.show_all()

    def on_test_clicked(self, btn):
        #~ self.script.on_open_script(btn)
        self.script = Script(self)

        fc = self.script.script_file_dialog()
        if fc.run() == 1:
            print("one")
        fc.destroy()

    def run(self):
        Gtk.main()

def main(args):
    mainwdw = MainWindow()
    mainwdw.run()

    return 0

if __name__ == '__main__':
    import sys
    sys.exit(main(sys.argv))

以及以下几乎相同的版本 按预期工作。 请注意,唯一的区别是在实例化 FileChooserDialog 时, 按钮作为关键字参数传递。这已被弃用,并且 产生警告。

#!/usr/bin/env python3
# -*- coding: utf-8 -*-

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

class Script():
    def __init__(self, parent, width = 800):
        self.parent = parent

    def script_file_dialog(self):
        fc = Gtk.FileChooserDialog(
                    parent = self.parent,
                    title = "title",
                    action = Gtk.FileChooserAction.OPEN,
                    do_overwrite_confirmation = True,
                    buttons = ("Cancel", Gtk.ResponseType.CANCEL,
                               "Open", Gtk.ResponseType.ACCEPT))

        return fc

class MainWindow(Gtk.Window):
    def __init__(self):
        super(MainWindow, self).__init__()
        self.connect("destroy", lambda x: Gtk.main_quit())
        self.set_default_size(1000, 580)

        self.script = Script(self)

        fc = self.script.script_file_dialog()
        if fc.run() == 1:
            print("one")
        fc.destroy()

        self.show_all()

    def on_test_clicked(self, btn):
        #~ self.script.on_open_script(btn)
        self.script = Script(self)

        fc = self.script.script_file_dialog()
        if fc.run() == 1:
            print("one")
        fc.destroy()

    def run(self):
        Gtk.main()

def main(args):
    mainwdw = MainWindow()
    mainwdw.run()

    return 0

if __name__ == '__main__':
    import sys
    sys.exit(main(sys.argv))

我尝试通过按钮触发来延迟对话框的显示 在显示主对话框后。更何况我用的是第一种模式 在其他程序中,它在那里工作。

可能是宅在家里的规定慢慢让我发疯了…… 有人看到问题了吗?

第一个版本有错别字:

fc.add_buttons = ("Cancel", Gtk.ResponseType.CANCEL,
                  "Open", Gtk.ResponseType.ACCEPT)

应该是:

fc.add_buttons("Cancel", Gtk.ResponseType.CANCEL,
               "Open", Gtk.ResponseType.ACCEPT)