From 9028c807b2ca1e9c8bba4a570c4c780cc962ca61 Mon Sep 17 00:00:00 2001 From: Dirk Hohndel Date: Mon, 14 Mar 2016 06:33:47 -0700 Subject: Change names of iOS build files The name subsurface-ios was used in many places and that was just not helpful to fight against. This should work much better. Signed-off-by: Dirk Hohndel --- packaging/ios/Subsurface-mobile/main.qml | 40 ++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 packaging/ios/Subsurface-mobile/main.qml (limited to 'packaging/ios/Subsurface-mobile/main.qml') diff --git a/packaging/ios/Subsurface-mobile/main.qml b/packaging/ios/Subsurface-mobile/main.qml new file mode 100644 index 000000000..26b1a7998 --- /dev/null +++ b/packaging/ios/Subsurface-mobile/main.qml @@ -0,0 +1,40 @@ +import QtQuick 2.6 +import QtQuick.Controls 1.5 +import QtQuick.Dialogs 1.2 + +ApplicationWindow { + visible: true + width: 640 + height: 480 + title: qsTr("Hello World") + + menuBar: MenuBar { + Menu { + title: qsTr("File") + MenuItem { + text: qsTr("&Open") + onTriggered: console.log("Open action triggered"); + } + MenuItem { + text: qsTr("Exit") + onTriggered: Qt.quit(); + } + } + } + + MainForm { + anchors.fill: parent + button1.onClicked: messageDialog.show(qsTr("Button 1 pressed")) + button2.onClicked: messageDialog.show(qsTr("Button 2 pressed")) + } + + MessageDialog { + id: messageDialog + title: qsTr("May I have your attention, please?") + + function show(caption) { + messageDialog.text = caption; + messageDialog.open(); + } + } +} -- cgit v1.2.3-70-g09d2