2015-05-27 13:34:55 +03:00
|
|
|
import QtQuick 2.3
|
|
|
|
import QtQuick.Controls 1.2
|
2015-07-26 13:52:46 +02:00
|
|
|
import QtQuick.Controls.Styles 1.2
|
2015-05-27 13:34:55 +03:00
|
|
|
import QtQuick.Window 2.2
|
2015-06-04 11:27:38 +03:00
|
|
|
import QtQuick.Dialogs 1.2
|
2015-07-10 11:05:13 +03:00
|
|
|
import QtQuick.Layouts 1.1
|
2015-07-30 08:17:09 +02:00
|
|
|
import QtQuick.Window 2.2
|
2015-06-04 13:36:36 +03:00
|
|
|
import org.subsurfacedivelog.mobile 1.0
|
2015-10-09 01:57:10 +02:00
|
|
|
import "qrc:/qml/theme" as Theme
|
|
|
|
|
2015-05-27 13:34:55 +03:00
|
|
|
|
|
|
|
ApplicationWindow {
|
2015-07-12 10:42:23 -07:00
|
|
|
title: qsTr("Subsurface mobile")
|
|
|
|
property bool fullscreen: true
|
2015-07-12 17:39:13 -07:00
|
|
|
property alias messageText: message.text
|
2015-07-12 10:42:23 -07:00
|
|
|
visible: true
|
2015-06-04 11:27:38 +03:00
|
|
|
|
2015-10-09 01:57:10 +02:00
|
|
|
Theme.Units {
|
|
|
|
id: units
|
2015-11-07 03:08:05 +01:00
|
|
|
|
2015-11-12 00:18:57 +01:00
|
|
|
property int titlePointSize: Math.round(fontMetrics.font.pointSize * 1.5)
|
|
|
|
property int smallPointSize: Math.round(fontMetrics.font.pointSize * 0.7)
|
2015-11-07 03:08:05 +01:00
|
|
|
|
2015-10-09 01:57:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
Theme.Theme {
|
|
|
|
id: theme
|
2015-11-06 21:52:04 +00:00
|
|
|
/* Added for subsurface */
|
|
|
|
property color accentColor: "#2d5b9a"
|
|
|
|
property color accentTextColor: "#ececec"
|
2015-10-09 01:57:10 +02:00
|
|
|
}
|
|
|
|
|
2015-07-26 12:48:33 +02:00
|
|
|
Menu {
|
|
|
|
id: prefsMenu
|
|
|
|
title: "Menu"
|
|
|
|
|
|
|
|
MenuItem {
|
|
|
|
text: "Preferences"
|
|
|
|
onTriggered: {
|
|
|
|
stackView.push(prefsWindow)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
MenuItem {
|
|
|
|
text: "Load Dives"
|
|
|
|
onTriggered: {
|
|
|
|
manager.loadDives();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
MenuItem {
|
|
|
|
text: "Download Dives"
|
|
|
|
onTriggered: {
|
|
|
|
stackView.push(downloadDivesWindow)
|
|
|
|
}
|
|
|
|
}
|
2015-08-10 08:35:47 +03:00
|
|
|
|
|
|
|
MenuItem {
|
|
|
|
text: "Add Dive"
|
|
|
|
onTriggered: {
|
|
|
|
manager.addDive();
|
|
|
|
stackView.push(detailsWindow)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-07-26 12:48:33 +02:00
|
|
|
MenuItem {
|
|
|
|
text: "Save Changes"
|
|
|
|
onTriggered: {
|
|
|
|
manager.saveChanges();
|
|
|
|
}
|
|
|
|
}
|
2015-08-19 10:18:26 +03:00
|
|
|
|
2015-11-11 12:34:56 -08:00
|
|
|
MenuItem {
|
|
|
|
text: "Run location service"
|
|
|
|
checkable: true
|
|
|
|
checked: manager.locationServiceEnabled
|
|
|
|
onToggled: {
|
2015-11-11 15:19:09 -08:00
|
|
|
manager.locationServiceEnabled = checked;
|
2015-11-11 12:34:56 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-08-19 10:18:26 +03:00
|
|
|
MenuItem {
|
|
|
|
text: "View Log"
|
|
|
|
onTriggered: {
|
|
|
|
stackView.push(logWindow)
|
|
|
|
}
|
|
|
|
}
|
2015-11-06 21:53:26 +00:00
|
|
|
|
|
|
|
MenuItem {
|
|
|
|
text: "Theme Information"
|
|
|
|
onTriggered: {
|
|
|
|
stackView.push(themetest)
|
|
|
|
}
|
|
|
|
}
|
2015-07-26 12:48:33 +02:00
|
|
|
}
|
|
|
|
|
2015-11-07 03:08:05 +01:00
|
|
|
ColumnLayout {
|
2015-07-10 11:05:13 +03:00
|
|
|
anchors.fill: parent
|
2015-07-17 18:28:01 +03:00
|
|
|
|
2015-11-07 03:08:05 +01:00
|
|
|
TopBar {
|
2015-06-10 21:39:43 +03:00
|
|
|
|
2015-11-07 03:08:05 +01:00
|
|
|
}
|
2015-06-10 21:39:43 +03:00
|
|
|
|
2015-11-07 03:08:05 +01:00
|
|
|
StackView {
|
|
|
|
id: stackView
|
|
|
|
Layout.preferredWidth: parent.width
|
|
|
|
Layout.fillHeight: true
|
|
|
|
focus: true
|
|
|
|
Keys.onReleased: if (event.key == Qt.Key_Back && stackView.depth > 1) {
|
|
|
|
stackView.pop()
|
|
|
|
event.accepted = true;
|
2015-07-12 10:56:48 -07:00
|
|
|
}
|
2015-11-07 03:08:05 +01:00
|
|
|
initialItem: Item {
|
|
|
|
width: parent.width
|
|
|
|
height: parent.height
|
|
|
|
|
|
|
|
ColumnLayout {
|
|
|
|
id: awLayout
|
|
|
|
anchors.fill: parent
|
|
|
|
spacing: units.gridUnit / 2
|
|
|
|
|
|
|
|
Rectangle {
|
|
|
|
id: detailsPage
|
|
|
|
Layout.fillHeight: true
|
|
|
|
Layout.fillWidth: true
|
|
|
|
|
|
|
|
DiveList {
|
|
|
|
anchors.fill: detailsPage
|
|
|
|
id: diveDetails
|
|
|
|
color: theme.backgroundColor
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Rectangle {
|
|
|
|
id: messageArea
|
|
|
|
height: childrenRect.height
|
|
|
|
Layout.fillWidth: true
|
2015-11-12 00:18:57 +01:00
|
|
|
color: theme.backgroundColor
|
2015-06-10 21:39:43 +03:00
|
|
|
|
2015-11-07 03:08:05 +01:00
|
|
|
Text {
|
|
|
|
id: message
|
|
|
|
color: theme.textColor
|
2015-11-12 00:18:57 +01:00
|
|
|
wrapMode: TextEdit.WrapAtWordBoundaryOrAnywhere
|
2015-11-07 03:08:05 +01:00
|
|
|
styleColor: theme.textColor
|
2015-11-12 00:18:57 +01:00
|
|
|
font.pointSize: units.smallPointSize
|
2015-11-07 03:08:05 +01:00
|
|
|
}
|
2015-07-12 17:39:13 -07:00
|
|
|
}
|
2015-11-07 03:08:05 +01:00
|
|
|
}
|
2015-07-10 11:05:13 +03:00
|
|
|
}
|
2015-06-09 22:20:44 +03:00
|
|
|
}
|
2015-07-12 10:56:48 -07:00
|
|
|
}
|
2015-07-10 11:40:30 +03:00
|
|
|
|
2015-07-12 10:56:48 -07:00
|
|
|
QMLManager {
|
|
|
|
id: manager
|
2015-06-09 22:20:44 +03:00
|
|
|
}
|
2015-07-12 10:56:48 -07:00
|
|
|
|
|
|
|
Preferences {
|
|
|
|
id: prefsWindow
|
|
|
|
visible: false
|
|
|
|
}
|
|
|
|
|
2015-07-21 15:00:29 +03:00
|
|
|
DiveDetails {
|
|
|
|
id: detailsWindow
|
|
|
|
visible: false
|
|
|
|
}
|
2015-07-23 14:46:02 +03:00
|
|
|
|
|
|
|
DownloadFromDiveComputer {
|
|
|
|
id: downloadDivesWindow
|
|
|
|
visible: false
|
|
|
|
}
|
2015-08-19 10:18:26 +03:00
|
|
|
|
|
|
|
Log {
|
|
|
|
id: logWindow
|
|
|
|
visible: false
|
|
|
|
}
|
2015-10-09 01:57:10 +02:00
|
|
|
|
2015-11-06 21:53:26 +00:00
|
|
|
ThemeTest {
|
|
|
|
id: themetest
|
|
|
|
visible: false
|
|
|
|
}
|
|
|
|
|
2015-10-09 01:57:10 +02:00
|
|
|
Component.onCompleted: {
|
2015-10-09 02:49:21 +02:00
|
|
|
print("units.gridUnit is: " + units.gridUnit);
|
2015-10-09 01:57:10 +02:00
|
|
|
}
|
2015-05-27 13:34:55 +03:00
|
|
|
}
|