From baa9b002c73d2dfaa1eda37f8349da6b62e5a9f8 Mon Sep 17 00:00:00 2001 From: Nydragon Date: Sat, 28 Sep 2024 03:16:37 +0200 Subject: [PATCH] feat: give audio manaager a border, hide next/prev player when only a single or no players --- src/widgets/MprisBig/MprisWidget.qml | 5 +++++ src/windows/audioman/AudioManager.qml | 9 ++++++--- 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/src/widgets/MprisBig/MprisWidget.qml b/src/widgets/MprisBig/MprisWidget.qml index 5728a9d..21490e8 100644 --- a/src/widgets/MprisBig/MprisWidget.qml +++ b/src/widgets/MprisBig/MprisWidget.qml @@ -9,6 +9,7 @@ import QtQuick.Effects import Quickshell.Services.Mpris ColumnLayout { + id: mprisWidget Layout.alignment: Qt.AlignHCenter Layout.fillWidth: true visible: Player.current ?? false @@ -18,6 +19,7 @@ ColumnLayout { Layout.alignment: Qt.AlignHCenter color: "white" font.pixelSize: 18 + Layout.maximumWidth: mprisWidget.width } Label { @@ -25,6 +27,7 @@ ColumnLayout { Layout.alignment: Qt.AlignHCenter color: "white" font.pixelSize: 14 + Layout.maximumWidth: mprisWidget.width } RowLayout { @@ -34,6 +37,7 @@ ColumnLayout { Layout.alignment: Qt.AlignLeft Layout.fillHeight: true Layout.preferredWidth: 50 + visible: Player.all.length > 1 } Item { Layout.fillWidth: true @@ -54,6 +58,7 @@ ColumnLayout { Layout.alignment: Qt.AlignRight Layout.fillHeight: true Layout.preferredWidth: 50 + visible: Player.all.length > 1 } } diff --git a/src/windows/audioman/AudioManager.qml b/src/windows/audioman/AudioManager.qml index a4b2e32..78542f4 100644 --- a/src/windows/audioman/AudioManager.qml +++ b/src/windows/audioman/AudioManager.qml @@ -25,7 +25,7 @@ PopupWindow { anchors.fill: parent onClicked: audioman.visible = false - Rectangle { + BRectangle { id: display x: lbar.width * 1.2 @@ -33,13 +33,15 @@ PopupWindow { width: 500 height: 600 - color: "transparent" + radius: 10 + Image { id: background anchors.fill: parent source: Player.current?.trackArtUrl ?? "" Layout.alignment: Qt.AlignHCenter visible: false + anchors.margins: display.border.width - 1 } MultiEffect { @@ -52,6 +54,7 @@ PopupWindow { blurMultiplier: 2 blur: 1 brightness: -0.15 + contrast: -0.35 maskEnabled: true maskSource: mask } @@ -66,7 +69,7 @@ PopupWindow { Rectangle { width: image.width height: image.height - radius: 10 + radius: display.radius color: "black" } }