mirror of
https://github.com/AvengeMedia/DankMaterialShell.git
synced 2025-12-06 05:25:41 -05:00
- CC Color picker widget - Tooltips in more places - Attempt to improve niri screen transitiosn
268 lines
10 KiB
QML
268 lines
10 KiB
QML
import QtQuick
|
|
import Quickshell
|
|
import qs.Common
|
|
import qs.Widgets
|
|
|
|
Rectangle {
|
|
id: root
|
|
|
|
property bool isVertical: axis?.isVertical ?? false
|
|
property var axis: null
|
|
property bool compactMode: false
|
|
property string section: "center"
|
|
property var popupTarget: null
|
|
property var parentScreen: null
|
|
property real barThickness: 48
|
|
property real widgetThickness: 30
|
|
readonly property real horizontalPadding: SettingsData.dankBarNoBackground ? 2 : Theme.spacingS
|
|
|
|
signal clockClicked
|
|
|
|
width: isVertical ? widgetThickness : (clockRow.implicitWidth + horizontalPadding * 2)
|
|
height: isVertical ? (clockColumn.implicitHeight + horizontalPadding * 2) : widgetThickness
|
|
radius: SettingsData.dankBarNoBackground ? 0 : Theme.cornerRadius
|
|
color: {
|
|
if (SettingsData.dankBarNoBackground) {
|
|
return "transparent";
|
|
}
|
|
|
|
const baseColor = clockMouseArea.containsMouse ? Theme.widgetBaseHoverColor : Theme.widgetBaseBackgroundColor;
|
|
return Qt.rgba(baseColor.r, baseColor.g, baseColor.b, baseColor.a * Theme.widgetTransparency);
|
|
}
|
|
|
|
Column {
|
|
id: clockColumn
|
|
visible: root.isVertical
|
|
anchors.centerIn: parent
|
|
spacing: -2
|
|
|
|
Row {
|
|
spacing: 0
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
|
|
|
StyledText {
|
|
text: {
|
|
if (SettingsData.use24HourClock) {
|
|
return String(systemClock?.date?.getHours()).padStart(2, '0').charAt(0)
|
|
} else {
|
|
const hours = systemClock?.date?.getHours()
|
|
const display = hours === 0 ? 12 : hours > 12 ? hours - 12 : hours
|
|
return String(display).padStart(2, '0').charAt(0)
|
|
}
|
|
}
|
|
font.pixelSize: Theme.fontSizeSmall
|
|
color: Theme.primary
|
|
font.weight: Font.Normal
|
|
width: 9
|
|
horizontalAlignment: Text.AlignHCenter
|
|
}
|
|
|
|
StyledText {
|
|
text: {
|
|
if (SettingsData.use24HourClock) {
|
|
return String(systemClock?.date?.getHours()).padStart(2, '0').charAt(1)
|
|
} else {
|
|
const hours = systemClock?.date?.getHours()
|
|
const display = hours === 0 ? 12 : hours > 12 ? hours - 12 : hours
|
|
return String(display).padStart(2, '0').charAt(1)
|
|
}
|
|
}
|
|
font.pixelSize: Theme.fontSizeSmall
|
|
color: Theme.primary
|
|
font.weight: Font.Normal
|
|
width: 9
|
|
horizontalAlignment: Text.AlignHCenter
|
|
}
|
|
}
|
|
|
|
Row {
|
|
spacing: 0
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
|
|
|
StyledText {
|
|
text: String(systemClock?.date?.getMinutes()).padStart(2, '0').charAt(0)
|
|
font.pixelSize: Theme.fontSizeSmall
|
|
color: Theme.primary
|
|
font.weight: Font.Normal
|
|
width: 9
|
|
horizontalAlignment: Text.AlignHCenter
|
|
}
|
|
|
|
StyledText {
|
|
text: String(systemClock?.date?.getMinutes()).padStart(2, '0').charAt(1)
|
|
font.pixelSize: Theme.fontSizeSmall
|
|
color: Theme.primary
|
|
font.weight: Font.Normal
|
|
width: 9
|
|
horizontalAlignment: Text.AlignHCenter
|
|
}
|
|
}
|
|
|
|
Item {
|
|
width: 12
|
|
height: Theme.spacingM
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
|
|
|
Rectangle {
|
|
width: 12
|
|
height: 1
|
|
color: Theme.outlineButton
|
|
anchors.centerIn: parent
|
|
}
|
|
}
|
|
|
|
Row {
|
|
spacing: 0
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
|
|
|
StyledText {
|
|
text: {
|
|
const locale = Qt.locale()
|
|
const dateFormatShort = locale.dateFormat(Locale.ShortFormat)
|
|
const dayFirst = dateFormatShort.indexOf('d') < dateFormatShort.indexOf('M')
|
|
const value = dayFirst ? String(systemClock?.date?.getDate()).padStart(2, '0') : String(systemClock?.date?.getMonth() + 1).padStart(2, '0')
|
|
return value.charAt(0)
|
|
}
|
|
font.pixelSize: Theme.fontSizeSmall
|
|
color: Theme.surfaceText
|
|
font.weight: {
|
|
const locale = Qt.locale()
|
|
const dateFormatShort = locale.dateFormat(Locale.ShortFormat)
|
|
const dayFirst = dateFormatShort.indexOf('d') < dateFormatShort.indexOf('M')
|
|
return dayFirst ? Font.Normal : Font.Light
|
|
}
|
|
width: 9
|
|
horizontalAlignment: Text.AlignHCenter
|
|
}
|
|
|
|
StyledText {
|
|
text: {
|
|
const locale = Qt.locale()
|
|
const dateFormatShort = locale.dateFormat(Locale.ShortFormat)
|
|
const dayFirst = dateFormatShort.indexOf('d') < dateFormatShort.indexOf('M')
|
|
const value = dayFirst ? String(systemClock?.date?.getDate()).padStart(2, '0') : String(systemClock?.date?.getMonth() + 1).padStart(2, '0')
|
|
return value.charAt(1)
|
|
}
|
|
font.pixelSize: Theme.fontSizeSmall
|
|
color: Theme.surfaceText
|
|
font.weight: {
|
|
const locale = Qt.locale()
|
|
const dateFormatShort = locale.dateFormat(Locale.ShortFormat)
|
|
const dayFirst = dateFormatShort.indexOf('d') < dateFormatShort.indexOf('M')
|
|
return dayFirst ? Font.Normal : Font.Light
|
|
}
|
|
width: 9
|
|
horizontalAlignment: Text.AlignHCenter
|
|
}
|
|
}
|
|
|
|
Row {
|
|
spacing: 0
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
|
|
|
StyledText {
|
|
text: {
|
|
const locale = Qt.locale()
|
|
const dateFormatShort = locale.dateFormat(Locale.ShortFormat)
|
|
const dayFirst = dateFormatShort.indexOf('d') < dateFormatShort.indexOf('M')
|
|
const value = dayFirst ? String(systemClock?.date?.getMonth() + 1).padStart(2, '0') : String(systemClock?.date?.getDate()).padStart(2, '0')
|
|
return value.charAt(0)
|
|
}
|
|
font.pixelSize: Theme.fontSizeSmall
|
|
color: Theme.surfaceText
|
|
font.weight: {
|
|
const locale = Qt.locale()
|
|
const dateFormatShort = locale.dateFormat(Locale.ShortFormat)
|
|
const dayFirst = dateFormatShort.indexOf('d') < dateFormatShort.indexOf('M')
|
|
return dayFirst ? Font.Light : Font.Normal
|
|
}
|
|
width: 9
|
|
horizontalAlignment: Text.AlignHCenter
|
|
}
|
|
|
|
StyledText {
|
|
text: {
|
|
const locale = Qt.locale()
|
|
const dateFormatShort = locale.dateFormat(Locale.ShortFormat)
|
|
const dayFirst = dateFormatShort.indexOf('d') < dateFormatShort.indexOf('M')
|
|
const value = dayFirst ? String(systemClock?.date?.getMonth() + 1).padStart(2, '0') : String(systemClock?.date?.getDate()).padStart(2, '0')
|
|
return value.charAt(1)
|
|
}
|
|
font.pixelSize: Theme.fontSizeSmall
|
|
color: Theme.surfaceText
|
|
font.weight: {
|
|
const locale = Qt.locale()
|
|
const dateFormatShort = locale.dateFormat(Locale.ShortFormat)
|
|
const dayFirst = dateFormatShort.indexOf('d') < dateFormatShort.indexOf('M')
|
|
return dayFirst ? Font.Light : Font.Normal
|
|
}
|
|
width: 9
|
|
horizontalAlignment: Text.AlignHCenter
|
|
}
|
|
}
|
|
}
|
|
|
|
Row {
|
|
id: clockRow
|
|
|
|
visible: !root.isVertical
|
|
anchors.centerIn: parent
|
|
spacing: Theme.spacingS
|
|
|
|
StyledText {
|
|
text: {
|
|
const format = SettingsData.use24HourClock ? "HH:mm" : "h:mm AP"
|
|
return systemClock?.date?.toLocaleTimeString(Qt.locale(), format)
|
|
}
|
|
font.pixelSize: Theme.fontSizeMedium - 1
|
|
color: Theme.surfaceText
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
}
|
|
|
|
StyledText {
|
|
text: "•"
|
|
font.pixelSize: Theme.fontSizeSmall
|
|
color: Theme.outlineButton
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
visible: !SettingsData.clockCompactMode
|
|
}
|
|
|
|
StyledText {
|
|
text: {
|
|
if (SettingsData.clockDateFormat && SettingsData.clockDateFormat.length > 0) {
|
|
return systemClock?.date?.toLocaleDateString(Qt.locale(), SettingsData.clockDateFormat)
|
|
}
|
|
|
|
return systemClock?.date?.toLocaleDateString(Qt.locale(), "ddd d")
|
|
}
|
|
font.pixelSize: Theme.fontSizeMedium - 1
|
|
color: Theme.surfaceText
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
visible: !SettingsData.clockCompactMode
|
|
}
|
|
}
|
|
|
|
SystemClock {
|
|
id: systemClock
|
|
precision: SystemClock.Seconds
|
|
}
|
|
|
|
MouseArea {
|
|
id: clockMouseArea
|
|
|
|
anchors.fill: parent
|
|
hoverEnabled: true
|
|
cursorShape: Qt.PointingHandCursor
|
|
onPressed: {
|
|
if (popupTarget && popupTarget.setTriggerPosition) {
|
|
const globalPos = mapToGlobal(0, 0)
|
|
const currentScreen = parentScreen || Screen
|
|
const pos = SettingsData.getPopupTriggerPosition(globalPos, currentScreen, barThickness, width)
|
|
popupTarget.setTriggerPosition(pos.x, pos.y, pos.width, section, currentScreen)
|
|
}
|
|
root.clockClicked()
|
|
}
|
|
}
|
|
|
|
}
|