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
qwaylanddatadevice_p.h
Go to the documentation of this file.
1// Copyright (C) 2016 Klarälvdalens Datakonsult AB (KDAB).
2// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
3
4
5#ifndef QWAYLANDDATADEVICE_H
6#define QWAYLANDDATADEVICE_H
7
8//
9// W A R N I N G
10// -------------
11//
12// This file is not part of the Qt API. It exists purely as an
13// implementation detail. This header file may change from version to
14// version without notice, or even be removed.
15//
16// We mean it.
17//
18
19#include <qtwaylandclientglobal_p.h>
20#include <QObject>
21#include <QPointer>
22#include <QPoint>
23
24#include <QtWaylandClient/private/qwayland-wayland.h>
25
27
28QT_BEGIN_NAMESPACE
29
30class QMimeData;
31class QPlatformDragQtResponse;
32class QWindow;
33
34namespace QtWayland {
35class xdg_toplevel_drag_v1;
36}
37
38namespace QtWaylandClient {
39
40class QWaylandDisplay;
41class QWaylandDataDeviceManager;
42class QWaylandDataOffer;
43class QWaylandDataSource;
44class QWaylandInputDevice;
45class QWaylandWindow;
46
48{
50public:
53
54 QWaylandDataOffer *selectionOffer() const;
56 QWaylandDataSource *selectionSource() const;
57 void setSelectionSource(QWaylandDataSource *source);
58
59#if QT_CONFIG(draganddrop)
62 void cancelDrag();
63#endif
64
65protected:
66 void data_device_data_offer(struct ::wl_data_offer *id) override;
67
68#if QT_CONFIG(draganddrop)
73#endif
74 void data_device_selection(struct ::wl_data_offer *id) override;
75
76private Q_SLOTS:
78
79#if QT_CONFIG(draganddrop)
81#endif
82
83private:
84#if QT_CONFIG(draganddrop)
85 QPoint calculateDragPosition(int x, int y, QWindow *wnd) const;
86#endif
87 void sendResponse(Qt::DropActions supportedActions, const QPlatformDragQtResponse &response);
88
89 static int dropActionsToWl(Qt::DropActions dropActions);
90
91
92 QWaylandDisplay *m_display = nullptr;
93 QWaylandInputDevice *m_inputDevice = nullptr;
94 uint32_t m_enterSerial = 0;
95 QPointer<QWindow> m_dragWindow;
96 QPoint m_dragPoint;
97 QScopedPointer<QWaylandDataOffer> m_dragOffer;
98 QScopedPointer<QWaylandDataOffer> m_selectionOffer;
99 QScopedPointer<QWaylandDataSource> m_selectionSource;
100 QScopedPointer<QWaylandDataSource> m_dragSource;
101 QtWayland::xdg_toplevel_drag_v1 *m_toplevelDrag = nullptr;
102};
103
104}
105
106QT_END_NAMESPACE
107
108#endif // QWAYLANDDATADEVICE_H
virtual void startReceiving(const QString &mimeType, int fd)=0
QWaylandDataControlOfferV1 * selectionOffer() const
QWaylandDataControlOfferV1 * primarySelectionOffer() const
QWaylandDataControlSourceV1 * selectionSource() const
void setSelectionSource(QWaylandDataControlSourceV1 *source)
QWaylandDataControlSourceV1 * primarySelectionSource() const
void setPrimarySelectionSource(QWaylandDataControlSourceV1 *source)
QWaylandDataControlManagerV1(QWaylandDisplay *display, uint id, uint version)
QWaylandDataControlDeviceV1 * createDevice(QWaylandInputDevice *seat)
QWaylandDataControlOfferV1(QWaylandDisplay *display, ::zwlr_data_control_offer_v1 *offer)
void startReceiving(const QString &mimeType, int fd) override
void zwlr_data_control_offer_v1_offer(const QString &mime_type) override
QWaylandDataSource * selectionSource() const
QWaylandDataOffer * selectionOffer() const
void setSelectionSource(QWaylandDataSource *source)
QVariant retrieveData_sys(const QString &mimeType, QMetaType type) const override
void appendFormat(const QString &mimeType)
QStringList formats_sys() const override
QWaylandMimeData(QWaylandAbstractDataOffer *dataOffer)
bool hasFormat_sys(const QString &mimeType) const override
Combined button and popup list for selecting options.
QT_REQUIRE_CONFIG(animation)
QT_REQUIRE_CONFIG(itemmodel)
QT_REQUIRE_CONFIG(clipboard)