summaryrefslogtreecommitdiff
path: root/plugin/src/Caelestia/Internal/logindmanager.hpp
diff options
context:
space:
mode:
author2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-09-27 15:13:49 +1000
committer2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-09-27 15:13:49 +1000
commitd4dde2c02de48a0a8d89662519f0bf22bdd570e1 (patch)
treea3253cedaf8692ecf3009c5d368242112d74830d /plugin/src/Caelestia/Internal/logindmanager.hpp
parentservices/hypr: lock keys ignore mods (diff)
downloadcaelestia-shell-d4dde2c02de48a0a8d89662519f0bf22bdd570e1.tar.gz
caelestia-shell-d4dde2c02de48a0a8d89662519f0bf22bdd570e1.tar.bz2
caelestia-shell-d4dde2c02de48a0a8d89662519f0bf22bdd570e1.zip
idlemonitor: handle logind lock/unlock
Fixes #705
Diffstat (limited to '')
-rw-r--r--plugin/src/Caelestia/Internal/logindmanager.hpp (renamed from plugin/src/Caelestia/Internal/sleepnotifier.hpp)8
1 files changed, 6 insertions, 2 deletions
diff --git a/plugin/src/Caelestia/Internal/sleepnotifier.hpp b/plugin/src/Caelestia/Internal/logindmanager.hpp
index aaa6c68..72a3401 100644
--- a/plugin/src/Caelestia/Internal/sleepnotifier.hpp
+++ b/plugin/src/Caelestia/Internal/logindmanager.hpp
@@ -5,19 +5,23 @@
namespace caelestia::internal {
-class SleepNotifier : public QObject {
+class LogindManager : public QObject {
Q_OBJECT
QML_ELEMENT
public:
- explicit SleepNotifier(QObject* parent = nullptr);
+ explicit LogindManager(QObject* parent = nullptr);
signals:
void aboutToSleep();
void resumed();
+ void lockRequested();
+ void unlockRequested();
private slots:
void handlePrepareForSleep(bool sleep);
+ void handleLockRequested();
+ void handleUnlockRequested();
};
} // namespace caelestia::internal