summaryrefslogtreecommitdiffstats
path: root/views/calendar/qml/DayLabels.qml
diff options
context:
space:
mode:
authorChristian Mollekopf <chrigi_1@fastmail.fm>2018-08-04 13:46:26 +0200
committerChristian Mollekopf <chrigi_1@fastmail.fm>2018-08-04 13:46:26 +0200
commitc75ee648a9446a37e7a4e38e891c047d23d374a2 (patch)
treeef2806cb3bfac55db3233793745c6c5b499656a5 /views/calendar/qml/DayLabels.qml
parent14c1c31ce47560bad7509fe68afee5467112be30 (diff)
downloadkube-c75ee648a9446a37e7a4e38e891c047d23d374a2.tar.gz
kube-c75ee648a9446a37e7a4e38e891c047d23d374a2.zip
Cleanup
Diffstat (limited to 'views/calendar/qml/DayLabels.qml')
-rw-r--r--views/calendar/qml/DayLabels.qml52
1 files changed, 52 insertions, 0 deletions
diff --git a/views/calendar/qml/DayLabels.qml b/views/calendar/qml/DayLabels.qml
new file mode 100644
index 00000000..cd961068
--- /dev/null
+++ b/views/calendar/qml/DayLabels.qml
@@ -0,0 +1,52 @@
1/*
2 * Copyright (C) 2018 Christian Mollekopf, <mollekopf@kolabsys.com>
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 2 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 along
15 * with this program; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17 */
18import QtQuick 2.4
19import QtQuick.Layouts 1.1
20import QtQuick.Controls 2.2
21
22import org.kube.framework 1.0 as Kube
23
24Row {
25 id: root
26 property date startDate
27 property int dayWidth
28 property int daysToShow
29
30 height: childrenRect.height
31 width: dayWidth * daysToShow
32
33 spacing: 0
34 Repeater {
35 model: root.daysToShow
36 delegate: Item {
37 width: root.dayWidth
38 height: Kube.Units.gridUnit + Kube.Units.smallSpacing * 3
39 Kube.Label {
40 function addDaysToDate(date, days) {
41 var date = new Date(date);
42 date.setDate(date.getDate() + days);
43 return date;
44 }
45 font.bold: true
46
47 anchors.centerIn: parent
48 text: addDaysToDate(root.startDate, modelData).toLocaleString(Qt.locale(), "dddd")
49 }
50 }
51 }
52}