如何在PyGObject中使用按钮暂停循环?

时间:2017-07-05 08:57:54

标签: gtk pygobject

我有一个运行循环的按钮并相应地更新窗口。我想要一个暂停这个循环的另一个“暂停”按钮但是在循环运行时我似乎不能这样做。也许线程是解决方案(我尝试了GLib.timeout_add_seconds没有成功) - 最简单的方法是什么? 我附上了我错误的代码:

import sys
from time import sleep
import gi
gi.require_version("Gtk", "3.0")
from gi.repository import Gtk

class LoopButton(Gtk.Box):

    def __init__(self, GUI):
        Gtk.Box.__init__(self)

        self.GUI = GUI
        self.set_border_width(10)
        self.message = "1"

        button = Gtk.Button.new_with_label("Run")
        button.connect("clicked", self.on_click)
        self.pack_start(button, True, True, 0)

    def on_click(self, widget):
        msg = int(self.message)
        while self.GUI.is_paused == False:
            self.GUI.restart_window(str(msg))
            msg += 1
            while Gtk.events_pending():
                Gtk.main_iteration()
            sleep(1)
        self.GUI.is_paused = True

class PauseButton(Gtk.Box):
    def __init__(self, GUI):
        Gtk.Box.__init__(self)

        self.GUI = GUI
        self.set_border_width(10)

        button = Gtk.Button.new_with_label("Pause")
        button.connect("clicked", self.on_click)
        self.pack_start(button, True, True, 0)

    def on_click(self, widget):
        self.GUI.is_paused = True


class GUI:

    def __init__(self):
        self.is_paused = False
        self.win = Gtk.Window()
        self.window_grid = Gtk.Grid()
        self.box = Gtk.Box(spacing=10)
        self.label = Gtk.Label("Default label")
        self.win.connect("delete-event", Gtk.main_quit)
        self.start_window()

    def start_window(self):
        self.box.pack_start(LoopButton(self), True, True, 0)
        self.box.pack_start(PauseButton(self), True, True, 0)
        self.window_grid.add(self.box)
        self.window_grid.add(self.label)
        self.win.add(self.window_grid)
        self.win.show_all()

    def restart_window(self, label="Default label"):
        self.window_grid.destroy()
        self.window_grid = Gtk.Grid()
        self.box = Gtk.Box(spacing=10)
        self.label = Gtk.Label(label)
        self.start_window()

def main():
    app = GUI()
    Gtk.main()

if __name__ == "__main__":
    sys.exit(main())

1 个答案:

答案 0 :(得分:0)

根据您在循环中的实际操作,可能会有更多必要的详细信息,但下面是GLib / Gtk中通常如何避免循环的示例。此方法的注意事项是:A)一次迭代必须足够快以不影响UI更新(最多几毫秒)。 B)时间不准确:在前一次呼叫后2秒,超时功能可能不会被完全调用。

import gi
from gi.repository import GLib

class GUI:
    def __init__(self):
        # initialize the UI here...

        # setup updates every two seconds
        GLib.timeout_add_seconds(2, self.timeout_update)

    def timeout_update(self):
        # update your widgets here
        print ("Updating UI now...")

        # yes, we want to be called again
        return True