summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--qt-mobile/main.qml18
1 files changed, 18 insertions, 0 deletions
diff --git a/qt-mobile/main.qml b/qt-mobile/main.qml
index e69de29bb..52cfd9838 100644
--- a/qt-mobile/main.qml
+++ b/qt-mobile/main.qml
@@ -0,0 +1,18 @@
+import QtQuick 2.3
+import QtQuick.Controls 1.2
+import QtQuick.Window 2.2
+
+ApplicationWindow {
+ title: qsTr("Subsurface")
+ width: 500;
+ height: 700
+ menuBar: MenuBar {
+ Menu {
+ title: qsTr("File")
+ MenuItem {
+ text: qsTr("Exit")
+ onTriggered: Qt.quit();
+ }
+ }
+ }
+}