How can I access my Window object properties from C++ while using QQmlApplicationEngine?
Turning my comment into a proper answer: this is usually done by two methods: Get the root object of your QML scene through a view if you use QQuickView or just the QQmlApplicationEngine directly. This next step can be omitted for root objects, but for “qml objects” in general, you will need to have the … Read more