2020-08-02 22:22:19 +00:00
|
|
|
/*
|
|
|
|
KWin - the KDE window manager
|
|
|
|
This file is part of the KDE project.
|
2018-08-21 20:06:42 +00:00
|
|
|
|
2020-08-02 22:22:19 +00:00
|
|
|
SPDX-FileCopyrightText: 2018 Roman Gilg <subdiff@gmail.com>
|
2018-08-21 20:06:42 +00:00
|
|
|
|
2020-08-02 22:22:19 +00:00
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
*/
|
2018-08-21 20:06:42 +00:00
|
|
|
#include "databridge.h"
|
|
|
|
#include "clipboard.h"
|
2018-08-22 12:56:48 +00:00
|
|
|
#include "dnd.h"
|
2019-07-02 19:56:03 +00:00
|
|
|
#include "selection.h"
|
|
|
|
#include "xwayland.h"
|
2018-08-21 20:06:42 +00:00
|
|
|
|
2019-07-02 19:56:03 +00:00
|
|
|
#include "abstract_client.h"
|
2018-08-21 20:06:42 +00:00
|
|
|
#include "atoms.h"
|
|
|
|
#include "wayland_server.h"
|
|
|
|
#include "workspace.h"
|
|
|
|
|
2020-05-19 08:24:08 +00:00
|
|
|
#include <KWayland/Client/connection_thread.h>
|
2018-08-21 20:06:42 +00:00
|
|
|
#include <KWayland/Client/datadevicemanager.h>
|
2019-07-02 19:56:03 +00:00
|
|
|
#include <KWayland/Client/seat.h>
|
2018-08-21 20:06:42 +00:00
|
|
|
|
2020-04-29 15:18:41 +00:00
|
|
|
#include <KWaylandServer/datadevicemanager_interface.h>
|
|
|
|
#include <KWaylandServer/datadevice_interface.h>
|
|
|
|
#include <KWaylandServer/seat_interface.h>
|
2018-08-21 20:06:42 +00:00
|
|
|
|
2019-07-02 19:56:03 +00:00
|
|
|
using namespace KWayland::Client;
|
2020-04-29 15:18:41 +00:00
|
|
|
using namespace KWaylandServer;
|
2019-07-02 19:56:03 +00:00
|
|
|
|
|
|
|
namespace KWin
|
|
|
|
{
|
|
|
|
namespace Xwl
|
|
|
|
{
|
2018-08-21 20:06:42 +00:00
|
|
|
|
2020-08-11 16:36:48 +00:00
|
|
|
KWIN_SINGLETON_FACTORY(DataBridge)
|
2019-07-02 19:56:03 +00:00
|
|
|
|
2020-08-11 16:36:48 +00:00
|
|
|
void DataBridge::destroy()
|
2018-08-21 20:06:42 +00:00
|
|
|
{
|
2020-08-11 16:36:48 +00:00
|
|
|
delete s_self;
|
2018-08-21 20:06:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
DataBridge::DataBridge(QObject *parent)
|
|
|
|
: QObject(parent)
|
|
|
|
{
|
|
|
|
s_self = this;
|
2019-07-02 19:56:03 +00:00
|
|
|
|
|
|
|
DataDeviceManager *dataDeviceManager = waylandServer()->internalDataDeviceManager();
|
|
|
|
Seat *seat = waylandServer()->internalSeat();
|
|
|
|
m_dataDevice = dataDeviceManager->getDataDevice(seat, this);
|
2018-08-21 20:06:42 +00:00
|
|
|
|
2019-07-02 19:56:03 +00:00
|
|
|
const DataDeviceManagerInterface *dataDeviceManagerInterface =
|
|
|
|
waylandServer()->dataDeviceManager();
|
|
|
|
|
2018-08-21 20:06:42 +00:00
|
|
|
auto *dc = new QMetaObject::Connection();
|
2019-07-02 19:56:03 +00:00
|
|
|
*dc = connect(dataDeviceManagerInterface, &DataDeviceManagerInterface::dataDeviceCreated, this,
|
|
|
|
[this, dc](DataDeviceInterface *dataDeviceInterface) {
|
|
|
|
if (m_dataDeviceInterface) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (dataDeviceInterface->client() != waylandServer()->internalConnection()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
QObject::disconnect(*dc);
|
|
|
|
delete dc;
|
|
|
|
m_dataDeviceInterface = dataDeviceInterface;
|
|
|
|
init();
|
|
|
|
}
|
2018-08-21 20:06:42 +00:00
|
|
|
);
|
2020-05-19 08:24:08 +00:00
|
|
|
|
|
|
|
waylandServer()->dispatch();
|
2018-08-21 20:06:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
DataBridge::~DataBridge()
|
|
|
|
{
|
|
|
|
s_self = nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
void DataBridge::init()
|
|
|
|
{
|
|
|
|
m_clipboard = new Clipboard(atoms->clipboard, this);
|
2018-08-22 12:56:48 +00:00
|
|
|
m_dnd = new Dnd(atoms->xdnd_selection, this);
|
2018-08-21 20:06:42 +00:00
|
|
|
waylandServer()->dispatch();
|
2020-08-06 08:07:36 +00:00
|
|
|
kwinApp()->installNativeEventFilter(this);
|
2018-08-21 20:06:42 +00:00
|
|
|
}
|
|
|
|
|
2020-08-06 08:07:36 +00:00
|
|
|
bool DataBridge::nativeEventFilter(const QByteArray &eventType, void *message, long int *)
|
2018-08-21 20:06:42 +00:00
|
|
|
{
|
2020-08-06 08:07:36 +00:00
|
|
|
if (eventType == "xcb_generic_event_t") {
|
|
|
|
xcb_generic_event_t *event = static_cast<xcb_generic_event_t *>(message);
|
|
|
|
return m_clipboard->filterEvent(event) || m_dnd->filterEvent(event);
|
2018-08-22 12:56:48 +00:00
|
|
|
}
|
2018-08-21 20:06:42 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2019-07-02 19:56:03 +00:00
|
|
|
DragEventReply DataBridge::dragMoveFilter(Toplevel *target, const QPoint &pos)
|
2018-08-22 12:56:48 +00:00
|
|
|
{
|
|
|
|
if (!m_dnd) {
|
|
|
|
return DragEventReply::Wayland;
|
|
|
|
}
|
|
|
|
return m_dnd->dragMoveFilter(target, pos);
|
|
|
|
}
|
|
|
|
|
2019-07-02 19:56:03 +00:00
|
|
|
} // namespace Xwl
|
|
|
|
} // namespace KWin
|