diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2015-11-13 17:14:22 -0800 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2015-11-13 17:15:28 -0800 |
commit | d65b756c4ff3cf929114d2a48d1a0aa22f481ed9 (patch) | |
tree | 446374484824af0165122bf00bc6adebb6d13ce3 /qt-mobile/qml | |
parent | 6124842b0c4e8e52a72434f78b4b4177c6e2474b (diff) | |
download | subsurface-d65b756c4ff3cf929114d2a48d1a0aa22f481ed9.tar.gz |
QML UI: add preference for webservice user id
This handles the user id for the Subsurface webservice for GPS location
tracking.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-mobile/qml')
-rw-r--r-- | qt-mobile/qml/Preferences.qml | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/qt-mobile/qml/Preferences.qml b/qt-mobile/qml/Preferences.qml index b199be739..24f758f6b 100644 --- a/qt-mobile/qml/Preferences.qml +++ b/qt-mobile/qml/Preferences.qml @@ -72,6 +72,24 @@ Item { id: savePassword } + Label { + text: "Subsurface GPS data webservice" + Layout.bottomMargin: units.largeSpacing + font.pointSize: units.titlePointSize + Layout.columnSpan: 2 + } + + Label { + text: "ID" + Layout.alignment: Qt.AlignRight + } + + TextField { + id: userid + text: manager.ssrfGpsWebUserid + Layout.fillWidth: true + } + Item { width: units.gridUnit; height: width } Item { height: saveButton.height |