shift-shell/containments/panel/qml/StatusPanel.qml
Devin Lin 3b6951bf1e panel: Overlay over lockscreen
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

![Screencast_20250612_013325](/uploads/49e9981cb863056b4c0c46a144e5ee7d/Screencast_20250612_013325.webm)
2025-07-02 10:27:33 -04:00

185 lines
6 KiB
QML

// SPDX-FileCopyrightText: 2021-2023 Devin Lin <devin@kde.org>
// SPDX-FileCopyrightText: 2015 Marco Martin <mart@kde.org>
// SPDX-License-Identifier: GPL-2.0-or-later
import QtQuick
import QtQuick.Layouts
import QtQuick.Window
import QtQml.Models
import org.kde.kirigami as Kirigami
import org.kde.plasma.plasmoid
import org.kde.plasma.core as PlasmaCore
import org.kde.plasma.private.mobileshell as MobileShell
import org.kde.plasma.private.mobileshell.shellsettingsplugin as ShellSettings
import org.kde.plasma.private.mobileshell.state as MobileShellState
import org.kde.plasma.private.mobileshell.windowplugin as WindowPlugin
import org.kde.taskmanager as TaskManager
import org.kde.notificationmanager as NotificationManager
import org.kde.layershell 1.0 as LayerShell
Item {
id: root
// The base containment item
property ContainmentItem containmentItem
//BEGIN API implementation
Connections {
target: MobileShellState.ShellDBusClient
function onOpenActionDrawerRequested() {
drawer.actionDrawer.open();
}
function onCloseActionDrawerRequested() {
drawer.actionDrawer.close();
}
}
Binding {
target: MobileShellState.ShellDBusClient
property: "isActionDrawerOpen"
value: drawer.visible
}
//END API implementation
// Startup feedback fill animation
MobileShell.StartupFeedbackPanelFill {
id: startupFeedbackColorAnimation
anchors.bottom: parent.bottom
anchors.left: parent.left
anchors.right: parent.right
fullHeight: containmentItem.height
screen: Plasmoid.screen
maximizedTracker: containmentItem.windowMaximizedTracker
visible: !containmentItem.fullscreen
}
// Status bar component
StatusBarWrapper {
id: statusBarWrapper
anchors.fill: parent
statusPanelHeight: MobileShell.Constants.topPanelHeight
transparentBackground: {
// If we are over the lockscreen, always have a transparent background.
if (MobileShellState.LockscreenDBusClient.lockscreenActive) {
return true;
}
return !containmentItem.showingApp && !containmentItem.fullscreen;
}
state: {
// If we are on the lockscreen, always show the status panel.
if (MobileShellState.LockscreenDBusClient.lockscreenActive) {
return "default";
}
return MobileShellState.ShellDBusClient.panelState;
}
onStateChanged: {
if (state != "hidden") {
containmentItem.setWindowProperties();
hiddenTimer.restart();
}
}
onUpdatePanelPropertiesRequested: containmentItem.setWindowProperties()
// Hide status bar panel if it is visible for 3 seconds (in forced "visible" mode).
Timer {
id: hiddenTimer
running: false
interval: 3000
onTriggered: {
if (statusBarWrapper.state == "visible") {
MobileShellState.ShellDBusClient.panelState = "hidden";
}
}
}
}
// Swiping area for swipe-down drawer
MobileShell.ActionDrawerOpenSurface {
id: swipeArea
actionDrawer: drawer.actionDrawer
anchors.fill: parent
readonly property alias drawerVisible: drawer.visible
readonly property alias offset: drawer.actionDrawer.offset
// if in a fullscreen app, the panels are visible, and the action drawer is opened
// set the panels to a hidden state
onDrawerVisibleChanged: {
if (statusBarWrapper.state == "visible") {
MobileShellState.ShellDBusClient.panelState = "hidden";
}
}
}
// Swipe-down drawer component
MobileShell.ActionDrawerWindow {
id: drawer
onVisibleChanged: {
if (visible && MobileShellState.LockscreenDBusClient.lockscreenActive) {
// This works as long the wayland surface is the same (no window.close(), just window.visible = false)
lockScreenOverlay.raiseOverlay();
}
}
LockscreenOverlay {
id: lockScreenOverlay
window: drawer
}
actionDrawer.restrictedPermissions: MobileShellState.LockscreenDBusClient.lockscreenActive
actionDrawer.notificationSettings: NotificationManager.Settings {}
actionDrawer.notificationModel: NotificationManager.Notifications {
showExpired: true
showDismissed: true
showJobs: drawer.actionDrawer.notificationSettings.jobsInNotifications
sortMode: NotificationManager.Notifications.SortByTypeAndUrgency
groupMode: NotificationManager.Notifications.GroupApplicationsFlat
groupLimit: 2
expandUnread: true
blacklistedDesktopEntries: drawer.actionDrawer.notificationSettings.historyBlacklistedApplications
blacklistedNotifyRcNames: drawer.actionDrawer.notificationSettings.historyBlacklistedServices
urgencies: {
var urgencies = NotificationManager.Notifications.CriticalUrgency
| NotificationManager.Notifications.NormalUrgency;
if (drawer.actionDrawer.notificationSettings.lowPriorityHistory) {
urgencies |= NotificationManager.Notifications.LowUrgency;
}
return urgencies;
}
}
Connections {
target: drawer.actionDrawer
function onPermissionsRequested() {
MobileShellState.ShellDBusClient.openLockScreenKeypad();
}
}
Connections {
target: MobileShellState.LockscreenDBusClient
function onLockscreenUnlocked() {
// Run pending actions after the lockscreen gets unlocked
drawer.actionDrawer.runPendingNotificationAction();
}
}
}
}