aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qquickloader/data/statusChanged.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/quick/qquickloader/data/statusChanged.qml')
-rw-r--r--tests/auto/quick/qquickloader/data/statusChanged.qml16
1 files changed, 16 insertions, 0 deletions
diff --git a/tests/auto/quick/qquickloader/data/statusChanged.qml b/tests/auto/quick/qquickloader/data/statusChanged.qml
new file mode 100644
index 0000000000..fe46bc7b24
--- /dev/null
+++ b/tests/auto/quick/qquickloader/data/statusChanged.qml
@@ -0,0 +1,16 @@
+import QtQuick 2.12
+import QtQuick.Window 2.12
+
+Window {
+ id: root
+ property int statusChangedCounter: 0
+ property alias status: loader.status
+ visible: true; width: 640; height: 480
+ Loader {
+ id: loader
+ anchors.fill: parent
+ asynchronous: true
+ source: "./RedRect.qml"
+ onStatusChanged: root.statusChangedCounter++
+ }
+}