aboutsummaryrefslogtreecommitdiffstats
path: root/DemoApplication/pages/Page1.qml
diff options
context:
space:
mode:
Diffstat (limited to 'DemoApplication/pages/Page1.qml')
-rw-r--r--DemoApplication/pages/Page1.qml78
1 files changed, 78 insertions, 0 deletions
diff --git a/DemoApplication/pages/Page1.qml b/DemoApplication/pages/Page1.qml
new file mode 100644
index 0000000..b73be48
--- /dev/null
+++ b/DemoApplication/pages/Page1.qml
@@ -0,0 +1,78 @@
+import QtQuick 2.9
+
+import CursorNavigation 1.0
+import "../controls"
+
+Item {
+ width: parent.width
+ height: parent.height
+
+ FocusScope {
+ anchors.fill: parent
+
+ Item {
+ width: 500
+ height: 400
+ anchors.centerIn: parent
+
+ CNButton {
+ id: button
+ x: 52
+ y: 50
+ text: qsTr("Button")
+ }
+
+ CNButton {
+ id: button1
+ x: 110
+ y: 138
+ text: qsTr("Button")
+ }
+
+ CNButton {
+ id: button2
+ x: 160
+ y: 241
+ text: qsTr("Button with default focus")
+ focus: true
+ }
+
+ CNButton {
+ id: button3
+ x: 383
+ y: 241
+ text: qsTr("Button")
+ }
+
+ CNButton {
+ id: button4
+ x: 383
+ y: 322
+ text: qsTr("Button")
+ }
+
+ CNButton {
+ id: button5
+ x: 383
+ y: 138
+ text: qsTr("Button")
+ }
+
+ CNButton {
+ id: button6
+ x: 383
+ y: 50
+ text: qsTr("Button")
+ }
+
+ CNButton {
+ id: button7
+ x: 62
+ y: 241
+ text: qsTr("Button")
+ }
+ }
+ //this seems to be the way to force focus on a newly opened dialog?
+ Component.onCompleted: { forceActiveFocus(); }
+ }
+}