diff options
author | Michael Bohlender <michael.bohlender@kdemail.net> | 2018-03-01 15:06:41 +0100 |
---|---|---|
committer | Michael Bohlender <michael.bohlender@kdemail.net> | 2018-03-01 15:06:41 +0100 |
commit | 6220a14fa325aa5141adc78898f0063a72881972 (patch) | |
tree | dec54452f21c41cae575a133e8bf5c6fac8a2c93 /views/calendar/qml/DaylongEvents.qml | |
parent | 48627975b967254c8fb2646716d2682a525a73f4 (diff) | |
download | kube-6220a14fa325aa5141adc78898f0063a72881972.tar.gz kube-6220a14fa325aa5141adc78898f0063a72881972.zip |
initial calendar - week view
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 | } | ||