blob: eba8ae30228f53069853250ba17cea84cf470a69 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
|
// Copyright (C) 2017 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
#include "qwldatasource_p.h"
#include "qwldataoffer_p.h"
#include "qwldatadevice_p.h"
#include "qwldatadevicemanager_p.h"
#include <QtWaylandCompositor/private/qwaylandutils_p.h>
#include <unistd.h>
#include <QtWaylandCompositor/private/wayland-wayland-server-protocol.h>
QT_BEGIN_NAMESPACE
namespace QtWayland {
DataSource::DataSource(struct wl_client *client, uint32_t id, uint32_t time)
: QtWaylandServer::wl_data_source(client, id, 1)
, m_time(time)
{
}
DataSource::~DataSource()
{
if (m_manager)
m_manager->sourceDestroyed(this);
if (m_device)
m_device->sourceDestroyed(this);
}
uint32_t DataSource::time() const
{
return m_time;
}
QList<QString> DataSource::mimeTypes() const
{
return m_mimeTypes;
}
void DataSource::accept(const QString &mimeType)
{
send_target(mimeType);
}
void DataSource::send(const QString &mimeType, int fd)
{
send_send(mimeType, fd);
close(fd);
}
void DataSource::cancel()
{
send_cancelled();
}
void DataSource::setManager(DataDeviceManager *mgr)
{
m_manager = mgr;
}
void DataSource::setDevice(DataDevice *device)
{
m_device = device;
}
DataSource *DataSource::fromResource(struct ::wl_resource *resource)
{
return QtWayland::fromResource<DataSource *>(resource);
}
void DataSource::data_source_offer(Resource *, const QString &mime_type)
{
m_mimeTypes.append(mime_type);
}
void DataSource::data_source_destroy(Resource *resource)
{
wl_resource_destroy(resource->handle);
}
void DataSource::data_source_destroy_resource(QtWaylandServer::wl_data_source::Resource *resource)
{
Q_UNUSED(resource);
delete this;
}
}
QT_END_NAMESPACE
|