mirror of
https://github.com/AvengeMedia/DankMaterialShell.git
synced 2025-12-05 21:15:38 -05:00
156 lines
3.8 KiB
QML
156 lines
3.8 KiB
QML
import QtQuick
|
|
import QtQuick.Effects
|
|
import Quickshell
|
|
import Quickshell.Wayland
|
|
import qs.Common
|
|
|
|
PanelWindow {
|
|
id: root
|
|
|
|
property alias content: contentLoader.sourceComponent
|
|
property alias contentLoader: contentLoader
|
|
property var modelData
|
|
property bool shouldBeVisible: false
|
|
property int autoHideInterval: 2000
|
|
property bool enableMouseInteraction: false
|
|
property real osdWidth: Theme.iconSize + Theme.spacingS * 2
|
|
property real osdHeight: Theme.iconSize + Theme.spacingS * 2
|
|
property int animationDuration: Theme.mediumDuration
|
|
property var animationEasing: Theme.emphasizedEasing
|
|
|
|
signal osdShown
|
|
signal osdHidden
|
|
|
|
function show() {
|
|
closeTimer.stop()
|
|
shouldBeVisible = true
|
|
visible = true
|
|
hideTimer.restart()
|
|
osdShown()
|
|
}
|
|
|
|
function hide() {
|
|
shouldBeVisible = false
|
|
closeTimer.restart()
|
|
}
|
|
|
|
function updateHoverState() {
|
|
let isHovered = (enableMouseInteraction && mouseArea.containsMouse) || osdContainer.childHovered
|
|
if (enableMouseInteraction) {
|
|
if (isHovered) {
|
|
hideTimer.stop()
|
|
} else if (shouldBeVisible) {
|
|
hideTimer.restart()
|
|
}
|
|
}
|
|
}
|
|
|
|
function setChildHovered(hovered) {
|
|
osdContainer.childHovered = hovered
|
|
updateHoverState()
|
|
}
|
|
|
|
screen: modelData
|
|
visible: shouldBeVisible
|
|
WlrLayershell.layer: WlrLayershell.Overlay
|
|
WlrLayershell.exclusiveZone: -1
|
|
WlrLayershell.keyboardFocus: WlrKeyboardFocus.None
|
|
color: "transparent"
|
|
|
|
anchors {
|
|
top: true
|
|
left: true
|
|
right: true
|
|
bottom: true
|
|
}
|
|
|
|
Timer {
|
|
id: hideTimer
|
|
|
|
interval: autoHideInterval
|
|
repeat: false
|
|
onTriggered: {
|
|
if (!enableMouseInteraction || !mouseArea.containsMouse) {
|
|
hide()
|
|
} else {
|
|
hideTimer.restart()
|
|
}
|
|
}
|
|
}
|
|
|
|
Timer {
|
|
id: closeTimer
|
|
interval: animationDuration + 50
|
|
onTriggered: {
|
|
if (!shouldBeVisible) {
|
|
visible = false
|
|
osdHidden()
|
|
}
|
|
}
|
|
}
|
|
|
|
Rectangle {
|
|
id: osdContainer
|
|
|
|
property bool childHovered: false
|
|
|
|
width: osdWidth
|
|
height: osdHeight
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
|
anchors.bottom: parent.bottom
|
|
anchors.bottomMargin: Theme.spacingM
|
|
color: Theme.popupBackground()
|
|
radius: Theme.cornerRadius
|
|
border.color: Qt.rgba(Theme.outline.r, Theme.outline.g, Theme.outline.b, 0.08)
|
|
border.width: 1
|
|
opacity: shouldBeVisible ? 1 : 0
|
|
scale: shouldBeVisible ? 1 : 0.9
|
|
layer.enabled: true
|
|
|
|
MouseArea {
|
|
id: mouseArea
|
|
anchors.fill: parent
|
|
hoverEnabled: enableMouseInteraction
|
|
acceptedButtons: Qt.NoButton
|
|
propagateComposedEvents: true
|
|
z: -1
|
|
onContainsMouseChanged: updateHoverState()
|
|
}
|
|
|
|
onChildHoveredChanged: updateHoverState()
|
|
|
|
Loader {
|
|
id: contentLoader
|
|
anchors.fill: parent
|
|
active: root.visible
|
|
asynchronous: false
|
|
}
|
|
|
|
layer.effect: MultiEffect {
|
|
shadowEnabled: true
|
|
shadowHorizontalOffset: 0
|
|
shadowVerticalOffset: 4
|
|
shadowBlur: 0.8
|
|
shadowColor: Qt.rgba(0, 0, 0, 0.3)
|
|
}
|
|
|
|
Behavior on opacity {
|
|
NumberAnimation {
|
|
duration: animationDuration
|
|
easing.type: animationEasing
|
|
}
|
|
}
|
|
|
|
Behavior on scale {
|
|
NumberAnimation {
|
|
duration: animationDuration
|
|
easing.type: animationEasing
|
|
}
|
|
}
|
|
}
|
|
|
|
mask: Region {
|
|
item: osdContainer
|
|
}
|
|
}
|