From 87261220a8386cb38a7dc228814850182294b01d Mon Sep 17 00:00:00 2001 From: Michael Bohlender Date: Tue, 17 Jan 2017 16:13:43 +0100 Subject: add dummy account switcher --- components/mail/contents/ui/main.qml | 37 +++++++++++++++++++++++++++++++++++- 1 file changed, 36 insertions(+), 1 deletion(-) (limited to 'components/mail/contents') diff --git a/components/mail/contents/ui/main.qml b/components/mail/contents/ui/main.qml index 20fa25c1..ed10fa45 100644 --- a/components/mail/contents/ui/main.qml +++ b/components/mail/contents/ui/main.qml @@ -177,11 +177,46 @@ Controls2.ApplicationWindow { KubeComponents.AccountSwitcher { id: accountSwitcher - anchors.bottom: parent.bottom + anchors.bottom: appSwitcher.top width: parent.width height: Kirigami.Units.gridUnit * 2 } + + Item { + id: appSwitcher + + anchors { + bottom: parent.bottom + } + + width: parent.width + height: Kirigami.Units.gridUnit * 2 + + RowLayout { + anchors.centerIn: parent + + spacing: Kirigami.Units.largeSpacing + + ToolButton { + iconName: "mail-message" + height: Kirigami.Units.gridUnit * 1.5 + width: height + } + + ToolButton { + iconName: "user" + height: Kirigami.Units.gridUnit * 1.5 + width: height + } + + ToolButton { + iconName: "configure" + height: Kirigami.Units.gridUnit * 1.5 + width: height + } + } + } } KubeComponents.MailListView { -- cgit v1.2.3