2015-07-10 07:48:28 +00:00
|
|
|
import QtQuick 2.3
|
|
|
|
import QtQuick.Controls 1.2
|
|
|
|
import QtQuick.Window 2.2
|
|
|
|
import QtQuick.Dialogs 1.2
|
|
|
|
import QtQuick.Layouts 1.1
|
2015-11-29 16:27:20 +00:00
|
|
|
import org.kde.plasma.mobilecomponents 0.2 as MobileComponents
|
2015-07-10 07:48:28 +00:00
|
|
|
import org.subsurfacedivelog.mobile 1.0
|
|
|
|
|
2016-02-10 23:02:21 +00:00
|
|
|
MobileComponents.Page {
|
2016-02-12 12:51:03 +00:00
|
|
|
|
2016-02-14 05:50:31 +00:00
|
|
|
mainAction: Action {
|
|
|
|
text: "Save"
|
|
|
|
iconName: "document-save"
|
|
|
|
onTriggered: {
|
|
|
|
manager.distanceThreshold = distanceThreshold.text
|
|
|
|
manager.timeThreshold = timeThreshold.text
|
|
|
|
manager.savePreferences()
|
|
|
|
stackView.pop()
|
2016-02-12 12:51:03 +00:00
|
|
|
}
|
2016-02-14 05:50:31 +00:00
|
|
|
}
|
|
|
|
|
2016-02-10 23:11:04 +00:00
|
|
|
GridLayout {
|
2015-07-10 07:48:28 +00:00
|
|
|
|
2016-02-10 23:11:04 +00:00
|
|
|
signal accept
|
2015-07-10 07:48:28 +00:00
|
|
|
|
2016-02-10 23:11:04 +00:00
|
|
|
columns: 2
|
|
|
|
width: parent.width - MobileComponents.Units.gridUnit
|
|
|
|
anchors {
|
|
|
|
fill: parent
|
|
|
|
margins: MobileComponents.Units.gridUnit / 2
|
|
|
|
}
|
2015-07-12 17:55:45 +00:00
|
|
|
|
2016-02-10 23:11:04 +00:00
|
|
|
MobileComponents.Heading {
|
|
|
|
text: "Preferences"
|
|
|
|
Layout.bottomMargin: MobileComponents.Units.largeSpacing / 2
|
|
|
|
Layout.columnSpan: 2
|
|
|
|
}
|
2015-07-10 07:48:28 +00:00
|
|
|
|
2016-02-10 23:11:04 +00:00
|
|
|
MobileComponents.Heading {
|
|
|
|
text: "Subsurface GPS data webservice"
|
|
|
|
level: 3
|
|
|
|
Layout.topMargin: MobileComponents.Units.largeSpacing
|
|
|
|
Layout.bottomMargin: MobileComponents.Units.largeSpacing / 2
|
|
|
|
Layout.columnSpan: 2
|
|
|
|
}
|
2015-11-14 01:14:22 +00:00
|
|
|
|
2016-02-10 23:11:04 +00:00
|
|
|
MobileComponents.Label {
|
|
|
|
text: "Distance threshold (meters)"
|
|
|
|
Layout.alignment: Qt.AlignRight
|
|
|
|
}
|
2015-11-14 17:10:06 +00:00
|
|
|
|
2016-02-10 23:11:04 +00:00
|
|
|
TextField {
|
|
|
|
id: distanceThreshold
|
|
|
|
text: manager.distanceThreshold
|
|
|
|
Layout.fillWidth: true
|
|
|
|
}
|
2015-11-14 17:10:06 +00:00
|
|
|
|
2016-02-10 23:11:04 +00:00
|
|
|
MobileComponents.Label {
|
|
|
|
text: "Time threshold (minutes)"
|
|
|
|
Layout.alignment: Qt.AlignRight
|
|
|
|
}
|
2015-11-14 17:10:06 +00:00
|
|
|
|
2016-02-10 23:11:04 +00:00
|
|
|
TextField {
|
|
|
|
id: timeThreshold
|
|
|
|
text: manager.timeThreshold
|
|
|
|
Layout.fillWidth: true
|
|
|
|
}
|
2015-11-14 17:10:06 +00:00
|
|
|
|
2016-02-10 23:11:04 +00:00
|
|
|
Item {
|
|
|
|
Layout.fillHeight: true
|
|
|
|
}
|
2015-07-10 07:48:28 +00:00
|
|
|
}
|
|
|
|
}
|