diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-05-02 13:57:16 +1000 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-05-02 13:57:16 +1000 |
| commit | fc87280dcfed7e0268f6b9c9dc840f83cc1c2a9c (patch) | |
| tree | a7a15206e580c4342fa5c7347df669e01fe2b270 /modules/launcher/Wrapper.qml | |
| parent | bar: fix workspaces switching (diff) | |
| download | caelestia-shell-fc87280dcfed7e0268f6b9c9dc840f83cc1c2a9c.tar.gz caelestia-shell-fc87280dcfed7e0268f6b9c9dc840f83cc1c2a9c.tar.bz2 caelestia-shell-fc87280dcfed7e0268f6b9c9dc840f83cc1c2a9c.zip | |
refactor: separate launcher into multiple files
Diffstat (limited to 'modules/launcher/Wrapper.qml')
| -rw-r--r-- | modules/launcher/Wrapper.qml | 66 |
1 files changed, 66 insertions, 0 deletions
diff --git a/modules/launcher/Wrapper.qml b/modules/launcher/Wrapper.qml new file mode 100644 index 0000000..17e7b3a --- /dev/null +++ b/modules/launcher/Wrapper.qml @@ -0,0 +1,66 @@ +import "root:/config" +import QtQuick + +Item { + id: root + + required property bool launcherVisible + + 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 { + root.height: content.height + root.visible: true + } + } + + transitions: [ + Transition { + from: "" + to: "visible" + + SequentialAnimation { + PropertyAction { + target: root + property: "visible" + } + NumberAnimation { + target: root + property: "height" + duration: Appearance.anim.durations.large + easing.type: Easing.BezierSpline + easing.bezierCurve: Appearance.anim.curves.emphasizedDecel + } + } + }, + Transition { + from: "visible" + to: "" + + SequentialAnimation { + NumberAnimation { + target: root + property: "height" + duration: Appearance.anim.durations.extraLarge + easing.type: Easing.BezierSpline + easing.bezierCurve: Appearance.anim.curves.emphasizedDecel + } + PropertyAction { + target: root + property: "visible" + } + } + } + ] +} |