* reworked fullscreen mode as transforming shell * controlcenter configuring of toasts & notifs * fix animation on fs switch * border rounding & shadow animation * change controlcenter notifications layout * stay on WlrLayer.Overlay, use Anim * ci: update action versions * qmlformat * format take two * third time's the charm * fix: special workspace fullscreen * fix: bar width border.thickness on non-persistent behaviour * merge fix * stop layout shift on close * last few conventions sorted * linting * maximized state to fullscreen --------- Co-authored-by: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>
53 lines
1.3 KiB
QML
53 lines
1.3 KiB
QML
import QtQuick
|
|
import QtQuick.Shapes
|
|
import qs.components
|
|
import qs.services
|
|
|
|
ShapePath {
|
|
id: root
|
|
|
|
required property Wrapper wrapper
|
|
required property var sidebar
|
|
required property real rounding
|
|
readonly property bool flatten: wrapper.height < rounding * 2
|
|
readonly property real roundingY: flatten ? wrapper.height / 2 : rounding
|
|
|
|
strokeWidth: -1
|
|
fillColor: Colours.palette.m3surface
|
|
|
|
PathLine {
|
|
relativeX: -(root.wrapper.width + root.rounding)
|
|
relativeY: 0
|
|
}
|
|
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.height > 0 ? root.wrapper.width - root.rounding * 2 : root.wrapper.width
|
|
relativeY: 0
|
|
}
|
|
PathArc {
|
|
relativeX: root.rounding
|
|
relativeY: root.rounding
|
|
radiusX: root.rounding
|
|
radiusY: root.rounding
|
|
}
|
|
|
|
Behavior on fillColor {
|
|
CAnim {}
|
|
}
|
|
}
|