2020-03-15 15:19:28 +00:00
|
|
|
/*
|
|
|
|
SPDX-FileCopyrightText: 2014 Martin Gräßlin <mgraesslin@kde.org>
|
2020-06-25 15:27:52 +00:00
|
|
|
SPDX-FileCopyrightText: 2020 David Edmundson <davidedmundson@kde.org>
|
2014-11-04 14:10:22 +00:00
|
|
|
|
2020-03-15 15:19:28 +00:00
|
|
|
SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
|
|
|
|
*/
|
2014-11-04 14:10:22 +00:00
|
|
|
#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>
|
2014-11-06 09:02:49 +00:00
|
|
|
#include "datadevice_interface.h"
|
2014-11-04 14:10:22 +00:00
|
|
|
|
2020-04-29 14:56:38 +00:00
|
|
|
namespace KWaylandServer
|
2014-11-04 14:10:22 +00:00
|
|
|
{
|
|
|
|
|
|
|
|
class Display;
|
2017-11-26 15:31:57 +00:00
|
|
|
class DataSourceInterface;
|
2020-06-25 15:27:52 +00:00
|
|
|
class DataDeviceManagerInterfacePrivate;
|
2014-11-04 14:10:22 +00:00
|
|
|
|
2015-09-10 11:36:42 +00:00
|
|
|
/**
|
|
|
|
* @brief Represents the Global for wl_data_device_manager interface.
|
|
|
|
*
|
|
|
|
**/
|
2020-06-25 15:27:52 +00:00
|
|
|
class KWAYLANDSERVER_EXPORT DataDeviceManagerInterface : public QObject
|
2014-11-04 14:10:22 +00:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
2020-12-09 20:13:19 +00:00
|
|
|
|
2014-11-04 14:10:22 +00:00
|
|
|
public:
|
2020-12-09 20:13:19 +00:00
|
|
|
explicit DataDeviceManagerInterface(Display *display, QObject *parent = nullptr);
|
2020-06-25 15:27:52 +00:00
|
|
|
~DataDeviceManagerInterface() override;
|
2014-11-04 14:10:22 +00:00
|
|
|
|
2017-11-26 15:31:57 +00:00
|
|
|
/**
|
|
|
|
* 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)
|
|
|
|
|
2014-11-04 14:10:22 +00:00
|
|
|
Q_SIGNALS:
|
2020-04-29 14:56:38 +00:00
|
|
|
void dataSourceCreated(KWaylandServer::DataSourceInterface*);
|
|
|
|
void dataDeviceCreated(KWaylandServer::DataDeviceInterface*);
|
2014-11-04 14:10:22 +00:00
|
|
|
|
|
|
|
private:
|
2020-06-25 15:27:52 +00:00
|
|
|
QScopedPointer<DataDeviceManagerInterfacePrivate> d;
|
2014-11-04 14:10:22 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2020-04-29 14:56:38 +00:00
|
|
|
Q_DECLARE_OPERATORS_FOR_FLAGS(KWaylandServer::DataDeviceManagerInterface::DnDActions)
|
2017-11-26 15:31:57 +00:00
|
|
|
|
2014-11-04 14:10:22 +00:00
|
|
|
#endif
|