summaryrefslogtreecommitdiff
path: root/raveos-hyprland-theme/theme-data/DankMaterialShell/quickshell/Modules/Plugins/PopoutComponent.qml
diff options
context:
space:
mode:
Diffstat (limited to 'raveos-hyprland-theme/theme-data/DankMaterialShell/quickshell/Modules/Plugins/PopoutComponent.qml')
-rw-r--r--raveos-hyprland-theme/theme-data/DankMaterialShell/quickshell/Modules/Plugins/PopoutComponent.qml87
1 files changed, 0 insertions, 87 deletions
diff --git a/raveos-hyprland-theme/theme-data/DankMaterialShell/quickshell/Modules/Plugins/PopoutComponent.qml b/raveos-hyprland-theme/theme-data/DankMaterialShell/quickshell/Modules/Plugins/PopoutComponent.qml
deleted file mode 100644
index 7ccf637..0000000
--- a/raveos-hyprland-theme/theme-data/DankMaterialShell/quickshell/Modules/Plugins/PopoutComponent.qml
+++ /dev/null
@@ -1,87 +0,0 @@
-import QtQuick
-import qs.Common
-import qs.Widgets
-
-Column {
- id: root
-
- property string headerText: ""
- property string detailsText: ""
- property bool showCloseButton: false
- property var closePopout: null
- property var parentPopout: null
- property alias headerActions: headerActionsLoader.sourceComponent
-
- readonly property int headerHeight: popoutHeader.visible ? popoutHeader.height : 0
- readonly property int detailsHeight: popoutDetails.visible ? popoutDetails.implicitHeight : 0
-
- spacing: 0
-
- Item {
- id: popoutHeader
- width: parent.width
- height: 40
- visible: headerText.length > 0
-
- StyledText {
- anchors.left: parent.left
- anchors.leftMargin: Theme.spacingS
- anchors.verticalCenter: parent.verticalCenter
- text: root.headerText
- font.pixelSize: Theme.fontSizeLarge + 4
- font.weight: Font.Bold
- color: Theme.surfaceText
- }
-
- Row {
- anchors.right: parent.right
- anchors.verticalCenter: parent.verticalCenter
- spacing: Theme.spacingXS
-
- Loader {
- id: headerActionsLoader
- anchors.verticalCenter: parent.verticalCenter
- }
-
- Rectangle {
- id: closeButton
- width: 32
- height: 32
- radius: 16
- color: closeArea.containsMouse ? Theme.errorHover : "transparent"
- visible: root.showCloseButton
-
- DankIcon {
- anchors.centerIn: parent
- name: "close"
- size: Theme.iconSize - 4
- color: closeArea.containsMouse ? Theme.error : Theme.surfaceText
- }
-
- MouseArea {
- id: closeArea
- anchors.fill: parent
- hoverEnabled: true
- cursorShape: Qt.PointingHandCursor
- onPressed: {
- if (root.closePopout) {
- root.closePopout();
- }
- }
- }
- }
- }
- }
-
- StyledText {
- id: popoutDetails
- width: parent.width
- leftPadding: Theme.spacingS
- bottomPadding: Theme.spacingS
- text: root.detailsText
- font.pixelSize: Theme.fontSizeMedium
- color: Theme.surfaceVariantText
- visible: detailsText.length > 0
- wrapMode: Text.WordWrap
- }
-}