summaryrefslogtreecommitdiffstats
path: root/applications/mail-mobile/Avatar.qml
diff options
context:
space:
mode:
authorChristian Mollekopf <chrigi_1@fastmail.fm>2017-04-21 13:23:49 +0200
committerChristian Mollekopf <chrigi_1@fastmail.fm>2017-04-21 18:16:53 +0200
commitc766d912d7cdd899766f55925a016d25c7f66b31 (patch)
tree8c1f693ee89ed2a970587923e29b2655d0bea7ef /applications/mail-mobile/Avatar.qml
parent417b4933183c73fef43c909a324789a13e92846d (diff)
downloadkube-c766d912d7cdd899766f55925a016d25c7f66b31.tar.gz
kube-c766d912d7cdd899766f55925a016d25c7f66b31.zip
mail-mobile is no longer relevant for the time being
Diffstat (limited to 'applications/mail-mobile/Avatar.qml')
-rw-r--r--applications/mail-mobile/Avatar.qml54
1 files changed, 0 insertions, 54 deletions
diff --git a/applications/mail-mobile/Avatar.qml b/applications/mail-mobile/Avatar.qml
deleted file mode 100644
index 592a3f99..00000000
--- a/applications/mail-mobile/Avatar.qml
+++ /dev/null
@@ -1,54 +0,0 @@
1/*
2 * Copyright (C) 2015 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
19
20Rectangle {
21
22 property string name;
23
24 //TODO should we make this themeable ?
25 function calcColor(x)
26 {
27 switch (x % 5) {
28 case 0:
29 return "#16a085"
30 case 1:
31 return "#27ae60"
32 case 2:
33 return "#2980b9"
34 case 3:
35 return "#8e44ad"
36 case 4:
37 return "#c0392b"
38 }
39 }
40
41 radius: 100
42
43 color: calcColor(name.length)
44
45 Text {
46 anchors.centerIn: parent
47
48 text: name.charAt(0)
49
50 color: "#ecf0f1"
51
52 font.capitalization: Font.AllUppercase
53 }
54}