KWin
Loading...
Searching...
No Matches
dpms.h
Go to the documentation of this file.
1/*
2 SPDX-FileCopyrightText: 2015 Martin Gräßlin <mgraesslin@kde.org>
3
4 SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
5*/
6#pragma once
7
8#include "kwin_export.h"
9
10#include <QObject>
11
12#include <memory>
13
14namespace KWin
15{
16class Display;
17class DpmsManagerInterfacePrivate;
18
51class KWIN_EXPORT DpmsManagerInterface : public QObject
52{
53 Q_OBJECT
54
55public:
56 explicit DpmsManagerInterface(Display *display, QObject *parent = nullptr);
58
59private:
60 std::unique_ptr<DpmsManagerInterfacePrivate> d;
61};
62
63}
Class holding the Wayland server display loop.
Definition display.h:34
Global for server side Display Power Management Signaling interface.
Definition dpms.h:52
struct _XDisplay Display