subsurface/qt-mobile/Preferences.qml
Dirk Hohndel 57e9784d27 QML UI: improve preferences layout
And make it resolution independent.

Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
2015-07-12 10:55:45 -07:00

88 lines
1.4 KiB
QML

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
anchors.centerIn: parent
width: parent.width
Label {
text: "Enter your Subsurface cloud credentials"
Layout.columnSpan: 2
}
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 {
height: childrenRect.height
width: childrenRect.width
Button {
id: saveButton
text: "Save"
anchors.centerIn: parent
onClicked: {
manager.cloudUserName = login.text
manager.cloudPassword = password.text
manager.savePreferences()
loginWindow.close();
loginWindow.accept();
}
}
}
Item {
height: childrenRect.height
width: childrenRect.width
Button {
id: cancelButton
text: "Cancel"
onClicked: {
loginWindow.close();
}
}
}
}
}