diff options
author | Michael Bohlender <michael.bohlender@kdemail.net> | 2017-01-09 14:51:43 +0100 |
---|---|---|
committer | Michael Bohlender <michael.bohlender@kdemail.net> | 2017-01-09 14:51:43 +0100 |
commit | ca0d6d669b88336d0c00f09ca9b645397a023e6d (patch) | |
tree | a4e72a0849667b7f9db2716bc09d71d8caa8520e /components/accounts/AccountWizard.qml | |
parent | 3dcfaf700ebfee4cd0c8ce7134624b6ac0206122 (diff) | |
download | kube-ca0d6d669b88336d0c00f09ca9b645397a023e6d.tar.gz kube-ca0d6d669b88336d0c00f09ca9b645397a023e6d.zip |
create gmail account controller and dialog
Diffstat (limited to 'components/accounts/AccountWizard.qml')
-rw-r--r-- | components/accounts/AccountWizard.qml | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/components/accounts/AccountWizard.qml b/components/accounts/AccountWizard.qml index ccac252b..8cc90acb 100644 --- a/components/accounts/AccountWizard.qml +++ b/components/accounts/AccountWizard.qml | |||
@@ -66,6 +66,17 @@ Controls2.Popup { | |||
66 | 66 | ||
67 | Layout.fillWidth: true | 67 | Layout.fillWidth: true |
68 | 68 | ||
69 | text: "gmail account" | ||
70 | |||
71 | onClicked: { | ||
72 | stack.push(gmail) | ||
73 | } | ||
74 | } | ||
75 | |||
76 | Controls2.Button { | ||
77 | |||
78 | Layout.fillWidth: true | ||
79 | |||
69 | text: "imap account" | 80 | text: "imap account" |
70 | 81 | ||
71 | onClicked: { | 82 | onClicked: { |
@@ -95,6 +106,13 @@ Controls2.Popup { | |||
95 | } | 106 | } |
96 | 107 | ||
97 | Component { | 108 | Component { |
109 | id: gmail | ||
110 | |||
111 | CreateGmail { | ||
112 | } | ||
113 | } | ||
114 | |||
115 | Component { | ||
98 | id: imap | 116 | id: imap |
99 | 117 | ||
100 | CreateImap { | 118 | CreateImap { |