diff options
author | Michael Bohlender <michael.bohlender@kdemail.net> | 2016-04-03 02:17:25 +0200 |
---|---|---|
committer | Michael Bohlender <michael.bohlender@kdemail.net> | 2016-04-03 02:17:25 +0200 |
commit | 5f2a3aa64cedc7f5517a1047dd699a286faf1898 (patch) | |
tree | 69a7cdd7b30c2966318c0e444b5cd39f3a46d292 /applications/kube-mail-mobile/FolderListModel.qml | |
parent | db8d420485fe75ebbb45f4b6db978311c0dbf8c1 (diff) | |
download | kube-5f2a3aa64cedc7f5517a1047dd699a286faf1898.tar.gz kube-5f2a3aa64cedc7f5517a1047dd699a286faf1898.zip |
port mail mobile to kirigami components + implement VDG Mockups
Diffstat (limited to 'applications/kube-mail-mobile/FolderListModel.qml')
-rw-r--r-- | applications/kube-mail-mobile/FolderListModel.qml | 81 |
1 files changed, 0 insertions, 81 deletions
diff --git a/applications/kube-mail-mobile/FolderListModel.qml b/applications/kube-mail-mobile/FolderListModel.qml deleted file mode 100644 index 19093d51..00000000 --- a/applications/kube-mail-mobile/FolderListModel.qml +++ /dev/null | |||
@@ -1,81 +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 | |||
18 | import QtQuick 2.4 | ||
19 | |||
20 | ListModel { | ||
21 | ListElement { | ||
22 | icon: "" | ||
23 | name: " kolabnow" | ||
24 | topLvl: true | ||
25 | } | ||
26 | ListElement { | ||
27 | icon: "mail-folder-inbox" | ||
28 | name: "Inbox" | ||
29 | } | ||
30 | ListElement { | ||
31 | icon: "mail-folder-sent" | ||
32 | name: "Sent" | ||
33 | } | ||
34 | ListElement { | ||
35 | icon: "user-trash" | ||
36 | name: "Trash" | ||
37 | } | ||
38 | ListElement { | ||
39 | icon: "document-edit" | ||
40 | name: "Drafts" | ||
41 | } | ||
42 | |||
43 | ListElement { | ||
44 | icon: "folder" | ||
45 | name: "dragons" | ||
46 | } | ||
47 | ListElement { | ||
48 | icon: "folder" | ||
49 | name: "long tailed dragons" | ||
50 | } | ||
51 | |||
52 | ListElement { | ||
53 | icon: "" | ||
54 | name: " campus.lmu.de" | ||
55 | topLvl: true | ||
56 | } | ||
57 | ListElement { | ||
58 | icon: "mail-folder-inbox" | ||
59 | name: "Inbox" | ||
60 | } | ||
61 | ListElement { | ||
62 | icon: "mail-folder-sent" | ||
63 | name: "Sent" | ||
64 | } | ||
65 | ListElement { | ||
66 | icon: "user-trash" | ||
67 | name: "Trash" | ||
68 | } | ||
69 | ListElement { | ||
70 | icon: "document-edit" | ||
71 | name: "Drafts" | ||
72 | } | ||
73 | ListElement { | ||
74 | icon: "folder" | ||
75 | name: "pim" | ||
76 | } | ||
77 | ListElement { | ||
78 | icon: "folder" | ||
79 | name: "vdg" | ||
80 | } | ||
81 | } | ||