Hello,
I need to have the following app architecture (QtQuick2, Qt 5.3):
Master app
child app 1
child app 2
Each app has its own process, Master app enables two views that are later passed onto new processes so they can render themselves inside master app’s window. Master app can move the “windows” around freely, controlling where on the screen the children apps are rendered.
I’ve been trying to do that with QWindow->winId and QWindow::fromWinId with no success.
Must I use QWidget::createWindowContainer() for that?? I’m not really familiar with QWidget apps, but it says on the docs: “Using many window container instances in a QWidget-based application can greatly hurt the overall performance of the application.”
Appreciate any help.
↧