gtk TextView 小部件在功能期间不会更新

发布于 2024-07-14 10:13:59 字数 159 浏览 4 评论 0原文

我是使用 python 和 gtk 进行 GUI 编程的新手,所以这是一个初学者问题。 我有一个在按下按钮时调用的函数,该函数执行各种任务,还有一个 TextView 小部件,我在每个任务完成后写入该小部件。 问题是 TextView 小部件在整个功能完成之前不会更新。 我需要在每次任务后更新它。

I'm new to GUI programming with python and gtk, so this is a bit of a beginners question.
I have a function that is called when a button is pressed which does various tasks, and a TextView widget which I write to after each task is completed. The problem is that the TextView widget doesn't update until the entire function has finished. I need it to update after each task.

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

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

发布评论

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

评论(1

囍孤女 2024-07-21 10:13:59

每次更新 TextView 调用后,

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

您可以通过自定义函数进行更新:

def my_insert(self, widget, report, text):

  report.insert_at_cursor(text)
  while gtk.events_pending():
    gtk.main_iteration()

来自 PyGTK 常见问题解答:
如何在长时间内强制更新应用程序窗口回调还是其他内部操作?

After each update to the TextView call

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

You can do your update through a custom function:

def my_insert(self, widget, report, text):

  report.insert_at_cursor(text)
  while gtk.events_pending():
    gtk.main_iteration()

From the PyGTK FAQ:
How can I force updates to the application windows during a long callback or other internal operation?

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