我正在编写一个DLL,该DLL被另一个应用程序用作插件,并希望利用Qt的功能。
我已经设置,编译和运行了所有类,但是没有信号发出。
因此,似乎没有QEventLoop。

尝试1:
我将主类修改为QThread而不是QObject的子类,然后在run()中创建QEventLoop,连接所有信号/插槽,并执行线程。
但是它不能说没有QApplication就不能拥有QEventLoop。

尝试2:
我修改了主类(仍然是QThraed的子类),以实例化一个QCoreApplication,连接所有信号/插槽,然后执行该应用程序。
警告QApplication不是在main()线程中创建的,并且仍然不会发出信号。

我不太确定该怎么做。我显然无法在将使用我的插件的应用程序中创建QCoreApplication,并且如果没有一个我就无法发出信号。

我提供了一个简单的(可怕的书面)测试应用程序,该应用程序可以说明我的问题:

任何帮助,将不胜感激!

main.cpp:

#include <iostream>
#include "ThreadThing.h"
using namespace std;
int main(int argc, char *argv[])
{
    cout << "Main: " << 1 << endl;
    ThreadThing thing1;
    cout << "Main: " << 2 << endl;
    thing1.testStart();
    cout << "Main: " << 3 << endl;
    thing1.testEnd();
    cout << "Main: " << 4 << endl;
    thing1.wait(-1);
    cout << "Main: " << 5 << endl;
    return 0;
}

ThreadThing.h:
#ifndef THREADTHING_H
#define THREADTHING_H
#include <QThread>
class ThreadThing : public QThread
{
    Q_OBJECT
public:
    ThreadThing();
    virtual void run();
    void testStart();
    void testEnd();
public slots:
    void testSlot();
signals:
    void testSignal();
};
#endif//THREADTHING_H

ThreadThing.cpp:
#include "ThreadThing.h"
#include <iostream>
#include <QCoreApplication>

using namespace std;

ThreadThing::ThreadThing()
{
    cout << "Constructor: " << 1 << endl;
    this->start();
    cout << "Constructor: " << 2 << endl;
}

void ThreadThing::run()
{
    cout << "Run: " << 1 << endl;
    int i = 0;
    cout << "Run: " << 2 << endl;
    QCoreApplication* t = new QCoreApplication(i, 0);
    cout << "Run: " << 3 << endl;
    connect(this, SIGNAL(testSignal()), this, SLOT(testSlot()), Qt::QueuedConnection);
    cout << "Run: " << 4 << endl;
    t->exec();
    cout << "Run: " << 5 << endl;
}

void ThreadThing::testStart()
{
    cout << "TestStart: " << 1 << endl;
    emit testSignal();
    cout << "TestStart: " << 2 << endl;
}

void ThreadThing::testEnd()
{
    cout << "TestEnd: " << 1 << endl;
    this->quit();
    cout << "TestEnd: " << 1 << endl;
}

void ThreadThing::testSlot()
{
    cout << "TEST WORKED" << endl;
}

输出:
Main: 1
Constructor: 1
Constructor: 2
Main: 2
TestStart: 1
TestStart: 2
Main: 3
TestEnd: 1
TestEnd: 1
Main: 4
Run: 1
Run: 2
WARNING: QApplication was not created in the main() thread.
Run: 3
Run: 4

最佳答案

您必须创建一个QCoreApplication或QApplication,并且必须在主线程中执行此操作。

这并不意味着您不能将其代码放入插件中……除非应用程序始终在各自的线程中运行每个插件。

如果应用程序正在执行此操作,则可以尝试挂接到该应用程序使用的任何 native 事件循环,并安排它在主线程中的插件中调用某些函数。

10-06 13:56