QT Jambi:从其他线程更新 UI

发布于 2024-11-17 10:52:38 字数 231 浏览 5 评论 0原文

我目前正在开发一个使用 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 技术交流群。

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

发布评论

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

评论(2

饭团 2024-11-24 10:52:38

我自己刚刚找到了解决方案。 QApplication 提供了 invokeLater 方法来在 UI 线程上执行操作:

QApplication.invokeLater(new Runnable() {
    @Override
    public void run() {
        updateUI();
    }
});

I just found a solution myself. QApplication provides the invokeLater method to perform operations on the UI thread:

QApplication.invokeLater(new Runnable() {
    @Override
    public void run() {
        updateUI();
    }
});
晒暮凉 2024-11-24 10:52:38

我之前已经给出过类似的答案,但我找不到。所以我将重复我之前说过的话。

您需要使用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.

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