KWin
Loading...
Searching...
No Matches
datacontroldevicemanager_v1.h
Go to the documentation of this file.
1/*
2 SPDX-FileCopyrightText: 2020 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#pragma once
7
8#include "kwin_export.h"
9
10#include <QObject>
11#include <memory>
12
13namespace KWin
14{
15class Display;
16class DataControlSourceV1Interface;
17class DataControlDeviceManagerV1InterfacePrivate;
18class DataControlDeviceV1Interface;
19
26class KWIN_EXPORT DataControlDeviceManagerV1Interface : public QObject
27{
28 Q_OBJECT
29
30public:
31 explicit DataControlDeviceManagerV1Interface(Display *display, QObject *parent = nullptr);
33
34Q_SIGNALS:
37
38private:
39 std::unique_ptr<DataControlDeviceManagerV1InterfacePrivate> d;
40};
41
42}
void dataDeviceCreated(KWin::DataControlDeviceV1Interface *dataDevice)
void dataSourceCreated(KWin::DataControlSourceV1Interface *dataSource)
Class holding the Wayland server display loop.
Definition display.h:34
struct _XDisplay Display