summaryrefslogtreecommitdiff
path: root/modules/launcher/Launcher.qml
diff options
context:
space:
mode:
author2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-05-02 13:57:16 +1000
committer2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-05-02 13:57:16 +1000
commitfc87280dcfed7e0268f6b9c9dc840f83cc1c2a9c (patch)
treea7a15206e580c4342fa5c7347df669e01fe2b270 /modules/launcher/Launcher.qml
parentbar: fix workspaces switching (diff)
downloadcaelestia-shell-fc87280dcfed7e0268f6b9c9dc840f83cc1c2a9c.tar.gz
caelestia-shell-fc87280dcfed7e0268f6b9c9dc840f83cc1c2a9c.tar.bz2
caelestia-shell-fc87280dcfed7e0268f6b9c9dc840f83cc1c2a9c.zip
refactor: separate launcher into multiple files
Diffstat (limited to 'modules/launcher/Launcher.qml')
-rw-r--r--modules/launcher/Launcher.qml118
1 files changed, 4 insertions, 114 deletions
diff --git a/modules/launcher/Launcher.qml b/modules/launcher/Launcher.qml
index 8313721..245fd47 100644
--- a/modules/launcher/Launcher.qml
+++ b/modules/launcher/Launcher.qml
@@ -26,126 +26,16 @@ Scope {
anchors.bottom: true
- Shape {
+ Background {
id: bg
- readonly property int rounding: Appearance.rounding.large
- readonly property int roundingY: Math.min(rounding, wrapper.height / 2)
- readonly property real wrapperHeight: wrapper.height - 1 // Pixel issues :sob:
-
- anchors.left: parent.left
- anchors.right: parent.right
- anchors.bottom: parent.bottom
-
- preferredRendererType: Shape.CurveRenderer
- opacity: Appearance.transparency.enabled ? Appearance.transparency.base : 1
-
- ShapePath {
- strokeWidth: -1
- fillColor: Appearance.colours.m3surface
-
- startY: bg.wrapperHeight
-
- PathArc {
- relativeX: bg.rounding
- relativeY: -bg.roundingY
- radiusX: bg.rounding
- radiusY: bg.roundingY
- direction: PathArc.Counterclockwise
- }
- PathLine {
- relativeX: 0
- y: bg.roundingY
- }
- PathArc {
- relativeX: bg.rounding
- relativeY: -bg.roundingY
- radiusX: bg.rounding
- radiusY: bg.roundingY
- }
- PathLine {
- x: wrapper.width - bg.rounding * 2
- }
- PathArc {
- relativeX: bg.rounding
- relativeY: bg.roundingY
- radiusX: bg.rounding
- radiusY: bg.roundingY
- }
- PathLine {
- relativeX: 0
- y: bg.wrapperHeight - bg.roundingY
- }
- PathArc {
- relativeX: bg.rounding
- relativeY: bg.roundingY
- radiusX: bg.rounding
- radiusY: bg.roundingY
- direction: PathArc.Counterclockwise
- }
- }
+ realWrapperHeight: wrapper.height
}
- Item {
+ Wrapper {
id: wrapper
- anchors.left: parent.left
- anchors.right: parent.right
- anchors.bottom: parent.bottom
-
- height: 0
- visible: false
-
- clip: true
-
- states: State {
- name: "visible"
- when: root.launcherVisible
-
- PropertyChanges {
- wrapper.height: content.height
- wrapper.visible: true
- }
- }
-
- transitions: [
- Transition {
- from: ""
- to: "visible"
-
- SequentialAnimation {
- PropertyAction {
- target: wrapper
- property: "visible"
- }
- NumberAnimation {
- target: wrapper
- property: "height"
- duration: Appearance.anim.durations.large
- easing.type: Easing.BezierSpline
- easing.bezierCurve: Appearance.anim.curves.emphasizedDecel
- }
- }
- },
- Transition {
- from: "visible"
- to: ""
-
- SequentialAnimation {
- NumberAnimation {
- target: wrapper
- property: "height"
- duration: Appearance.anim.durations.extraLarge
- easing.type: Easing.BezierSpline
- easing.bezierCurve: Appearance.anim.curves.emphasizedDecel
- }
- PropertyAction {
- target: wrapper
- property: "visible"
- }
- }
- }
- ]
+ launcherVisible: root.launcherVisible
PaddedRect {
id: content