Compare commits

..

2 Commits

Author SHA1 Message Date
1e3f7a988d Added a disabled color to month days which should not be visible in the
current calendar
2025-12-15 00:44:06 +02:00
76857eaeb8 Fixed a bug in which the text of the calendar did not appear 2025-11-16 17:58:53 +02:00
3 changed files with 56 additions and 34 deletions

View File

@@ -1,48 +1,55 @@
import QtQuick import QtQuick
import QtQuick.Layouts import QtQuick.Layouts
import QtQuick.Controls import QtQuick.Controls
import QtQml
GridLayout { Flickable {
columns: 2 id: flickable
width: 200
height: 200
onDragStarted: console.info("Drag has started")
onDragEnded: console.info("Drag has ended")
DayOfWeekRow { GridLayout {
locale: grid.locale columns: 1
Layout.column: 1 DayOfWeekRow {
Layout.fillWidth: true locale: grid.locale
}
WeekNumberColumn {
month: grid.month Layout.fillWidth: true
year: grid.year
locale: grid.locale
Layout.fillHeight: true
delegate: Text {
text: weekNumber
font: control.font
horizontalAlignment: Text.AlignHCenter
verticalAlignment: Text.AlignVCenter
color: myPalette.text
required property int weekNumber
} }
}
MonthGrid { // WeekNumberColumn {
id: grid // month: grid.month
month: Calendar.November // year: grid.year
year: 2025 // locale: grid.locale
locale: Qt.locale("en_US") // Layout.fillHeight: true
// delegate: Text {
// text: weekNumber
// horizontalAlignment: Text.AlignHCenter
// verticalAlignment: Text.AlignVCenter
// color: myPalette.text
// required property int weekNumber
// }
// }
Layout.fillWidth: true MonthGrid {
Layout.fillHeight: true id: grid
delegate: Text { month: Calendar.November
year: currentDate.getFullYear()
locale: Qt.locale("en_US")
Layout.fillWidth: true
Layout.fillHeight: true
delegate: Text {
horizontalAlignment: Text.AlignHCenter horizontalAlignment: Text.AlignHCenter
verticalAlignment: Text.AlignVCenter verticalAlignment: Text.AlignVCenter
opacity: model.month === monthGrid.month ? 1 : 0 text: model.day
text: monthGrid.locale.toString(model.date, "d") color: model.month === currentDate.getMonth() ? myPalette.text : disabledPalette.text
font: monthGrid.font
required property var model required property var model
} }
}
} }
required property date currentDate
} }

View File

@@ -9,7 +9,18 @@ Window {
minimumWidth: 200 minimumWidth: 200
minimumHeight: 150 minimumHeight: 150
SystemPalette { id: myPalette; colorGroup: SystemPalette.Active } SystemPalette
{
id: myPalette;
colorGroup: SystemPalette.Active
}
SystemPalette
{
id: disabledPalette;
colorGroup: SystemPalette.Disabled
}
color: myPalette.window color: myPalette.window
id: name id: name

View File

@@ -2,7 +2,7 @@ import QtQuick
import QtQuick.Controls import QtQuick.Controls
Dialog { Dialog {
id: dialog id: userDialog
modal: true modal: true
title: "Configure a new user" title: "Configure a new user"
width: 600 width: 600
@@ -37,8 +37,12 @@ Dialog {
CalendarGrid { CalendarGrid {
id: dateOfBirthGrid id: dateOfBirthGrid
currentDate: dateOfBirth
} }
} }
property date dateOfBirth: new Date()
property date dateOfDeath: new Date()
standardButtons: Dialog.Ok | Dialog.Cancel standardButtons: Dialog.Ok | Dialog.Cancel
} }