mirror of
https://invent.kde.org/marcoa/shift-shell.git
synced 2026-04-26 14:23:09 +00:00
Convert more uses of QtGraphicalEffects to MultiEffect
This commit is contained in:
parent
e9fc8084d1
commit
14f3f07316
20 changed files with 141 additions and 152 deletions
|
|
@ -1,10 +1,8 @@
|
||||||
/*
|
// SPDX-FileCopyrightText: 2021-2023 Devin Lin <devin@kde.org>
|
||||||
* SPDX-FileCopyrightText: 2021 Devin Lin <devin@kde.org>
|
// SPDX-License-Identifier: LGPL-2.0-or-later
|
||||||
*
|
|
||||||
* SPDX-License-Identifier: LGPL-2.0-or-later
|
|
||||||
*/
|
|
||||||
|
|
||||||
import QtQuick 2.15
|
import QtQuick
|
||||||
|
import QtQuick.Effects
|
||||||
import Qt5Compat.GraphicalEffects
|
import Qt5Compat.GraphicalEffects
|
||||||
|
|
||||||
import org.kde.plasma.core 2.0 as PlasmaCore
|
import org.kde.plasma.core 2.0 as PlasmaCore
|
||||||
|
|
@ -21,6 +19,7 @@ Item {
|
||||||
maskSource: Item {
|
maskSource: Item {
|
||||||
width: img.width
|
width: img.width
|
||||||
height: img.height
|
height: img.height
|
||||||
|
|
||||||
Rectangle {
|
Rectangle {
|
||||||
anchors.centerIn: parent
|
anchors.centerIn: parent
|
||||||
width: img.width
|
width: img.width
|
||||||
|
|
@ -46,18 +45,15 @@ Item {
|
||||||
|
|
||||||
// apply lighten, saturate and blur effect
|
// apply lighten, saturate and blur effect
|
||||||
layer.enabled: true
|
layer.enabled: true
|
||||||
layer.effect: HueSaturation {
|
layer.effect: MultiEffect {
|
||||||
cached: true
|
brightness: 0.2
|
||||||
|
|
||||||
lightness: 0.2
|
|
||||||
saturation: 1.5
|
saturation: 1.5
|
||||||
|
|
||||||
layer.enabled: true
|
blurEnabled: true
|
||||||
layer.effect: FastBlur {
|
blurMax: 32
|
||||||
cached: true
|
blur: 1.0
|
||||||
radius: 64
|
blurMultiplier: 2
|
||||||
transparentBorder: false
|
autoPaddingEnabled: false
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,7 @@
|
||||||
* SPDX-License-Identifier: LGPL-2.0-or-later
|
* SPDX-License-Identifier: LGPL-2.0-or-later
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import QtQuick 2.15
|
import QtQuick
|
||||||
|
|
||||||
import org.kde.plasma.core 2.0 as PlasmaCore
|
import org.kde.plasma.core 2.0 as PlasmaCore
|
||||||
import org.kde.plasma.plasma5support 2.0 as P5Support
|
import org.kde.plasma.plasma5support 2.0 as P5Support
|
||||||
|
|
|
||||||
|
|
@ -5,11 +5,11 @@
|
||||||
* SPDX-License-Identifier: LGPL-2.0-or-later
|
* SPDX-License-Identifier: LGPL-2.0-or-later
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import QtQuick 2.15
|
import QtQuick
|
||||||
import QtQuick.Layouts 1.15
|
import QtQuick.Layouts
|
||||||
import QtQuick.Controls 2.15 as QQC2
|
import QtQuick.Controls as QQC2
|
||||||
|
|
||||||
import org.kde.kirigami 2.12 as Kirigami
|
import org.kde.kirigami as Kirigami
|
||||||
|
|
||||||
import org.kde.plasma.private.mobileshell.state 1.0 as MobileShellState
|
import org.kde.plasma.private.mobileshell.state 1.0 as MobileShellState
|
||||||
import org.kde.plasma.core 2.0 as PlasmaCore
|
import org.kde.plasma.core 2.0 as PlasmaCore
|
||||||
|
|
|
||||||
|
|
@ -5,10 +5,9 @@
|
||||||
* SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
|
* SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import QtQuick 2.8
|
import QtQuick
|
||||||
import QtQuick.Layouts 1.1
|
import QtQuick.Layouts
|
||||||
import QtQuick.Window 2.2
|
import QtQuick.Window
|
||||||
import Qt5Compat.GraphicalEffects
|
|
||||||
|
|
||||||
import org.kde.plasma.core 2.0 as PlasmaCore
|
import org.kde.plasma.core 2.0 as PlasmaCore
|
||||||
import org.kde.plasma.plasma5support 2.0 as P5Support
|
import org.kde.plasma.plasma5support 2.0 as P5Support
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,8 @@
|
||||||
/*
|
// SPDX-FileCopyrightText: 2021-2023 Devin Lin <devin@kde.org>
|
||||||
* SPDX-FileCopyrightText: 2021 Devin Lin <devin@kde.org>
|
// SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
|
||||||
*
|
|
||||||
* SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
|
|
||||||
*/
|
|
||||||
|
|
||||||
import QtQuick 2.15
|
import QtQuick
|
||||||
import Qt5Compat.GraphicalEffects
|
import QtQuick.Effects
|
||||||
|
|
||||||
import org.kde.kirigami 2.12 as Kirigami
|
import org.kde.kirigami 2.12 as Kirigami
|
||||||
|
|
||||||
|
|
@ -46,16 +43,16 @@ Item {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// glow
|
// shadow
|
||||||
RectangularGlow {
|
MultiEffect {
|
||||||
visible: Math.abs(dragOffset) !== root.width
|
|
||||||
anchors.topMargin: 1
|
|
||||||
anchors.leftMargin: 1
|
|
||||||
anchors.fill: mainCard
|
anchors.fill: mainCard
|
||||||
cornerRadius: mainCard.radius * 2
|
visible: Math.abs(dragOffset) !== root.width
|
||||||
glowRadius: 2
|
source: mainCard
|
||||||
spread: 0.2
|
blurMax: 16
|
||||||
color: Qt.lighter(PlasmaCore.Theme.backgroundColor, 0.1)
|
shadowEnabled: true
|
||||||
|
shadowVerticalOffset: 1
|
||||||
|
shadowOpacity: 0.5
|
||||||
|
shadowColor: Qt.lighter(PlasmaCore.Theme.backgroundColor, 0.1)
|
||||||
}
|
}
|
||||||
|
|
||||||
// shadow
|
// shadow
|
||||||
|
|
|
||||||
|
|
@ -57,9 +57,10 @@ RowLayout {
|
||||||
id: applicationNameLabel
|
id: applicationNameLabel
|
||||||
Layout.leftMargin: PlasmaCore.Units.smallSpacing
|
Layout.leftMargin: PlasmaCore.Units.smallSpacing
|
||||||
Layout.fillWidth: true
|
Layout.fillWidth: true
|
||||||
opacity: 0.8
|
opacity: 0.6
|
||||||
textFormat: Text.PlainText
|
textFormat: Text.PlainText
|
||||||
elide: Text.ElideLeft
|
elide: Text.ElideLeft
|
||||||
|
font.bold: true
|
||||||
text: notificationHeading.applicationName + (notificationHeading.originName ? " · " + notificationHeading.originName : "")
|
text: notificationHeading.applicationName + (notificationHeading.originName ? " · " + notificationHeading.originName : "")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -4,9 +4,9 @@
|
||||||
* SPDX-License-Identifier: LGPL-2.0-or-later
|
* SPDX-License-Identifier: LGPL-2.0-or-later
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import QtQuick 2.0
|
import QtQuick
|
||||||
import QtQuick.Layouts 1.1
|
import QtQuick.Layouts
|
||||||
import Qt5Compat.GraphicalEffects
|
import QtQuick.Effects
|
||||||
|
|
||||||
import org.kde.plasma.core 2.0 as PlasmaCore
|
import org.kde.plasma.core 2.0 as PlasmaCore
|
||||||
import org.kde.plasma.components 3.0 as PlasmaComponents3
|
import org.kde.plasma.components 3.0 as PlasmaComponents3
|
||||||
|
|
@ -62,13 +62,16 @@ MouseArea {
|
||||||
id: previewBackground
|
id: previewBackground
|
||||||
anchors.fill: parent
|
anchors.fill: parent
|
||||||
fillMode: Image.PreserveAspectCrop
|
fillMode: Image.PreserveAspectCrop
|
||||||
layer.enabled: true
|
|
||||||
opacity: 0.25
|
opacity: 0.25
|
||||||
pixmap: thumbnailer.pixmap
|
pixmap: thumbnailer.pixmap
|
||||||
layer.effect: FastBlur {
|
|
||||||
|
layer.enabled: true
|
||||||
|
layer.effect: MultiEffect {
|
||||||
source: previewBackground
|
source: previewBackground
|
||||||
anchors.fill: parent
|
anchors.fill: parent
|
||||||
radius: 30
|
autoPaddingEnabled: false
|
||||||
|
blurEnabled: true
|
||||||
|
blur: 1.0
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,6 @@
|
||||||
import QtQuick 2.4
|
import QtQuick 2.4
|
||||||
import QtQuick.Layouts 1.1
|
import QtQuick.Layouts 1.1
|
||||||
import QtQuick.Window 2.15
|
import QtQuick.Window 2.15
|
||||||
import Qt5Compat.GraphicalEffects
|
|
||||||
|
|
||||||
import org.kde.taskmanager 0.1 as TaskManager
|
import org.kde.taskmanager 0.1 as TaskManager
|
||||||
import org.kde.plasma.plasmoid 2.0
|
import org.kde.plasma.plasmoid 2.0
|
||||||
|
|
|
||||||
|
|
@ -226,9 +226,8 @@ Item {
|
||||||
wId: delegate.window.internalId
|
wId: delegate.window.internalId
|
||||||
anchors.fill: parent
|
anchors.fill: parent
|
||||||
|
|
||||||
layer {
|
layer.enabled: true
|
||||||
enabled: true
|
layer.effect: ColorOverlay {
|
||||||
effect: ColorOverlay {
|
|
||||||
color: Qt.rgba(0, 0, 0, delegate.darken)
|
color: Qt.rgba(0, 0, 0, delegate.darken)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -236,7 +235,6 @@ Item {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -120,8 +120,8 @@ MouseArea {
|
||||||
|
|
||||||
// darken effect as task gets away from the centre of the screen
|
// darken effect as task gets away from the centre of the screen
|
||||||
darken: {
|
darken: {
|
||||||
let distFromCentreProgress = Math.abs(x - repeater.leftMargin) / taskSwitcherState.taskWidth;
|
const distFromCentreProgress = Math.abs(x - repeater.leftMargin) / taskSwitcherState.taskWidth;
|
||||||
let upperBoundAdjust = Math.min(0.5, distFromCentreProgress) - 0.2;
|
const upperBoundAdjust = Math.min(0.5, distFromCentreProgress) - 0.2;
|
||||||
return Math.max(0, upperBoundAdjust);
|
return Math.max(0, upperBoundAdjust);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,6 @@
|
||||||
|
|
||||||
import QtQuick
|
import QtQuick
|
||||||
import QtQuick.Layouts
|
import QtQuick.Layouts
|
||||||
import Qt5Compat.GraphicalEffects
|
|
||||||
|
|
||||||
import org.kde.plasma.core as PlasmaCore
|
import org.kde.plasma.core as PlasmaCore
|
||||||
import org.kde.plasma.components 3.0 as PlasmaComponents
|
import org.kde.plasma.components 3.0 as PlasmaComponents
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,6 @@
|
||||||
import QtQuick 2.15
|
import QtQuick 2.15
|
||||||
import QtQuick.Layouts 1.15
|
import QtQuick.Layouts 1.15
|
||||||
import QtQuick.Controls 2.15
|
import QtQuick.Controls 2.15
|
||||||
import Qt5Compat.GraphicalEffects
|
|
||||||
|
|
||||||
import org.kde.plasma.core 2.0 as PlasmaCore
|
import org.kde.plasma.core 2.0 as PlasmaCore
|
||||||
import org.kde.plasma.plasma5support 2.0 as P5Support
|
import org.kde.plasma.plasma5support 2.0 as P5Support
|
||||||
|
|
@ -29,19 +28,8 @@ Item {
|
||||||
intervalAlignment: P5Support.Types.AlignToMinute
|
intervalAlignment: P5Support.Types.AlignToMinute
|
||||||
}
|
}
|
||||||
|
|
||||||
DropShadow {
|
|
||||||
anchors.fill: parent
|
|
||||||
source: clockColumn
|
|
||||||
cached: true
|
|
||||||
verticalOffset: 1
|
|
||||||
radius: 4
|
|
||||||
samples: 6
|
|
||||||
color: Qt.rgba(0, 0, 0, 0.4)
|
|
||||||
}
|
|
||||||
|
|
||||||
ColumnLayout {
|
ColumnLayout {
|
||||||
id: clockColumn
|
id: clockColumn
|
||||||
opacity: 0.8
|
|
||||||
spacing: PlasmaCore.Units.gridUnit
|
spacing: PlasmaCore.Units.gridUnit
|
||||||
|
|
||||||
anchors.top: parent.top
|
anchors.top: parent.top
|
||||||
|
|
@ -55,6 +43,11 @@ Item {
|
||||||
Layout.alignment: root.layoutAlignment
|
Layout.alignment: root.layoutAlignment
|
||||||
font.weight: Font.Bold
|
font.weight: Font.Bold
|
||||||
font.pointSize: 36
|
font.pointSize: 36
|
||||||
|
|
||||||
|
layer.enabled: true
|
||||||
|
layer.effect: MobileShell.TextDropShadow {
|
||||||
|
blurMax: 16
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
PC3.Label {
|
PC3.Label {
|
||||||
|
|
@ -64,6 +57,11 @@ Item {
|
||||||
Layout.alignment: root.layoutAlignment
|
Layout.alignment: root.layoutAlignment
|
||||||
font.weight: Font.Bold
|
font.weight: Font.Bold
|
||||||
font.pointSize: 10
|
font.pointSize: 10
|
||||||
|
|
||||||
|
layer.enabled: true
|
||||||
|
layer.effect: MobileShell.TextDropShadow {
|
||||||
|
blurMax: 16
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,13 +1,10 @@
|
||||||
/*
|
// SPDX-FileCopyrightText: 2020-2023 Devin Lin <espidev@gmail.com>
|
||||||
* SPDX-FileCopyrightText: 2020-2022 Devin Lin <espidev@gmail.com>
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
*
|
|
||||||
* SPDX-License-Identifier: GPL-2.0-or-later
|
|
||||||
*/
|
|
||||||
|
|
||||||
import QtQuick 2.12
|
import QtQuick
|
||||||
import QtQuick.Controls 2.1
|
import QtQuick.Controls
|
||||||
import QtQuick.Layouts 1.1
|
import QtQuick.Layouts
|
||||||
import Qt5Compat.GraphicalEffects
|
import QtQuick.Effects
|
||||||
|
|
||||||
import org.kde.plasma.components 3.0 as PlasmaComponents
|
import org.kde.plasma.components 3.0 as PlasmaComponents
|
||||||
import org.kde.plasma.core 2.0 as PlasmaCore
|
import org.kde.plasma.core 2.0 as PlasmaCore
|
||||||
|
|
@ -58,16 +55,6 @@ Rectangle {
|
||||||
id: haptics
|
id: haptics
|
||||||
}
|
}
|
||||||
|
|
||||||
RectangularGlow {
|
|
||||||
anchors.topMargin: 1
|
|
||||||
anchors.fill: passwordBar
|
|
||||||
cached: true
|
|
||||||
glowRadius: 4
|
|
||||||
spread: 0.2
|
|
||||||
color: keypadRoot.dropShadowColor
|
|
||||||
opacity: (Math.sin(2*((Math.PI / 2) * keypadRoot.swipeProgress + 1.5 * Math.PI)) + 1)
|
|
||||||
}
|
|
||||||
|
|
||||||
// pin display and bar
|
// pin display and bar
|
||||||
PasswordBar {
|
PasswordBar {
|
||||||
id: passwordBar
|
id: passwordBar
|
||||||
|
|
@ -83,6 +70,15 @@ Rectangle {
|
||||||
|
|
||||||
keypadOpen: swipeProgress === 1
|
keypadOpen: swipeProgress === 1
|
||||||
previewCharIndex: -2
|
previewCharIndex: -2
|
||||||
|
|
||||||
|
layer.enabled: true
|
||||||
|
layer.effect: MultiEffect {
|
||||||
|
blurMax: 16
|
||||||
|
shadowEnabled: true
|
||||||
|
shadowVerticalOffset: 1
|
||||||
|
shadowOpacity: 0.3
|
||||||
|
shadowColor: keypadRoot.dropShadowColor
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// actual number keys
|
// actual number keys
|
||||||
|
|
@ -135,18 +131,15 @@ Rectangle {
|
||||||
id: keyRect
|
id: keyRect
|
||||||
radius: grid.keyRadius
|
radius: grid.keyRadius
|
||||||
color: button.pressed ? keypadRoot.buttonPressedColor : keypadRoot.buttonColor
|
color: button.pressed ? keypadRoot.buttonPressedColor : keypadRoot.buttonColor
|
||||||
|
|
||||||
RectangularGlow {
|
|
||||||
anchors.topMargin: 1
|
|
||||||
anchors.fill: parent
|
|
||||||
|
|
||||||
z: -1
|
|
||||||
cornerRadius: keyRect.radius * 2
|
|
||||||
cached: true
|
|
||||||
glowRadius: 2
|
|
||||||
spread: 0.2
|
|
||||||
color: button.pressed ? keypadRoot.buttonPressedColor : keypadRoot.dropShadowColor
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
layer.enabled: true
|
||||||
|
layer.effect: MultiEffect {
|
||||||
|
blurMax: 16
|
||||||
|
shadowEnabled: true
|
||||||
|
shadowVerticalOffset: 1
|
||||||
|
shadowOpacity: 0.3
|
||||||
|
shadowColor: button.pressed ? keypadRoot.buttonPressedColor : keypadRoot.dropShadowColor
|
||||||
}
|
}
|
||||||
|
|
||||||
onPressedChanged: {
|
onPressedChanged: {
|
||||||
|
|
|
||||||
|
|
@ -1,14 +1,10 @@
|
||||||
/*
|
// SPDX-FileCopyrightText: 2019 Nicolas Fella <nicolas.fella@gmx.de>
|
||||||
* SPDX-FileCopyrightText: 2019 Nicolas Fella <nicolas.fella@gmx.de>
|
// SPDX-FileCopyrightText: 2021-2022 Devin Lin <espidev@gmail.com>
|
||||||
* SPDX-FileCopyrightText: 2021-2022 Devin Lin <espidev@gmail.com>
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
*
|
|
||||||
* SPDX-License-Identifier: GPL-2.0-or-later
|
|
||||||
*/
|
|
||||||
|
|
||||||
import QtQuick 2.12
|
import QtQuick
|
||||||
import QtQuick.Controls 2.15
|
import QtQuick.Controls
|
||||||
import QtQuick.Layouts 1.15
|
import QtQuick.Layouts
|
||||||
import Qt5Compat.GraphicalEffects
|
|
||||||
|
|
||||||
import org.kde.plasma.core 2.0 as PlasmaCore
|
import org.kde.plasma.core 2.0 as PlasmaCore
|
||||||
import org.kde.notificationmanager 1.1 as Notifications
|
import org.kde.notificationmanager 1.1 as Notifications
|
||||||
|
|
@ -47,7 +43,7 @@ Item {
|
||||||
asynchronous: true
|
asynchronous: true
|
||||||
sourceComponent: WallpaperBlur {
|
sourceComponent: WallpaperBlur {
|
||||||
source: wallpaper
|
source: wallpaper
|
||||||
blur: root.notificationsShown || root.drawerOpen // only blur once animation finished for performance
|
shouldBlur: root.notificationsShown || root.drawerOpen // only blur once animation finished for performance
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,9 @@
|
||||||
/*
|
// SPDX-FileCopyrightText: 2021-2023 Devin Lin <espidev@gmail.com>
|
||||||
* SPDX-FileCopyrightText: 2021-2022 Devin Lin <espidev@gmail.com>
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
* SPDX-License-Identifier: GPL-2.0-or-later
|
|
||||||
*/
|
|
||||||
|
|
||||||
import QtQuick 2.12
|
import QtQuick
|
||||||
import QtQuick.Layouts 1.1
|
import QtQuick.Layouts
|
||||||
|
import QtQuick.Effects
|
||||||
|
|
||||||
import org.kde.plasma.core 2.0 as PlasmaCore
|
import org.kde.plasma.core 2.0 as PlasmaCore
|
||||||
import org.kde.plasma.workspace.keyboardlayout 1.0
|
import org.kde.plasma.workspace.keyboardlayout 1.0
|
||||||
|
|
@ -64,6 +63,15 @@ Loader {
|
||||||
Layout.maximumWidth: PlasmaCore.Units.gridUnit * 25
|
Layout.maximumWidth: PlasmaCore.Units.gridUnit * 25
|
||||||
Layout.leftMargin: PlasmaCore.Units.gridUnit
|
Layout.leftMargin: PlasmaCore.Units.gridUnit
|
||||||
Layout.rightMargin: PlasmaCore.Units.gridUnit
|
Layout.rightMargin: PlasmaCore.Units.gridUnit
|
||||||
|
|
||||||
|
layer.enabled: true
|
||||||
|
layer.effect: MultiEffect {
|
||||||
|
blurMax: 16
|
||||||
|
shadowEnabled: true
|
||||||
|
shadowVerticalOffset: 1
|
||||||
|
shadowOpacity: 0.5
|
||||||
|
shadowColor: Qt.lighter(PlasmaCore.Theme.backgroundColor, 0.1)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
NotificationsComponent {
|
NotificationsComponent {
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
// SPDX-FileCopyrightText: 2022 Devin Lin <espidev@gmail.com>
|
// SPDX-FileCopyrightText: 2022 Devin Lin <espidev@gmail.com>
|
||||||
// SPDX-License-Identifier: GPL-2.0-or-later
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
import QtQml 2.15
|
import QtQml
|
||||||
import QtQuick 2.15
|
import QtQuick
|
||||||
|
|
||||||
QtObject {
|
QtObject {
|
||||||
id: root
|
id: root
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,9 @@
|
||||||
/*
|
// SPDX-FileCopyrightText: 2021-2022 Devin Lin <espidev@gmail.com>
|
||||||
* SPDX-FileCopyrightText: 2021-2022 Devin Lin <espidev@gmail.com>
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
* SPDX-License-Identifier: GPL-2.0-or-later
|
|
||||||
*/
|
|
||||||
|
|
||||||
import QtQuick 2.12
|
import QtQuick
|
||||||
import QtQuick.Layouts 1.1
|
import QtQuick.Layouts
|
||||||
|
import QtQuick.Effects
|
||||||
|
|
||||||
import org.kde.plasma.core 2.0 as PlasmaCore
|
import org.kde.plasma.core 2.0 as PlasmaCore
|
||||||
import org.kde.plasma.workspace.keyboardlayout 1.0
|
import org.kde.plasma.workspace.keyboardlayout 1.0
|
||||||
|
|
@ -49,6 +48,15 @@ Loader {
|
||||||
Layout.alignment: Qt.AlignLeft
|
Layout.alignment: Qt.AlignLeft
|
||||||
Layout.fillWidth: true
|
Layout.fillWidth: true
|
||||||
Layout.maximumWidth: PlasmaCore.Units.gridUnit * 25
|
Layout.maximumWidth: PlasmaCore.Units.gridUnit * 25
|
||||||
|
|
||||||
|
layer.enabled: true
|
||||||
|
layer.effect: MultiEffect {
|
||||||
|
blurMax: 16
|
||||||
|
shadowEnabled: true
|
||||||
|
shadowVerticalOffset: 1
|
||||||
|
shadowOpacity: 0.5
|
||||||
|
shadowColor: Qt.lighter(PlasmaCore.Theme.backgroundColor, 0.1)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,12 +1,8 @@
|
||||||
/*
|
// SPDX-FileCopyrightText: 2022 Devin Lin <espidev@gmail.com>
|
||||||
* SPDX-FileCopyrightText: 2022 Devin Lin <espidev@gmail.com>
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
*
|
|
||||||
* SPDX-License-Identifier: GPL-2.0-or-later
|
|
||||||
*/
|
|
||||||
|
|
||||||
import QtQuick 2.12
|
import QtQuick
|
||||||
import QtQuick.Layouts 1.1
|
import QtQuick.Layouts
|
||||||
import Qt5Compat.GraphicalEffects
|
|
||||||
|
|
||||||
import org.kde.plasma.core 2.0 as PlasmaCore
|
import org.kde.plasma.core 2.0 as PlasmaCore
|
||||||
import org.kde.notificationmanager 1.1 as Notifications
|
import org.kde.notificationmanager 1.1 as Notifications
|
||||||
|
|
|
||||||
|
|
@ -1,12 +1,9 @@
|
||||||
/*
|
// SPDX-FileCopyrightText: 2020-2022 Devin Lin <espidev@gmail.com>
|
||||||
* SPDX-FileCopyrightText: 2020-2022 Devin Lin <espidev@gmail.com>
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
* SPDX-License-Identifier: GPL-2.0-or-later
|
|
||||||
*/
|
|
||||||
|
|
||||||
import QtQuick 2.12
|
import QtQuick
|
||||||
import QtQuick.Controls 2.1
|
import QtQuick.Controls
|
||||||
import QtQuick.Layouts 1.1
|
import QtQuick.Layouts
|
||||||
import Qt5Compat.GraphicalEffects
|
|
||||||
|
|
||||||
import org.kde.plasma.core 2.0 as PlasmaCore
|
import org.kde.plasma.core 2.0 as PlasmaCore
|
||||||
import org.kde.plasma.workspace.keyboardlayout 1.0
|
import org.kde.plasma.workspace.keyboardlayout 1.0
|
||||||
|
|
|
||||||
|
|
@ -3,16 +3,17 @@
|
||||||
* SPDX-License-Identifier: GPL-2.0-or-later
|
* SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import QtQuick 2.12
|
import QtQuick
|
||||||
import Qt5Compat.GraphicalEffects
|
import QtQuick.Effects
|
||||||
|
|
||||||
FastBlur {
|
MultiEffect {
|
||||||
id: fastBlur
|
autoPaddingEnabled: false
|
||||||
cached: true
|
blurEnabled: true
|
||||||
radius: 50
|
blurMax: 50
|
||||||
|
blur: 1.0
|
||||||
|
|
||||||
property bool blur
|
property bool shouldBlur
|
||||||
opacity: blur ? 1 : 0
|
opacity: shouldBlur ? 1 : 0
|
||||||
|
|
||||||
Behavior on opacity {
|
Behavior on opacity {
|
||||||
NumberAnimation {
|
NumberAnimation {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue