Hi all, I'm using a QDeclarativeView object to open a qml file. I use it as such:

MainView w;
w.setSource(QUrl::fromLocalFile(settings.value("ma in_view").toString()));

Where MainView inherits from QDeclarativeView

In my mainview.qml file I use a Loader to load various QML files depending on what the user selects from menus. How can I tell in C++ when the underlying QML structure changes? Is there a signal I can hook into?

Thanks