Getting QWidget from Another App?

236 Views Asked by At

I have App1, where I have some QWidgets (as containers). In App2 there are some other widgets like QLabel, QCheckBox and so on. App2 should be able to show its widgets in my app.

Any idea how can I do it?

I tried to get WId of picked widget (by using winId() method) and create a windowContainer for that widget, but there are a lot of problems with this method.

I can't do this by using QWidget::find(WId id) because this is in-process, and App1 and App2 are separate processes.

0

There are 0 best solutions below