KWin
Loading...
Searching...
No Matches
fractionalscale_v1.h
Go to the documentation of this file.
1/*
2 SPDX-FileCopyrightText: 2022 David Edmundson <davidedmundson@kde.org>
3
4 SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
5*/
6
7#pragma once
8
9#include "kwin_export.h"
10
11#include <QObject>
12#include <memory>
13
14namespace KWin
15{
16class Display;
17class FractionalScaleManagerV1InterfacePrivate;
18
19class KWIN_EXPORT FractionalScaleManagerV1Interface : public QObject
20{
21 Q_OBJECT
22
23public:
24 explicit FractionalScaleManagerV1Interface(Display *display, QObject *parent = nullptr);
26
27private:
28 std::unique_ptr<FractionalScaleManagerV1InterfacePrivate> d;
29};
30
31} // namespace KWin
Class holding the Wayland server display loop.
Definition display.h:34
struct _XDisplay Display