Qt
Internal/Contributor docs for the Qt SDK. Note: These are NOT official API docs; those are found at https://doc.qt.io/
Loading...
Searching...
No Matches
qwldatadevice_p.h
Go to the documentation of this file.
1// Copyright (C) 2017 The Qt Company Ltd.
2// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
3
4#ifndef WLDATADEVICE_H
5#define WLDATADEVICE_H
6
7//
8// W A R N I N G
9// -------------
10//
11// This file is not part of the Qt API. It exists purely as an
12// implementation detail. This header file may change from version to
13// version without notice, or even be removed.
14//
15// We mean it.
16//
17
18#include <QtWaylandCompositor/private/qwayland-server-wayland.h>
19#include <QtWaylandCompositor/private/qtwaylandcompositorglobal_p.h>
20#include <QtWaylandCompositor/QWaylandSeat>
21
23
24QT_BEGIN_NAMESPACE
25
26namespace QtWayland {
27
28class Compositor;
29class DataSource;
30class Seat;
31class Surface;
32
34{
35public:
36 DataDevice(QWaylandSeat *seat);
37
38 void setFocus(QWaylandClient *client);
39 void sourceDestroyed(DataSource *source);
40
41#if QT_CONFIG(draganddrop)
43
46
48 void drop();
49 void cancelDrag();
50#endif
51
52protected:
53#if QT_CONFIG(draganddrop)
55#endif
56 void data_device_set_selection(Resource *resource, struct ::wl_resource *source, uint32_t serial) override;
57
58private:
59#if QT_CONFIG(draganddrop)
61#endif
62
63 QWaylandCompositor *m_compositor = nullptr;
64 QWaylandSeat *m_seat = nullptr;
65
66 DataSource *m_selectionSource = nullptr;
67
68#if QT_CONFIG(draganddrop)
69 struct ::wl_client *m_dragClient = nullptr;
71
74
75 QWaylandSurface *m_dragIcon = nullptr;
77#endif
78};
79
80}
81
82QT_END_NAMESPACE
83
84#endif // WLDATADEVICE_H
DataDevice(QWaylandSeat *seat)
void sourceDestroyed(DataSource *source)
void setFocus(QWaylandClient *client)
void setDevice(DataDevice *device)
Combined button and popup list for selecting options.
QT_REQUIRE_CONFIG(wayland_datadevice)