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
|
|
|
|
|
|
|
|
Window {
|
|
|
|
id: loginWindow
|
|
|
|
|
|
|
|
signal accept
|
|
|
|
|
|
|
|
property string username: login.text;
|
|
|
|
property string password: password.text;
|
|
|
|
property bool issave: savePassword.checked;
|
|
|
|
|
|
|
|
flags: Qt.Dialog
|
|
|
|
modality: Qt.WindowModal
|
|
|
|
GridLayout {
|
|
|
|
columns: 2
|
2015-07-12 17:55:45 +00:00
|
|
|
anchors.centerIn: parent
|
|
|
|
width: parent.width
|
|
|
|
|
|
|
|
Label {
|
|
|
|
text: "Enter your Subsurface cloud credentials"
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
|
|
|
Label {
|
|
|
|
text: "Save Password locally"
|
|
|
|
}
|
|
|
|
|
|
|
|
CheckBox {
|
|
|
|
id: savePassword
|
|
|
|
}
|
|
|
|
|
|
|
|
Item {
|
2015-07-12 17:55:45 +00:00
|
|
|
height: childrenRect.height
|
|
|
|
width: childrenRect.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
|
|
|
|
manager.savePreferences()
|
|
|
|
loginWindow.close();
|
|
|
|
loginWindow.accept();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-07-12 17:55:45 +00:00
|
|
|
|
|
|
|
Item {
|
|
|
|
height: childrenRect.height
|
|
|
|
width: childrenRect.width
|
|
|
|
Button {
|
|
|
|
id: cancelButton
|
|
|
|
text: "Cancel"
|
|
|
|
|
|
|
|
onClicked: {
|
|
|
|
loginWindow.close();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-07-10 07:48:28 +00:00
|
|
|
}
|
|
|
|
}
|