summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativefocusscope/data/notifications.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/declarative/qdeclarativefocusscope/data/notifications.qml')
-rw-r--r--tests/auto/declarative/qdeclarativefocusscope/data/notifications.qml81
1 files changed, 81 insertions, 0 deletions
diff --git a/tests/auto/declarative/qdeclarativefocusscope/data/notifications.qml b/tests/auto/declarative/qdeclarativefocusscope/data/notifications.qml
new file mode 100644
index 00000000..8345972a
--- /dev/null
+++ b/tests/auto/declarative/qdeclarativefocusscope/data/notifications.qml
@@ -0,0 +1,81 @@
+import QtQuick 1.1
+
+Item {
+ objectName: "rootItem"
+
+ property bool handlerFocus
+ property bool handlerActiveFocus
+
+ onFocusChanged: handlerFocus = focus
+ onActiveFocusChanged: handlerActiveFocus = activeFocus
+
+ Item {
+ objectName: "item1"
+
+ property bool handlerFocus
+ property bool handlerActiveFocus
+
+ onFocusChanged: handlerFocus = focus
+ onActiveFocusChanged: handlerActiveFocus = activeFocus
+ }
+
+ Item {
+ objectName: "item2"
+
+ property bool handlerFocus
+ property bool handlerActiveFocus
+
+ onFocusChanged: handlerFocus = focus
+ onActiveFocusChanged: handlerActiveFocus = activeFocus
+
+ Item {
+ objectName: "item3"
+
+ property bool handlerFocus
+ property bool handlerActiveFocus
+
+ onFocusChanged: handlerFocus = focus
+ onActiveFocusChanged: handlerActiveFocus = activeFocus
+ }
+ }
+
+ FocusScope {
+ objectName: "scope1"
+
+ property bool handlerFocus
+ property bool handlerActiveFocus
+
+ onFocusChanged: handlerFocus = focus
+ onActiveFocusChanged: handlerActiveFocus = activeFocus
+
+ Item {
+ objectName: "item4"
+
+ property bool handlerFocus
+ property bool handlerActiveFocus
+
+ onFocusChanged: handlerFocus = focus
+ onActiveFocusChanged: handlerActiveFocus = activeFocus
+ }
+
+ FocusScope {
+ objectName: "scope2"
+
+ property bool handlerFocus
+ property bool handlerActiveFocus
+
+ onFocusChanged: handlerFocus = focus
+ onActiveFocusChanged: handlerActiveFocus = activeFocus
+
+ Item {
+ objectName: "item5"
+
+ property bool handlerFocus
+ property bool handlerActiveFocus
+
+ onFocusChanged: handlerFocus = focus
+ onActiveFocusChanged: handlerActiveFocus = activeFocus
+ }
+ }
+ }
+}