Calendar Panel
This commit is contained in:
parent
57fee68793
commit
ece8e210cc
3 changed files with 114 additions and 212 deletions
|
|
@ -24,7 +24,7 @@ Rectangle {
|
||||||
}
|
}
|
||||||
|
|
||||||
onEntered: {
|
onEntered: {
|
||||||
if (!calendarPanel.isLoaded) {
|
if (!calendarPanel.active) {
|
||||||
tooltip.show()
|
tooltip.show()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -33,7 +33,7 @@ Rectangle {
|
||||||
}
|
}
|
||||||
onClicked: {
|
onClicked: {
|
||||||
tooltip.hide()
|
tooltip.hide()
|
||||||
calendarPanel.isLoaded = !calendarPanel.isLoaded
|
calendarPanel.toggle(screen)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -7,227 +7,132 @@ import qs.Commons
|
||||||
import qs.Services
|
import qs.Services
|
||||||
import qs.Widgets
|
import qs.Widgets
|
||||||
|
|
||||||
NLoader {
|
NPanel {
|
||||||
id: root
|
id: root
|
||||||
|
|
||||||
content: Component {
|
rWidth: 340 * scaling
|
||||||
NPanel {
|
rHeight: 320 * scaling
|
||||||
id: calendarPanel
|
rAnchorRight: true
|
||||||
|
|
||||||
// Override hide function to animate first
|
// Main Column
|
||||||
function hide() {
|
panelContent: ColumnLayout {
|
||||||
// Start hide animation
|
anchors.fill: parent
|
||||||
calendarRect.scaleValue = 0.8
|
anchors.margins: Style.marginM * scaling
|
||||||
calendarRect.opacityValue = 0.0
|
spacing: Style.marginXS * scaling
|
||||||
|
|
||||||
// Hide after animation completes
|
// Header: Month/Year with navigation
|
||||||
hideTimer.start()
|
RowLayout {
|
||||||
|
Layout.fillWidth: true
|
||||||
|
Layout.leftMargin: Style.marginM * scaling
|
||||||
|
Layout.rightMargin: Style.marginM * scaling
|
||||||
|
spacing: Style.marginS * scaling
|
||||||
|
|
||||||
|
NIconButton {
|
||||||
|
icon: "chevron_left"
|
||||||
|
tooltipText: "Previous Month"
|
||||||
|
onClicked: {
|
||||||
|
let newDate = new Date(grid.year, grid.month - 1, 1)
|
||||||
|
grid.year = newDate.getFullYear()
|
||||||
|
grid.month = newDate.getMonth()
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Connect to NPanel's dismissed signal to handle external close events
|
NText {
|
||||||
|
text: grid.title
|
||||||
|
Layout.fillWidth: true
|
||||||
|
horizontalAlignment: Text.AlignHCenter
|
||||||
|
font.pointSize: Style.fontSizeM * scaling
|
||||||
|
font.weight: Style.fontWeightBold
|
||||||
|
color: Color.mPrimary
|
||||||
|
}
|
||||||
|
|
||||||
|
NIconButton {
|
||||||
|
icon: "chevron_right"
|
||||||
|
tooltipText: "Next Month"
|
||||||
|
onClicked: {
|
||||||
|
let newDate = new Date(grid.year, grid.month + 1, 1)
|
||||||
|
grid.year = newDate.getFullYear()
|
||||||
|
grid.month = newDate.getMonth()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Divider between header and weekdays
|
||||||
|
NDivider {
|
||||||
|
Layout.fillWidth: true
|
||||||
|
Layout.topMargin: Style.marginS * scaling
|
||||||
|
Layout.bottomMargin: Style.marginM * scaling
|
||||||
|
}
|
||||||
|
|
||||||
|
// Columns label (respects locale's first day of week)
|
||||||
|
RowLayout {
|
||||||
|
Layout.fillWidth: true
|
||||||
|
Layout.leftMargin: Style.marginS * scaling // Align with grid
|
||||||
|
Layout.rightMargin: Style.marginS * scaling
|
||||||
|
spacing: 0
|
||||||
|
|
||||||
|
Repeater {
|
||||||
|
model: 7
|
||||||
|
|
||||||
|
NText {
|
||||||
|
text: {
|
||||||
|
// Use the locale's first day of week setting
|
||||||
|
let firstDay = Qt.locale().firstDayOfWeek
|
||||||
|
let dayIndex = (firstDay + index) % 7
|
||||||
|
return Qt.locale().dayName(dayIndex, Locale.ShortFormat)
|
||||||
|
}
|
||||||
|
color: Color.mSecondary
|
||||||
|
font.pointSize: Style.fontSizeM * scaling
|
||||||
|
font.weight: Style.fontWeightBold
|
||||||
|
horizontalAlignment: Text.AlignHCenter
|
||||||
|
Layout.fillWidth: true
|
||||||
|
Layout.preferredWidth: Style.baseWidgetSize * scaling
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Grids: days
|
||||||
|
MonthGrid {
|
||||||
|
id: grid
|
||||||
|
|
||||||
|
Layout.fillWidth: true
|
||||||
|
Layout.fillHeight: true // Take remaining space
|
||||||
|
Layout.leftMargin: Style.marginS * scaling
|
||||||
|
Layout.rightMargin: Style.marginS * scaling
|
||||||
|
spacing: 0
|
||||||
|
month: Time.date.getMonth()
|
||||||
|
year: Time.date.getFullYear()
|
||||||
|
locale: Qt.locale() // Use system locale
|
||||||
|
|
||||||
|
// Optionally, update when the panel becomes visible
|
||||||
Connections {
|
Connections {
|
||||||
target: calendarPanel
|
target: calendarPanel
|
||||||
function onDismissed() {
|
function onVisibleChanged() {
|
||||||
// Start hide animation
|
if (calendarPanel.visible) {
|
||||||
calendarRect.scaleValue = 0.8
|
grid.month = Time.date.getMonth()
|
||||||
calendarRect.opacityValue = 0.0
|
grid.year = Time.date.getFullYear()
|
||||||
|
}
|
||||||
// Hide after animation completes
|
|
||||||
hideTimer.start()
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Also handle visibility changes from external sources
|
delegate: Rectangle {
|
||||||
onVisibleChanged: {
|
width: (Style.baseWidgetSize * scaling)
|
||||||
if (!visible && calendarRect.opacityValue > 0) {
|
height: (Style.baseWidgetSize * scaling)
|
||||||
// Start hide animation
|
radius: Style.radiusS * scaling
|
||||||
calendarRect.scaleValue = 0.8
|
color: model.today ? Color.mPrimary : Color.transparent
|
||||||
calendarRect.opacityValue = 0.0
|
|
||||||
|
|
||||||
// Hide after animation completes
|
NText {
|
||||||
hideTimer.start()
|
anchors.centerIn: parent
|
||||||
}
|
text: model.day
|
||||||
}
|
color: model.today ? Color.mOnPrimary : Color.mOnSurface
|
||||||
|
opacity: model.month === grid.month ? Style.opacityHeavy : Style.opacityLight
|
||||||
// Timer to hide panel after animation
|
font.pointSize: (Style.fontSizeM * scaling)
|
||||||
Timer {
|
font.weight: model.today ? Style.fontWeightBold : Style.fontWeightRegular
|
||||||
id: hideTimer
|
|
||||||
interval: Style.animationSlow
|
|
||||||
repeat: false
|
|
||||||
onTriggered: {
|
|
||||||
calendarPanel.visible = false
|
|
||||||
calendarPanel.dismissed()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
Rectangle {
|
|
||||||
id: calendarRect
|
|
||||||
color: Color.mSurface
|
|
||||||
radius: Style.radiusM * scaling
|
|
||||||
border.color: Color.mOutline
|
|
||||||
border.width: Math.max(1, Style.borderM * scaling)
|
|
||||||
width: 340 * scaling
|
|
||||||
height: 320 * scaling // Reduced height to eliminate bottom space
|
|
||||||
anchors.top: parent.top
|
|
||||||
anchors.right: parent.right
|
|
||||||
anchors.topMargin: Style.marginXS * scaling
|
|
||||||
anchors.rightMargin: Style.marginXS * scaling
|
|
||||||
|
|
||||||
// Animation properties
|
|
||||||
property real scaleValue: 0.8
|
|
||||||
property real opacityValue: 0.0
|
|
||||||
|
|
||||||
scale: scaleValue
|
|
||||||
opacity: opacityValue
|
|
||||||
|
|
||||||
// Animate in when component is completed
|
|
||||||
Component.onCompleted: {
|
|
||||||
scaleValue = 1.0
|
|
||||||
opacityValue = 1.0
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Prevent closing when clicking in the panel bg
|
Behavior on color {
|
||||||
MouseArea {
|
ColorAnimation {
|
||||||
anchors.fill: parent
|
duration: Style.animationFast
|
||||||
}
|
|
||||||
|
|
||||||
// Animation behaviors
|
|
||||||
Behavior on scale {
|
|
||||||
NumberAnimation {
|
|
||||||
duration: Style.animationSlow
|
|
||||||
easing.type: Easing.OutExpo
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
Behavior on opacity {
|
|
||||||
NumberAnimation {
|
|
||||||
duration: Style.animationNormal
|
|
||||||
easing.type: Easing.OutQuad
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Main Column
|
|
||||||
ColumnLayout {
|
|
||||||
anchors.fill: parent
|
|
||||||
anchors.margins: Style.marginM * scaling
|
|
||||||
spacing: Style.marginXS * scaling
|
|
||||||
|
|
||||||
// Header: Month/Year with navigation
|
|
||||||
RowLayout {
|
|
||||||
Layout.fillWidth: true
|
|
||||||
Layout.leftMargin: Style.marginM * scaling
|
|
||||||
Layout.rightMargin: Style.marginM * scaling
|
|
||||||
spacing: Style.marginS * scaling
|
|
||||||
|
|
||||||
NIconButton {
|
|
||||||
icon: "chevron_left"
|
|
||||||
tooltipText: "Previous Month"
|
|
||||||
onClicked: {
|
|
||||||
let newDate = new Date(grid.year, grid.month - 1, 1)
|
|
||||||
grid.year = newDate.getFullYear()
|
|
||||||
grid.month = newDate.getMonth()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
NText {
|
|
||||||
text: grid.title
|
|
||||||
Layout.fillWidth: true
|
|
||||||
horizontalAlignment: Text.AlignHCenter
|
|
||||||
font.pointSize: Style.fontSizeM * scaling
|
|
||||||
font.weight: Style.fontWeightBold
|
|
||||||
color: Color.mPrimary
|
|
||||||
}
|
|
||||||
|
|
||||||
NIconButton {
|
|
||||||
icon: "chevron_right"
|
|
||||||
tooltipText: "Next Month"
|
|
||||||
onClicked: {
|
|
||||||
let newDate = new Date(grid.year, grid.month + 1, 1)
|
|
||||||
grid.year = newDate.getFullYear()
|
|
||||||
grid.month = newDate.getMonth()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Divider between header and weekdays
|
|
||||||
NDivider {
|
|
||||||
Layout.fillWidth: true
|
|
||||||
Layout.topMargin: Style.marginS * scaling
|
|
||||||
Layout.bottomMargin: Style.marginM * scaling
|
|
||||||
}
|
|
||||||
|
|
||||||
// Columns label (respects locale's first day of week)
|
|
||||||
RowLayout {
|
|
||||||
Layout.fillWidth: true
|
|
||||||
Layout.leftMargin: Style.marginS * scaling // Align with grid
|
|
||||||
Layout.rightMargin: Style.marginS * scaling
|
|
||||||
spacing: 0
|
|
||||||
|
|
||||||
Repeater {
|
|
||||||
model: 7
|
|
||||||
|
|
||||||
NText {
|
|
||||||
text: {
|
|
||||||
// Use the locale's first day of week setting
|
|
||||||
let firstDay = Qt.locale().firstDayOfWeek
|
|
||||||
let dayIndex = (firstDay + index) % 7
|
|
||||||
return Qt.locale().dayName(dayIndex, Locale.ShortFormat)
|
|
||||||
}
|
|
||||||
color: Color.mSecondary
|
|
||||||
font.pointSize: Style.fontSizeM * scaling
|
|
||||||
font.weight: Style.fontWeightBold
|
|
||||||
horizontalAlignment: Text.AlignHCenter
|
|
||||||
Layout.fillWidth: true
|
|
||||||
Layout.preferredWidth: Style.baseWidgetSize * scaling
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Grids: days
|
|
||||||
MonthGrid {
|
|
||||||
id: grid
|
|
||||||
|
|
||||||
Layout.fillWidth: true
|
|
||||||
Layout.fillHeight: true // Take remaining space
|
|
||||||
Layout.leftMargin: Style.marginS * scaling
|
|
||||||
Layout.rightMargin: Style.marginS * scaling
|
|
||||||
spacing: 0
|
|
||||||
month: Time.date.getMonth()
|
|
||||||
year: Time.date.getFullYear()
|
|
||||||
locale: Qt.locale() // Use system locale
|
|
||||||
|
|
||||||
// Optionally, update when the panel becomes visible
|
|
||||||
Connections {
|
|
||||||
target: calendarPanel
|
|
||||||
function onVisibleChanged() {
|
|
||||||
if (calendarPanel.visible) {
|
|
||||||
grid.month = Time.date.getMonth()
|
|
||||||
grid.year = Time.date.getFullYear()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
delegate: Rectangle {
|
|
||||||
width: (Style.baseWidgetSize * scaling)
|
|
||||||
height: (Style.baseWidgetSize * scaling)
|
|
||||||
radius: Style.radiusS * scaling
|
|
||||||
color: model.today ? Color.mPrimary : Color.transparent
|
|
||||||
|
|
||||||
NText {
|
|
||||||
anchors.centerIn: parent
|
|
||||||
text: model.day
|
|
||||||
color: model.today ? Color.mOnPrimary : Color.mOnSurface
|
|
||||||
opacity: model.month === grid.month ? Style.opacityHeavy : Style.opacityLight
|
|
||||||
font.pointSize: (Style.fontSizeM * scaling)
|
|
||||||
font.weight: model.today ? Style.fontWeightBold : Style.fontWeightRegular
|
|
||||||
}
|
|
||||||
|
|
||||||
Behavior on color {
|
|
||||||
ColorAnimation {
|
|
||||||
duration: Style.animationFast
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -31,8 +31,6 @@ Loader {
|
||||||
signal opened
|
signal opened
|
||||||
signal closed
|
signal closed
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// -----------------------------------------
|
// -----------------------------------------
|
||||||
function toggle(aScreen) {
|
function toggle(aScreen) {
|
||||||
if (!active || isClosing) {
|
if (!active || isClosing) {
|
||||||
|
|
@ -96,7 +94,6 @@ Loader {
|
||||||
color: (root.active && !root.isClosing && Settings.data.general.dimDesktop) ? Color.applyOpacity(
|
color: (root.active && !root.isClosing && Settings.data.general.dimDesktop) ? Color.applyOpacity(
|
||||||
Color.mShadow,
|
Color.mShadow,
|
||||||
"BB") : Color.transparent
|
"BB") : Color.transparent
|
||||||
|
|
||||||
|
|
||||||
WlrLayershell.exclusionMode: ExclusionMode.Ignore
|
WlrLayershell.exclusionMode: ExclusionMode.Ignore
|
||||||
WlrLayershell.namespace: "noctalia-panel"
|
WlrLayershell.namespace: "noctalia-panel"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue