在 PyGTK 中,如何重绘在长时间计算过程中被遮挡的窗口部分?

发布于 2024-11-06 15:21:47 字数 805 浏览 0 评论 0原文

下面是一些基本代码。

  • 它显示一个按钮。
  • 单击该按钮会运行一个循环。
  • 在循环中,如果你模糊了 带窗口的按钮, 被遮挡的部分会发白,而不是 重画直到循环结束。

如何让按钮在循环中重绘?

import gtk

class MyClass:

    def __init__(self):

        window = gtk.Window()
        window.connect("destroy", gtk.main_quit)
        window.set_size_request(200, 50)

        table = gtk.Table()

        # Add a button to the table.
        button = gtk.Button("Button")
        col = 0
        row = 0
        table.attach(button, col, col + 1, row, row + 1)
        button.connect("clicked", self.clicked_event_handler)

        window.add(table)
        window.show_all()

    def clicked_event_handler(self, button):

        for i in range(10**8):
            pass

if __name__ == "__main__":

    MyClass()
    gtk.main()

Below is some elementary code.

  • It displays a button.
  • Clicking the button runs a loop.
  • In the loop, if you obscure
    the button with a window, the
    obscured part will be whitish and not
    redraw until after the loop.

How can I make the button redraw in the loop?

import gtk

class MyClass:

    def __init__(self):

        window = gtk.Window()
        window.connect("destroy", gtk.main_quit)
        window.set_size_request(200, 50)

        table = gtk.Table()

        # Add a button to the table.
        button = gtk.Button("Button")
        col = 0
        row = 0
        table.attach(button, col, col + 1, row, row + 1)
        button.connect("clicked", self.clicked_event_handler)

        window.add(table)
        window.show_all()

    def clicked_event_handler(self, button):

        for i in range(10**8):
            pass

if __name__ == "__main__":

    MyClass()
    gtk.main()

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

孤星 2024-11-13 15:21:47

您可以自己运行主要迭代

while gtk.events_pending():
    gtk.main_iteration()

You could run the main iteration yourself

while gtk.events_pending():
    gtk.main_iteration()
好多鱼好多余 2024-11-13 15:21:47

长时间运行的任务应该在主循环之外的线程中运行。有关 pyGTK 的示例,请参阅

A long running task should be run in a thread outside of the main loop. See this for an example with pyGTK.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文