aboutsummaryrefslogtreecommitdiff
path: root/ui.qt/source/qml/MainWindow.qml
diff options
context:
space:
mode:
Diffstat (limited to 'ui.qt/source/qml/MainWindow.qml')
-rw-r--r--ui.qt/source/qml/MainWindow.qml12
1 files changed, 12 insertions, 0 deletions
diff --git a/ui.qt/source/qml/MainWindow.qml b/ui.qt/source/qml/MainWindow.qml
new file mode 100644
index 0000000..905f0e8
--- /dev/null
+++ b/ui.qt/source/qml/MainWindow.qml
@@ -0,0 +1,12 @@
+import QtQuick
+
+Window {
+ width: 640
+ height: 480
+ visible: true
+ title: qsTr("Hello World")
+
+ Document {
+ id: doc
+ }
+}