summaryrefslogtreecommitdiffstats
path: root/components/package
diff options
context:
space:
mode:
authorMichael Bohlender <michael.bohlender@kdemail.net>2016-05-06 13:06:40 +0200
committerMichael Bohlender <michael.bohlender@kdemail.net>2016-05-06 13:06:40 +0200
commit963f872433ffda7421e7b5863280413465f58ae9 (patch)
tree6bd1c1a4937979e48d7eef8a7f71616c0c4162cb /components/package
parente4fba677a9755a5aee1a0ea1513b6f737429d832 (diff)
downloadkube-963f872433ffda7421e7b5863280413465f58ae9.tar.gz
kube-963f872433ffda7421e7b5863280413465f58ae9.zip
add account switcher dummy
Diffstat (limited to 'components/package')
-rw-r--r--components/package/contents/ui/AccountSwitcher.qml27
1 files changed, 27 insertions, 0 deletions
diff --git a/components/package/contents/ui/AccountSwitcher.qml b/components/package/contents/ui/AccountSwitcher.qml
new file mode 100644
index 00000000..0e620854
--- /dev/null
+++ b/components/package/contents/ui/AccountSwitcher.qml
@@ -0,0 +1,27 @@
1/*
2 * Copyright (C) 2016 Michael Bohlender <michael.bohlender@kdemail.net>
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 3 of the License, or
7 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, see <http://www.gnu.org/licenses/>.
16 */
17
18import QtQuick 2.4
19import QtQuick.Controls 1.3
20import QtQuick.Layouts 1.1
21
22import org.kube.framework.domain 1.0 as KubeFramework
23
24ComboBox {
25 model: KubeFramework.AccountsModel { }
26 textRole: "name"
27} \ No newline at end of file