noctalia-shell/Modules/Bar/Clock.qml
quadbyte 93fca936d8 Calendar is no longer a Widget, moved to Modules/Calendar/Calendar.qml
- Using a NLoader
- Got a display bug with DayOfWeekRow!
2025-08-10 21:31:09 -04:00

28 lines
425 B
QML

import QtQuick
import qs.Services
import qs.Widgets
// Clock Icon with attached calendar
NClock {
id: root
NTooltip {
id: tooltip
text: Time.dateString
target: root
}
onEntered: function () {
if (!calendar.isLoaded) {
tooltip.show()
}
}
onExited: function () {
tooltip.hide()
}
onClicked: function () {
tooltip.hide()
calendar.isLoaded = !calendar.isLoaded
}
}