summaryrefslogtreecommitdiff
path: root/raveos-theme/hyprland/theme-data/DankMaterialShell/quickshell/Widgets/DankSlideout.qml
diff options
context:
space:
mode:
authorAlexanderCurl <alexc@alexc.hu>2026-04-18 17:46:06 +0100
committerAlexanderCurl <alexc@alexc.hu>2026-04-18 17:46:06 +0100
commit70ca3fef77ee8bdc6e3ac28589a6fa08c024cc69 (patch)
treeab1123d4067c1b086dd6faa7ee4ea643236b565a /raveos-theme/hyprland/theme-data/DankMaterialShell/quickshell/Widgets/DankSlideout.qml
parent5d94c0a7d44a2255b81815a52a7056a94a39842d (diff)
downloadRaveOS-PKGBUILD-70ca3fef77ee8bdc6e3ac28589a6fa08c024cc69.tar.gz
RaveOS-PKGBUILD-70ca3fef77ee8bdc6e3ac28589a6fa08c024cc69.zip
Replaced file structures for themes in the correct format
Diffstat (limited to 'raveos-theme/hyprland/theme-data/DankMaterialShell/quickshell/Widgets/DankSlideout.qml')
-rw-r--r--raveos-theme/hyprland/theme-data/DankMaterialShell/quickshell/Widgets/DankSlideout.qml209
1 files changed, 0 insertions, 209 deletions
diff --git a/raveos-theme/hyprland/theme-data/DankMaterialShell/quickshell/Widgets/DankSlideout.qml b/raveos-theme/hyprland/theme-data/DankMaterialShell/quickshell/Widgets/DankSlideout.qml
deleted file mode 100644
index d346322..0000000
--- a/raveos-theme/hyprland/theme-data/DankMaterialShell/quickshell/Widgets/DankSlideout.qml
+++ /dev/null
@@ -1,209 +0,0 @@
-import QtQuick
-import QtQuick.Controls
-import Quickshell
-import Quickshell.Wayland
-import qs.Common
-import qs.Services
-import qs.Widgets
-
-pragma ComponentBehavior: Bound
-
-PanelWindow {
- id: root
-
- property string layerNamespace: "dms:slideout"
- WlrLayershell.namespace: layerNamespace
-
- property bool isVisible: false
- property var targetScreen: null
- property var modelData: null
- property real slideoutWidth: 480
- property bool expandable: false
- property bool expandedWidth: false
- property real expandedWidthValue: 960
- property Component content: null
- property string title: ""
- property alias container: contentContainer
- property real customTransparency: -1
- signal aboutToHide
-
- function show() {
- visible = true
- isVisible = true
- }
-
- function hide() {
- aboutToHide()
- isVisible = false
- }
-
- function toggle() {
- if (isVisible) {
- hide()
- } else {
- show()
- }
- }
-
- visible: isVisible
- screen: modelData
-
- anchors.top: true
- anchors.bottom: true
- anchors.right: true
-
- implicitWidth: expandable ? expandedWidthValue : slideoutWidth
- implicitHeight: modelData ? modelData.height : 800
-
- color: "transparent"
-
- WlrLayershell.layer: WlrLayershell.Top
- WlrLayershell.exclusiveZone: 0
- WlrLayershell.keyboardFocus: isVisible ? WlrKeyboardFocus.OnDemand : WlrKeyboardFocus.None
-
- readonly property real dpr: CompositorService.getScreenScale(root.screen)
- readonly property real alignedWidth: Theme.px(expandable && expandedWidth ? expandedWidthValue : slideoutWidth, dpr)
- readonly property real alignedHeight: Theme.px(modelData ? modelData.height : 800, dpr)
-
- mask: Region {
- item: Rectangle {
- x: root.width - alignedWidth
- y: 0
- width: alignedWidth
- height: root.height
- }
- }
-
- Item {
- id: slideContainer
- anchors.top: parent.top
- anchors.bottom: parent.bottom
- anchors.right: parent.right
- width: alignedWidth
- height: alignedHeight
-
- property real slideOffset: alignedWidth
-
- Connections {
- target: root
- function onIsVisibleChanged() {
- slideContainer.slideOffset = root.isVisible ? 0 : slideContainer.width
- }
- }
-
- Behavior on slideOffset {
- NumberAnimation {
- id: slideAnimation
- duration: 450
- easing.type: Easing.OutCubic
-
- onRunningChanged: {
- if (!running && !isVisible) {
- root.visible = false
- }
- }
- }
- }
-
- Behavior on width {
- NumberAnimation {
- duration: 250
- easing.type: Easing.OutCubic
- }
- }
-
- Item {
- id: contentRect
- layer.enabled: Quickshell.env("DMS_DISABLE_LAYER") !== "true" && Quickshell.env("DMS_DISABLE_LAYER") !== "1"
- layer.smooth: false
- layer.textureSize: Qt.size(width * root.dpr, height * root.dpr)
- opacity: 1
-
- readonly property real effectiveTransparency: customTransparency >= 0 ? customTransparency : SettingsData.popupTransparency
-
- anchors.top: parent.top
- anchors.bottom: parent.bottom
- width: parent.width
- x: Theme.snap(slideContainer.slideOffset, root.dpr)
-
- Rectangle {
- anchors.fill: parent
- color: Qt.rgba(Theme.surfaceContainer.r, Theme.surfaceContainer.g, Theme.surfaceContainer.b, contentRect.effectiveTransparency)
- radius: Theme.cornerRadius
- }
-
- Column {
- id: headerColumn
- anchors.top: parent.top
- anchors.left: parent.left
- anchors.right: parent.right
- anchors.margins: Theme.spacingL
- spacing: Theme.spacingM
- visible: root.title !== ""
-
- Row {
- width: parent.width
- height: 32
-
- Column {
- width: parent.width - buttonRow.width
- spacing: Theme.spacingXS
- anchors.verticalCenter: parent.verticalCenter
-
- StyledText {
- text: root.title
- font.pixelSize: Theme.fontSizeLarge
- color: Theme.surfaceText
- font.weight: Font.Medium
- }
- }
-
- Row {
- id: buttonRow
- spacing: Theme.spacingXS
-
- DankActionButton {
- id: expandButton
- iconName: root.expandedWidth ? "unfold_less" : "unfold_more"
- iconSize: Theme.iconSize - 4
- iconColor: Theme.surfaceText
- visible: root.expandable
- onClicked: root.expandedWidth = !root.expandedWidth
-
- transform: Rotation {
- angle: 90
- origin.x: expandButton.width / 2
- origin.y: expandButton.height / 2
- }
- }
-
- DankActionButton {
- id: closeButton
- iconName: "close"
- iconSize: Theme.iconSize - 4
- iconColor: Theme.surfaceText
- onClicked: root.hide()
- }
- }
- }
- }
-
- Item {
- id: contentContainer
- anchors.top: root.title !== "" ? headerColumn.bottom : parent.top
- anchors.left: parent.left
- anchors.right: parent.right
- anchors.bottom: parent.bottom
- anchors.topMargin: root.title !== "" ? 0 : Theme.spacingL
- anchors.leftMargin: Theme.spacingL
- anchors.rightMargin: Theme.spacingL
- anchors.bottomMargin: Theme.spacingL
-
- Loader {
- anchors.fill: parent
- sourceComponent: root.content
- }
- }
- }
- }
-}