GTK / Glib:如何将消息从 GUI 线程发布到工作线程?
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
没有什么可以阻止您使用
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 withg_main_loop_run
and callg_idle_add
from your GUI thread when needed.