summaryrefslogtreecommitdiff
path: root/plugin/src/Caelestia/Internal/logindmanager.hpp
diff options
context:
space:
mode:
authorFreya Murphy <freya@freyacat.org>2026-01-21 14:34:21 -0500
committerFreya Murphy <freya@freyacat.org>2026-01-22 08:37:01 -0500
commit197cb6a37fdf5a9308c87d60877fd39a7799f42c (patch)
treedd49ebba144c1f7a6508ef4f1a9f8629237ab70d /plugin/src/Caelestia/Internal/logindmanager.hpp
parentremove config saving, make background scale properly, and add quickshell desk... (diff)
downloadcaelestia-shell-197cb6a37fdf5a9308c87d60877fd39a7799f42c.tar.gz
caelestia-shell-197cb6a37fdf5a9308c87d60877fd39a7799f42c.tar.bz2
caelestia-shell-197cb6a37fdf5a9308c87d60877fd39a7799f42c.zip
remove lockscreen
Diffstat (limited to '')
-rw-r--r--plugin/src/Caelestia/Internal/logindmanager.hpp27
1 files changed, 0 insertions, 27 deletions
diff --git a/plugin/src/Caelestia/Internal/logindmanager.hpp b/plugin/src/Caelestia/Internal/logindmanager.hpp
deleted file mode 100644
index 72a3401..0000000
--- a/plugin/src/Caelestia/Internal/logindmanager.hpp
+++ /dev/null
@@ -1,27 +0,0 @@
-#pragma once
-
-#include <qobject.h>
-#include <qqmlintegration.h>
-
-namespace caelestia::internal {
-
-class LogindManager : public QObject {
- Q_OBJECT
- QML_ELEMENT
-
-public:
- 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