2020-08-02 22:22:19 +00:00
|
|
|
/*
|
|
|
|
KWin - the KDE window manager
|
|
|
|
This file is part of the KDE project.
|
2018-08-22 12:56:48 +00:00
|
|
|
|
2020-08-02 22:22:19 +00:00
|
|
|
SPDX-FileCopyrightText: 2019 Roman Gilg <subdiff@gmail.com>
|
2018-08-22 12:56:48 +00:00
|
|
|
|
2020-08-02 22:22:19 +00:00
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
*/
|
2018-08-22 12:56:48 +00:00
|
|
|
#ifndef KWIN_XWL_DRAG
|
|
|
|
#define KWIN_XWL_DRAG
|
|
|
|
|
|
|
|
#include <KWayland/Client/datadevicemanager.h>
|
|
|
|
|
|
|
|
#include <QPoint>
|
|
|
|
|
|
|
|
#include <xcb/xcb.h>
|
|
|
|
|
|
|
|
namespace KWin
|
|
|
|
{
|
|
|
|
class Toplevel;
|
|
|
|
|
|
|
|
namespace Xwl
|
|
|
|
{
|
|
|
|
enum class DragEventReply;
|
|
|
|
|
|
|
|
using DnDAction = KWayland::Client::DataDeviceManager::DnDAction;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* An ongoing drag operation.
|
2019-07-29 18:58:33 +00:00
|
|
|
*/
|
2018-08-22 12:56:48 +00:00
|
|
|
class Drag : public QObject
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
2019-07-02 19:56:03 +00:00
|
|
|
|
2018-08-22 12:56:48 +00:00
|
|
|
public:
|
2019-07-02 19:56:03 +00:00
|
|
|
explicit Drag(QObject *parent = nullptr);
|
|
|
|
~Drag() override;
|
|
|
|
|
2018-08-22 12:56:48 +00:00
|
|
|
static void sendClientMessage(xcb_window_t target, xcb_atom_t type, xcb_client_message_data_t *data);
|
|
|
|
static DnDAction atomToClientAction(xcb_atom_t atom);
|
|
|
|
static xcb_atom_t clientActionToAtom(DnDAction action);
|
|
|
|
|
|
|
|
virtual bool handleClientMessage(xcb_client_message_event_t *event) = 0;
|
2019-07-02 19:56:03 +00:00
|
|
|
virtual DragEventReply moveFilter(Toplevel *target, const QPoint &pos) = 0;
|
2018-08-22 12:56:48 +00:00
|
|
|
|
|
|
|
virtual bool end() = 0;
|
|
|
|
|
|
|
|
Q_SIGNALS:
|
|
|
|
void finish(Drag *self);
|
2019-07-02 19:56:03 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
Q_DISABLE_COPY(Drag)
|
2018-08-22 12:56:48 +00:00
|
|
|
};
|
|
|
|
|
2019-07-02 19:56:03 +00:00
|
|
|
} // namespace Xwl
|
|
|
|
} // namespace KWin
|
2018-08-22 12:56:48 +00:00
|
|
|
|
|
|
|
#endif
|