diff options
Diffstat (limited to 'views/calendar/qml/DaylongEvents.qml')
-rw-r--r-- | views/calendar/qml/DaylongEvents.qml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/views/calendar/qml/DaylongEvents.qml b/views/calendar/qml/DaylongEvents.qml new file mode 100644 index 00000000..340c9d79 --- /dev/null +++ b/views/calendar/qml/DaylongEvents.qml | |||
@@ -0,0 +1,16 @@ | |||
1 | import QtQuick 2.7 | ||
2 | |||
3 | ListModel { | ||
4 | ListElement { | ||
5 | color: "#af1a6a" | ||
6 | starts: 1 | ||
7 | duration: 4 | ||
8 | text: "Baustelle Adalbertstr." | ||
9 | } | ||
10 | ListElement { | ||
11 | color: "#134bab" | ||
12 | starts: 0 | ||
13 | duration: 6 | ||
14 | text: "Urlaub" | ||
15 | } | ||
16 | } | ||