2015-12-03 14:06:52 -08: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 07:01:24 -08:00
|
|
|
height: outerLayout.height + 2 * MobileComponents.Units.gridUnit
|
2015-12-03 14:06:52 -08:00
|
|
|
|
|
|
|
property string username: login.text;
|
|
|
|
property string password: password.text;
|
|
|
|
property bool issave: savePassword.checked;
|
|
|
|
|
2016-02-13 21:09:33 -08:00
|
|
|
function saveCredentials() {
|
|
|
|
manager.cloudUserName = login.text
|
|
|
|
manager.cloudPassword = password.text
|
|
|
|
manager.saveCloudPassword = savePassword.checked
|
|
|
|
manager.saveCloudCredentials()
|
|
|
|
}
|
|
|
|
|
2015-12-03 14:06:52 -08:00
|
|
|
ColumnLayout {
|
2016-02-11 07:01:24 -08:00
|
|
|
id: outerLayout
|
2016-02-10 04:53:55 -08:00
|
|
|
width: subsurfaceTheme.columnWidth - 2 * MobileComponents.Units.gridUnit
|
2015-12-03 14:06:52 -08:00
|
|
|
MobileComponents.Heading {
|
|
|
|
text: "Cloud credentials"
|
2016-02-10 04:53:55 -08:00
|
|
|
level: headingLevel
|
2015-12-03 14:06:52 -08:00
|
|
|
Layout.bottomMargin: MobileComponents.Units.largeSpacing / 2
|
|
|
|
}
|
|
|
|
|
2015-12-03 17:57:25 -08:00
|
|
|
MobileComponents.Label {
|
2015-12-03 14:06:52 -08:00
|
|
|
text: "Email"
|
|
|
|
}
|
|
|
|
|
|
|
|
TextField {
|
|
|
|
id: login
|
|
|
|
text: manager.cloudUserName
|
|
|
|
Layout.fillWidth: true
|
2015-12-27 12:19:51 -08:00
|
|
|
inputMethodHints: Qt.ImhEmailCharactersOnly |
|
|
|
|
Qt.ImhNoAutoUppercase
|
2015-12-03 14:06:52 -08:00
|
|
|
}
|
|
|
|
|
2015-12-03 17:57:25 -08:00
|
|
|
MobileComponents.Label {
|
2015-12-03 14:06:52 -08:00
|
|
|
text: "Password"
|
|
|
|
}
|
|
|
|
|
|
|
|
TextField {
|
|
|
|
id: password
|
|
|
|
text: manager.cloudPassword
|
|
|
|
echoMode: TextInput.Password
|
2015-12-30 21:46:28 +11:00
|
|
|
inputMethodHints: Qt.ImhSensitiveData |
|
2015-12-27 12:19:51 -08:00
|
|
|
Qt.ImhHiddenText |
|
|
|
|
Qt.ImhNoAutoUppercase
|
2015-12-03 14:06:52 -08:00
|
|
|
Layout.fillWidth: true
|
|
|
|
}
|
2015-12-03 17:57:25 -08:00
|
|
|
GridLayout {
|
|
|
|
columns: 2
|
2015-12-03 14:06:52 -08:00
|
|
|
|
2015-12-03 17:57:25 -08:00
|
|
|
CheckBox {
|
|
|
|
checked: false
|
|
|
|
id: showPassword
|
|
|
|
onCheckedChanged: {
|
|
|
|
password.echoMode = checked ? TextInput.Normal : TextInput.Password
|
|
|
|
}
|
|
|
|
}
|
|
|
|
MobileComponents.Label {
|
|
|
|
text: "Show password"
|
2015-12-03 14:06:52 -08:00
|
|
|
}
|
|
|
|
|
2015-12-03 17:57:25 -08:00
|
|
|
CheckBox {
|
|
|
|
checked: manager.saveCloudPassword
|
|
|
|
id: savePassword
|
|
|
|
}
|
|
|
|
MobileComponents.Label {
|
|
|
|
text: "Remember"
|
|
|
|
}
|
2015-12-03 14:06:52 -08:00
|
|
|
}
|
|
|
|
Item { width: MobileComponents.Units.gridUnit; height: width }
|
|
|
|
}
|
|
|
|
}
|