mirror of
https://github.com/belsabbagh/dotfiles.git
synced 2026-04-11 09:36:46 +00:00
88 lines
2.3 KiB
QML
88 lines
2.3 KiB
QML
pragma ComponentBehavior: Bound
|
|
|
|
import qs.components
|
|
import qs.config
|
|
import "popouts" as BarPopouts
|
|
import Quickshell
|
|
import QtQuick
|
|
|
|
Item {
|
|
id: root
|
|
|
|
required property ShellScreen screen
|
|
required property PersistentProperties visibilities
|
|
required property BarPopouts.Wrapper popouts
|
|
required property bool disabled
|
|
|
|
readonly property int padding: Math.max(Appearance.padding.smaller, Config.border.thickness)
|
|
readonly property int contentWidth: Config.bar.sizes.innerWidth + padding * 2
|
|
readonly property int exclusiveZone: !disabled && (Config.bar.persistent || visibilities.bar) ? contentWidth : Config.border.thickness
|
|
readonly property bool shouldBeVisible: !disabled && (Config.bar.persistent || visibilities.bar || isHovered)
|
|
property bool isHovered
|
|
|
|
function closeTray(): void {
|
|
content.item?.closeTray();
|
|
}
|
|
|
|
function checkPopout(y: real): void {
|
|
content.item?.checkPopout(y);
|
|
}
|
|
|
|
function handleWheel(y: real, angleDelta: point): void {
|
|
content.item?.handleWheel(y, angleDelta);
|
|
}
|
|
|
|
visible: width > Config.border.thickness
|
|
implicitWidth: Config.border.thickness
|
|
|
|
states: State {
|
|
name: "visible"
|
|
when: root.shouldBeVisible
|
|
|
|
PropertyChanges {
|
|
root.implicitWidth: root.contentWidth
|
|
}
|
|
}
|
|
|
|
transitions: [
|
|
Transition {
|
|
from: ""
|
|
to: "visible"
|
|
|
|
Anim {
|
|
target: root
|
|
property: "implicitWidth"
|
|
duration: Appearance.anim.durations.expressiveDefaultSpatial
|
|
easing.bezierCurve: Appearance.anim.curves.expressiveDefaultSpatial
|
|
}
|
|
},
|
|
Transition {
|
|
from: "visible"
|
|
to: ""
|
|
|
|
Anim {
|
|
target: root
|
|
property: "implicitWidth"
|
|
easing.bezierCurve: Appearance.anim.curves.emphasized
|
|
}
|
|
}
|
|
]
|
|
|
|
Loader {
|
|
id: content
|
|
|
|
anchors.top: parent.top
|
|
anchors.bottom: parent.bottom
|
|
anchors.right: parent.right
|
|
|
|
active: root.shouldBeVisible || root.visible
|
|
|
|
sourceComponent: Bar {
|
|
width: root.contentWidth
|
|
screen: root.screen
|
|
visibilities: root.visibilities
|
|
popouts: root.popouts
|
|
}
|
|
}
|
|
}
|