mirror of
https://github.com/celesrenata/end-4-flakes.git
synced 2026-06-07 02:59:26 -05:00
123 lines
3.8 KiB
QML
123 lines
3.8 KiB
QML
import qs.modules.common
|
|
import qs
|
|
import qs.modules.common.widgets
|
|
import "./calendar_layout.js" as CalendarLayout
|
|
import QtQuick
|
|
import QtQuick.Controls
|
|
import QtQuick.Layouts
|
|
|
|
Item {
|
|
// Layout.topMargin: 10
|
|
anchors.topMargin: 10
|
|
property int monthShift: 0
|
|
property var viewingDate: CalendarLayout.getDateInXMonthsTime(monthShift)
|
|
property var calendarLayout: CalendarLayout.getCalendarLayout(viewingDate, monthShift === 0)
|
|
width: calendarColumn.width
|
|
implicitHeight: calendarColumn.height + 10 * 2
|
|
|
|
Keys.onPressed: (event) => {
|
|
if ((event.key === Qt.Key_PageDown || event.key === Qt.Key_PageUp)
|
|
&& event.modifiers === Qt.NoModifier) {
|
|
if (event.key === Qt.Key_PageDown) {
|
|
monthShift++;
|
|
} else if (event.key === Qt.Key_PageUp) {
|
|
monthShift--;
|
|
}
|
|
event.accepted = true;
|
|
}
|
|
}
|
|
MouseArea {
|
|
anchors.fill: parent
|
|
onWheel: (event) => {
|
|
if (event.angleDelta.y > 0) {
|
|
monthShift--;
|
|
} else if (event.angleDelta.y < 0) {
|
|
monthShift++;
|
|
}
|
|
}
|
|
}
|
|
|
|
ColumnLayout {
|
|
id: calendarColumn
|
|
anchors.centerIn: parent
|
|
spacing: 5
|
|
|
|
// Calendar header
|
|
RowLayout {
|
|
Layout.fillWidth: true
|
|
spacing: 5
|
|
CalendarHeaderButton {
|
|
clip: true
|
|
buttonText: `${monthShift != 0 ? "• " : ""}${viewingDate.toLocaleDateString(Qt.locale(), "MMMM yyyy")}`
|
|
tooltipText: (monthShift === 0) ? "" : Translation.tr("Jump to current month")
|
|
onClicked: {
|
|
monthShift = 0;
|
|
}
|
|
}
|
|
Item {
|
|
Layout.fillWidth: true
|
|
Layout.fillHeight: false
|
|
}
|
|
CalendarHeaderButton {
|
|
forceCircle: true
|
|
onClicked: {
|
|
monthShift--;
|
|
}
|
|
contentItem: MaterialSymbol {
|
|
text: "chevron_left"
|
|
iconSize: Appearance.font.pixelSize.larger
|
|
horizontalAlignment: Text.AlignHCenter
|
|
color: Appearance.colors.colOnLayer1
|
|
}
|
|
}
|
|
CalendarHeaderButton {
|
|
forceCircle: true
|
|
onClicked: {
|
|
monthShift++;
|
|
}
|
|
contentItem: MaterialSymbol {
|
|
text: "chevron_right"
|
|
iconSize: Appearance.font.pixelSize.larger
|
|
horizontalAlignment: Text.AlignHCenter
|
|
color: Appearance.colors.colOnLayer1
|
|
}
|
|
}
|
|
}
|
|
|
|
// Week days row
|
|
RowLayout {
|
|
id: weekDaysRow
|
|
Layout.alignment: Qt.AlignHCenter
|
|
Layout.fillHeight: false
|
|
spacing: 5
|
|
Repeater {
|
|
model: CalendarLayout.weekDays
|
|
delegate: CalendarDayButton {
|
|
day: Translation.tr(modelData.day)
|
|
isToday: modelData.today
|
|
bold: true
|
|
enabled: false
|
|
}
|
|
}
|
|
}
|
|
|
|
// Real week rows
|
|
Repeater {
|
|
id: calendarRows
|
|
// model: calendarLayout
|
|
model: 6
|
|
delegate: RowLayout {
|
|
Layout.alignment: Qt.AlignHCenter
|
|
Layout.fillHeight: false
|
|
spacing: 5
|
|
Repeater {
|
|
model: Array(7).fill(modelData)
|
|
delegate: CalendarDayButton {
|
|
day: calendarLayout[modelData][index].day
|
|
isToday: calendarLayout[modelData][index].today
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |