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
|
|
|
|
import org.subsurfacedivelog.mobile 1.0
|
|
|
|
|
2015-07-12 17:56:48 +00:00
|
|
|
Item {
|
2015-07-10 07:48:28 +00:00
|
|
|
id: loginWindow
|
|
|
|
|
|
|
|
signal accept
|
|
|
|
|
|
|
|
property string username: login.text;
|
|
|
|
property string password: password.text;
|
|
|
|
property bool issave: savePassword.checked;
|
|
|
|
|
|
|
|
GridLayout {
|
|
|
|
columns: 2
|
2015-11-07 02:01:16 +00:00
|
|
|
anchors.fill: parent
|
|
|
|
anchors.margins: units.gridUnit
|
2015-07-12 17:55:45 +00:00
|
|
|
|
|
|
|
Label {
|
|
|
|
text: "Enter your Subsurface cloud credentials"
|
2015-11-07 02:01:16 +00:00
|
|
|
Layout.bottomMargin: units.largeSpacing
|
|
|
|
font.pointSize: units.titlePointSize
|
2015-07-12 17:55:45 +00:00
|
|
|
Layout.columnSpan: 2
|
|
|
|
}
|
2015-07-10 07:48:28 +00:00
|
|
|
|
|
|
|
Label {
|
|
|
|
text: "Email Address:"
|
|
|
|
}
|
|
|
|
|
|
|
|
TextField {
|
|
|
|
id: login
|
|
|
|
text: manager.cloudUserName
|
|
|
|
Layout.fillWidth: true
|
|
|
|
}
|
|
|
|
|
|
|
|
Label {
|
|
|
|
text: "Password"
|
|
|
|
}
|
|
|
|
|
|
|
|
TextField {
|
|
|
|
id: password
|
|
|
|
text: manager.cloudPassword
|
|
|
|
echoMode: TextInput.Password
|
|
|
|
Layout.fillWidth: true
|
|
|
|
}
|
|
|
|
|
2015-11-07 02:01:16 +00:00
|
|
|
Label {
|
|
|
|
text: "Show password"
|
|
|
|
}
|
|
|
|
|
|
|
|
CheckBox {
|
|
|
|
checked: false
|
|
|
|
id: showPassword
|
|
|
|
onCheckedChanged: {
|
|
|
|
password.echoMode = checked ? TextInput.Normal : TextInput.Password
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-07-10 07:48:28 +00:00
|
|
|
Label {
|
|
|
|
text: "Save Password locally"
|
|
|
|
}
|
|
|
|
|
|
|
|
CheckBox {
|
2015-07-21 08:57:10 +00:00
|
|
|
checked: manager.saveCloudPassword
|
2015-07-10 07:48:28 +00:00
|
|
|
id: savePassword
|
|
|
|
}
|
|
|
|
|
2015-11-07 02:01:16 +00:00
|
|
|
Item { width: units.gridUnit; height: width }
|
2015-07-10 07:48:28 +00:00
|
|
|
Item {
|
2015-07-13 00:38:01 +00:00
|
|
|
height: saveButton.height
|
|
|
|
width: saveButton.width
|
2015-07-10 07:48:28 +00:00
|
|
|
Button {
|
|
|
|
id: saveButton
|
|
|
|
text: "Save"
|
|
|
|
anchors.centerIn: parent
|
|
|
|
onClicked: {
|
|
|
|
manager.cloudUserName = login.text
|
|
|
|
manager.cloudPassword = password.text
|
2015-07-21 08:57:10 +00:00
|
|
|
manager.saveCloudPassword = savePassword.checked
|
2015-07-10 07:48:28 +00:00
|
|
|
manager.savePreferences()
|
2015-07-12 17:56:48 +00:00
|
|
|
stackView.pop()
|
2015-07-10 07:48:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-07-12 17:55:45 +00:00
|
|
|
|
|
|
|
Item {
|
2015-11-07 02:01:16 +00:00
|
|
|
Layout.fillHeight: true
|
2015-07-12 17:55:45 +00:00
|
|
|
}
|
2015-07-10 07:48:28 +00:00
|
|
|
}
|
|
|
|
}
|