shift-shell/components/mobileshell/qml/widgets/mediacontrols/BlurredBackground.qml
2024-07-26 23:47:44 -04:00

59 lines
1.4 KiB
QML

// SPDX-FileCopyrightText: 2021-2023 Devin Lin <devin@kde.org>
// SPDX-License-Identifier: LGPL-2.0-or-later
import QtQuick
import QtQuick.Effects
import Qt5Compat.GraphicalEffects
import org.kde.kirigami 2.20 as Kirigami
Item {
id: root
property string imageSource
property bool darken: false
// clip corners so that the image has rounded corners
layer.enabled: true
layer.effect: OpacityMask {
maskSource: Item {
width: img.width
height: img.height
Rectangle {
anchors.centerIn: parent
width: img.width
height: img.height
radius: Kirigami.Units.smallSpacing
}
}
}
Image {
id: img
source: root.imageSource
asynchronous: true
anchors.fill: parent
fillMode: Image.PreserveAspectCrop
// ensure text is readable
Rectangle {
anchors.fill: parent
color: Qt.rgba(0, 0, 0, root.darken ? 0.8 : 0.6)
}
// apply lighten, saturate and blur effect
layer.enabled: true
layer.effect: MultiEffect {
brightness: 0.2
saturation: 1.5
blurEnabled: true
blurMax: 32
blur: 1.0
blurMultiplier: 2
autoPaddingEnabled: false
}
}
}