summaryrefslogtreecommitdiffstats
path: root/qt-mobile/main.qml
blob: 52cfd9838f47592c5a5faeb4cd73a2d401b269fc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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();
			}
		}
	}
}