kwin/src/wayland/datadevicemanager_interface.h

58 lines
1.3 KiB
C
Raw Normal View History

/*
SPDX-FileCopyrightText: 2014 Martin Gräßlin <mgraesslin@kde.org>
SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
*/
#ifndef WAYLAND_SERVER_DATA_DEVICE_MANAGER_INTERFACE_H
#define WAYLAND_SERVER_DATA_DEVICE_MANAGER_INTERFACE_H
#include <QObject>
2020-04-29 14:56:38 +00:00
#include <KWaylandServer/kwaylandserver_export.h>
#include "global.h"
#include "datadevice_interface.h"
2020-04-29 14:56:38 +00:00
namespace KWaylandServer
{
class Display;
class DataSourceInterface;
2015-09-10 11:36:42 +00:00
/**
* @brief Represents the Global for wl_data_device_manager interface.
*
**/
class KWAYLANDSERVER_EXPORT DataDeviceManagerInterface : public Global
{
Q_OBJECT
public:
virtual ~DataDeviceManagerInterface();
/**
* Drag and Drop actions supported by the DataSourceInterface.
* @since 5.XX
**/
enum class DnDAction {
None = 0,
Copy = 1 << 0,
Move = 1 << 1,
Ask = 1 << 2
};
Q_DECLARE_FLAGS(DnDActions, DnDAction)
Q_SIGNALS:
2020-04-29 14:56:38 +00:00
void dataSourceCreated(KWaylandServer::DataSourceInterface*);
void dataDeviceCreated(KWaylandServer::DataDeviceInterface*);
private:
explicit DataDeviceManagerInterface(Display *display, QObject *parent = nullptr);
friend class Display;
class Private;
};
}
2020-04-29 14:56:38 +00:00
Q_DECLARE_OPERATORS_FOR_FLAGS(KWaylandServer::DataDeviceManagerInterface::DnDActions)
#endif