在另一个线程中创建QApplication

时间:2014-08-17 12:14:45

标签: c++ qt qthread qapplication

我试图在另一个线程中创建QApplication,但发现了两个主要问题:
1-我无法与GUI互动 2-一些警告:
WARNING: QApplication was not created in the main() thread. QObject::startTimer: timers cannot be started from another thread //happens when resizing widget QObject::killTimer: timers cannot be stopped from another thread

这里是完整的代码:(它可能有一些内存泄漏,但出于测试目的,它失败了)

// main.cpp中

#include <QCoreApplication>
#include "cthread.h"

int main(int argc, char *argv[])
{
    CThread *MyThread = new CThread;
    MyThread->start();

    QCoreApplication a(argc, argv);

    return a.exec();
}

// CThread.h

#ifndef CTHREAD_H
#define CTHREAD_H

#include <QThread>
#include "theqtworld.h"

class CThread : public QThread
{
    Q_OBJECT
public:
    CThread();
    void run( void );

private:
    TheQtWorld *mWorld;
};

#endif // CTHREAD_H

// CThread.cpp

#include "cthread.h"
#include <iostream>

CThread::CThread():mWorld(NULL)
{
}


void CThread::run()
{
    std::cout << "thread started" << std::endl;
    if(!mWorld)
        mWorld = new TheQtWorld();

    mWorld->OpenWorld();//now it will init all Qt Stuff inside

//    if(mWorld) delete mWorld;
//    emit this->exit();
}

// theqtworld.h

#ifndef THEQTWORLD_H
#define THEQTWORLD_H

#include <QObject>
#include "mainwindow.h"
#include <QApplication>

class TheQtWorld : public QObject
{
    Q_OBJECT
public:
    explicit TheQtWorld(QObject *parent = 0);
    int OpenWorld(void);

signals:

public slots:

};

#endif // THEQTWORLD_H

// theqtworld.cpp

#include "theqtworld.h"

TheQtWorld::TheQtWorld(QObject *parent) :
    QObject(parent)
{
}

int TheQtWorld::OpenWorld()
{
    static int arg = 0;
    static char *b[2];
    b[0] = "a";

    QApplication *a = new QApplication(arg, b);
    a->setParent(this);

    MainWindow w;
    w.show();

    return a->exec();
}

1 个答案:

答案 0 :(得分:1)

在理解如何克服这个问题后,我会回答我自己的问题

首先问题是将Qt GUI作为插件集成到另一个应用程序中,因此主要问题是Qt事件与任何其他应用程序事件之间的事件循环冲突

我的第一个想法是将两者分开,所以QApplication将保持不同的线程,但这是一个完全错误的方法,这是我注意到的:

1- Qt GUI必须留在main()线程so there is no other place for QApplication中 2-以避免阻塞QApplication::exec(),将QApplication::processEvents()嵌入到其他应用程序事件循环中

这是一个有效的代码:

//main.cpp

#include <QApplication>
#include "mainwindow.h"

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

    //just for testing and holding the program so it doesn't end
    for(int i = 0; i < 100000000; ++i)
    {
        mApp.processEvents();
    }
    return 0;
}

编辑:感谢pavel-strakhov的伟大建议。