summaryrefslogtreecommitdiffstats
path: root/applications/mail-mobile/MailListModel.qml
diff options
context:
space:
mode:
Diffstat (limited to 'applications/mail-mobile/MailListModel.qml')
-rw-r--r--applications/mail-mobile/MailListModel.qml149
1 files changed, 0 insertions, 149 deletions
diff --git a/applications/mail-mobile/MailListModel.qml b/applications/mail-mobile/MailListModel.qml
deleted file mode 100644
index 28b6766f..00000000
--- a/applications/mail-mobile/MailListModel.qml
+++ /dev/null
@@ -1,149 +0,0 @@
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
19
20ListModel {
21 ListElement {
22 sender: "mighty@mail.com"
23 senderName: "Mighty Monkey"
24 subject: "I feel weak without my bananas"
25 date: "Today 19:21"
26 unread: true
27 }
28 ListElement {
29 sender: "benni@bandana.org"
30 senderName: "Ben Bandana"
31 subject: "Check this out"
32 date: "Today 16:01"
33 unread: true
34 }
35 ListElement {
36 sender: "alice@mail.com"
37 senderName: "Alice Cheng"
38 subject: "Re: We need more food"
39 date: "Today 12:55"
40 unread: false
41 }
42 ListElement {
43 sender: "bob@bandana.org"
44 senderName: "Bob Ross"
45 subject: "KDE Rocks"
46 date: "Today 07:32"
47 unread: true
48 }
49 ListElement {
50 sender: "tiny@mail.com"
51 senderName: "Tiny"
52 subject: "Huge success!!"
53 date: "Today 00:11"
54 unread: false
55 }
56 ListElement {
57 sender: "bob@bandana.org"
58 senderName: "Bob Ross"
59 subject: "KDE Rocks"
60 date: "Yesterday 20:54"
61 unread: false
62 }
63 ListElement {
64 sender: "Laura@mail.com"
65 senderName: "Laura B"
66 subject: ":)"
67 date: "Monday 12:37"
68 unread: false
69 }
70 ListElement {
71 sender: "Andreas@stars.org"
72 senderName: "Andreas Rockstar"
73 subject: "KDE Rocks"
74 date: "Monday 12:37"
75 unread: false
76 }
77 ListElement {
78 sender: "alice@mail.com"
79 senderName: "Alice Cheng"
80 subject: "Re: We need more food"
81 date: "Monday 12:37"
82 }
83 ListElement {
84 sender: "bob@bandana.org"
85 senderName: "Bob Ross"
86 subject: "KDE Rocks"
87 date: "Monday 12:37"
88 }
89 ListElement {
90 sender: "mighty@mail.com"
91 senderName: "Mighty Monkey"
92 subject: "I feel weak without my bananas"
93 date: "2 hours ago"
94 }
95 ListElement {
96 sender: "benni@bandana.org"
97 senderName: "Ben Bandana"
98 subject: "Check this out"
99 date: "8 hours ago"
100 }
101 ListElement {
102 sender: "alice@mail.com"
103 senderName: "Alice Cheng"
104 subject: "Re: We need more food"
105 date: "2 hours ago"
106 }
107 ListElement {
108 sender: "bob@bandana.org"
109 senderName: "Bob Ross"
110 subject: "KDE Rocks"
111 date: "8 hours ago"
112 }
113 ListElement {
114 sender: "tiny@mail.com"
115 senderName: "Tiny"
116 subject: "Huge success!!"
117 date: "2 hours ago"
118 }
119 ListElement {
120 sender: "bob@bandana.org"
121 senderName: "Bob Ross"
122 subject: "KDE Rocks"
123 date: "8 hours ago"
124 }
125 ListElement {
126 sender: "Laura@mail.com"
127 senderName: "Laura B"
128 subject: ":)"
129 date: "2 hours ago"
130 }
131 ListElement {
132 sender: "Andreas@stars.org"
133 senderName: "Andreas Rockstar"
134 subject: "KDE Rocks"
135 date: "8 hours ago"
136 }
137 ListElement {
138 sender: "alice@mail.com"
139 senderName: "Alice Cheng"
140 subject: "Re: We need more food"
141 date: "2 hours ago"
142 }
143 ListElement {
144 sender: "bob@bandana.org"
145 senderName: "Bob Ross"
146 subject: "Board Task: Write draft email to people with KDE accounts commiting to Qt repositories"
147 date: "8 hours ago"
148 }
149}