/** * SPDX-FileCopyrightText: 2019 Matthieu Gallien * SPDX-FileCopyrightText: 2021-2023 Bart De Vries * * SPDX-License-Identifier: LGPL-3.0-or-later */ #pragma once #include #include class QDBusPendingCallWatcher; class PowerManagementInterfacePrivate; class PowerManagementInterface : public QObject { Q_OBJECT Q_PROPERTY(bool preventSleep READ preventSleep WRITE setPreventSleep NOTIFY preventSleepChanged) Q_PROPERTY(bool sleepInhibited READ sleepInhibited NOTIFY sleepInhibitedChanged) public: explicit PowerManagementInterface(QObject *parent = nullptr); ~PowerManagementInterface() override; [[nodiscard]] bool preventSleep() const; [[nodiscard]] bool sleepInhibited() const; Q_SIGNALS: void preventSleepChanged(); void sleepInhibitedChanged(); public Q_SLOTS: void setPreventSleep(bool value); void retryInhibitingSleep(); private Q_SLOTS: void hostSleepInhibitChanged(); void inhibitDBusCallFinishedPlasmaWorkspace(QDBusPendingCallWatcher *aWatcher); void uninhibitDBusCallFinishedPlasmaWorkspace(QDBusPendingCallWatcher *aWatcher); void inhibitDBusCallFinishedGnomeWorkspace(QDBusPendingCallWatcher *aWatcher); void uninhibitDBusCallFinishedGnomeWorkspace(QDBusPendingCallWatcher *aWatcher); private: void inhibitSleepPlasmaWorkspace(); void uninhibitSleepPlasmaWorkspace(); void inhibitSleepGnomeWorkspace(); void uninhibitSleepGnomeWorkspace(); void inhibitSleepWindowsWorkspace(); void uninhibitSleepWindowsWorkspace(); std::unique_ptr d; };