PyGTK 事件堆栈在哪里?
您可以调用 gtk.events_pending() 方法知道事件堆栈是否为空,但我想操作待处理事件并在下一个 gtk 循环周期之前过滤它,这些数据必须存储在某个地方,但在哪里呢?
谢谢。
You can know if the event stack is empty calling the gtk.events_pending() method, but I want to manipulate the pending events and filter it before the next gtk loop cycle, this data must be stored somewhere, but where?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以自己控制事件循环。您可以使用
gtk.main_iteration
,而不是调用gtk.main()
。您的循环可以是:
参见 此处了解更多信息。
You can control the event loop yourself. Rather than calling
gtk.main()
, you can usegtk.main_iteration
.Your loop could then be:
see here for more info.