我开发了一个具有Qt共享库和Qt应用程序的应用程序. Qt共享库导出单个类,其中包含很少的信号.我为此使用了Q_DECL_EXPORT / Q_DECL_IMPORT宏.现在,dll和应用程序之间的通信是通过Qt信号和插槽进行的,需要使用QObject开发应用程序.
现在我被要求将Qt共享库作为理想的DLL,其中客户端应用程序不依赖于Qt框架.
我看到以下帖子但是Using a Qt-based DLL in a non-Qt application但不确定这是否是最好的方法.
请问有人可以选择开发用于非Qt应用程序的Qt共享库.
您可以在库中的新线程中创建QCoreApplication的实例.你应该检查只创建它的一个实例,那是因为每个Qt应用程序应该只包含一个QCoreApplication.
原文链接:https://www.f2er.com/windows/441244.html所以你的图书馆可以像:
class Q_DECL_EXPORT SharedLibrary :public QObject { Q_OBJECT public: SharedLibrary(); private slots: void onStarted(); private: static int argc = 1; static char * argv[] = {"SharedLibrary",NULL}; static QCoreApplication * app = NULL; static QThread * thread = NULL; }; SharedLibrary::SharedLibrary() { if (thread == NULL) { thread = new QThread(); connect(thread,SIGNAL(started()),this,SLOT(onStarted()),Qt::DirectConnection); thread->start(); } } SharedLibrary::onStarted() { if (QCoreApplication::instance() == NULL) { app = new QCoreApplication(argc,argv); app->exec(); } }
这样,即使在非Qt应用程序中,您也可以使用Qt共享库.