在现有的非 QT 线程中创建 QThread 事件循环
我的代码是主机软件的插件,其处理时间有限。因此,我创建了第二个线程(通过系统 API)并在那里启动 QApplication。这样,GUI 就可以顺利运行。
现在,我想在原始版本中运行 QThread 事件循环,以便我可以使用 Signal/Slot (Qt::QueuedConnection) 来调用主机软件中非线程安全的函数。
有没有办法创建这样的 QThread 事件循环而不创建新线程?
谢谢!
My code is a plugin of a host software which gets limited processing time. Therefore, I create a second thread (via system API) and start QApplication there. That way, the GUI runs smoothly.
Now, I would like to run a QThread event loop in the original such that I could use Signal/Slot (Qt::QueuedConnection) to invoke functions that are not thread safe in the host software.
Is there a way to create such QThread event loop without creating a new thread?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不确定我是否理解对了你
但是您可以通过在私有类成员上调用 QEventLoop::exec() 来启动自己的事件循环。
不要忘记调用 QEventLoop.exit()。
再见,拉尔斯
I'm not quit sure if i get you right,
but you can start your own event loop just by calling QEventLoop::exec() on a e.g. private class member.
Don't forget to call QEventLoop.exit().
Bye, Lars