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
|
|
|
|
|
|
|
|
signal accept
|
|
|
|
|
|
|
|
property string username: login.text;
|
|
|
|
property string password: password.text;
|
|
|
|
property bool issave: savePassword.checked;
|
|
|
|
|
|
|
|
ColumnLayout {
|
2015-12-08 02:11:19 +00:00
|
|
|
|
|
|
|
anchors {
|
|
|
|
fill: parent
|
|
|
|
margins: MobileComponents.Units.gridUnit / 2
|
|
|
|
}
|
2015-12-03 22:06:52 +00:00
|
|
|
|
|
|
|
MobileComponents.Heading {
|
|
|
|
text: "Cloud credentials"
|
|
|
|
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: {
|
2015-12-27 20:20:36 +00:00
|
|
|
console.log("changing password echoMode to " + (checked ? TextInput.Normal : TextInput.Password) + " was " + password.echoMode);
|
2015-12-04 01:57:25 +00:00
|
|
|
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 }
|
|
|
|
Item {
|
|
|
|
height: saveButton.height
|
|
|
|
width: saveButton.width
|
|
|
|
Button {
|
|
|
|
id: saveButton
|
|
|
|
text: "Save"
|
|
|
|
anchors.centerIn: parent
|
|
|
|
onClicked: {
|
|
|
|
manager.cloudUserName = login.text
|
|
|
|
manager.cloudPassword = password.text
|
|
|
|
manager.saveCloudPassword = savePassword.checked
|
2015-12-03 22:30:30 +00:00
|
|
|
manager.saveCloudCredentials()
|
2015-12-03 22:06:52 +00:00
|
|
|
stackView.pop()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Item {
|
|
|
|
Layout.fillHeight: true
|
|
|
|
}
|
2015-12-27 20:20:36 +00:00
|
|
|
Component.onCompleted: {
|
|
|
|
console.log("password echoMode is " + password.echoMode);
|
|
|
|
}
|
|
|
|
|
2015-12-03 22:06:52 +00:00
|
|
|
}
|
|
|
|
}
|