KWin
Loading...
Searching...
No Matches
relativepointer_v1.h
Go to the documentation of this file.
1/*
2 SPDX-FileCopyrightText: 2016 Martin Gräßlin <mgraesslin@kde.org>
3 SPDX-FileCopyrightText: 2020 Vlad Zahorodnii <vlad.zahorodnii@kde.org>
4
5 SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
6*/
7
8#pragma once
9
10#include "kwin_export.h"
11
12#include <QObject>
13#include <memory>
14
15namespace KWin
16{
17class Display;
18class RelativePointerManagerV1InterfacePrivate;
19
27class KWIN_EXPORT RelativePointerManagerV1Interface : public QObject
28{
29 Q_OBJECT
30
31public:
32 explicit RelativePointerManagerV1Interface(Display *display, QObject *parent = nullptr);
34
35private:
36 std::unique_ptr<RelativePointerManagerV1InterfacePrivate> d;
37};
38
39} // namespace KWin
Class holding the Wayland server display loop.
Definition display.h:34
struct _XDisplay Display