mirror of
https://github.com/AvengeMedia/DankMaterialShell.git
synced 2025-12-05 21:15:38 -05:00
415 lines
15 KiB
QML
415 lines
15 KiB
QML
import QtQuick
|
|
import Quickshell
|
|
import Quickshell.Wayland
|
|
import qs.Common
|
|
import qs.Services
|
|
import qs.Widgets
|
|
|
|
Item {
|
|
id: root
|
|
|
|
property string layerNamespace: "dms:modal"
|
|
property alias content: contentLoader.sourceComponent
|
|
property alias contentLoader: contentLoader
|
|
property Item directContent: null
|
|
property real modalWidth: 400
|
|
property real modalHeight: 300
|
|
property var targetScreen
|
|
readonly property var effectiveScreen: targetScreen || contentWindow.screen
|
|
readonly property real screenWidth: effectiveScreen?.width
|
|
readonly property real screenHeight: effectiveScreen?.height
|
|
readonly property real dpr: effectiveScreen ? CompositorService.getScreenScale(effectiveScreen) : 1
|
|
property bool showBackground: true
|
|
property real backgroundOpacity: 0.5
|
|
property string positioning: "center"
|
|
property point customPosition: Qt.point(0, 0)
|
|
property bool closeOnEscapeKey: true
|
|
property bool closeOnBackgroundClick: true
|
|
property string animationType: "scale"
|
|
property int animationDuration: Theme.expressiveDurations.expressiveDefaultSpatial
|
|
property real animationScaleCollapsed: 0.96
|
|
property real animationOffset: Theme.spacingL
|
|
property list<real> animationEnterCurve: Theme.expressiveCurves.expressiveDefaultSpatial
|
|
property list<real> animationExitCurve: Theme.expressiveCurves.emphasized
|
|
property color backgroundColor: Theme.surfaceContainer
|
|
property color borderColor: Theme.outlineMedium
|
|
property real borderWidth: 1
|
|
property real cornerRadius: Theme.cornerRadius
|
|
property bool enableShadow: false
|
|
property alias modalFocusScope: focusScope
|
|
property bool shouldBeVisible: false
|
|
property bool shouldHaveFocus: shouldBeVisible
|
|
property bool allowFocusOverride: false
|
|
property bool allowStacking: false
|
|
property bool keepContentLoaded: false
|
|
property bool keepPopoutsOpen: false
|
|
property var customKeyboardFocus: null
|
|
readonly property alias contentWindow: contentWindow
|
|
readonly property alias backgroundWindow: backgroundWindow
|
|
|
|
signal opened
|
|
signal dialogClosed
|
|
signal backgroundClicked
|
|
|
|
property bool animationsEnabled: true
|
|
readonly property bool useBackgroundWindow: true
|
|
|
|
function open() {
|
|
ModalManager.openModal(root);
|
|
closeTimer.stop();
|
|
shouldBeVisible = true;
|
|
contentWindow.visible = false;
|
|
if (useBackgroundWindow)
|
|
backgroundWindow.visible = true;
|
|
Qt.callLater(() => {
|
|
contentWindow.visible = true;
|
|
shouldHaveFocus = false;
|
|
Qt.callLater(() => {
|
|
shouldHaveFocus = Qt.binding(() => shouldBeVisible);
|
|
});
|
|
});
|
|
}
|
|
|
|
function close() {
|
|
shouldBeVisible = false;
|
|
shouldHaveFocus = false;
|
|
closeTimer.restart();
|
|
}
|
|
|
|
function instantClose() {
|
|
animationsEnabled = false;
|
|
shouldBeVisible = false;
|
|
shouldHaveFocus = false;
|
|
closeTimer.stop();
|
|
contentWindow.visible = false;
|
|
if (useBackgroundWindow)
|
|
backgroundWindow.visible = false;
|
|
dialogClosed();
|
|
Qt.callLater(() => animationsEnabled = true);
|
|
}
|
|
|
|
function toggle() {
|
|
shouldBeVisible ? close() : open();
|
|
}
|
|
|
|
Connections {
|
|
target: ModalManager
|
|
function onCloseAllModalsExcept(excludedModal) {
|
|
if (excludedModal !== root && !allowStacking && shouldBeVisible) {
|
|
close();
|
|
}
|
|
}
|
|
}
|
|
|
|
Timer {
|
|
id: closeTimer
|
|
interval: animationDuration + 120
|
|
onTriggered: {
|
|
if (!shouldBeVisible) {
|
|
contentWindow.visible = false;
|
|
if (useBackgroundWindow)
|
|
backgroundWindow.visible = false;
|
|
dialogClosed();
|
|
}
|
|
}
|
|
}
|
|
|
|
readonly property real shadowBuffer: 5
|
|
readonly property real alignedWidth: Theme.px(modalWidth, dpr)
|
|
readonly property real alignedHeight: Theme.px(modalHeight, dpr)
|
|
|
|
readonly property real alignedX: Theme.snap((() => {
|
|
switch (positioning) {
|
|
case "center":
|
|
return (screenWidth - alignedWidth) / 2;
|
|
case "top-right":
|
|
return Math.max(Theme.spacingL, screenWidth - alignedWidth - Theme.spacingL);
|
|
case "custom":
|
|
return customPosition.x;
|
|
default:
|
|
return 0;
|
|
}
|
|
})(), dpr)
|
|
|
|
readonly property real alignedY: Theme.snap((() => {
|
|
switch (positioning) {
|
|
case "center":
|
|
return (screenHeight - alignedHeight) / 2;
|
|
case "top-right":
|
|
return Theme.barHeight + Theme.spacingXS;
|
|
case "custom":
|
|
return customPosition.y;
|
|
default:
|
|
return 0;
|
|
}
|
|
})(), dpr)
|
|
|
|
PanelWindow {
|
|
id: backgroundWindow
|
|
visible: false
|
|
color: "transparent"
|
|
|
|
WlrLayershell.namespace: root.layerNamespace + ":background"
|
|
WlrLayershell.layer: WlrLayershell.Top
|
|
WlrLayershell.exclusiveZone: -1
|
|
WlrLayershell.keyboardFocus: WlrKeyboardFocus.None
|
|
|
|
anchors {
|
|
top: true
|
|
left: true
|
|
right: true
|
|
bottom: true
|
|
}
|
|
|
|
mask: Region {
|
|
item: Rectangle {
|
|
x: root.alignedX
|
|
y: root.alignedY
|
|
width: root.shouldBeVisible ? root.alignedWidth : 0
|
|
height: root.shouldBeVisible ? root.alignedHeight : 0
|
|
}
|
|
intersection: Intersection.Xor
|
|
}
|
|
|
|
MouseArea {
|
|
anchors.fill: parent
|
|
enabled: root.closeOnBackgroundClick && root.shouldBeVisible
|
|
onClicked: mouse => {
|
|
const clickX = mouse.x;
|
|
const clickY = mouse.y;
|
|
const outsideContent = clickX < root.alignedX || clickX > root.alignedX + root.alignedWidth || clickY < root.alignedY || clickY > root.alignedY + root.alignedHeight;
|
|
|
|
if (!outsideContent)
|
|
return;
|
|
root.backgroundClicked();
|
|
}
|
|
}
|
|
|
|
Rectangle {
|
|
id: background
|
|
anchors.fill: parent
|
|
color: "black"
|
|
opacity: root.showBackground && SettingsData.modalDarkenBackground ? (root.shouldBeVisible ? root.backgroundOpacity : 0) : 0
|
|
visible: root.showBackground && SettingsData.modalDarkenBackground
|
|
|
|
Behavior on opacity {
|
|
enabled: root.animationsEnabled
|
|
NumberAnimation {
|
|
duration: root.animationDuration
|
|
easing.type: Easing.BezierSpline
|
|
easing.bezierCurve: root.shouldBeVisible ? root.animationEnterCurve : root.animationExitCurve
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
PanelWindow {
|
|
id: contentWindow
|
|
visible: false
|
|
color: "transparent"
|
|
|
|
WlrLayershell.namespace: root.layerNamespace
|
|
WlrLayershell.layer: {
|
|
switch (Quickshell.env("DMS_MODAL_LAYER")) {
|
|
case "bottom":
|
|
console.error("DankModal: 'bottom' layer is not valid for modals. Defaulting to 'top' layer.");
|
|
return WlrLayershell.Top;
|
|
case "background":
|
|
console.error("DankModal: 'background' layer is not valid for modals. Defaulting to 'top' layer.");
|
|
return WlrLayershell.Top;
|
|
case "overlay":
|
|
return WlrLayershell.Overlay;
|
|
default:
|
|
return WlrLayershell.Top;
|
|
}
|
|
}
|
|
WlrLayershell.exclusiveZone: -1
|
|
WlrLayershell.keyboardFocus: {
|
|
if (customKeyboardFocus !== null)
|
|
return customKeyboardFocus;
|
|
if (!shouldHaveFocus)
|
|
return WlrKeyboardFocus.None;
|
|
if (CompositorService.isHyprland)
|
|
return WlrKeyboardFocus.OnDemand;
|
|
return WlrKeyboardFocus.Exclusive;
|
|
}
|
|
|
|
anchors {
|
|
left: true
|
|
top: true
|
|
}
|
|
|
|
WlrLayershell.margins {
|
|
left: Math.max(0, Theme.snap(root.alignedX - shadowBuffer, dpr))
|
|
top: Math.max(0, Theme.snap(root.alignedY - shadowBuffer, dpr))
|
|
}
|
|
|
|
implicitWidth: root.alignedWidth + (shadowBuffer * 2)
|
|
implicitHeight: root.alignedHeight + (shadowBuffer * 2)
|
|
|
|
onVisibleChanged: {
|
|
if (visible) {
|
|
opened();
|
|
} else {
|
|
if (Qt.inputMethod) {
|
|
Qt.inputMethod.hide();
|
|
Qt.inputMethod.reset();
|
|
}
|
|
}
|
|
}
|
|
|
|
Item {
|
|
id: modalContainer
|
|
x: shadowBuffer
|
|
y: shadowBuffer
|
|
width: root.alignedWidth
|
|
height: root.alignedHeight
|
|
|
|
readonly property bool slide: root.animationType === "slide"
|
|
readonly property real offsetX: slide ? 15 : 0
|
|
readonly property real offsetY: slide ? -30 : root.animationOffset
|
|
|
|
property real animX: 0
|
|
property real animY: 0
|
|
property real scaleValue: root.animationScaleCollapsed
|
|
|
|
onOffsetXChanged: animX = Theme.snap(root.shouldBeVisible ? 0 : offsetX, root.dpr)
|
|
onOffsetYChanged: animY = Theme.snap(root.shouldBeVisible ? 0 : offsetY, root.dpr)
|
|
|
|
Connections {
|
|
target: root
|
|
function onShouldBeVisibleChanged() {
|
|
modalContainer.animX = Theme.snap(root.shouldBeVisible ? 0 : modalContainer.offsetX, root.dpr);
|
|
modalContainer.animY = Theme.snap(root.shouldBeVisible ? 0 : modalContainer.offsetY, root.dpr);
|
|
modalContainer.scaleValue = root.shouldBeVisible ? 1.0 : root.animationScaleCollapsed;
|
|
}
|
|
}
|
|
|
|
Behavior on animX {
|
|
enabled: root.animationsEnabled
|
|
NumberAnimation {
|
|
duration: root.animationDuration
|
|
easing.type: Easing.BezierSpline
|
|
easing.bezierCurve: root.shouldBeVisible ? root.animationEnterCurve : root.animationExitCurve
|
|
}
|
|
}
|
|
|
|
Behavior on animY {
|
|
enabled: root.animationsEnabled
|
|
NumberAnimation {
|
|
duration: root.animationDuration
|
|
easing.type: Easing.BezierSpline
|
|
easing.bezierCurve: root.shouldBeVisible ? root.animationEnterCurve : root.animationExitCurve
|
|
}
|
|
}
|
|
|
|
Behavior on scaleValue {
|
|
enabled: root.animationsEnabled
|
|
NumberAnimation {
|
|
duration: root.animationDuration
|
|
easing.type: Easing.BezierSpline
|
|
easing.bezierCurve: root.shouldBeVisible ? root.animationEnterCurve : root.animationExitCurve
|
|
}
|
|
}
|
|
|
|
Item {
|
|
id: contentContainer
|
|
anchors.centerIn: parent
|
|
width: parent.width
|
|
height: parent.height
|
|
clip: false
|
|
|
|
Item {
|
|
id: animatedContent
|
|
anchors.fill: parent
|
|
clip: false
|
|
opacity: root.shouldBeVisible ? 1 : 0
|
|
scale: modalContainer.scaleValue
|
|
x: Theme.snap(modalContainer.animX, root.dpr) + (parent.width - width) * (1 - modalContainer.scaleValue) * 0.5
|
|
y: Theme.snap(modalContainer.animY, root.dpr) + (parent.height - height) * (1 - modalContainer.scaleValue) * 0.5
|
|
|
|
Behavior on opacity {
|
|
enabled: root.animationsEnabled
|
|
NumberAnimation {
|
|
duration: animationDuration
|
|
easing.type: Easing.BezierSpline
|
|
easing.bezierCurve: root.shouldBeVisible ? root.animationEnterCurve : root.animationExitCurve
|
|
}
|
|
}
|
|
|
|
DankRectangle {
|
|
anchors.fill: parent
|
|
color: root.backgroundColor
|
|
borderColor: root.borderColor
|
|
borderWidth: root.borderWidth
|
|
radius: root.cornerRadius
|
|
}
|
|
|
|
FocusScope {
|
|
anchors.fill: parent
|
|
focus: root.shouldBeVisible
|
|
clip: false
|
|
|
|
Item {
|
|
id: directContentWrapper
|
|
anchors.fill: parent
|
|
visible: root.directContent !== null
|
|
focus: true
|
|
clip: false
|
|
|
|
Component.onCompleted: {
|
|
if (root.directContent) {
|
|
root.directContent.parent = directContentWrapper;
|
|
root.directContent.anchors.fill = directContentWrapper;
|
|
Qt.callLater(() => root.directContent.forceActiveFocus());
|
|
}
|
|
}
|
|
|
|
Connections {
|
|
target: root
|
|
function onDirectContentChanged() {
|
|
if (root.directContent) {
|
|
root.directContent.parent = directContentWrapper;
|
|
root.directContent.anchors.fill = directContentWrapper;
|
|
Qt.callLater(() => root.directContent.forceActiveFocus());
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
Loader {
|
|
id: contentLoader
|
|
anchors.fill: parent
|
|
active: root.directContent === null && (root.keepContentLoaded || root.shouldBeVisible || contentWindow.visible)
|
|
asynchronous: false
|
|
focus: true
|
|
clip: false
|
|
visible: root.directContent === null
|
|
|
|
onLoaded: {
|
|
if (item) {
|
|
Qt.callLater(() => item.forceActiveFocus());
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
FocusScope {
|
|
id: focusScope
|
|
objectName: "modalFocusScope"
|
|
anchors.fill: parent
|
|
visible: root.shouldBeVisible || contentWindow.visible
|
|
focus: root.shouldBeVisible
|
|
Keys.onEscapePressed: event => {
|
|
if (root.closeOnEscapeKey && shouldHaveFocus) {
|
|
root.close();
|
|
event.accepted = true;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|