QT Jambi:从其他线程更新 UI
我目前正在开发一个使用 Qt Jambi 作为 UI 的 Java 项目。我正在与 UI 线程不同的线程中进行一些计算,我想更新 UI 以指示进度。
很明显,UI 更新只能在 UI 线程上完成,并且由于计算线程不是 UI 线程,因此我无法从那里对 UI 执行更新(尝试这样做会导致从其自身外部使用 QObject)线程错误)。
那么,如何在 UI 线程上调用 updateUI()
方法呢?
I am currently working on a Java project using Qt Jambi for the UI. I am doing some calculations in a thread different from the UI thread and I would like to update the UI to indicate the progress.
It is clear that UI updates can only be done on the UI thread and since the computation thread is not the UI thread, I cannot perform updates on the UI from there (trying that consequently results in the QObject used from outside its own thread
error).
So, how can I call my updateUI()
method on the UI thread?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我自己刚刚找到了解决方案。
QApplication
提供了invokeLater
方法来在 UI 线程上执行操作:I just found a solution myself.
QApplication
provides theinvokeLater
method to perform operations on the UI thread:我之前已经给出过类似的答案,但我找不到。所以我将重复我之前说过的话。
您需要使用qt的信号/槽机制来使主线程与工作线程之间进行通信。
查看 Mandelbrot 示例。
我希望这有帮助。
I have given a similar answer before but I could not find it. So I will just repeat what I have said before.
You need to use signal/slot mechanism of qt to make communication happen between main thread with a worker thread.
Checkout the Mandelbrot example.
I hope this helps.