diff options
author | Christian Mollekopf <chrigi_1@fastmail.fm> | 2017-04-05 13:00:21 +0200 |
---|---|---|
committer | Christian Mollekopf <chrigi_1@fastmail.fm> | 2017-04-05 13:00:21 +0200 |
commit | 5755ad47145d2985ba74354961b4127d82c516f6 (patch) | |
tree | aa6af562b7e587be895ff5a4355270f82f3ea180 /components/accounts/contents/ui/CreateGmail.qml | |
parent | e78224a7d9ccf70aadde8c0bff1cab72e8cb7438 (diff) | |
download | kube-5755ad47145d2985ba74354961b4127d82c516f6.tar.gz kube-5755ad47145d2985ba74354961b4127d82c516f6.zip |
A single framework plugin
Diffstat (limited to 'components/accounts/contents/ui/CreateGmail.qml')
-rw-r--r-- | components/accounts/contents/ui/CreateGmail.qml | 18 |
1 files changed, 8 insertions, 10 deletions
diff --git a/components/accounts/contents/ui/CreateGmail.qml b/components/accounts/contents/ui/CreateGmail.qml index 2b29f9ee..f16cd027 100644 --- a/components/accounts/contents/ui/CreateGmail.qml +++ b/components/accounts/contents/ui/CreateGmail.qml | |||
@@ -22,17 +22,15 @@ import QtQuick.Controls 1.4 as Controls | |||
22 | import QtQuick.Controls 2.0 as Controls2 | 22 | import QtQuick.Controls 2.0 as Controls2 |
23 | import org.kde.kirigami 1.0 as Kirigami | 23 | import org.kde.kirigami 1.0 as Kirigami |
24 | 24 | ||
25 | import org.kube.framework.accounts 1.0 as KubeAccounts | ||
26 | import org.kube.components.theme 1.0 as KubeTheme | ||
27 | 25 | ||
28 | Item { | 26 | Item { |
29 | 27 | ||
30 | KubeAccounts.GmailController { | 28 | Kube.GmailController { |
31 | id: account | 29 | id: account |
32 | } | 30 | } |
33 | 31 | ||
34 | Controls.ToolButton { | 32 | Controls.ToolButton { |
35 | iconName: KubeTheme.Icons.goBack | 33 | iconName: Kube.Icons.goBack |
36 | 34 | ||
37 | tooltip: "go back" | 35 | tooltip: "go back" |
38 | 36 | ||
@@ -46,14 +44,14 @@ Item { | |||
46 | 44 | ||
47 | anchors { | 45 | anchors { |
48 | fill: parent | 46 | fill: parent |
49 | margins: KubeTheme.Units.largeSpacing * 2 | 47 | margins: Kube.Units.largeSpacing * 2 |
50 | } | 48 | } |
51 | 49 | ||
52 | Kirigami.Heading { | 50 | Kirigami.Heading { |
53 | id: heading | 51 | id: heading |
54 | text: "Connect your Gmail account" | 52 | text: "Connect your Gmail account" |
55 | 53 | ||
56 | color: KubeTheme.Colors.highlightColor | 54 | color: Kube.Colors.highlightColor |
57 | } | 55 | } |
58 | 56 | ||
59 | Kirigami.Label { | 57 | Kirigami.Label { |
@@ -68,7 +66,7 @@ Item { | |||
68 | 66 | ||
69 | text: "To let Kube access your account, fill in email address, username, password and give the account a title that will be displayed inside Kube." | 67 | text: "To let Kube access your account, fill in email address, username, password and give the account a title that will be displayed inside Kube." |
70 | 68 | ||
71 | color: KubeTheme.Colors.disabledTextColor | 69 | color: Kube.Colors.disabledTextColor |
72 | 70 | ||
73 | wrapMode: Text.Wrap | 71 | wrapMode: Text.Wrap |
74 | } | 72 | } |
@@ -79,12 +77,12 @@ Item { | |||
79 | bottom: parent.bottom | 77 | bottom: parent.bottom |
80 | left: parent.left | 78 | left: parent.left |
81 | right: parent.right | 79 | right: parent.right |
82 | topMargin: KubeTheme.Units.largeSpacing * 2 | 80 | topMargin: Kube.Units.largeSpacing * 2 |
83 | } | 81 | } |
84 | 82 | ||
85 | columns: 2 | 83 | columns: 2 |
86 | columnSpacing: KubeTheme.Units.largeSpacing | 84 | columnSpacing: Kube.Units.largeSpacing |
87 | rowSpacing: KubeTheme.Units.largeSpacing | 85 | rowSpacing: Kube.Units.largeSpacing |
88 | 86 | ||
89 | Controls.Label { | 87 | Controls.Label { |
90 | text: "Title of Account" | 88 | text: "Title of Account" |