How to access Qt GUI from an library using qt designer form
-
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 ?
-
What's still not clear is whether you are writing a full-blown Qt application for that. Is it the case ?
-
@SGaist yes now i have created separate qt application and invoking that application from library using pipe mechanism..
Now the issue is 'getting value from that application(what ever entered in qlineedit of dialog box)' -
@Srujan Your Qt application could write to stdout and your library would read stdout of that application and parse it. See the documentation for QProcess.