aboutsummaryrefslogtreecommitdiffstats
path: root/qt-mobile/qml/Preferences.qml
blob: 3a092f34874860e2be1b61fc44198e65a29f4e33 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
import QtQuick 2.3
import QtQuick.Controls 1.2
import QtQuick.Window 2.2
import QtQuick.Dialogs 1.2
import QtQuick.Layouts 1.1
import org.kde.plasma.mobilecomponents 0.2 as MobileComponents
import org.subsurfacedivelog.mobile 1.0

MobileComponents.Page {
GridLayout {

	signal accept

	columns: 2
	width: parent.width - MobileComponents.Units.gridUnit
	anchors {
		fill: parent
		margins: MobileComponents.Units.gridUnit / 2
	}

	MobileComponents.Heading {
		text: "Preferences"
		Layout.bottomMargin: MobileComponents.Units.largeSpacing / 2
		Layout.columnSpan: 2
	}

	MobileComponents.Heading {
		text: "Subsurface GPS data webservice"
		level: 3
		Layout.topMargin: MobileComponents.Units.largeSpacing
		Layout.bottomMargin: MobileComponents.Units.largeSpacing / 2
		Layout.columnSpan: 2
	}

	MobileComponents.Label {
		text: "Distance threshold (meters)"
		Layout.alignment: Qt.AlignRight
	}

	TextField {
		id: distanceThreshold
		text: manager.distanceThreshold
		Layout.fillWidth: true
	}

	MobileComponents.Label {
		text: "Time threshold (minutes)"
		Layout.alignment: Qt.AlignRight
	}

	TextField {
		id: timeThreshold
		text: manager.timeThreshold
		Layout.fillWidth: true
	}

	Item { width: MobileComponents.Units.gridUnit; height: width }
	Item {
		Layout.preferredHeight: saveButton.height
		Layout.preferredWidth: saveButton.width
		SubsurfaceButton {
			id: saveButton
			text: "Save"
			anchors.centerIn: parent
			onClicked: {
				manager.distanceThreshold = distanceThreshold.text
				manager.timeThreshold = timeThreshold.text
				manager.savePreferences()
				stackView.pop()
			}
		}
	}

	Item {
		Layout.fillHeight: true
	}
}
}