在 PyGTK 中,如何重绘在长时间计算过程中被遮挡的窗口部分?
下面是一些基本代码。
- 它显示一个按钮。
- 单击该按钮会运行一个循环。
- 在循环中,如果你模糊了 带窗口的按钮, 被遮挡的部分会发白,而不是 重画直到循环结束。
如何让按钮在循环中重绘?
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以自己运行主要迭代
You could run the main iteration yourself
长时间运行的任务应该在主循环之外的线程中运行。有关 pyGTK 的示例,请参阅此。
A long running task should be run in a thread outside of the main loop. See this for an example with pyGTK.