Qt Modality Over Another Application?
-
wrote on 8 Apr 2011, 04:32 last edited by
Bit of an odd question, but is there a way for one Qt application running in a different address space to give it's main window modality over another main window in another application? What sort of information is required by either application? HWND, window ID?
I'm interested in pushing certain functionality into DLL files or SO files (depending on the platform) and this is a significant concern.
-
wrote on 8 Apr 2011, 06:43 last edited by
Shared libraries share the address space of the executable using them, so pushing functionality into a library should not necessitate making one window modal to another applications window.
-
wrote on 8 Apr 2011, 07:52 last edited by
It is not possible to give memory from one process to another directly. The address spaces are separated. You can use some IPC mechanisms to communicate between them, but the resources stay in the process where they are.
3/3