diff options
| author | Nippy <nippy@rp1.hu> | 2026-05-08 19:50:49 +0200 |
|---|---|---|
| committer | Nippy <nippy@rp1.hu> | 2026-05-08 19:50:49 +0200 |
| commit | 3462bcc46ecf74f576ea4397f16492c16bd75b10 (patch) | |
| tree | c5ab7aef4498647e057bda8d49c11e5f9dda74c9 /raveos-hyprland-theme/theme-data/dms/Modules/Plugins/PopoutComponent.qml | |
| parent | 56616f693b4f263cbf0d47da43b67424efa6022d (diff) | |
| download | RaveOS-PKGBUILD-3462bcc46ecf74f576ea4397f16492c16bd75b10.tar.gz RaveOS-PKGBUILD-3462bcc46ecf74f576ea4397f16492c16bd75b10.zip | |
raveos update
Diffstat (limited to 'raveos-hyprland-theme/theme-data/dms/Modules/Plugins/PopoutComponent.qml')
| -rw-r--r-- | raveos-hyprland-theme/theme-data/dms/Modules/Plugins/PopoutComponent.qml | 87 |
1 files changed, 87 insertions, 0 deletions
diff --git a/raveos-hyprland-theme/theme-data/dms/Modules/Plugins/PopoutComponent.qml b/raveos-hyprland-theme/theme-data/dms/Modules/Plugins/PopoutComponent.qml new file mode 100644 index 0000000..7ccf637 --- /dev/null +++ b/raveos-hyprland-theme/theme-data/dms/Modules/Plugins/PopoutComponent.qml @@ -0,0 +1,87 @@ +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 + } +} |