blob: 7c42507a4e9807e4f2ee07cce2c33d795f5745fe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
|
/****************************************************************************
**
** Copyright (C) 2015 The Qt Company Ltd.
** Contact: http://www.qt.io/licensing/
**
** This file is part of the Qt Quick Extras module of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:LGPL3$
** Commercial License Usage
** Licensees holding valid commercial Qt licenses may use this file in
** accordance with the commercial license agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and The Qt Company. For licensing terms
** and conditions see http://www.qt.io/terms-conditions. For further
** information use the contact form at http://www.qt.io/contact-us.
**
** GNU Lesser General Public License Usage
** Alternatively, this file may be used under the terms of the GNU Lesser
** General Public License version 3 as published by the Free Software
** Foundation and appearing in the file LICENSE.LGPLv3 included in the
** packaging of this file. Please review the following information to
** ensure the GNU Lesser General Public License version 3 requirements
** will be met: https://www.gnu.org/licenses/lgpl.html.
**
** GNU General Public License Usage
** Alternatively, this file may be used under the terms of the GNU
** General Public License version 2.0 or later as published by the Free
** Software Foundation and appearing in the file LICENSE.GPL included in
** the packaging of this file. Please review the following information to
** ensure the GNU General Public License version 2.0 requirements will be
** met: http://www.gnu.org/licenses/gpl-2.0.html.
**
** $QT_END_LICENSE$
**
****************************************************************************/
import QtQuick 2.3
import QtQuick.Controls 1.2
import QtQuick.Controls.Styles 1.2 as Base
import QtQuick.Controls.Styles.Flat 1.0
import QtQuick.Controls.Private 1.0
import QtQuick.Extras 1.4
import QtQuick.Extras.Private 1.0
import QtQuick.Extras.Private.CppUtils 1.0
Base.CalendarStyle {
// This style doesn't support a grid.
gridVisible: false
// gridColor == frame color
gridColor: control.enabled ? FlatStyle.mediumFrameColor : FlatStyle.alphaFrameColor
// This ensures the week number separator is hidden.
__gridLineWidth: 0
// Used in conjunction with the control height.
// These values are taken from the flat style specs.
readonly property real __headerFontRatio: 18 / 264
readonly property real __weekNumberFontRatio: 9 / 264
readonly property real __dayFontRatio: 13 / 264
navigationBar: Rectangle {
implicitHeight: Math.round(control.height * 0.2121)
color: control.enabled ? FlatStyle.styleColor : FlatStyle.mediumFrameColor
MouseArea {
id: previousMonth
width: parent.height
height: width
anchors.verticalCenter: parent.verticalCenter
anchors.left: parent.left
onClicked: control.showPreviousMonth()
Rectangle {
anchors.fill: parent
color: FlatStyle.selectedTextColor
opacity: previousMonth.pressed ? 0.25 : 0
Behavior on opacity {
NumberAnimation {
duration: 80
}
}
}
LeftArrowIcon {
width: Math.round(parent.width * 0.3)
height: Math.round(parent.width * 0.3)
anchors.centerIn: parent
}
}
Label {
id: dateText
text: styleData.title
color: FlatStyle.selectedTextColor
elide: Text.ElideRight
horizontalAlignment: Text.AlignHCenter
verticalAlignment: Text.AlignVCenter
font.pixelSize: control.height * __headerFontRatio
font.family: FlatStyle.fontFamily
font.weight: Font.Light
renderType: FlatStyle.__renderType
anchors.verticalCenter: parent.verticalCenter
anchors.left: previousMonth.right
anchors.leftMargin: 2
anchors.right: nextMonth.left
anchors.rightMargin: 2
}
MouseArea {
id: nextMonth
width: parent.height
height: width
anchors.verticalCenter: parent.verticalCenter
anchors.right: parent.right
onClicked: control.showNextMonth()
Rectangle {
anchors.fill: parent
color: FlatStyle.selectedTextColor
opacity: nextMonth.pressed ? 0.25 : 0
Behavior on opacity {
NumberAnimation {
duration: 100
}
}
}
LeftArrowIcon {
width: Math.round(parent.width * 0.3)
height: Math.round(parent.width * 0.3)
anchors.centerIn: parent
scale: -1
}
}
}
dayDelegate: Item {
Rectangle {
id: rect
// There should always be at least 1 pixel margin between circles.
width: MathUtils.roundEven(Math.min(parent.width, parent.height) - 1)
height: width
anchors.centerIn: parent
radius: width / 2
color: (styleData.date !== undefined && styleData.selected
? (control.enabled ? FlatStyle.styleColor : FlatStyle.disabledColor)
: "transparent")
border.width: styleData.today ? FlatStyle.onePixel : 0
border.color: !control.enabled ? FlatStyle.alphaFrameColor : FlatStyle.styleColor
opacity: control.enabled ? 1 : 0.15
}
Label {
id: dayDelegateText
text: styleData.date.getDate()
anchors.fill: rect
horizontalAlignment: Text.AlignHCenter
verticalAlignment: Text.AlignVCenter
fontSizeMode: Text.Fit
font.pixelSize: control.height * __dayFontRatio
font.family: FlatStyle.fontFamily
font.weight: Font.Light
renderType: FlatStyle.__renderType
opacity: !control.enabled ? (!styleData.valid || !styleData.visibleMonth ? 0.3 : 0.6) :
(!styleData.valid || !styleData.visibleMonth ? 0.3 : 1)
color: !control.enabled ? FlatStyle.disabledColor
: (styleData.selected ? FlatStyle.selectedTextColor : FlatStyle.textColor)
}
}
weekNumberDelegate: Item {
implicitWidth: control.width * 0.14
Label {
text: styleData.weekNumber
anchors.centerIn: parent
anchors.verticalCenterOffset: control.height * (__dayFontRatio - __weekNumberFontRatio) / 2
fontSizeMode: Text.Fit
font.pixelSize: control.height * __weekNumberFontRatio
renderType: FlatStyle.__renderType
color: !control.enabled ? FlatStyle.disabledColor : FlatStyle.styleColor
opacity: !control.enabled ? FlatStyle.disabledOpacity : 1
}
}
dayOfWeekDelegate: Item {
implicitHeight: control.height * 0.13
Label {
text: localeDayName.length == 0 || localeDayName.length > 1
? control.__locale.dayName(styleData.dayOfWeek, Locale.ShortFormat)[0]
: localeDayName
color: !control.enabled ? FlatStyle.disabledColor : FlatStyle.styleColor
opacity: !control.enabled ? FlatStyle.disabledOpacity : 1
font.family: FlatStyle.fontFamily
anchors.fill: parent
horizontalAlignment: Text.AlignHCenter
verticalAlignment: Text.AlignVCenter
fontSizeMode: Text.Fit
font.pixelSize: control.height * __headerFontRatio
renderType: FlatStyle.__renderType
property string localeDayName: control.__locale.dayName(styleData.dayOfWeek, Locale.NarrowFormat)
}
}
}
|