Как динамически обновлять виджет в GTK3 (PyGObject)?

#python #gtk

Вопрос:

В этом примере я пытаюсь добавлять другую кнопку (или любой виджет) каждый раз, когда нажимается кнопка.

 from gi.repository import Gtk


class ButtonWindow(Gtk.Window):
    def __init__(self):
        super().__init__(title="Button Demo")
        self.hbox = Gtk.HBox()
        self.add(self.hbox)
        button = Gtk.Button.new_with_label("Click Me")
        button.connect("clicked", self.on_clicked)
        self.hbox.pack_start(button, False, True, 0)

    def on_clicked(self, button):
        print("This prints...")
        button = Gtk.Button.new_with_label("Another button")
        self.hbox.pack_start(button, False, True, 0)  # ... but the new button doesn't appear


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

Я пробовал queue_draw() и другие хаки, но до сих пор ничего не получалось.

Ответ №1:

Вызов show_all() метода работает для обновления дочерних элементов виджетов. Вот код с show_all() использованной и добавленной строкой, помеченной соответствующим образом:

 from gi.repository import Gtk


class ButtonWindow(Gtk.Window):
    def __init__(self):
        super().__init__(title="Button Demo")
        self.hbox = Gtk.HBox()
        self.add(self.hbox)
        button = Gtk.Button.new_with_label("Click Me")
        button.connect("clicked", self.on_clicked)
        self.hbox.pack_start(button, False, True, 0)

    def on_clicked(self, button):
        print("This prints...")
        button = Gtk.Button.new_with_label("Another button")
        self.hbox.pack_start(button, False, True, 0)
        self.hbox.show_all() ### ADDED LINE


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

Итак, призвание self.hbox.show_all() показывает всех детей self.hbox .