From e2f86e32a295cddacc6053936933150d1e7c665b Mon Sep 17 00:00:00 2001 From: Christian Mollekopf Date: Sat, 18 Aug 2018 10:55:08 +0200 Subject: A generic account. This is intended to eventually replace the protocol specific accounts. The account is used to group together several protocols to one logical service, and thus it makes sense to set it up as one. --- accounts/generic/qml/AccountSettings.qml | 157 +++++++++++++++++++++++++++++++ accounts/generic/qml/Login.qml | 60 ++++++++++++ 2 files changed, 217 insertions(+) create mode 100644 accounts/generic/qml/AccountSettings.qml create mode 100644 accounts/generic/qml/Login.qml (limited to 'accounts/generic/qml') diff --git a/accounts/generic/qml/AccountSettings.qml b/accounts/generic/qml/AccountSettings.qml new file mode 100644 index 00000000..c75a526c --- /dev/null +++ b/accounts/generic/qml/AccountSettings.qml @@ -0,0 +1,157 @@ +/* + Copyright (C) 2016 Michael Bohlender, + Copyright (C) 2017 Christian Mollekopf, + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License along + with this program; if not, write to the Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +*/ + +import QtQuick 2.4 +import QtQuick.Layouts 1.1 +import org.kube.framework 1.0 as Kube +import org.kube.accounts.generic 1.0 as GenericAccount + +Item { + + property string accountId + property string heading: qsTr("Connect your account") + property string subheadline: qsTr("To let Kube access your account, fill in email address, username and the relevant server addresses. For information about the server details, please contact your email provider.") + property bool valid: true + implicitHeight: grid.implicitHeight + + GenericAccount.Settings { + id: settings + accountIdentifier: accountId + accountType: "generic" + } + + function save(){ + settings.save() + } + + function remove(){ + settings.remove() + } + GridLayout { + id: grid + anchors.fill: parent + columns: 2 + columnSpacing: Kube.Units.largeSpacing + rowSpacing: Kube.Units.largeSpacing + + Kube.Label { + text: qsTr("Name") + Layout.alignment: Qt.AlignRight + } + Kube.RequiredTextField { + Layout.fillWidth: true + placeholderText: qsTr("Your name") + text: settings.userName + onTextChanged: { + settings.userName = text + } + } + + Kube.Label { + text: qsTr("Email address") + Layout.alignment: Qt.AlignRight + } + Kube.RequiredTextField { + Layout.fillWidth: true + + text: settings.emailAddress + onTextChanged: { + settings.emailAddress = text + settings.accountName = text + } + placeholderText: qsTr("Your email address") + } + Kube.Label { + text: qsTr("Username") + Layout.alignment: Qt.AlignRight + } + Kube.RequiredTextField { + Layout.fillWidth: true + + text: settings.imapUsername + onTextChanged: { + settings.imapUsername = text + settings.smtpUsername = text + settings.carddavUsername = text + settings.caldavUsername = text + } + placeholderText: qsTr("Your username for server access.") + } + + Kube.Label { + text: qsTr("IMAP address") + Layout.alignment: Qt.AlignRight + } + Kube.RequiredTextField { + id: imapServer + + Layout.fillWidth: true + + placeholderText: "imaps://mainserver.example.net:993" + text: settings.imapServer + onTextChanged: { + settings.imapServer = text + } + validator: settings.imapServerValidator + } + + Kube.Label { + text: qsTr("SMTP address") + Layout.alignment: Qt.AlignRight + } + Kube.RequiredTextField { + Layout.fillWidth: true + + placeholderText: "smtps://mainserver.example.net:587" + text: settings.smtpServer + onTextChanged: { + settings.smtpServer = text + } + validator: settings.smtpServerValidator + } + + Kube.Label { + text: qsTr("CardDAV address") + Layout.alignment: Qt.AlignRight + } + Kube.RequiredTextField { + Layout.fillWidth: true + + placeholderText: "https://mainserver.example.net" + text: settings.carddavServer + onTextChanged: { + settings.carddavServer = text + } + } + + Kube.Label { + text: qsTr("CalDAV address") + Layout.alignment: Qt.AlignRight + } + Kube.RequiredTextField { + Layout.fillWidth: true + + placeholderText: "https://mainserver.example.net" + text: settings.caldavServer + onTextChanged: { + settings.caldavServer = text + } + } + } +} diff --git a/accounts/generic/qml/Login.qml b/accounts/generic/qml/Login.qml new file mode 100644 index 00000000..7b5b4221 --- /dev/null +++ b/accounts/generic/qml/Login.qml @@ -0,0 +1,60 @@ +/* + Copyright (C) 2016 Michael Bohlender, + Copyright (C) 2017 Christian Mollekopf, + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License along + with this program; if not, write to the Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +*/ + +import QtQuick 2.4 +import QtQuick.Layouts 1.1 +import org.kube.framework 1.0 as Kube +import org.kube.accounts.generic 1.0 as GenericAccount + +Item { + property alias accountId: settings.accountIdentifier + property string heading: qsTr("Login") + property string subheadline: settings.accountName + property bool valid: pwField.acceptableInput + + GenericAccount.Settings { + id: settings + accountType: "generic" + } + + function login(){ + settings.login({accountSecret: pwField.text}) + } + + GridLayout { + anchors { + fill: parent + } + columns: 2 + columnSpacing: Kube.Units.largeSpacing + rowSpacing: Kube.Units.largeSpacing + + Kube.Label { + text: qsTr("Password") + Layout.alignment: Qt.AlignRight + } + + Kube.PasswordField { + id: pwField + Layout.fillWidth: true + focus: true + placeholderText: qsTr("Password of your account") + } + } +} -- cgit v1.2.3