2017-04-27 18:30:36 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
2017-10-29 07:44:06 +00:00
|
|
|
import QtQuick 2.6
|
2017-10-29 12:44:22 +00:00
|
|
|
import QtQuick.Controls 2.2 as Controls
|
2015-07-10 07:48:28 +00:00
|
|
|
import QtQuick.Window 2.2
|
|
|
|
import QtQuick.Dialogs 1.2
|
2017-10-30 10:26:47 +00:00
|
|
|
import QtQuick.Layouts 1.2
|
2018-09-27 20:09:26 +00:00
|
|
|
import org.kde.kirigami 2.4 as Kirigami
|
2015-07-10 07:48:28 +00:00
|
|
|
import org.subsurfacedivelog.mobile 1.0
|
|
|
|
|
2017-07-10 01:47:18 +00:00
|
|
|
Kirigami.ScrollablePage {
|
2017-07-20 17:39:55 +00:00
|
|
|
objectName: "Settings"
|
2017-07-20 07:55:58 +00:00
|
|
|
id: settingsPage
|
2018-08-20 18:02:54 +00:00
|
|
|
property alias defaultCylinderModel: defaultCylinderBox.model
|
|
|
|
property alias defaultCylinderIndex: defaultCylinderBox.currentIndex
|
|
|
|
|
2017-07-20 17:39:55 +00:00
|
|
|
title: qsTr("Settings")
|
2018-02-16 10:17:20 +00:00
|
|
|
background: Rectangle { color: subsurfaceTheme.backgroundColor }
|
2017-08-03 22:47:37 +00:00
|
|
|
|
|
|
|
property real gridWidth: settingsPage.width - Kirigami.Units.gridUnit
|
2017-09-27 16:56:24 +00:00
|
|
|
property var describe: [qsTr("Undefined"),
|
|
|
|
qsTr("Incorrect username/password combination"),
|
|
|
|
qsTr("Credentials need to be verified"),
|
|
|
|
qsTr("Credentials verified"),
|
|
|
|
qsTr("No cloud mode")]
|
2017-07-10 01:47:18 +00:00
|
|
|
|
|
|
|
ColumnLayout {
|
2017-08-03 22:47:37 +00:00
|
|
|
width: gridWidth
|
2017-09-27 16:56:24 +00:00
|
|
|
GridLayout {
|
|
|
|
id: cloudSetting
|
|
|
|
columns: 3
|
|
|
|
|
2018-09-27 09:54:28 +00:00
|
|
|
Controls.Label {
|
2017-09-27 16:56:24 +00:00
|
|
|
text: qsTr("Cloud status")
|
2018-09-27 09:54:28 +00:00
|
|
|
font.pointSize: subsurfaceTheme.headingPointSize
|
|
|
|
font.weight: Font.Light
|
2017-09-27 16:56:24 +00:00
|
|
|
color: subsurfaceTheme.textColor
|
|
|
|
Layout.topMargin: Kirigami.Units.largeSpacing
|
|
|
|
Layout.bottomMargin: Kirigami.Units.largeSpacing / 2
|
|
|
|
Layout.columnSpan: 3
|
|
|
|
}
|
2017-10-12 12:25:22 +00:00
|
|
|
Controls.Label {
|
2017-09-27 16:56:24 +00:00
|
|
|
text: qsTr("Email")
|
2018-09-27 09:54:28 +00:00
|
|
|
font.pointSize: subsurfaceTheme.regularPointSize
|
2017-09-29 07:15:43 +00:00
|
|
|
Layout.preferredWidth: gridWidth * 0.15
|
2019-10-05 01:21:56 +00:00
|
|
|
color: subsurfaceTheme.textColor
|
2017-09-27 16:56:24 +00:00
|
|
|
}
|
2017-10-12 12:25:22 +00:00
|
|
|
Controls.Label {
|
2019-12-13 09:32:14 +00:00
|
|
|
text: PrefCloudStorage.credentialStatus === CloudStatus.CS_NOCLOUD ? qsTr("Not applicable") : PrefCloudStorage.cloud_storage_email
|
2018-09-27 09:54:28 +00:00
|
|
|
font.pointSize: subsurfaceTheme.regularPointSize
|
2017-09-29 07:15:43 +00:00
|
|
|
Layout.preferredWidth: gridWidth * 0.60
|
2019-10-05 01:21:56 +00:00
|
|
|
color: subsurfaceTheme.textColor
|
2017-09-27 16:56:24 +00:00
|
|
|
}
|
|
|
|
SsrfButton {
|
2017-09-29 07:15:43 +00:00
|
|
|
id: changeCloudSettings
|
2017-09-27 16:56:24 +00:00
|
|
|
text: qsTr("Change")
|
|
|
|
onClicked: {
|
2018-06-18 08:53:08 +00:00
|
|
|
prefs.cancelCredentialsPinSetup()
|
2017-09-27 16:56:24 +00:00
|
|
|
rootItem.returnTopPage()
|
|
|
|
}
|
|
|
|
}
|
2017-10-12 12:25:22 +00:00
|
|
|
Controls.Label {
|
2017-09-27 16:56:24 +00:00
|
|
|
text: qsTr("Status")
|
2018-09-27 09:54:28 +00:00
|
|
|
font.pointSize: subsurfaceTheme.regularPointSize
|
2017-09-29 07:15:43 +00:00
|
|
|
Layout.preferredWidth: gridWidth * 0.15
|
2018-09-27 09:54:28 +00:00
|
|
|
Layout.preferredHeight: Kirigami.Units.gridUnit * 1.5
|
2019-10-05 01:21:56 +00:00
|
|
|
color: subsurfaceTheme.textColor
|
2017-09-27 16:56:24 +00:00
|
|
|
}
|
2017-10-12 12:25:22 +00:00
|
|
|
Controls.Label {
|
2018-06-13 16:06:11 +00:00
|
|
|
text: describe[prefs.credentialStatus]
|
2018-09-27 09:54:28 +00:00
|
|
|
font.pointSize: subsurfaceTheme.regularPointSize
|
2017-09-29 07:15:43 +00:00
|
|
|
Layout.preferredWidth: gridWidth * 0.60
|
2018-09-27 09:54:28 +00:00
|
|
|
Layout.preferredHeight: Kirigami.Units.gridUnit * 1.5
|
2019-10-05 01:21:56 +00:00
|
|
|
color: subsurfaceTheme.textColor
|
2017-09-27 16:56:24 +00:00
|
|
|
}
|
2017-07-20 17:39:55 +00:00
|
|
|
}
|
2017-09-27 16:56:24 +00:00
|
|
|
|
2017-07-20 17:39:55 +00:00
|
|
|
Rectangle {
|
|
|
|
color: subsurfaceTheme.darkerPrimaryColor
|
|
|
|
height: 1
|
|
|
|
opacity: 0.5
|
|
|
|
Layout.fillWidth: true
|
|
|
|
}
|
2017-07-10 03:53:16 +00:00
|
|
|
GridLayout {
|
2017-07-20 17:39:55 +00:00
|
|
|
id: themeSettings
|
2017-07-22 10:04:27 +00:00
|
|
|
columns: 3
|
2015-07-10 07:48:28 +00:00
|
|
|
|
2018-09-27 09:54:28 +00:00
|
|
|
Controls.Label {
|
2017-07-10 03:53:16 +00:00
|
|
|
text: qsTr("Theme")
|
2018-09-27 09:54:28 +00:00
|
|
|
font.pointSize: subsurfaceTheme.headingPointSize
|
|
|
|
font.weight: Font.Light
|
2017-07-10 03:53:16 +00:00
|
|
|
color: subsurfaceTheme.textColor
|
|
|
|
Layout.topMargin: Kirigami.Units.largeSpacing
|
|
|
|
Layout.bottomMargin: Kirigami.Units.largeSpacing / 2
|
2017-07-22 10:04:27 +00:00
|
|
|
Layout.columnSpan: 3
|
2017-06-23 20:06:17 +00:00
|
|
|
}
|
2017-10-12 12:25:22 +00:00
|
|
|
Controls.Label {
|
2017-07-20 07:55:58 +00:00
|
|
|
text: qsTr("Blue")
|
2018-09-27 09:54:28 +00:00
|
|
|
font.pointSize: subsurfaceTheme.regularPointSize
|
2017-07-20 07:55:58 +00:00
|
|
|
color: subsurfaceTheme.textColor
|
|
|
|
rightPadding: Kirigami.Units.gridUnit
|
2017-07-23 10:44:52 +00:00
|
|
|
Layout.preferredWidth: gridWidth * 0.15
|
2017-06-24 01:08:47 +00:00
|
|
|
}
|
2017-07-10 03:53:16 +00:00
|
|
|
Row {
|
2017-07-22 20:06:48 +00:00
|
|
|
Layout.preferredWidth: gridWidth * 0.6
|
2017-07-10 03:53:16 +00:00
|
|
|
Rectangle {
|
|
|
|
id: blueRect
|
|
|
|
color: subsurfaceTheme.blueBackgroundColor
|
|
|
|
border.color: "black"
|
2017-07-22 09:54:21 +00:00
|
|
|
width: sampleRegularBlue.width + Kirigami.Units.gridUnit
|
2017-07-10 03:53:16 +00:00
|
|
|
height: Kirigami.Units.gridUnit * 2
|
|
|
|
Text {
|
|
|
|
id: sampleRegularBlue
|
|
|
|
text: qsTr("regular text")
|
2018-09-27 09:54:28 +00:00
|
|
|
font.pointSize: subsurfaceTheme.regularPointSize
|
2017-07-10 03:53:16 +00:00
|
|
|
color: subsurfaceTheme.blueTextColor
|
|
|
|
anchors {
|
|
|
|
horizontalCenter: parent.horizontalCenter
|
|
|
|
verticalCenter: parent.verticalCenter
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Rectangle {
|
|
|
|
color: subsurfaceTheme.bluePrimaryColor
|
|
|
|
border.color: "black"
|
2017-07-22 09:54:21 +00:00
|
|
|
width: sampleHighlightBlue.width + Kirigami.Units.gridUnit
|
2017-07-10 03:53:16 +00:00
|
|
|
height: Kirigami.Units.gridUnit * 2
|
|
|
|
Text {
|
|
|
|
id: sampleHighlightBlue
|
|
|
|
text: qsTr("Highlight")
|
2018-09-27 09:54:28 +00:00
|
|
|
font.pointSize: subsurfaceTheme.regularPointSize
|
2017-07-10 03:53:16 +00:00
|
|
|
color: subsurfaceTheme.bluePrimaryTextColor
|
|
|
|
anchors {
|
|
|
|
horizontalCenter: parent.horizontalCenter
|
|
|
|
verticalCenter: parent.verticalCenter
|
|
|
|
}
|
2017-06-24 01:08:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-07-24 18:04:47 +00:00
|
|
|
SsrfSwitch {
|
2017-07-23 10:44:52 +00:00
|
|
|
id: blueButton
|
|
|
|
Layout.preferredWidth: gridWidth * 0.25
|
2017-07-20 07:55:58 +00:00
|
|
|
checked: subsurfaceTheme.currentTheme === "Blue"
|
2017-07-23 10:44:52 +00:00
|
|
|
enabled: subsurfaceTheme.currentTheme !== "Blue"
|
2017-07-10 03:53:16 +00:00
|
|
|
onClicked: {
|
2017-07-20 07:55:58 +00:00
|
|
|
blueTheme()
|
2018-09-12 11:50:24 +00:00
|
|
|
PrefDisplay.theme = subsurfaceTheme.currentTheme
|
2017-07-10 03:53:16 +00:00
|
|
|
}
|
2017-07-08 17:17:10 +00:00
|
|
|
}
|
2017-07-20 07:55:58 +00:00
|
|
|
|
2017-10-12 12:25:22 +00:00
|
|
|
Controls.Label {
|
2017-07-23 10:44:52 +00:00
|
|
|
id: pinkLabel
|
2017-07-20 07:55:58 +00:00
|
|
|
text: qsTr("Pink")
|
2018-09-27 09:54:28 +00:00
|
|
|
font.pointSize: subsurfaceTheme.regularPointSize
|
2017-07-20 07:55:58 +00:00
|
|
|
rightPadding: Kirigami.Units.gridUnit
|
2017-07-23 10:44:52 +00:00
|
|
|
Layout.preferredWidth: gridWidth * 0.15
|
2019-10-05 01:21:56 +00:00
|
|
|
color: subsurfaceTheme.textColor
|
2017-07-20 07:55:58 +00:00
|
|
|
}
|
2017-07-10 03:53:16 +00:00
|
|
|
Row {
|
2017-07-23 10:44:52 +00:00
|
|
|
Layout.preferredWidth: gridWidth * 0.6
|
2017-07-10 03:53:16 +00:00
|
|
|
Rectangle {
|
|
|
|
id: pinkRect
|
|
|
|
color: subsurfaceTheme.pinkBackgroundColor
|
|
|
|
border.color: "black"
|
2017-07-22 09:54:21 +00:00
|
|
|
width: sampleRegularPink.width + Kirigami.Units.gridUnit
|
2017-07-10 03:53:16 +00:00
|
|
|
height: Kirigami.Units.gridUnit * 2
|
|
|
|
Text {
|
|
|
|
id: sampleRegularPink
|
|
|
|
text: qsTr("regular text")
|
2018-09-27 09:54:28 +00:00
|
|
|
font.pointSize: subsurfaceTheme.regularPointSize
|
2017-07-10 03:53:16 +00:00
|
|
|
color: subsurfaceTheme.pinkTextColor
|
|
|
|
anchors {
|
|
|
|
horizontalCenter: parent.horizontalCenter
|
|
|
|
verticalCenter: parent.verticalCenter
|
|
|
|
}
|
2017-06-24 01:08:47 +00:00
|
|
|
}
|
|
|
|
}
|
2017-07-10 03:53:16 +00:00
|
|
|
Rectangle {
|
|
|
|
color: subsurfaceTheme.pinkPrimaryColor
|
|
|
|
border.color: "black"
|
2017-07-22 09:54:21 +00:00
|
|
|
width: sampleHighlightPink.width + Kirigami.Units.gridUnit
|
2017-07-10 03:53:16 +00:00
|
|
|
height: Kirigami.Units.gridUnit * 2
|
|
|
|
Text {
|
|
|
|
id: sampleHighlightPink
|
|
|
|
text: qsTr("Highlight")
|
2018-09-27 09:54:28 +00:00
|
|
|
font.pointSize: subsurfaceTheme.regularPointSize
|
2017-07-10 03:53:16 +00:00
|
|
|
color: subsurfaceTheme.pinkPrimaryTextColor
|
|
|
|
anchors {
|
|
|
|
horizontalCenter: parent.horizontalCenter
|
|
|
|
verticalCenter: parent.verticalCenter
|
|
|
|
}
|
2017-06-24 01:08:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-07-22 09:54:21 +00:00
|
|
|
|
2017-07-24 18:04:47 +00:00
|
|
|
SsrfSwitch {
|
2017-07-23 10:44:52 +00:00
|
|
|
id: pinkButton
|
|
|
|
Layout.preferredWidth: gridWidth * 0.25
|
2017-07-20 07:55:58 +00:00
|
|
|
checked: subsurfaceTheme.currentTheme === "Pink"
|
2017-07-23 10:44:52 +00:00
|
|
|
enabled: subsurfaceTheme.currentTheme !== "Pink"
|
2017-07-10 03:53:16 +00:00
|
|
|
onClicked: {
|
2017-07-20 07:55:58 +00:00
|
|
|
pinkTheme()
|
2018-09-12 11:50:24 +00:00
|
|
|
PrefDisplay.theme = subsurfaceTheme.currentTheme
|
2017-07-10 03:53:16 +00:00
|
|
|
}
|
2017-07-08 17:17:10 +00:00
|
|
|
}
|
2017-07-20 07:55:58 +00:00
|
|
|
|
2017-10-12 12:25:22 +00:00
|
|
|
Controls.Label {
|
2017-07-20 07:55:58 +00:00
|
|
|
text: qsTr("Dark")
|
2018-09-27 09:54:28 +00:00
|
|
|
font.pointSize: subsurfaceTheme.regularPointSize
|
2017-07-20 07:55:58 +00:00
|
|
|
color: subsurfaceTheme.textColor
|
|
|
|
rightPadding: Kirigami.Units.gridUnit
|
2017-07-23 10:44:52 +00:00
|
|
|
Layout.preferredWidth: gridWidth * 0.15
|
2017-07-20 07:55:58 +00:00
|
|
|
}
|
2017-07-10 03:53:16 +00:00
|
|
|
Row {
|
2017-07-23 10:44:52 +00:00
|
|
|
Layout.preferredWidth: gridWidth * 0.6
|
2017-07-10 03:53:16 +00:00
|
|
|
Rectangle {
|
|
|
|
id: blackRect
|
|
|
|
color: subsurfaceTheme.darkBackgroundColor
|
|
|
|
border.color: "black"
|
2017-07-22 09:54:21 +00:00
|
|
|
width: sampleRegularDark.width + Kirigami.Units.gridUnit
|
2017-07-10 03:53:16 +00:00
|
|
|
height: Kirigami.Units.gridUnit * 2
|
|
|
|
Text {
|
|
|
|
id: sampleRegularDark
|
|
|
|
text: qsTr("regular text")
|
2018-09-27 09:54:28 +00:00
|
|
|
font.pointSize: subsurfaceTheme.regularPointSize
|
2017-07-10 03:53:16 +00:00
|
|
|
color: subsurfaceTheme.darkTextColor
|
|
|
|
anchors {
|
|
|
|
horizontalCenter: parent.horizontalCenter
|
|
|
|
verticalCenter: parent.verticalCenter
|
|
|
|
}
|
2017-06-24 01:08:47 +00:00
|
|
|
}
|
|
|
|
}
|
2017-07-10 03:53:16 +00:00
|
|
|
Rectangle {
|
|
|
|
color: subsurfaceTheme.darkPrimaryColor
|
|
|
|
border.color: "black"
|
2017-07-22 09:54:21 +00:00
|
|
|
width: sampleHighlightDark.width + Kirigami.Units.gridUnit
|
2017-07-10 03:53:16 +00:00
|
|
|
height: Kirigami.Units.gridUnit * 2
|
|
|
|
Text {
|
|
|
|
id: sampleHighlightDark
|
|
|
|
text: qsTr("Highlight")
|
2018-09-27 09:54:28 +00:00
|
|
|
font.pointSize: subsurfaceTheme.regularPointSize
|
2017-07-10 03:53:16 +00:00
|
|
|
color: subsurfaceTheme.darkPrimaryTextColor
|
|
|
|
anchors {
|
|
|
|
horizontalCenter: parent.horizontalCenter
|
|
|
|
verticalCenter: parent.verticalCenter
|
|
|
|
}
|
2017-06-24 01:08:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-07-24 18:04:47 +00:00
|
|
|
SsrfSwitch {
|
2017-07-23 10:44:52 +00:00
|
|
|
id: darkButton
|
|
|
|
Layout.preferredWidth: gridWidth * 0.25
|
2017-07-20 07:55:58 +00:00
|
|
|
checked: subsurfaceTheme.currentTheme === "Dark"
|
2017-07-23 10:44:52 +00:00
|
|
|
enabled: subsurfaceTheme.currentTheme !== "Dark"
|
2017-07-20 07:55:58 +00:00
|
|
|
onClicked: {
|
|
|
|
darkTheme()
|
2018-09-12 11:50:24 +00:00
|
|
|
PrefDisplay.theme = subsurfaceTheme.currentTheme
|
2017-07-20 07:55:58 +00:00
|
|
|
}
|
|
|
|
}
|
2018-09-27 09:54:28 +00:00
|
|
|
Controls.Label {
|
2018-09-23 01:01:45 +00:00
|
|
|
text: qsTr("Scaling")
|
2018-09-27 09:54:28 +00:00
|
|
|
font.pointSize: subsurfaceTheme.headingPointSize
|
|
|
|
font.weight: Font.Light
|
2018-09-23 01:01:45 +00:00
|
|
|
color: subsurfaceTheme.textColor
|
|
|
|
Layout.topMargin: Kirigami.Units.largeSpacing
|
|
|
|
Layout.bottomMargin: Kirigami.Units.largeSpacing / 2
|
|
|
|
Layout.columnSpan: 3
|
|
|
|
}
|
|
|
|
Row {
|
|
|
|
Layout.preferredWidth: gridWidth * 0.8
|
|
|
|
Layout.columnSpan: 3
|
|
|
|
spacing: Kirigami.Units.largeSpacing
|
|
|
|
SsrfButton {
|
|
|
|
text: qsTr("smaller")
|
|
|
|
enabled: PrefDisplay.mobile_scale !== 0.85
|
|
|
|
onClicked: {
|
|
|
|
PrefDisplay.mobile_scale = 0.85
|
2018-09-25 11:05:02 +00:00
|
|
|
fontMetrics.font.pointSize = subsurfaceTheme.basePointSize * PrefDisplay.mobile_scale;
|
2018-09-23 01:01:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
SsrfButton {
|
|
|
|
text: qsTr("regular")
|
|
|
|
enabled: PrefDisplay.mobile_scale !== 1.0
|
|
|
|
onClicked: {
|
|
|
|
PrefDisplay.mobile_scale = 1.0
|
2018-09-25 11:05:02 +00:00
|
|
|
fontMetrics.font.pointSize = subsurfaceTheme.basePointSize * PrefDisplay.mobile_scale;
|
2018-09-23 01:01:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
SsrfButton {
|
|
|
|
text: qsTr("larger")
|
|
|
|
enabled: PrefDisplay.mobile_scale !== 1.15
|
|
|
|
onClicked: {
|
|
|
|
PrefDisplay.mobile_scale = 1.15
|
2018-09-25 11:05:02 +00:00
|
|
|
fontMetrics.font.pointSize = subsurfaceTheme.basePointSize * PrefDisplay.mobile_scale;
|
2018-09-23 01:01:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-06-24 01:08:47 +00:00
|
|
|
}
|
2017-07-24 18:04:47 +00:00
|
|
|
|
2017-07-20 17:39:55 +00:00
|
|
|
Rectangle {
|
|
|
|
color: subsurfaceTheme.darkerPrimaryColor
|
|
|
|
height: 1
|
|
|
|
opacity: 0.5
|
|
|
|
Layout.fillWidth: true
|
|
|
|
}
|
2017-07-10 03:53:16 +00:00
|
|
|
GridLayout {
|
|
|
|
id: gpsPrefs
|
|
|
|
columns: 2
|
2017-06-23 20:06:17 +00:00
|
|
|
|
2018-09-27 09:54:28 +00:00
|
|
|
Controls.Label {
|
2018-09-19 07:54:11 +00:00
|
|
|
text: qsTr("GPS location service")
|
2018-09-27 09:54:28 +00:00
|
|
|
font.pointSize: subsurfaceTheme.headingPointSize
|
|
|
|
font.weight: Font.Light
|
2017-07-10 03:53:16 +00:00
|
|
|
color: subsurfaceTheme.textColor
|
|
|
|
Layout.topMargin: Kirigami.Units.largeSpacing
|
|
|
|
Layout.bottomMargin: Kirigami.Units.largeSpacing / 2
|
|
|
|
Layout.columnSpan: 2
|
|
|
|
}
|
2015-11-14 01:14:22 +00:00
|
|
|
|
2017-10-12 12:25:22 +00:00
|
|
|
Controls.Label {
|
2017-07-10 03:53:16 +00:00
|
|
|
text: qsTr("Distance threshold (meters)")
|
2018-09-27 09:54:28 +00:00
|
|
|
font.pointSize: subsurfaceTheme.regularPointSize
|
2017-09-29 07:15:43 +00:00
|
|
|
Layout.preferredWidth: gridWidth * 0.75
|
2019-10-05 01:21:56 +00:00
|
|
|
color: subsurfaceTheme.textColor
|
2017-07-10 03:53:16 +00:00
|
|
|
}
|
2015-11-14 17:10:06 +00:00
|
|
|
|
2017-10-12 12:25:22 +00:00
|
|
|
Controls.TextField {
|
2017-07-10 03:53:16 +00:00
|
|
|
id: distanceThreshold
|
2018-09-12 07:12:03 +00:00
|
|
|
text: PrefLocationService.distance_threshold
|
2018-09-27 09:54:28 +00:00
|
|
|
font.pointSize: subsurfaceTheme.regularPointSize
|
2017-07-22 10:04:27 +00:00
|
|
|
Layout.preferredWidth: gridWidth * 0.25
|
2019-10-05 01:21:56 +00:00
|
|
|
color: subsurfaceTheme.textColor
|
2017-07-20 19:53:42 +00:00
|
|
|
onEditingFinished: {
|
2018-09-12 07:12:03 +00:00
|
|
|
PrefLocationService.distance_threshold = distanceThreshold.text
|
2017-07-20 19:53:42 +00:00
|
|
|
}
|
2017-07-10 03:53:16 +00:00
|
|
|
}
|
2015-11-14 17:10:06 +00:00
|
|
|
|
2017-10-12 12:25:22 +00:00
|
|
|
Controls.Label {
|
2017-07-10 03:53:16 +00:00
|
|
|
text: qsTr("Time threshold (minutes)")
|
2018-09-27 09:54:28 +00:00
|
|
|
font.pointSize: subsurfaceTheme.regularPointSize
|
2017-07-22 10:04:27 +00:00
|
|
|
Layout.preferredWidth: gridWidth * 0.75
|
2019-10-05 01:21:56 +00:00
|
|
|
color: subsurfaceTheme.textColor
|
2017-07-10 03:53:16 +00:00
|
|
|
}
|
2015-11-14 17:10:06 +00:00
|
|
|
|
2017-10-12 12:25:22 +00:00
|
|
|
Controls.TextField {
|
2017-07-10 03:53:16 +00:00
|
|
|
id: timeThreshold
|
2018-09-12 11:40:59 +00:00
|
|
|
text: PrefLocationService.time_threshold / 60
|
2018-09-27 09:54:28 +00:00
|
|
|
font.pointSize: subsurfaceTheme.regularPointSize
|
2017-07-22 10:04:27 +00:00
|
|
|
Layout.preferredWidth: gridWidth * 0.25
|
2019-10-05 01:21:56 +00:00
|
|
|
color: subsurfaceTheme.textColor
|
2017-07-20 19:53:42 +00:00
|
|
|
onEditingFinished: {
|
2018-09-12 11:40:59 +00:00
|
|
|
PrefLocationService.time_threshold = timeThreshold.text * 60
|
2017-07-20 19:53:42 +00:00
|
|
|
}
|
2017-07-10 03:53:16 +00:00
|
|
|
}
|
2015-11-14 17:10:06 +00:00
|
|
|
|
2017-07-19 18:57:12 +00:00
|
|
|
}
|
2018-08-20 18:02:54 +00:00
|
|
|
Rectangle {
|
|
|
|
color: subsurfaceTheme.darkerPrimaryColor
|
|
|
|
height: 1
|
|
|
|
opacity: 0.5
|
|
|
|
Layout.fillWidth: true
|
|
|
|
}
|
2018-09-27 09:54:28 +00:00
|
|
|
|
2018-08-20 18:02:54 +00:00
|
|
|
GridLayout {
|
|
|
|
id: defaultCylinder
|
|
|
|
columns: 2
|
2018-09-27 09:54:28 +00:00
|
|
|
Layout.rightMargin: Kirigami.Units.gridUnit * 1.5
|
2018-08-20 18:02:54 +00:00
|
|
|
|
2018-09-27 09:54:28 +00:00
|
|
|
Controls.Label {
|
2018-08-20 18:02:54 +00:00
|
|
|
text: qsTr("Default Cylinder")
|
2018-09-27 09:54:28 +00:00
|
|
|
font.pointSize: subsurfaceTheme.headingPointSize
|
|
|
|
font.weight: Font.Light
|
2018-08-20 18:02:54 +00:00
|
|
|
color: subsurfaceTheme.textColor
|
|
|
|
Layout.topMargin: Kirigami.Units.largeSpacing
|
|
|
|
Layout.bottomMargin: Kirigami.Units.largeSpacing / 2
|
|
|
|
Layout.columnSpan: 2
|
|
|
|
}
|
|
|
|
Controls.Label {
|
|
|
|
text: qsTr("Cylinder:")
|
2018-09-27 09:54:28 +00:00
|
|
|
font.pointSize: subsurfaceTheme.regularPointSize
|
2019-10-05 01:21:56 +00:00
|
|
|
color: subsurfaceTheme.textColor
|
2018-08-20 18:02:54 +00:00
|
|
|
}
|
|
|
|
Controls.ComboBox {
|
|
|
|
id: defaultCylinderBox
|
2018-09-27 09:54:28 +00:00
|
|
|
font.pointSize: subsurfaceTheme.regularPointSize
|
|
|
|
Layout.preferredHeight: fontMetrics.height * 2.5
|
2018-08-20 18:02:54 +00:00
|
|
|
inputMethodHints: Qt.ImhNoPredictiveText
|
|
|
|
Layout.fillWidth: true
|
|
|
|
onActivated: {
|
2018-09-12 17:54:30 +00:00
|
|
|
PrefGeneral.default_cylinder = defaultCylinderBox.currentText
|
2018-08-20 18:02:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-07-20 19:19:26 +00:00
|
|
|
Rectangle {
|
|
|
|
color: subsurfaceTheme.darkerPrimaryColor
|
|
|
|
height: 1
|
2018-09-22 16:33:20 +00:00
|
|
|
opacity: 0.5
|
|
|
|
Layout.fillWidth: true
|
|
|
|
}
|
|
|
|
|
|
|
|
GridLayout {
|
|
|
|
id: divecomputers
|
|
|
|
columns: 2
|
2018-09-27 09:54:28 +00:00
|
|
|
Controls.Label {
|
2018-09-22 16:33:20 +00:00
|
|
|
text: qsTr("Dive computers")
|
2018-09-27 09:54:28 +00:00
|
|
|
font.pointSize: subsurfaceTheme.headingPointSize
|
|
|
|
font.weight: Font.Light
|
2018-09-22 16:33:20 +00:00
|
|
|
color: subsurfaceTheme.textColor
|
|
|
|
Layout.topMargin: Kirigami.Units.largeSpacing
|
|
|
|
Layout.bottomMargin: Kirigami.Units.largeSpacing
|
|
|
|
Layout.columnSpan: 2
|
|
|
|
}
|
|
|
|
Controls.Label {
|
|
|
|
text: qsTr("Forget remembered dive computers")
|
2018-09-27 09:54:28 +00:00
|
|
|
font.pointSize: subsurfaceTheme.regularPointSize
|
2018-09-22 16:33:20 +00:00
|
|
|
Layout.preferredWidth: gridWidth * 0.75
|
2019-10-05 01:21:56 +00:00
|
|
|
color: subsurfaceTheme.textColor
|
2018-09-22 16:33:20 +00:00
|
|
|
}
|
|
|
|
SsrfButton {
|
|
|
|
id: forgetDCButton
|
|
|
|
text: qsTr("Forget")
|
2018-09-23 05:29:09 +00:00
|
|
|
enabled: PrefDiveComputer.vendor1 !== ""
|
2018-09-22 16:33:20 +00:00
|
|
|
onClicked: {
|
2018-10-02 15:22:09 +00:00
|
|
|
PrefDiveComputer.vendor1 = PrefDiveComputer.product1 = PrefDiveComputer.device1 = ""
|
|
|
|
PrefDiveComputer.vendor2 = PrefDiveComputer.product2 = PrefDiveComputer.device2 = ""
|
|
|
|
PrefDiveComputer.vendor3 = PrefDiveComputer.product3 = PrefDiveComputer.device3 = ""
|
|
|
|
PrefDiveComputer.vendor4 = PrefDiveComputer.product4 = PrefDiveComputer.device4 = ""
|
|
|
|
PrefDiveComputer.vendor = PrefDiveComputer.product = PrefDiveComputer.device = ""
|
2018-09-22 16:33:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Rectangle {
|
|
|
|
color: subsurfaceTheme.darkerPrimaryColor
|
|
|
|
height: 1
|
2017-07-20 19:19:26 +00:00
|
|
|
opacity: 0.5
|
|
|
|
Layout.fillWidth: true
|
|
|
|
}
|
2018-09-16 13:23:59 +00:00
|
|
|
GridLayout {
|
|
|
|
id: unit_system
|
|
|
|
columns: 2
|
2018-09-27 09:54:28 +00:00
|
|
|
Controls.Label {
|
2018-09-16 13:23:59 +00:00
|
|
|
text: qsTr("Units")
|
2018-09-27 09:54:28 +00:00
|
|
|
font.pointSize: subsurfaceTheme.headingPointSize
|
|
|
|
font.weight: Font.Light
|
2018-09-16 13:23:59 +00:00
|
|
|
color: subsurfaceTheme.textColor
|
|
|
|
Layout.topMargin: Kirigami.Units.largeSpacing
|
|
|
|
Layout.bottomMargin: Kirigami.Units.largeSpacing / 2
|
|
|
|
Layout.columnSpan: 2
|
|
|
|
}
|
|
|
|
|
|
|
|
Controls.Label {
|
|
|
|
text: qsTr("Use Imperial Units")
|
2018-09-27 09:54:28 +00:00
|
|
|
font.pointSize: subsurfaceTheme.regularPointSize
|
2018-09-16 13:23:59 +00:00
|
|
|
Layout.preferredWidth: gridWidth * 0.75
|
2019-10-05 01:21:56 +00:00
|
|
|
color: subsurfaceTheme.textColor
|
2018-09-16 13:23:59 +00:00
|
|
|
}
|
|
|
|
SsrfSwitch {
|
|
|
|
id: imperialButton
|
|
|
|
checked: PrefUnits.unit_system === "imperial"
|
|
|
|
enabled: PrefUnits.unit_system === "metric"
|
|
|
|
Layout.preferredWidth: gridWidth * 0.25
|
|
|
|
onClicked: {
|
|
|
|
PrefUnits.set_unit_system("imperial")
|
|
|
|
manager.changesNeedSaving()
|
2018-09-20 18:21:29 +00:00
|
|
|
manager.refreshDiveList()
|
2018-09-16 13:23:59 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
Controls.Label {
|
|
|
|
text: qsTr("Use Metric Units")
|
2018-09-27 09:54:28 +00:00
|
|
|
font.pointSize: subsurfaceTheme.regularPointSize
|
2018-09-16 13:23:59 +00:00
|
|
|
Layout.preferredWidth: gridWidth * 0.75
|
2019-10-05 01:21:56 +00:00
|
|
|
color: subsurfaceTheme.textColor
|
2018-09-16 13:23:59 +00:00
|
|
|
}
|
|
|
|
SsrfSwitch {
|
|
|
|
id: metricButtton
|
|
|
|
checked: PrefUnits.unit_system === "metric"
|
|
|
|
enabled: PrefUnits.unit_system === "imperial"
|
|
|
|
Layout.preferredWidth: gridWidth * 0.25
|
|
|
|
onClicked: {
|
|
|
|
PrefUnits.set_unit_system("metric")
|
|
|
|
manager.changesNeedSaving()
|
2018-09-20 18:21:29 +00:00
|
|
|
manager.refreshDiveList()
|
2018-09-16 13:23:59 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-20 01:15:00 +00:00
|
|
|
Rectangle {
|
|
|
|
color: subsurfaceTheme.darkerPrimaryColor
|
|
|
|
height: 1
|
|
|
|
opacity: 0.5
|
|
|
|
Layout.fillWidth: true
|
|
|
|
}
|
|
|
|
GridLayout {
|
|
|
|
id: filterPrefs
|
|
|
|
columns: 2
|
|
|
|
|
|
|
|
Controls.Label {
|
|
|
|
text: qsTr("Filter preferences")
|
|
|
|
font.pointSize: subsurfaceTheme.headingPointSize
|
|
|
|
font.weight: Font.Light
|
|
|
|
color: subsurfaceTheme.textColor
|
|
|
|
Layout.topMargin: Kirigami.Units.largeSpacing
|
|
|
|
Layout.bottomMargin: Kirigami.Units.largeSpacing / 2
|
|
|
|
Layout.columnSpan: 2
|
|
|
|
}
|
|
|
|
Controls.Label {
|
|
|
|
text: qsTr("Include notes in full text filtering")
|
|
|
|
font.pointSize: subsurfaceTheme.regularPointSize
|
|
|
|
Layout.preferredWidth: gridWidth * 0.75
|
2019-10-05 01:21:56 +00:00
|
|
|
color: subsurfaceTheme.textColor
|
2018-10-20 01:15:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
SsrfSwitch {
|
|
|
|
id: fullTextNotes
|
|
|
|
checked: PrefGeneral.filterFullTextNotes
|
|
|
|
Layout.preferredWidth: gridWidth * 0.25
|
|
|
|
onClicked: {
|
|
|
|
PrefGeneral.set_filterFullTextNotes(checked)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Controls.Label {
|
|
|
|
text: qsTr("Match filter case sensitive")
|
|
|
|
font.pointSize: subsurfaceTheme.regularPointSize
|
|
|
|
Layout.preferredWidth: gridWidth * 0.75
|
2019-10-05 01:21:56 +00:00
|
|
|
color: subsurfaceTheme.textColor
|
2018-10-20 01:15:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
SsrfSwitch {
|
|
|
|
id: filterCaseSensitive
|
|
|
|
checked: PrefGeneral.filterCaseSensitive
|
|
|
|
Layout.preferredWidth: gridWidth * 0.25
|
|
|
|
onClicked: {
|
|
|
|
PrefGeneral.set_filterCaseSensitive(checked)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2018-09-16 13:23:59 +00:00
|
|
|
Rectangle {
|
|
|
|
color: subsurfaceTheme.darkerPrimaryColor
|
|
|
|
height: 1
|
|
|
|
opacity: 0.5
|
|
|
|
Layout.fillWidth: true
|
|
|
|
}
|
|
|
|
|
2019-02-14 06:48:50 +00:00
|
|
|
GridLayout {
|
|
|
|
id: whichBluetoothDevices
|
|
|
|
columns: 2
|
|
|
|
Controls.Label {
|
|
|
|
text: qsTr("Bluetooth")
|
|
|
|
font.pointSize: subsurfaceTheme.headingPointSize
|
|
|
|
font.weight: Font.Light
|
|
|
|
color: subsurfaceTheme.textColor
|
|
|
|
Layout.topMargin: Kirigami.Units.largeSpacing
|
|
|
|
Layout.bottomMargin: Kirigami.Units.largeSpacing / 2
|
|
|
|
Layout.columnSpan: 2
|
|
|
|
}
|
|
|
|
|
|
|
|
Controls.Label {
|
2019-11-21 11:48:11 +00:00
|
|
|
text: qsTr("Temporarily show all bluetooth devices \neven if not recognized as dive computers.\nPlease report DCs that need this setting")
|
2019-02-14 06:48:50 +00:00
|
|
|
font.pointSize: subsurfaceTheme.regularPointSize
|
|
|
|
Layout.preferredWidth: gridWidth * 0.75
|
2019-10-05 01:21:56 +00:00
|
|
|
color: subsurfaceTheme.textColor
|
2019-02-14 06:48:50 +00:00
|
|
|
}
|
|
|
|
SsrfSwitch {
|
|
|
|
id: nonDCButton
|
|
|
|
checked: manager.showNonDiveComputers
|
|
|
|
Layout.preferredWidth: gridWidth * 0.25
|
|
|
|
onClicked: {
|
|
|
|
manager.showNonDiveComputers = checked
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Rectangle {
|
|
|
|
color: subsurfaceTheme.darkerPrimaryColor
|
|
|
|
height: 1
|
|
|
|
opacity: 0.5
|
|
|
|
Layout.fillWidth: true
|
|
|
|
}
|
|
|
|
|
2017-07-19 14:35:46 +00:00
|
|
|
GridLayout {
|
|
|
|
id: developer
|
2017-07-22 10:04:27 +00:00
|
|
|
columns: 2
|
2018-09-27 09:54:28 +00:00
|
|
|
Controls.Label {
|
2017-07-19 14:35:46 +00:00
|
|
|
text: qsTr("Developer")
|
2018-09-27 09:54:28 +00:00
|
|
|
font.pointSize: subsurfaceTheme.headingPointSize
|
|
|
|
font.weight: Font.Light
|
2017-07-19 14:35:46 +00:00
|
|
|
color: subsurfaceTheme.textColor
|
|
|
|
Layout.topMargin: Kirigami.Units.largeSpacing
|
|
|
|
Layout.bottomMargin: Kirigami.Units.largeSpacing / 2
|
2017-07-22 10:04:27 +00:00
|
|
|
Layout.columnSpan: 2
|
2017-07-19 14:35:46 +00:00
|
|
|
}
|
|
|
|
|
2017-10-12 12:25:22 +00:00
|
|
|
Controls.Label {
|
2017-07-20 18:47:17 +00:00
|
|
|
text: qsTr("Display Developer menu")
|
2018-09-27 09:54:28 +00:00
|
|
|
font.pointSize: subsurfaceTheme.regularPointSize
|
2017-07-22 10:04:27 +00:00
|
|
|
Layout.preferredWidth: gridWidth * 0.75
|
2019-10-05 01:21:56 +00:00
|
|
|
color: subsurfaceTheme.textColor
|
2017-07-20 18:47:17 +00:00
|
|
|
}
|
2017-07-24 18:04:47 +00:00
|
|
|
SsrfSwitch {
|
2017-07-19 14:35:46 +00:00
|
|
|
id: developerButton
|
2018-09-12 06:55:55 +00:00
|
|
|
checked: PrefDisplay.show_developer
|
2017-07-22 10:04:27 +00:00
|
|
|
Layout.preferredWidth: gridWidth * 0.25
|
2017-07-19 14:35:46 +00:00
|
|
|
onClicked: {
|
2018-09-12 06:55:55 +00:00
|
|
|
PrefDisplay.show_developer = checked
|
2017-08-03 22:30:32 +00:00
|
|
|
}
|
2017-07-19 14:35:46 +00:00
|
|
|
}
|
|
|
|
}
|
2017-07-10 03:53:16 +00:00
|
|
|
Item {
|
|
|
|
height: Kirigami.Units.gridUnit * 6
|
2017-07-10 01:08:36 +00:00
|
|
|
}
|
2017-07-10 01:47:18 +00:00
|
|
|
}
|
2015-07-10 07:48:28 +00:00
|
|
|
}
|