2015-12-03 22:06:52 +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
|
|
|
|
import org.kde.plasma.mobilecomponents 0.2 as MobileComponents
|
|
|
|
import org.subsurfacedivelog.mobile 1.0
|
|
|
|
|
|
|
|
Item {
|
|
|
|
id: loginWindow
|
2016-02-11 15:01:24 +00:00
|
|
|
height: outerLayout.height + 2 * MobileComponents.Units.gridUnit
|
2015-12-03 22:06:52 +00:00
|
|
|
|
|
|
|
property string username: login.text;
|
|
|
|
property string password: password.text;
|
|
|
|
property bool issave: savePassword.checked;
|
|
|
|
|
|
|
|
ColumnLayout {
|
2016-02-11 15:01:24 +00:00
|
|
|
id: outerLayout
|
2016-02-10 12:53:55 +00:00
|
|
|
width: subsurfaceTheme.columnWidth - 2 * MobileComponents.Units.gridUnit
|
2015-12-03 22:06:52 +00:00
|
|
|
MobileComponents.Heading {
|
|
|
|
text: "Cloud credentials"
|
2016-02-10 12:53:55 +00:00
|
|
|
level: headingLevel
|
2015-12-03 22:06:52 +00:00
|
|
|
Layout.bottomMargin: MobileComponents.Units.largeSpacing / 2
|
|
|
|
}
|
|
|
|
|
2015-12-04 01:57:25 +00:00
|
|
|
MobileComponents.Label {
|
2015-12-03 22:06:52 +00:00
|
|
|
text: "Email"
|
|
|
|
}
|
|
|
|
|
|
|
|
TextField {
|
|
|
|
id: login
|
|
|
|
text: manager.cloudUserName
|
|
|
|
Layout.fillWidth: true
|
2015-12-27 20:19:51 +00:00
|
|
|
inputMethodHints: Qt.ImhEmailCharactersOnly |
|
|
|
|
Qt.ImhNoAutoUppercase
|
2015-12-03 22:06:52 +00:00
|
|
|
}
|
|
|
|
|
2015-12-04 01:57:25 +00:00
|
|
|
MobileComponents.Label {
|
2015-12-03 22:06:52 +00:00
|
|
|
text: "Password"
|
|
|
|
}
|
|
|
|
|
|
|
|
TextField {
|
|
|
|
id: password
|
|
|
|
text: manager.cloudPassword
|
|
|
|
echoMode: TextInput.Password
|
2015-12-30 10:46:28 +00:00
|
|
|
inputMethodHints: Qt.ImhSensitiveData |
|
2015-12-27 20:19:51 +00:00
|
|
|
Qt.ImhHiddenText |
|
|
|
|
Qt.ImhNoAutoUppercase
|
2015-12-03 22:06:52 +00:00
|
|
|
Layout.fillWidth: true
|
|
|
|
}
|
2015-12-04 01:57:25 +00:00
|
|
|
GridLayout {
|
|
|
|
columns: 2
|
2015-12-03 22:06:52 +00:00
|
|
|
|
2015-12-04 01:57:25 +00:00
|
|
|
CheckBox {
|
|
|
|
checked: false
|
|
|
|
id: showPassword
|
|
|
|
onCheckedChanged: {
|
|
|
|
password.echoMode = checked ? TextInput.Normal : TextInput.Password
|
|
|
|
}
|
|
|
|
}
|
|
|
|
MobileComponents.Label {
|
|
|
|
text: "Show password"
|
2015-12-03 22:06:52 +00:00
|
|
|
}
|
|
|
|
|
2015-12-04 01:57:25 +00:00
|
|
|
CheckBox {
|
|
|
|
checked: manager.saveCloudPassword
|
|
|
|
id: savePassword
|
|
|
|
}
|
|
|
|
MobileComponents.Label {
|
|
|
|
text: "Remember"
|
|
|
|
}
|
2015-12-03 22:06:52 +00:00
|
|
|
}
|
|
|
|
Item { width: MobileComponents.Units.gridUnit; height: width }
|
2016-02-11 13:04:12 +00:00
|
|
|
RowLayout {
|
|
|
|
Item {
|
|
|
|
height: saveButton.height
|
|
|
|
width: saveButton.width
|
|
|
|
SubsurfaceButton {
|
|
|
|
id: saveButton
|
|
|
|
text: "Save"
|
|
|
|
onClicked: {
|
|
|
|
manager.cloudUserName = login.text
|
|
|
|
manager.cloudPassword = password.text
|
|
|
|
manager.saveCloudPassword = savePassword.checked
|
|
|
|
manager.saveCloudCredentials()
|
|
|
|
}
|
2016-02-11 02:09:16 +00:00
|
|
|
}
|
|
|
|
}
|
2016-02-11 13:04:12 +00:00
|
|
|
Item {
|
|
|
|
height: backButton.height
|
|
|
|
width: backButton.width
|
|
|
|
visible: diveListView.count > 0 && manager.credentialStatus != QMLManager.INVALID
|
|
|
|
SubsurfaceButton {
|
|
|
|
id: backButton
|
|
|
|
text: "Back to dive list"
|
|
|
|
onClicked: {
|
|
|
|
manager.credentialStatus = oldStatus
|
|
|
|
}
|
2015-12-03 22:06:52 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|