diff options
author | Christian Mollekopf <chrigi_1@fastmail.fm> | 2017-12-18 21:06:21 +0100 |
---|---|---|
committer | Christian Mollekopf <chrigi_1@fastmail.fm> | 2017-12-18 21:06:21 +0100 |
commit | 2ffbd47ae807d044ac563fb680a322cefebe4ef7 (patch) | |
tree | ac9bbc0d12e8d99f8bf2696f332797b6061e3523 /accounts/kolabnow/qml/Login.qml | |
parent | b77216db4b6d941afb03325e0843509621a283da (diff) | |
download | kube-2ffbd47ae807d044ac563fb680a322cefebe4ef7.tar.gz kube-2ffbd47ae807d044ac563fb680a322cefebe4ef7.zip |
Removed kpackage structure
Diffstat (limited to 'accounts/kolabnow/qml/Login.qml')
-rw-r--r-- | accounts/kolabnow/qml/Login.qml | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/accounts/kolabnow/qml/Login.qml b/accounts/kolabnow/qml/Login.qml new file mode 100644 index 00000000..e416b089 --- /dev/null +++ b/accounts/kolabnow/qml/Login.qml | |||
@@ -0,0 +1,62 @@ | |||
1 | /* | ||
2 | Copyright (C) 2016 Michael Bohlender, <michael.bohlender@kdemail.net> | ||
3 | Copyright (C) 2017 Christian Mollekopf, <mollekopf@kolabsys.com> | ||
4 | |||
5 | This program is free software; you can redistribute it and/or modify | ||
6 | it under the terms of the GNU General Public License as published by | ||
7 | the Free Software Foundation; either version 2 of the License, or | ||
8 | (at your option) any later version. | ||
9 | |||
10 | This program is distributed in the hope that it will be useful, | ||
11 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
13 | GNU General Public License for more details. | ||
14 | |||
15 | You should have received a copy of the GNU General Public License along | ||
16 | with this program; if not, write to the Free Software Foundation, Inc., | ||
17 | 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. | ||
18 | */ | ||
19 | |||
20 | import QtQuick 2.4 | ||
21 | import QtQuick.Layouts 1.1 | ||
22 | import org.kube.framework 1.0 as Kube | ||
23 | import org.kube.accounts.kolabnow 1.0 as KolabnowAccount | ||
24 | |||
25 | Item { | ||
26 | property alias accountId: settings.accountIdentifier | ||
27 | property string heading: qsTr("Login") | ||
28 | property string subheadline: settings.accountName | ||
29 | |||
30 | KolabnowAccount.KolabnowSettings { | ||
31 | id: settings | ||
32 | accountType: "kolabnow" | ||
33 | } | ||
34 | |||
35 | function login(){ | ||
36 | settings.save() | ||
37 | } | ||
38 | |||
39 | GridLayout { | ||
40 | anchors { | ||
41 | fill: parent | ||
42 | } | ||
43 | columns: 2 | ||
44 | columnSpacing: Kube.Units.largeSpacing | ||
45 | rowSpacing: Kube.Units.largeSpacing | ||
46 | |||
47 | Kube.Label { | ||
48 | text: qsTr("Password") | ||
49 | Layout.alignment: Qt.AlignRight | ||
50 | } | ||
51 | |||
52 | Kube.PasswordField { | ||
53 | id: pwField | ||
54 | Layout.fillWidth: true | ||
55 | focus: true | ||
56 | |||
57 | placeholderText: qsTr("Password of your Kolab Now account") | ||
58 | text: settings.imapPassword | ||
59 | onTextChanged: settings.imapPassword = text | ||
60 | } | ||
61 | } | ||
62 | } | ||