-
Notifications
You must be signed in to change notification settings - Fork 6
/
idle_inhibition.h
56 lines (44 loc) · 1.19 KB
/
idle_inhibition.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
/*
KWin - the KDE window manager
This file is part of the KDE project.
SPDX-FileCopyrightText: 2017 Martin Flöser <mgraesslin@kde.org>
SPDX-FileCopyrightText: 2018 Vlad Zahorodnii <vlad.zahorodnii@kde.org>
SPDX-License-Identifier: GPL-2.0-or-later
*/
#pragma once
#include <QObject>
#include <QVector>
#include <QMap>
namespace KWaylandServer
{
class IdleInterface;
}
using KWaylandServer::IdleInterface;
namespace KWin
{
class AbstractClient;
class IdleInhibition : public QObject
{
Q_OBJECT
public:
explicit IdleInhibition(IdleInterface *idle);
~IdleInhibition() override;
void registerClient(AbstractClient *client);
bool isInhibited() const {
return !m_idleInhibitors.isEmpty();
}
bool isInhibited(AbstractClient *client) const {
return m_idleInhibitors.contains(client);
}
private Q_SLOTS:
void slotWorkspaceCreated();
void slotDesktopChanged();
private:
void inhibit(AbstractClient *client);
void uninhibit(AbstractClient *client);
void update(AbstractClient *client);
IdleInterface *m_idle;
QVector<AbstractClient *> m_idleInhibitors;
QMap<AbstractClient *, QMetaObject::Connection> m_connections;
};
}