diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-05-17 00:44:00 +0800 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-05-17 00:44:00 +0800 |
| commit | 6e6db08726e3bc274594de6835a01fc10002def9 (patch) | |
| tree | 272dcaa27b96690c449cdf61c8e4e6ea21559f48 /modules/dashboard/Background.qml | |
| parent | launcher: fallback app icon (diff) | |
| download | caelestia-shell-6e6db08726e3bc274594de6835a01fc10002def9.tar.gz caelestia-shell-6e6db08726e3bc274594de6835a01fc10002def9.tar.bz2 caelestia-shell-6e6db08726e3bc274594de6835a01fc10002def9.zip | |
feat: dashboard
Diffstat (limited to 'modules/dashboard/Background.qml')
| -rw-r--r-- | modules/dashboard/Background.qml | 71 |
1 files changed, 71 insertions, 0 deletions
diff --git a/modules/dashboard/Background.qml b/modules/dashboard/Background.qml new file mode 100644 index 0000000..0ab6658 --- /dev/null +++ b/modules/dashboard/Background.qml @@ -0,0 +1,71 @@ +import QtQuick +import QtQuick.Shapes +import "root:/config" +import "root:/services" + +ShapePath { + id: root + + required property Wrapper wrapper + readonly property real rounding: BorderConfig.rounding + readonly property bool flatten: wrapper.height < rounding * 2 + readonly property real roundingY: flatten ? wrapper.height / 2 : rounding + + strokeWidth: -1 + fillColor: BorderConfig.colour + + PathArc { + relativeX: root.rounding + relativeY: root.roundingY + radiusX: root.rounding + radiusY: Math.min(root.rounding, root.wrapper.height) + } + + PathLine { + relativeX: 0 + relativeY: root.wrapper.height - root.roundingY * 2 + } + + PathArc { + relativeX: root.rounding + relativeY: root.roundingY + radiusX: root.rounding + radiusY: Math.min(root.rounding, root.wrapper.height) + direction: PathArc.Counterclockwise + } + + PathLine { + relativeX: root.wrapper.width - root.rounding * 4 + relativeY: 0 + } + + PathArc { + relativeX: root.rounding + relativeY: -root.roundingY + radiusX: root.rounding + radiusY: Math.min(root.rounding, root.wrapper.height) + direction: PathArc.Counterclockwise + } + + PathLine { + relativeX: 0 + relativeY: -(root.wrapper.height - root.roundingY * 2) + } + + PathArc { + relativeX: root.rounding + relativeY: -root.roundingY + radiusX: root.rounding + radiusY: Math.min(root.rounding, root.wrapper.height) + } + + Behavior on fillColor { + ColorAnimation { + duration: Appearance.anim.durations.normal + easing.type: Easing.BezierSpline + easing.bezierCurve: Appearance.anim.curves.standard + } + + } + +} |