aboutsummaryrefslogtreecommitdiff
path: root/ui.qt/qml/MainWindow.qml
diff options
context:
space:
mode:
Diffstat (limited to 'ui.qt/qml/MainWindow.qml')
-rw-r--r--ui.qt/qml/MainWindow.qml21
1 files changed, 21 insertions, 0 deletions
diff --git a/ui.qt/qml/MainWindow.qml b/ui.qt/qml/MainWindow.qml
new file mode 100644
index 0000000..d81fb4f
--- /dev/null
+++ b/ui.qt/qml/MainWindow.qml
@@ -0,0 +1,21 @@
+import QtQuick
+
+Window {
+ width: 640
+ height: 480
+ visible: true
+ title: qsTr("Hello World")
+
+ Navigator {
+ id: navigator
+ width: childrenRect.width
+ height: parent.height
+ }
+
+ Document {
+ id: document
+ height: parent.height
+ anchors.left: navigator.right
+ anchors.right: parent.right
+ }
+}