summaryrefslogtreecommitdiffstats
path: root/components/accounts/qml/main.qml
diff options
context:
space:
mode:
authorChristian Mollekopf <chrigi_1@fastmail.fm>2017-12-19 12:47:09 +0100
committerChristian Mollekopf <chrigi_1@fastmail.fm>2017-12-19 12:47:09 +0100
commitc8cba25a10823b0468e6ba7865c70be29dea651d (patch)
tree32766103620afad4d0ebcf5d4591312634e45370 /components/accounts/qml/main.qml
parentabb569c99602febfec6d5822b26d36eb1af4a83f (diff)
downloadkube-c8cba25a10823b0468e6ba7865c70be29dea651d.tar.gz
kube-c8cba25a10823b0468e6ba7865c70be29dea651d.zip
Working Accounts main.qml
Diffstat (limited to 'components/accounts/qml/main.qml')
-rw-r--r--components/accounts/qml/main.qml17
1 files changed, 13 insertions, 4 deletions
diff --git a/components/accounts/qml/main.qml b/components/accounts/qml/main.qml
index e15bca8f..5162cc3f 100644
--- a/components/accounts/qml/main.qml
+++ b/components/accounts/qml/main.qml
@@ -17,14 +17,23 @@
17 */ 17 */
18 18
19import QtQuick 2.7 19import QtQuick 2.7
20import QtQuick.Controls 2.0 as Controls2 20import QtQuick.Controls 2.0
21import QtQuick.Window 2.0
21 22
22Controls2.ApplicationWindow { 23import org.kube.framework 1.0 as Kube
24
25ApplicationWindow {
23 id: app 26 id: app
24 height: 900 27 height: Screen.desktopAvailableHeight * 0.8
25 width: 1500 28 width: Screen.desktopAvailableWidth * 0.8
26 29
27 AccountWizard { 30 AccountWizard {
28 visible: true 31 visible: true
32 parent: ApplicationWindow.overlay
33 height: app.height
34 width: app.width
35 x: 0
36 y: 0
37 availableAccountPlugins: ["maildir", "imap", "kolabnow", "gmail"]
29 } 38 }
30} 39}