How to access Qt GUI from an library using qt designer form
-
@mrjj
Through normal application I am able to invoke QT GUI part.
Here my application code..// //main.cpp // #include <QCoreApplication> #include"helper.h" #include <QtWidgets/QApplication> int main(int argc, char *argv[]) { QApplication a(argc, argv); // previously its like QCoreApplication show_dialog1( ); return a.exec(); }
//changes in .pro file QT += gui greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
After these changes in application project, able to invoke GUI part in shared library
But through our standard applications not able to invoke.
Any idea-
That what changes required for such applications....!!Any way thanks for your support....
-
Hi,
What are your "standard application" ?
-
Let me rephrase that: what toolkit does it use ?
Is it already using Qt ?
Are you building that app yourself or are you writing a plugin for it and have no access to its internals ?
-
The question you are not answering is: are you working on that software code source directly ?
-
Ok, then are you converting it to a full-blown Qt application ?
-
@SGaist
If you are talking about- Cryptoki manager then i am not working on that application. I working on the library that is used to test with cryptokimanager(thrid party standard application).
As specified earlier, in my library there is a need of dialog part. -
So you are going to call the Cryptoki manager application from your code ?
-
What's still not clear is whether you are writing a full-blown Qt application for that. Is it the case ?