diff options
author | Grace Karanja <gracie.karanja89@gmail.com> | 2015-05-27 13:34:55 +0300 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2015-06-20 14:17:14 -0700 |
commit | e2c1d24d02be8be0a056bd5bca65a619bf870831 (patch) | |
tree | 400a604f54ff644a2337741be051aedc07a9a132 /qt-mobile/main.qml | |
parent | 424cf6ca5741f00331a016812a37deedb2e599cc (diff) | |
download | subsurface-e2c1d24d02be8be0a056bd5bca65a619bf870831.tar.gz |
Add a menu to main.qml
Add a menu with an Exit submenu in the main.qml file. This closes
the application when clicked.
Signed-off-by: Grace Karanja <gracie.karanja89@gmail.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-mobile/main.qml')
-rw-r--r-- | qt-mobile/main.qml | 18 |
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(); + } + } + } +} |