mirror of
https://invent.kde.org/marcoa/shift-shell.git
synced 2026-04-26 14:23:09 +00:00
Overlay the shell's status panel and quicksettings panel over the lockscreen, instead of rendering a second copy in the lockscreen theme. This will allow us to improve the lockscreen loading speed. Key changes: - Overlay quicksettings window and the status bar over the lockscreen when it is shown - Refactor the top panel's showing logic to be cleaner (as it supports various overlay modes over fullscreen apps already) - Implement lockscreen support to the status bar and quicksettings panel in the to panel - Forward quicksettings panel requests for "unlock" over DBus to the lockscreen - Add "raiselockscreen" QML plugin to easily request a window to be raised over the lockscreen Notes: - Now that we are sharing the quicksettings panel from the shell, notifications that are already there will be shown on the lockscreen (compared to right now, where only new notifications would be shown) Depends on: - https://invent.kde.org/plasma/plasma-workspace/-/merge_requests/2339 - https://invent.kde.org/plasma/kscreenlocker/-/merge_requests/283 - https://invent.kde.org/plasma/kwin/-/merge_requests/7839 Implements: https://invent.kde.org/plasma/plasma-mobile/-/issues/199 
57 lines
No EOL
1.7 KiB
QML
57 lines
No EOL
1.7 KiB
QML
// SPDX-FileCopyrightText: 2025 Devin Lin <devin@kde.org>
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
import QtQuick
|
|
import QtQuick.Layouts
|
|
import QtQuick.Window
|
|
|
|
import org.kde.plasma.private.mobileshell as MobileShell
|
|
import org.kde.plasma.private.mobileshell.state as MobileShellState
|
|
import org.kde.plasma.private.mobileshell.raiselockscreenplugin as RaiseLockscreenPlugin
|
|
|
|
import org.kde.layershell 1.0 as LayerShell
|
|
|
|
// Raise panel window over the lockscreen when it is shown
|
|
QtObject {
|
|
id: root
|
|
required property var window
|
|
|
|
onWindowChanged: {
|
|
// Window.window may start out null, we need to wait for it to exist
|
|
if (root.window && !raiseLockscreen.initialized) {
|
|
initializeLockscreenOverlay();
|
|
}
|
|
}
|
|
|
|
function raiseOverlay() {
|
|
if (MobileShellState.LockscreenDBusClient.lockscreenActive) {
|
|
console.log('Raising top panel over the lockscreen');
|
|
raiseLockscreen.raiseOverlay();
|
|
}
|
|
}
|
|
|
|
function initializeLockscreenOverlay() {
|
|
if (!root.window) {
|
|
return;
|
|
}
|
|
|
|
raiseLockscreen.initializeOverlay(root.window);
|
|
|
|
// Raise panel if lockscreen is already active
|
|
raiseOverlay();
|
|
}
|
|
|
|
// Raise panel over the lockscreen when it is enabled
|
|
readonly property var raiseLockscreen: RaiseLockscreenPlugin.RaiseLockscreen {
|
|
id: raiseLockscreen
|
|
Component.onCompleted: root.initializeLockscreenOverlay()
|
|
}
|
|
|
|
readonly property Connections lockscreenConnections: Connections {
|
|
target: MobileShellState.LockscreenDBusClient
|
|
|
|
function onLockscreenLocked() {
|
|
root.raiseOverlay();
|
|
}
|
|
}
|
|
} |