Qt子线程如何更新UI?

19 篇文章 0 订阅
17 篇文章 0 订阅

和其他语言类似,不能直接在子线程更新UI,可以通过signal-slot机制在UI线程进行更新。


Signal-slot机制可以在不同对象,不同线程之间进行通讯。



例子:

<pre name="code" class="cpp">//main.cpp
#include "mainwindow.h"
#include <QApplication>

int main(int argc, char *argv[])
{
    QApplication a(argc, argv);
    MainWindow w;
    w.show();

    return a.exec();
}


 
</pre><pre name="code" class="cpp">
</pre><pre name="code" class="cpp">
</pre><pre name="code" class="cpp">//mythread.h
#include <QThread>
#include <QTextEdit>

class MyThread : public QThread
{
    Q_OBJECT
public:
    explicit MyThread(QObject *parent = 0);
    virtual void run();

signals:
    void dataChanged(QString);

public slots:

};


//mythread.cpp
#include "mythread.h"
#include <QDebug>

MyThread::MyThread(QObject *parent) :
    QThread(parent)
{
}

void MyThread::run()
{
    long long int i;
    for(i = 10000000000; i > 0; i--)
    {
        qDebug() << "now i is: " << i;
        QThread::msleep(100);
        /*can not operate the GUI directly from another thread, I guess signal-slot mechanism should be used.
        //this->tEdit->setText("test");
        */
        QString str = QString::number(i);
        emit dataChanged("now i is: " + str);
    }
}

//mainwindow.h

//#ifndef MAINWINDOW_H
#define MAINWINDOW_H

#include <QMainWindow>
#include "mythread.h"

namespace Ui {
class MainWindow;
}

class MainWindow : public QMainWindow
{
    Q_OBJECT

public:
    explicit MainWindow(QWidget *parent = 0);
    ~MainWindow();

private:
    Ui::MainWindow *ui;
    MyThread *t;

private slots:
    void longRunningTask();
    void testButtonClicked();


};



#endif // MAINWINDOW_H

//mainwindow.cpp
#include "mainwindow.h"
#include "ui_mainwindow.h"
#include <QDebug>
#include "mythread.h"

MainWindow::MainWindow(QWidget *parent) :
    QMainWindow(parent),
    ui(new Ui::MainWindow)
{
    ui->setupUi(this);
    t = new MyThread();
    connect(ui->pushButton,SIGNAL(clicked()),this, SLOT(longRunningTask()));
    connect(ui->pushButton_2,SIGNAL(clicked()),this,SLOT(testButtonClicked()));
    connect(t, SIGNAL(dataChanged(QString)), ui->textEdit, SLOT(append(QString)));
}

MainWindow::~MainWindow()
{
    delete ui;
}


void MainWindow::longRunningTask()
{
    t->start();
}

void MainWindow::testButtonClicked()
{
    int i;
    for(i = 100; i > 0; i--)
    {
        qDebug() << "test button clicked for: " << i << "times";
    }
    ui->textEdit->setText("test button clicked");
}



  • 4
    点赞
  • 10
    收藏
    觉得还不错? 一键收藏
  • 3
    评论
评论 3
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值