| 
									
										
										
										
											2015-11-29 17:43:56 +01:00
										 |  |  | import QtQuick 2.4 | 
					
						
							| 
									
										
										
										
											2017-03-31 16:15:14 +02:00
										 |  |  | import QtQuick.Controls 2.0 | 
					
						
							| 
									
										
										
										
											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 | 
					
						
							| 
									
										
										
										
											2017-03-31 16:15:14 +02:00
										 |  |  | import org.kde.kirigami 2.0 as Kirigami | 
					
						
							| 
									
										
										
										
											2015-10-09 01:57:10 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-08 21:26:54 +01:00
										 |  |  | Kirigami.ApplicationWindow { | 
					
						
							| 
									
										
										
										
											2015-12-03 23:27:27 +01:00
										 |  |  | 	id: rootItem | 
					
						
							| 
									
										
										
										
											2016-01-01 09:34:32 -08:00
										 |  |  | 	title: qsTr("Subsurface-mobile") | 
					
						
							| 
									
										
										
										
											2016-04-01 16:54:22 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-22 18:12:15 +02:00
										 |  |  | 	header: Kirigami.ApplicationHeader { | 
					
						
							|  |  |  | 		minimumHeight: 0 | 
					
						
							|  |  |  | 		preferredHeight: Kirigami.Units.gridUnit * (Qt.platform.os == "ios" ? 2 : 1) | 
					
						
							|  |  |  | 		maximumHeight: Kirigami.Units.gridUnit * 2 | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2015-07-12 10:42:23 -07:00
										 |  |  | 	property bool fullscreen: true | 
					
						
							| 
									
										
										
										
											2016-04-06 11:42:38 -07:00
										 |  |  | 	property alias oldStatus: manager.oldStatus | 
					
						
							| 
									
										
										
										
											2016-03-02 17:14:47 -08:00
										 |  |  | 	property alias accessingCloud: manager.accessingCloud | 
					
						
							|  |  |  | 	property QtObject notification: null | 
					
						
							| 
									
										
										
										
											2016-03-30 20:38:51 -05:00
										 |  |  | 	property bool showingDiveList: false | 
					
						
							| 
									
										
										
										
											2016-04-03 18:33:40 -07:00
										 |  |  | 	property alias syncToCloud: manager.syncToCloud | 
					
						
							| 
									
										
										
										
											2016-06-13 16:42:36 -07:00
										 |  |  | 	property alias showPin: manager.showPin | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-02 17:14:47 -08:00
										 |  |  | 	onAccessingCloudChanged: { | 
					
						
							| 
									
										
										
										
											2016-04-19 10:27:18 -07:00
										 |  |  | 		// >= 0 for updating cloud, -1 for hide, < -1 for local storage
 | 
					
						
							| 
									
										
										
										
											2016-04-03 19:00:49 -05:00
										 |  |  | 		if (accessingCloud >= 0) { | 
					
						
							| 
									
										
										
										
											2016-04-03 18:00:00 -07:00
										 |  |  | 			// we now keep updating this to show progress, so timing out after 30 seconds is more useful
 | 
					
						
							|  |  |  | 			// but should still be very conservative
 | 
					
						
							| 
									
										
										
										
											2016-04-19 10:27:18 -07:00
										 |  |  | 			showPassiveNotification("Accessing Subsurface cloud storage " + accessingCloud +"%", 30000); | 
					
						
							|  |  |  | 		} else if (accessingCloud < -1) { | 
					
						
							|  |  |  | 			// local storage should be much faster, so timeout of 5 seconds
 | 
					
						
							|  |  |  | 			// the offset of 2 is so that things start 0 again
 | 
					
						
							|  |  |  | 			showPassiveNotification("Accessing local storage " + -(accessingCloud + 2) +"%", 5000); | 
					
						
							| 
									
										
										
										
											2016-03-02 17:14:47 -08:00
										 |  |  | 		} else { | 
					
						
							| 
									
										
										
										
											2016-03-03 19:35:33 +01:00
										 |  |  | 			hidePassiveNotification(); | 
					
						
							| 
									
										
										
										
											2016-03-02 17:14:47 -08:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2015-11-29 17:43:56 +01:00
										 |  |  | 	FontMetrics { | 
					
						
							|  |  |  | 		id: fontMetrics | 
					
						
							| 
									
										
										
										
											2017-04-14 13:05:01 -07:00
										 |  |  | 		/* this shouldn't be needed anymore | 
					
						
							| 
									
										
										
										
											2016-09-20 06:42:34 -07:00
										 |  |  | 		Component.onCompleted: { | 
					
						
							|  |  |  | 			if (Math.round(rootItem.width / Kirigami.Units.gridUnit) < 20) { | 
					
						
							|  |  |  | 				fontMetrics.font.pointSize = fontMetrics.font.pointSize * 2 / 3 | 
					
						
							|  |  |  | 				Kirigami.Theme.defaultFont.pointSize = fontMetrics.font.pointSize | 
					
						
							|  |  |  | 				console.log("Reduce font size for narrow screens: " + fontMetrics.font.pointSize) | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2017-04-14 13:05:01 -07:00
										 |  |  | 		*/ | 
					
						
							| 
									
										
										
										
											2015-11-29 17:43:56 +01:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-01-19 12:42:58 -08:00
										 |  |  | 	visible: false | 
					
						
							| 
									
										
										
										
											2016-12-27 18:36:02 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// TODO: Verify where the opacity went to.
 | 
					
						
							|  |  |  | 	// opacity: 0
 | 
					
						
							| 
									
										
										
										
											2015-06-04 11:27:38 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-10 21:47:09 -08:00
										 |  |  | 	function returnTopPage() { | 
					
						
							|  |  |  | 		for (var i=stackView.depth; i>1; i--) { | 
					
						
							|  |  |  | 			stackView.pop() | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		detailsWindow.endEditMode() | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-30 20:39:25 -05:00
										 |  |  | 	function scrollToTop() { | 
					
						
							|  |  |  | 		diveList.scrollToTop() | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-02 07:09:40 -05:00
										 |  |  | 	function showMap(location) { | 
					
						
							|  |  |  | 		var urlPrefix = "https://www.google.com/maps/place/" | 
					
						
							|  |  |  | 		var locationPair = location + "/@" + location | 
					
						
							|  |  |  | 		var urlSuffix = ",5000m/data=!3m1!1e3!4m2!3m1!1s0x0:0x0" | 
					
						
							|  |  |  | 		Qt.openUrlExternally(urlPrefix + locationPair + urlSuffix) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-01 22:29:39 -05:00
										 |  |  | 	function startAddDive() { | 
					
						
							|  |  |  | 		detailsWindow.state = "add" | 
					
						
							|  |  |  | 		detailsWindow.dive_id = manager.addDive(); | 
					
						
							|  |  |  | 		detailsWindow.number = manager.getNumber(detailsWindow.dive_id) | 
					
						
							|  |  |  | 		detailsWindow.date = manager.getDate(detailsWindow.dive_id) | 
					
						
							|  |  |  | 		detailsWindow.airtemp = "" | 
					
						
							|  |  |  | 		detailsWindow.watertemp = "" | 
					
						
							| 
									
										
										
										
											2016-05-20 18:48:36 +02:00
										 |  |  | 		detailsWindow.buddyModel = manager.buddyInit | 
					
						
							|  |  |  | 		detailsWindow.buddyIndex = -1 | 
					
						
							| 
									
										
										
										
											2017-04-14 17:09:09 -07:00
										 |  |  | 		detailsWindow.buddyText = "" | 
					
						
							| 
									
										
										
										
											2016-04-01 22:29:39 -05:00
										 |  |  | 		detailsWindow.depth = "" | 
					
						
							| 
									
										
										
										
											2016-05-20 18:48:36 +02:00
										 |  |  | 		detailsWindow.divemasterModel = manager.divemasterInit | 
					
						
							|  |  |  | 		detailsWindow.divemasterIndex = -1 | 
					
						
							| 
									
										
										
										
											2017-04-14 17:09:09 -07:00
										 |  |  | 		detailsWindow.divemasterText = "" | 
					
						
							| 
									
										
										
										
											2016-04-01 22:29:39 -05:00
										 |  |  | 		detailsWindow.notes = "" | 
					
						
							|  |  |  | 		detailsWindow.location = "" | 
					
						
							| 
									
										
										
										
											2016-04-15 05:17:39 -07:00
										 |  |  | 		detailsWindow.gps = "" | 
					
						
							| 
									
										
										
										
											2016-04-01 22:29:39 -05:00
										 |  |  | 		detailsWindow.duration = "" | 
					
						
							| 
									
										
										
										
											2016-05-20 18:48:36 +02:00
										 |  |  | 		detailsWindow.suitModel = manager.suitInit | 
					
						
							|  |  |  | 		detailsWindow.suitIndex = -1 | 
					
						
							| 
									
										
										
										
											2017-04-14 17:09:09 -07:00
										 |  |  | 		detailsWindow.suitText = "" | 
					
						
							|  |  |  | 		detailsWindow.cylinderModel = manager.cylinderInit | 
					
						
							|  |  |  | 		detailsWindow.cylinderIndex = -1 | 
					
						
							|  |  |  | 		detailsWindow.cylinderText = "" | 
					
						
							| 
									
										
										
										
											2016-04-01 22:29:39 -05:00
										 |  |  | 		detailsWindow.weight = "" | 
					
						
							|  |  |  | 		detailsWindow.gasmix = "" | 
					
						
							|  |  |  | 		detailsWindow.startpressure = "" | 
					
						
							|  |  |  | 		detailsWindow.endpressure = "" | 
					
						
							| 
									
										
										
										
											2016-04-15 05:17:39 -07:00
										 |  |  | 		detailsWindow.gpsCheckbox = false | 
					
						
							| 
									
										
										
										
											2016-04-01 22:29:39 -05:00
										 |  |  | 		stackView.push(detailsWindow) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-08 21:26:54 +01:00
										 |  |  | 	globalDrawer: Kirigami.GlobalDrawer { | 
					
						
							| 
									
										
										
										
											2016-05-03 21:24:00 +02:00
										 |  |  | 		title: qsTr("Subsurface") | 
					
						
							| 
									
										
										
										
											2015-11-29 17:43:56 +01:00
										 |  |  | 		titleIcon: "qrc:/qml/subsurface-mobile-icon.png" | 
					
						
							| 
									
										
										
										
											2015-11-07 03:08:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-29 17:43:56 +01:00
										 |  |  | 		bannerImageSource: "dive.jpg" | 
					
						
							| 
									
										
										
										
											2016-06-12 12:09:49 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-13 19:57:22 +02:00
										 |  |  | 		actions: [ | 
					
						
							| 
									
										
										
										
											2016-03-08 21:26:54 +01:00
										 |  |  | 			Kirigami.Action { | 
					
						
							| 
									
										
										
										
											2016-05-03 21:24:00 +02:00
										 |  |  | 				text: qsTr("Dive list") | 
					
						
							| 
									
										
										
										
											2015-12-04 00:26:45 +01:00
										 |  |  | 				onTriggered: { | 
					
						
							| 
									
										
										
										
											2016-03-26 21:35:35 -07:00
										 |  |  | 					manager.appendTextToLog("requested dive list with credential status " + manager.credentialStatus) | 
					
						
							| 
									
										
										
										
											2016-03-13 11:41:09 -07:00
										 |  |  | 					if (manager.credentialStatus == QMLManager.UNKNOWN) { | 
					
						
							|  |  |  | 						// the user has asked to change credentials - if the credentials before that
 | 
					
						
							|  |  |  | 						// were valid, go back to dive list
 | 
					
						
							|  |  |  | 						if (oldStatus == QMLManager.VALID || oldStatus == QMLManager.VALID_EMAIL) { | 
					
						
							|  |  |  | 							manager.credentialStatus = oldStatus | 
					
						
							|  |  |  | 						} | 
					
						
							|  |  |  | 					} | 
					
						
							| 
									
										
										
										
											2016-02-10 21:47:09 -08:00
										 |  |  | 					returnTopPage() | 
					
						
							| 
									
										
										
										
											2016-03-03 15:12:09 -08:00
										 |  |  | 					globalDrawer.close() | 
					
						
							| 
									
										
										
										
											2015-12-04 00:26:45 +01:00
										 |  |  | 				} | 
					
						
							|  |  |  | 			}, | 
					
						
							| 
									
										
										
										
											2016-03-08 21:26:54 +01:00
										 |  |  | 			Kirigami.Action { | 
					
						
							| 
									
										
										
										
											2016-05-03 21:24:00 +02:00
										 |  |  | 				text: qsTr("Cloud credentials") | 
					
						
							| 
									
										
										
										
											2015-12-04 00:26:45 +01:00
										 |  |  | 				onTriggered: { | 
					
						
							| 
									
										
										
										
											2016-02-10 21:47:09 -08:00
										 |  |  | 					returnTopPage() | 
					
						
							| 
									
										
										
										
											2016-02-10 18:09:16 -08:00
										 |  |  | 					oldStatus = manager.credentialStatus | 
					
						
							|  |  |  | 					if (diveList.numDives > 0) { | 
					
						
							|  |  |  | 						manager.startPageText = "Enter different credentials or return to dive list" | 
					
						
							|  |  |  | 					} else { | 
					
						
							| 
									
										
										
										
											2016-03-24 21:35:03 -07:00
										 |  |  | 						manager.startPageText = "Enter valid cloud storage credentials" | 
					
						
							| 
									
										
										
										
											2016-02-10 18:09:16 -08:00
										 |  |  | 					} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					manager.credentialStatus = QMLManager.UNKNOWN | 
					
						
							| 
									
										
										
										
											2015-12-04 00:26:45 +01:00
										 |  |  | 				} | 
					
						
							|  |  |  | 			}, | 
					
						
							| 
									
										
										
										
											2016-03-08 21:26:54 +01:00
										 |  |  | 			Kirigami.Action { | 
					
						
							| 
									
										
										
										
											2016-05-03 21:24:00 +02:00
										 |  |  | 				text: qsTr("Manage dives") | 
					
						
							| 
									
										
										
										
											2016-03-08 21:26:54 +01:00
										 |  |  | 				Kirigami.Action { | 
					
						
							| 
									
										
										
										
											2016-05-03 21:24:00 +02:00
										 |  |  | 					text: qsTr("Add dive manually") | 
					
						
							| 
									
										
										
										
											2016-04-22 05:21:26 -07:00
										 |  |  | 					enabled: manager.credentialStatus === QMLManager.VALID || manager.credentialStatus === QMLManager.VALID_EMAIL || manager.credentialStatus === QMLManager.NOCLOUD | 
					
						
							| 
									
										
										
										
											2015-12-08 02:33:11 +01:00
										 |  |  | 					onTriggered: { | 
					
						
							| 
									
										
										
										
											2016-04-02 11:04:44 -05:00
										 |  |  | 						returnTopPage()  // otherwise odd things happen with the page stack
 | 
					
						
							| 
									
										
										
										
											2016-04-01 22:29:39 -05:00
										 |  |  | 						startAddDive() | 
					
						
							| 
									
										
										
										
											2015-12-08 02:33:11 +01:00
										 |  |  | 					} | 
					
						
							|  |  |  | 				} | 
					
						
							| 
									
										
										
										
											2016-03-08 21:26:54 +01:00
										 |  |  | 				Kirigami.Action { | 
					
						
							| 
									
										
										
										
											2016-05-03 21:24:00 +02:00
										 |  |  | 					text: qsTr("Manual sync with cloud") | 
					
						
							| 
									
										
										
										
											2016-04-22 05:21:26 -07:00
										 |  |  | 					enabled: manager.credentialStatus === QMLManager.VALID || manager.credentialStatus === QMLManager.VALID_EMAIL || manager.credentialStatus === QMLManager.NOCLOUD | 
					
						
							| 
									
										
										
										
											2015-12-08 02:33:11 +01:00
										 |  |  | 					onTriggered: { | 
					
						
							| 
									
										
										
										
											2016-04-22 05:21:26 -07:00
										 |  |  | 						if (manager.credentialStatus === QMLManager.NOCLOUD) { | 
					
						
							|  |  |  | 							returnTopPage() | 
					
						
							|  |  |  | 							oldStatus = manager.credentialStatus | 
					
						
							|  |  |  | 							manager.startPageText = "Enter valid cloud storage credentials" | 
					
						
							|  |  |  | 							manager.credentialStatus = QMLManager.UNKNOWN | 
					
						
							|  |  |  | 							globalDrawer.close() | 
					
						
							|  |  |  | 						} else { | 
					
						
							|  |  |  | 							globalDrawer.close() | 
					
						
							|  |  |  | 							detailsWindow.endEditMode() | 
					
						
							|  |  |  | 							manager.saveChangesCloud(true); | 
					
						
							|  |  |  | 							globalDrawer.close() | 
					
						
							|  |  |  | 						} | 
					
						
							| 
									
										
										
										
											2015-12-08 02:33:11 +01:00
										 |  |  | 					} | 
					
						
							|  |  |  | 				} | 
					
						
							| 
									
										
										
										
											2016-04-01 20:40:12 -05:00
										 |  |  | 				Kirigami.Action { | 
					
						
							| 
									
										
										
										
											2016-05-03 21:24:00 +02:00
										 |  |  | 				text: syncToCloud ? qsTr("Offline mode") : qsTr("Enable auto cloud sync") | 
					
						
							| 
									
										
										
										
											2016-04-22 05:21:26 -07:00
										 |  |  | 					enabled: manager.credentialStatus !== QMLManager.NOCLOUD | 
					
						
							| 
									
										
										
										
											2015-12-08 02:33:11 +01:00
										 |  |  | 					onTriggered: { | 
					
						
							| 
									
										
										
										
											2016-04-03 18:33:40 -07:00
										 |  |  | 						syncToCloud = !syncToCloud | 
					
						
							|  |  |  | 						if (!syncToCloud) { | 
					
						
							| 
									
										
										
										
											2016-04-08 12:29:52 -07:00
										 |  |  | 							var alertText = "Turning off automatic sync to cloud causes all data\n" | 
					
						
							| 
									
										
										
										
											2016-04-21 04:43:37 -07:00
										 |  |  | 							alertText +="to only be stored locally.\n" | 
					
						
							| 
									
										
										
										
											2016-04-08 12:29:52 -07:00
										 |  |  | 							alertText += "This can be very useful in situations with\n" | 
					
						
							| 
									
										
										
										
											2016-04-21 04:43:37 -07:00
										 |  |  | 							alertText += "limited or no network access.\n" | 
					
						
							| 
									
										
										
										
											2016-04-08 12:29:52 -07:00
										 |  |  | 							alertText += "Please chose 'Manual sync with cloud' if you have network\n" | 
					
						
							| 
									
										
										
										
											2016-04-21 04:43:37 -07:00
										 |  |  | 							alertText += "connectivity and want to sync your data to cloud storage." | 
					
						
							| 
									
										
										
										
											2016-04-03 18:33:40 -07:00
										 |  |  | 							showPassiveNotification(alertText, 10000) | 
					
						
							|  |  |  | 						} | 
					
						
							| 
									
										
										
										
											2015-12-08 02:33:11 +01:00
										 |  |  | 					} | 
					
						
							| 
									
										
										
										
											2015-11-29 17:43:56 +01:00
										 |  |  | 				} | 
					
						
							| 
									
										
										
										
											2017-04-13 19:57:22 +02:00
										 |  |  | 			}, | 
					
						
							| 
									
										
										
										
											2016-03-08 21:26:54 +01:00
										 |  |  | 			Kirigami.Action { | 
					
						
							| 
									
										
										
										
											2016-05-03 21:24:00 +02:00
										 |  |  | 				text: qsTr("GPS") | 
					
						
							| 
									
										
										
										
											2016-02-10 20:54:36 -08:00
										 |  |  | 				enabled: manager.credentialStatus === QMLManager.VALID || manager.credentialStatus === QMLManager.VALID_EMAIL | 
					
						
							| 
									
										
										
										
											2017-04-13 19:57:22 +02:00
										 |  |  | 				visible: (Qt.platform.os !== "ios") | 
					
						
							| 
									
										
										
										
											2016-03-08 21:26:54 +01:00
										 |  |  | 				Kirigami.Action { | 
					
						
							| 
									
										
										
										
											2016-05-03 21:24:00 +02:00
										 |  |  | 					text: qsTr("GPS-tag dives") | 
					
						
							| 
									
										
										
										
											2015-12-04 00:26:45 +01:00
										 |  |  | 					onTriggered: { | 
					
						
							| 
									
										
										
										
											2015-12-08 02:33:11 +01:00
										 |  |  | 						manager.applyGpsData(); | 
					
						
							| 
									
										
										
										
											2015-12-04 00:26:45 +01:00
										 |  |  | 					} | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-08 21:26:54 +01:00
										 |  |  | 				Kirigami.Action { | 
					
						
							| 
									
										
										
										
											2016-05-03 21:24:00 +02:00
										 |  |  | 					text: qsTr("Upload GPS data") | 
					
						
							| 
									
										
										
										
											2015-12-04 00:26:45 +01:00
										 |  |  | 					onTriggered: { | 
					
						
							| 
									
										
										
										
											2015-12-08 02:33:11 +01:00
										 |  |  | 						manager.sendGpsData(); | 
					
						
							| 
									
										
										
										
											2015-12-04 00:26:45 +01:00
										 |  |  | 					} | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-08 21:26:54 +01:00
										 |  |  | 				Kirigami.Action { | 
					
						
							| 
									
										
										
										
											2016-05-03 21:24:00 +02:00
										 |  |  | 					text: qsTr("Download GPS data") | 
					
						
							| 
									
										
										
										
											2016-01-07 21:37:36 -08:00
										 |  |  | 					onTriggered: { | 
					
						
							|  |  |  | 						manager.downloadGpsData(); | 
					
						
							|  |  |  | 					} | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-08 21:26:54 +01:00
										 |  |  | 				Kirigami.Action { | 
					
						
							| 
									
										
										
										
											2016-05-03 21:24:00 +02:00
										 |  |  | 					text: qsTr("Show GPS fixes") | 
					
						
							| 
									
										
										
										
											2016-01-07 21:40:15 -08:00
										 |  |  | 					onTriggered: { | 
					
						
							| 
									
										
										
										
											2016-04-02 11:04:44 -05:00
										 |  |  | 						returnTopPage() | 
					
						
							| 
									
										
										
										
											2016-01-07 21:40:15 -08:00
										 |  |  | 						manager.populateGpsData(); | 
					
						
							|  |  |  | 						stackView.push(gpsWindow) | 
					
						
							|  |  |  | 					} | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-08 21:26:54 +01:00
										 |  |  | 				Kirigami.Action { | 
					
						
							| 
									
										
										
										
											2016-05-03 21:24:00 +02:00
										 |  |  | 					text: qsTr("Clear GPS cache") | 
					
						
							| 
									
										
										
										
											2015-12-04 00:26:45 +01:00
										 |  |  | 					onTriggered: { | 
					
						
							| 
									
										
										
										
											2015-12-08 02:33:11 +01:00
										 |  |  | 						manager.clearGpsData(); | 
					
						
							| 
									
										
										
										
											2015-12-04 00:26:45 +01:00
										 |  |  | 					} | 
					
						
							|  |  |  | 				} | 
					
						
							| 
									
										
										
										
											2016-03-08 21:26:54 +01:00
										 |  |  | 				Kirigami.Action { | 
					
						
							| 
									
										
										
										
											2016-05-03 21:24:00 +02:00
										 |  |  | 					text: qsTr("Preferences") | 
					
						
							| 
									
										
										
										
											2016-02-08 07:38:24 +02:00
										 |  |  | 					onTriggered: { | 
					
						
							|  |  |  | 						stackView.push(prefsWindow) | 
					
						
							| 
									
										
										
										
											2016-02-13 21:53:01 -08:00
										 |  |  | 						detailsWindow.endEditMode() | 
					
						
							| 
									
										
										
										
											2016-02-08 07:38:24 +02:00
										 |  |  | 					} | 
					
						
							|  |  |  | 				} | 
					
						
							| 
									
										
										
										
											2017-04-13 19:57:22 +02:00
										 |  |  | 			}, | 
					
						
							| 
									
										
										
										
											2016-03-08 21:26:54 +01:00
										 |  |  | 			Kirigami.Action { | 
					
						
							| 
									
										
										
										
											2016-05-03 21:24:00 +02:00
										 |  |  | 				text: qsTr("Developer") | 
					
						
							| 
									
										
										
										
											2016-03-08 21:26:54 +01:00
										 |  |  | 				Kirigami.Action { | 
					
						
							| 
									
										
										
										
											2016-05-03 21:24:00 +02:00
										 |  |  | 					text: qsTr("App log") | 
					
						
							| 
									
										
										
										
											2015-12-08 02:33:11 +01:00
										 |  |  | 					onTriggered: { | 
					
						
							|  |  |  | 						stackView.push(logWindow) | 
					
						
							|  |  |  | 					} | 
					
						
							| 
									
										
										
										
											2015-11-29 17:43:56 +01:00
										 |  |  | 				} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-08 21:26:54 +01:00
										 |  |  | 				Kirigami.Action { | 
					
						
							| 
									
										
										
										
											2016-05-03 21:24:00 +02:00
										 |  |  | 					text: qsTr("Theme information") | 
					
						
							| 
									
										
										
										
											2015-12-08 02:33:11 +01:00
										 |  |  | 					onTriggered: { | 
					
						
							|  |  |  | 						stackView.push(themetest) | 
					
						
							|  |  |  | 					} | 
					
						
							| 
									
										
										
										
											2015-12-04 00:26:45 +01:00
										 |  |  | 				} | 
					
						
							| 
									
										
										
										
											2016-02-10 22:53:59 +02:00
										 |  |  | 			}, | 
					
						
							| 
									
										
										
										
											2016-03-31 21:57:12 -05:00
										 |  |  | 			Kirigami.Action { | 
					
						
							| 
									
										
										
										
											2016-05-03 21:24:00 +02:00
										 |  |  | 				text: qsTr("User manual") | 
					
						
							| 
									
										
										
										
											2016-03-13 11:13:04 -07:00
										 |  |  | 				onTriggered: { | 
					
						
							| 
									
										
										
										
											2016-04-02 07:02:44 -05:00
										 |  |  | 					Qt.openUrlExternally("https://subsurface-divelog.org/documentation/subsurface-mobile-user-manual/") | 
					
						
							| 
									
										
										
										
											2016-03-13 11:13:04 -07:00
										 |  |  | 				} | 
					
						
							|  |  |  | 			}, | 
					
						
							| 
									
										
										
										
											2016-03-08 21:26:54 +01:00
										 |  |  | 			Kirigami.Action { | 
					
						
							| 
									
										
										
										
											2016-05-03 21:24:00 +02:00
										 |  |  | 				text: qsTr("About") | 
					
						
							| 
									
										
										
										
											2016-02-10 22:53:59 +02:00
										 |  |  | 				onTriggered: { | 
					
						
							|  |  |  | 					stackView.push(aboutWindow) | 
					
						
							|  |  |  | 					detailsWindow.endEditMode() | 
					
						
							|  |  |  | 				} | 
					
						
							| 
									
										
										
										
											2015-11-29 17:43:56 +01:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2017-04-13 19:57:22 +02:00
										 |  |  | 		] // end actions
 | 
					
						
							| 
									
										
										
										
											2015-10-09 01:57:10 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-30 01:48:10 +01:00
										 |  |  | 		MouseArea { | 
					
						
							|  |  |  | 			height: childrenRect.height | 
					
						
							| 
									
										
										
										
											2016-03-08 21:26:54 +01:00
										 |  |  | 			width: Kirigami.Units.gridUnit * 10 | 
					
						
							| 
									
										
										
										
											2015-11-30 01:48:10 +01:00
										 |  |  | 			CheckBox { | 
					
						
							| 
									
										
										
										
											2016-05-03 21:24:00 +02:00
										 |  |  | 				//text: qsTr("Run location service")
 | 
					
						
							| 
									
										
										
										
											2015-11-30 01:48:10 +01:00
										 |  |  | 				id: locationCheckbox | 
					
						
							| 
									
										
										
										
											2016-04-17 22:57:14 -07:00
										 |  |  | 				visible: manager.locationServiceAvailable | 
					
						
							| 
									
										
										
										
											2015-11-30 01:48:10 +01:00
										 |  |  | 				anchors { | 
					
						
							|  |  |  | 					left: parent.left | 
					
						
							|  |  |  | 					top: parent.top | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 				checked: manager.locationServiceEnabled | 
					
						
							|  |  |  | 				onCheckedChanged: { | 
					
						
							|  |  |  | 					manager.locationServiceEnabled = checked; | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2016-03-08 21:26:54 +01:00
										 |  |  | 			Kirigami.Label { | 
					
						
							|  |  |  | 				x: Kirigami.Units.gridUnit * 1.5 | 
					
						
							| 
									
										
										
										
											2015-11-30 01:48:10 +01:00
										 |  |  | 				anchors { | 
					
						
							|  |  |  | 					left: locationCheckbox.right | 
					
						
							|  |  |  | 					//leftMargin: units.smallSpacing
 | 
					
						
							|  |  |  | 					verticalCenter: locationCheckbox.verticalCenter | 
					
						
							|  |  |  | 				} | 
					
						
							| 
									
										
										
										
											2016-09-04 08:57:09 -07:00
										 |  |  | 				text: Qt.platform.os == "ios" ? "" : manager.locationServiceAvailable ? qsTr("Run location service") : qsTr("No GPS source available") | 
					
						
							| 
									
										
										
										
											2015-11-30 01:48:10 +01:00
										 |  |  | 			} | 
					
						
							|  |  |  | 			onClicked: { | 
					
						
							|  |  |  | 				print("Click.") | 
					
						
							|  |  |  | 				locationCheckbox.checked = !locationCheckbox.checked | 
					
						
							| 
									
										
										
										
											2015-11-30 01:32:55 +01:00
										 |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2015-10-09 01:57:10 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2015-11-29 19:09:59 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	QtObject { | 
					
						
							|  |  |  | 		id: subsurfaceTheme | 
					
						
							|  |  |  | 		property int titlePointSize: Math.round(fontMetrics.font.pointSize * 1.5) | 
					
						
							| 
									
										
										
										
											2015-11-29 23:39:14 +01:00
										 |  |  | 		property int smallPointSize: Math.round(fontMetrics.font.pointSize * 0.8) | 
					
						
							| 
									
										
										
										
											2015-11-29 19:09:59 +01:00
										 |  |  | 		property color accentColor: "#2d5b9a" | 
					
						
							| 
									
										
										
										
											2016-01-22 13:07:53 +01:00
										 |  |  | 		property color shadedColor: "#132744" | 
					
						
							| 
									
										
										
										
											2015-11-29 19:09:59 +01:00
										 |  |  | 		property color accentTextColor: "#ececec" | 
					
						
							| 
									
										
										
										
											2016-04-01 16:55:24 -05:00
										 |  |  | 		property color diveListTextColor: "#000000" // the Kirigami theme text color is too light
 | 
					
						
							| 
									
										
										
										
											2016-09-17 12:56:47 -07:00
										 |  |  | 		property int columnWidth: Math.round(rootItem.width/(Kirigami.Units.gridUnit*28)) > 0 ? Math.round(rootItem.width / Math.round(rootItem.width/(Kirigami.Units.gridUnit*28))) : rootItem.width | 
					
						
							| 
									
										
										
										
											2015-11-29 19:09:59 +01:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2015-07-17 18:28:01 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-29 21:13:57 +01:00
										 |  |  | 	property Item stackView: pageStack | 
					
						
							| 
									
										
										
										
											2016-03-08 21:26:54 +01:00
										 |  |  | 	pageStack.initialPage: DiveList { | 
					
						
							| 
									
										
										
										
											2016-01-28 18:27:54 -08:00
										 |  |  | 		id: diveList | 
					
						
							| 
									
										
										
										
											2016-01-19 12:42:58 -08:00
										 |  |  | 		opacity: 0 | 
					
						
							|  |  |  | 		Behavior on opacity { | 
					
						
							|  |  |  | 			NumberAnimation { | 
					
						
							|  |  |  | 				duration: 200 | 
					
						
							|  |  |  | 				easing.type: Easing.OutQuad | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											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 | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-10 22:53:59 +02:00
										 |  |  | 	About { | 
					
						
							|  |  |  | 		id: aboutWindow | 
					
						
							|  |  |  | 		visible: false | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-07-21 15:00:29 +03:00
										 |  |  | 	DiveDetails { | 
					
						
							|  |  |  | 		id: detailsWindow | 
					
						
							|  |  |  | 		visible: false | 
					
						
							| 
									
										
										
										
											2016-04-27 05:44:18 -07:00
										 |  |  | 		anchors.fill: parent | 
					
						
							| 
									
										
										
										
											2015-07-21 15:00:29 +03:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2015-07-23 14:46:02 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-08-19 10:18:26 +03:00
										 |  |  | 	Log { | 
					
						
							|  |  |  | 		id: logWindow | 
					
						
							|  |  |  | 		visible: false | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2015-10-09 01:57:10 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-07 21:40:15 -08:00
										 |  |  | 	GpsList { | 
					
						
							|  |  |  | 		id: gpsWindow | 
					
						
							| 
									
										
										
										
											2016-03-08 21:26:54 +01:00
										 |  |  | 		visible: false | 
					
						
							| 
									
										
										
										
											2016-01-07 21:40:15 -08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-06 21:53:26 +00:00
										 |  |  | 	ThemeTest { | 
					
						
							|  |  |  | 		id: themetest | 
					
						
							|  |  |  | 		visible: false | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-10-09 01:57:10 +02:00
										 |  |  | 	Component.onCompleted: { | 
					
						
							| 
									
										
										
										
											2016-03-08 21:26:54 +01:00
										 |  |  | 		Kirigami.Theme.highlightColor = subsurfaceTheme.accentColor | 
					
						
							| 
									
										
										
										
											2015-12-04 19:34:59 -08:00
										 |  |  | 		manager.finishSetup(); | 
					
						
							| 
									
										
										
										
											2016-01-19 12:42:58 -08:00
										 |  |  | 		rootItem.visible = true | 
					
						
							| 
									
										
										
										
											2016-01-28 18:27:54 -08:00
										 |  |  | 		diveList.opacity = 1 | 
					
						
							| 
									
										
										
										
											2016-01-19 12:42:58 -08:00
										 |  |  | 		rootItem.opacity = 1 | 
					
						
							| 
									
										
										
										
											2016-09-17 12:56:47 -07:00
										 |  |  | 		pageStack.defaultColumnWidth = Kirigami.Units.gridUnit * 28 | 
					
						
							| 
									
										
										
										
											2016-01-19 12:42:58 -08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-12-27 18:36:02 +01:00
										 |  |  | 	/* TODO: Verify where opacity went to. | 
					
						
							| 
									
										
										
										
											2016-01-19 12:42:58 -08:00
										 |  |  | 	Behavior on opacity { | 
					
						
							|  |  |  | 		NumberAnimation { | 
					
						
							|  |  |  | 			duration: 200 | 
					
						
							|  |  |  | 			easing.type: Easing.OutQuad | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2015-10-09 01:57:10 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-12-27 18:36:02 +01:00
										 |  |  | 	*/ | 
					
						
							| 
									
										
										
										
											2015-05-27 13:34:55 +03:00
										 |  |  | } |