diff options
Diffstat (limited to 'views/calendar/qml/DayLabels.qml')
-rw-r--r-- | views/calendar/qml/DayLabels.qml | 52 |
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 | */ | ||
18 | import QtQuick 2.4 | ||
19 | import QtQuick.Layouts 1.1 | ||
20 | import QtQuick.Controls 2.2 | ||
21 | |||
22 | import org.kube.framework 1.0 as Kube | ||
23 | |||
24 | Row { | ||
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 | } | ||