54 lines
1.3 KiB
C++
54 lines
1.3 KiB
C++
/*
|
|
SPDX-FileCopyrightText: 2014 Martin Gräßlin <mgraesslin@kde.org>
|
|
SPDX-FileCopyrightText: 2020 David Edmundson <davidedmundson@kde.org>
|
|
|
|
SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
|
|
*/
|
|
#pragma once
|
|
|
|
#include <QObject>
|
|
|
|
#include <KWaylandServer/kwaylandserver_export.h>
|
|
#include "datadevice_interface.h"
|
|
|
|
namespace KWaylandServer
|
|
{
|
|
|
|
class Display;
|
|
class DataSourceInterface;
|
|
class DataDeviceManagerInterfacePrivate;
|
|
|
|
/**
|
|
* @brief Represents the Global for wl_data_device_manager interface.
|
|
*
|
|
*/
|
|
class KWAYLANDSERVER_EXPORT DataDeviceManagerInterface : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit DataDeviceManagerInterface(Display *display, QObject *parent = nullptr);
|
|
~DataDeviceManagerInterface() override;
|
|
|
|
/**
|
|
* Drag and Drop actions supported by the DataSourceInterface.
|
|
*/
|
|
enum class DnDAction {
|
|
None = 0,
|
|
Copy = 1 << 0,
|
|
Move = 1 << 1,
|
|
Ask = 1 << 2,
|
|
};
|
|
Q_DECLARE_FLAGS(DnDActions, DnDAction)
|
|
|
|
Q_SIGNALS:
|
|
void dataSourceCreated(KWaylandServer::DataSourceInterface*);
|
|
void dataDeviceCreated(KWaylandServer::DataDeviceInterface*);
|
|
|
|
private:
|
|
QScopedPointer<DataDeviceManagerInterfacePrivate> d;
|
|
};
|
|
|
|
}
|
|
|
|
Q_DECLARE_OPERATORS_FOR_FLAGS(KWaylandServer::DataDeviceManagerInterface::DnDActions)
|