2020-06-01 22:29:53 +00:00
|
|
|
/*
|
|
|
|
SPDX-FileCopyrightText: 2020 David Edmundson <davidedmundson@kde.org>
|
|
|
|
|
|
|
|
SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
|
|
|
|
*/
|
|
|
|
#include "primaryselectionsource_v1_interface.h"
|
|
|
|
#include "clientconnection.h"
|
2021-08-29 05:11:06 +00:00
|
|
|
#include "primaryselectiondevicemanager_v1_interface.h"
|
2020-11-03 22:50:38 +00:00
|
|
|
#include "utils.h"
|
2020-06-01 22:29:53 +00:00
|
|
|
// Qt
|
|
|
|
#include <QStringList>
|
|
|
|
// Wayland
|
|
|
|
#include <qwayland-server-wp-primary-selection-unstable-v1.h>
|
|
|
|
// system
|
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
namespace KWaylandServer
|
|
|
|
{
|
|
|
|
class PrimarySelectionSourceV1InterfacePrivate : public QtWaylandServer::zwp_primary_selection_source_v1
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
PrimarySelectionSourceV1InterfacePrivate(PrimarySelectionSourceV1Interface *q, ::wl_resource *resource);
|
|
|
|
|
|
|
|
QStringList mimeTypes;
|
|
|
|
PrimarySelectionSourceV1Interface *q;
|
2021-08-29 05:11:06 +00:00
|
|
|
|
2020-06-01 22:29:53 +00:00
|
|
|
protected:
|
|
|
|
void zwp_primary_selection_source_v1_destroy_resource(Resource *resource) override;
|
|
|
|
void zwp_primary_selection_source_v1_offer(Resource *resource, const QString &mime_type) override;
|
|
|
|
void zwp_primary_selection_source_v1_destroy(Resource *resource) override;
|
|
|
|
};
|
|
|
|
|
|
|
|
PrimarySelectionSourceV1InterfacePrivate::PrimarySelectionSourceV1InterfacePrivate(PrimarySelectionSourceV1Interface *_q, ::wl_resource *resource)
|
|
|
|
: QtWaylandServer::zwp_primary_selection_source_v1(resource)
|
|
|
|
, q(_q)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2021-08-29 05:11:06 +00:00
|
|
|
void PrimarySelectionSourceV1InterfacePrivate::zwp_primary_selection_source_v1_destroy_resource(
|
|
|
|
QtWaylandServer::zwp_primary_selection_source_v1::Resource *resource)
|
2020-06-01 22:29:53 +00:00
|
|
|
{
|
|
|
|
Q_UNUSED(resource)
|
2021-05-13 09:33:08 +00:00
|
|
|
Q_EMIT q->aboutToBeDestroyed();
|
2020-06-01 22:29:53 +00:00
|
|
|
delete q;
|
|
|
|
}
|
|
|
|
|
|
|
|
void PrimarySelectionSourceV1InterfacePrivate::zwp_primary_selection_source_v1_offer(Resource *, const QString &mimeType)
|
|
|
|
{
|
|
|
|
mimeTypes << mimeType;
|
2021-05-13 09:33:08 +00:00
|
|
|
Q_EMIT q->mimeTypeOffered(mimeType);
|
2020-06-01 22:29:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void PrimarySelectionSourceV1InterfacePrivate::zwp_primary_selection_source_v1_destroy(QtWaylandServer::zwp_primary_selection_source_v1::Resource *resource)
|
|
|
|
{
|
|
|
|
wl_resource_destroy(resource->handle);
|
|
|
|
}
|
|
|
|
|
|
|
|
PrimarySelectionSourceV1Interface::PrimarySelectionSourceV1Interface(PrimarySelectionDeviceManagerV1Interface *parent, ::wl_resource *resource)
|
2022-01-25 07:59:59 +00:00
|
|
|
: d(new PrimarySelectionSourceV1InterfacePrivate(this, resource))
|
2020-06-01 22:29:53 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
PrimarySelectionSourceV1Interface::~PrimarySelectionSourceV1Interface() = default;
|
|
|
|
|
|
|
|
void PrimarySelectionSourceV1Interface::requestData(const QString &mimeType, qint32 fd)
|
|
|
|
{
|
|
|
|
d->send_send(mimeType, fd);
|
|
|
|
close(fd);
|
|
|
|
}
|
|
|
|
|
|
|
|
void PrimarySelectionSourceV1Interface::cancel()
|
|
|
|
{
|
|
|
|
d->send_cancelled();
|
|
|
|
}
|
|
|
|
|
|
|
|
QStringList PrimarySelectionSourceV1Interface::mimeTypes() const
|
|
|
|
{
|
|
|
|
return d->mimeTypes;
|
|
|
|
}
|
|
|
|
|
2020-06-25 15:27:52 +00:00
|
|
|
wl_client *PrimarySelectionSourceV1Interface::client() const
|
2020-06-01 22:29:53 +00:00
|
|
|
{
|
|
|
|
return d->resource()->client();
|
|
|
|
}
|
|
|
|
|
|
|
|
PrimarySelectionSourceV1Interface *PrimarySelectionSourceV1Interface::get(wl_resource *native)
|
|
|
|
{
|
2020-11-03 22:50:38 +00:00
|
|
|
if (auto sourcePrivate = resource_cast<PrimarySelectionSourceV1InterfacePrivate *>(native)) {
|
|
|
|
return sourcePrivate->q;
|
|
|
|
}
|
|
|
|
return nullptr;
|
2020-06-01 22:29:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|