What signal does it tell me when the QQuickWidget closes?
For example I wrote the following code :
QQuickWidget *view = new QQuickWidget;
view->setSource(QUrl::fromLocalFile("main.qml"));
view->show();
I have an ApplicationWindow
in the main.qml
file and I want to execute some code right after the qml window gets closed.