2018-08-22 12:56:48 +00:00
|
|
|
/********************************************************************
|
|
|
|
KWin - the KDE window manager
|
|
|
|
This file is part of the KDE project.
|
|
|
|
|
|
|
|
Copyright 2019 Roman Gilg <subdiff@gmail.com>
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*********************************************************************/
|
|
|
|
#ifndef KWIN_XWL_DND
|
|
|
|
#define KWIN_XWL_DND
|
|
|
|
|
|
|
|
#include "selection.h"
|
|
|
|
|
|
|
|
#include <QPoint>
|
|
|
|
|
|
|
|
namespace KWayland
|
|
|
|
{
|
|
|
|
namespace Client
|
|
|
|
{
|
|
|
|
class Surface;
|
|
|
|
}
|
|
|
|
namespace Server
|
|
|
|
{
|
|
|
|
class SurfaceInterface;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace KWin
|
|
|
|
{
|
|
|
|
class Toplevel;
|
|
|
|
|
|
|
|
namespace Xwl
|
|
|
|
{
|
|
|
|
class Drag;
|
|
|
|
enum class DragEventReply;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Represents the drag and drop mechanism, on X side this is the XDND protocol.
|
2019-03-25 18:11:15 +00:00
|
|
|
* For more information on XDND see: https://johnlindal.wixsite.com/xdnd
|
2019-07-02 19:56:03 +00:00
|
|
|
**/
|
2018-08-22 12:56:48 +00:00
|
|
|
class Dnd : public Selection
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
2019-07-02 19:56:03 +00:00
|
|
|
|
2018-08-22 12:56:48 +00:00
|
|
|
public:
|
|
|
|
explicit Dnd(xcb_atom_t atom, QObject *parent);
|
|
|
|
|
|
|
|
static uint32_t version();
|
|
|
|
|
|
|
|
void doHandleXfixesNotify(xcb_xfixes_selection_notify_event_t *event) override;
|
2019-07-02 19:56:03 +00:00
|
|
|
void x11OffersChanged(const QStringList &added, const QStringList &removed) override;
|
2018-08-22 12:56:48 +00:00
|
|
|
bool handleClientMessage(xcb_client_message_event_t *event) override;
|
|
|
|
|
2019-07-02 19:56:03 +00:00
|
|
|
DragEventReply dragMoveFilter(Toplevel *target, const QPoint &pos);
|
2018-08-22 12:56:48 +00:00
|
|
|
|
|
|
|
KWayland::Server::SurfaceInterface *surfaceIface() const {
|
|
|
|
return m_surfaceIface;
|
|
|
|
}
|
|
|
|
KWayland::Client::Surface *surface() const {
|
|
|
|
return m_surface;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
// start and end Wl native client drags (Wl -> Xwl)
|
|
|
|
void startDrag();
|
|
|
|
void endDrag();
|
|
|
|
void clearOldDrag(Drag *drag);
|
|
|
|
|
|
|
|
// active drag or null when no drag active
|
|
|
|
Drag *m_currentDrag = nullptr;
|
2019-07-02 19:56:03 +00:00
|
|
|
QVector<Drag *> m_oldDrags;
|
2018-08-22 12:56:48 +00:00
|
|
|
|
|
|
|
KWayland::Client::Surface *m_surface;
|
|
|
|
KWayland::Server::SurfaceInterface *m_surfaceIface = nullptr;
|
2019-07-02 19:56:03 +00:00
|
|
|
|
|
|
|
Q_DISABLE_COPY(Dnd)
|
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
|