93e0265e4e
Once in a while, we receive complaints from other fellow KDE developers about the file organization of kwin. This change addresses some of those complaints by moving all of source code in a separate directory, src/, thus making the project structure more traditional. Things such as tests are kept in their own toplevel directories. This change may wreak havoc on merge requests that add new files to kwin, but if a patch modifies an already existing file, git should be smart enough to figure out that the file has been relocated. We may potentially split the src/ directory further to make navigating the source code easier, but hopefully this is good enough already.
52 lines
1.2 KiB
C++
52 lines
1.2 KiB
C++
/*
|
|
KWin - the KDE window manager
|
|
This file is part of the KDE project.
|
|
|
|
SPDX-FileCopyrightText: 2013 Martin Gräßlin <mgraesslin@kde.org>
|
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later
|
|
*/
|
|
#ifndef KWIN_SCREENLOCKERWATCHER_H
|
|
#define KWIN_SCREENLOCKERWATCHER_H
|
|
|
|
#include <QObject>
|
|
|
|
#include <kwinglobals.h>
|
|
|
|
class OrgFreedesktopScreenSaverInterface;
|
|
class OrgKdeScreensaverInterface;
|
|
class QDBusServiceWatcher;
|
|
class QDBusPendingCallWatcher;
|
|
|
|
namespace KWin
|
|
{
|
|
|
|
class KWIN_EXPORT ScreenLockerWatcher : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
~ScreenLockerWatcher() override;
|
|
bool isLocked() const {
|
|
return m_locked;
|
|
}
|
|
Q_SIGNALS:
|
|
void locked(bool locked);
|
|
void aboutToLock();
|
|
private Q_SLOTS:
|
|
void setLocked(bool activated);
|
|
void activeQueried(QDBusPendingCallWatcher *watcher);
|
|
void serviceOwnerChanged(const QString &serviceName, const QString &oldOwner, const QString &newOwner);
|
|
void serviceRegisteredQueried();
|
|
void serviceOwnerQueried();
|
|
private:
|
|
void initialize();
|
|
OrgFreedesktopScreenSaverInterface *m_interface = nullptr;
|
|
OrgKdeScreensaverInterface *m_kdeInterface = nullptr;
|
|
QDBusServiceWatcher *m_serviceWatcher;
|
|
bool m_locked;
|
|
|
|
KWIN_SINGLETON(ScreenLockerWatcher)
|
|
};
|
|
}
|
|
|
|
#endif
|