-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcolormanager.h
62 lines (48 loc) · 1.36 KB
/
colormanager.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
57
58
59
60
61
62
/*
SPDX-FileCopyrightText: 2020 Vlad Zahorodnii <vlad.zahorodnii@kde.org>
SPDX-License-Identifier: GPL-2.0-or-later
*/
#pragma once
#include "kwinglobals.h"
#include <QObject>
namespace KWin
{
class AbstractOutput;
class ColorDevice;
class ColorManagerPrivate;
/**
* The ColorManager class is the entry point into color management facilities.
*/
class KWIN_EXPORT ColorManager : public QObject
{
Q_OBJECT
public:
~ColorManager() override;
/**
* Returns the color device for the specified @a output, or @c null if there is no
* any device.
*/
ColorDevice *findDevice(AbstractOutput *output) const;
/**
* Returns the list of all available color devices.
*/
QVector<ColorDevice *> devices() const;
Q_SIGNALS:
/**
* This signal is emitted when a new color device @a device has been added.
*/
void deviceAdded(ColorDevice *device);
/**
* This signal is emitted when a color device has been removed. @a device indicates
* what color device was removed.
*/
void deviceRemoved(ColorDevice *device);
private Q_SLOTS:
void handleOutputEnabled(AbstractOutput *output);
void handleOutputDisabled(AbstractOutput *output);
void handleSessionActiveChanged(bool active);
private:
QScopedPointer<ColorManagerPrivate> d;
KWIN_SINGLETON(ColorManager)
};
} // namespace KWin