GTK / Glib:如何将消息从 GUI 线程发布到工作线程?

发布于 2024-12-05 03:03:48 字数 196 浏览 1 评论 0原文

GTK 不是线程安全的,而是线程感知的 - 它可以在多个线程中使用,确保使用全局锁来保护 GTK API 调用。如果我需要从工作线程向 GTK GUI 线程发布消息,我只需调用 gdk_threads_add_idle() ,一段时间后将在 GUI 线程中调用指定的回调。

但是做相反的事情的简单方法是什么 - 当用户单击按钮时从非 GUI 线程调用指定的回调?

GTK is not thread-safe, but thread-aware - it can be used from multiple threads ensuring that global lock is used to protect GTK API calls. If i need to post a message from worker thread to GTK GUI thread i just call gdk_threads_add_idle() and specified callback will be called in GUI thread after some time.

But what is the easy way to do opposite thing - call specified callback from non-GUI thread as user clicks a button?

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

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

发布评论

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

评论(1

饭团 2024-12-12 03:03:48

没有什么可以阻止您使用 g_main_loop_new 创建新的非 GUI 循环,使用 g_main_loop_run 从非 GUI 线程运行它,并从您的系统调用 g_idle_add需要时使用 GUI 线程。

Nothing prevents you from creating a new non-GUI loop with g_main_loop_new, run it from your non-GUI thread with g_main_loop_run and call g_idle_add from your GUI thread when needed.

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