Start using the new wl_fixed_t type properly
[profile/ivi/qtwayland.git] / src / plugins / platforms / wayland / qwaylanddatadevicemanager.h
1 /****************************************************************************
2 **
3 ** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
4 ** Contact: http://www.qt-project.org/
5 **
6 ** This file is part of the plugins of the Qt Toolkit.
7 **
8 ** $QT_BEGIN_LICENSE:LGPL$
9 ** GNU Lesser General Public License Usage
10 ** This file may be used under the terms of the GNU Lesser General Public
11 ** License version 2.1 as published by the Free Software Foundation and
12 ** appearing in the file LICENSE.LGPL included in the packaging of this
13 ** file. Please review the following information to ensure the GNU Lesser
14 ** General Public License version 2.1 requirements will be met:
15 ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
16 **
17 ** In addition, as a special exception, Nokia gives you certain additional
18 ** rights. These rights are described in the Nokia Qt LGPL Exception
19 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
20 **
21 ** GNU General Public License Usage
22 ** Alternatively, this file may be used under the terms of the GNU General
23 ** Public License version 3.0 as published by the Free Software Foundation
24 ** and appearing in the file LICENSE.GPL included in the packaging of this
25 ** file. Please review the following information to ensure the GNU General
26 ** Public License version 3.0 requirements will be met:
27 ** http://www.gnu.org/copyleft/gpl.html.
28 **
29 ** Other Usage
30 ** Alternatively, this file may be used in accordance with the terms and
31 ** conditions contained in a signed written agreement between you and Nokia.
32 **
33 **
34 **
35 **
36 **
37 **
38 ** $QT_END_LICENSE$
39 **
40 ****************************************************************************/
41
42 #ifndef QWAYLANDDATADEVICEMANAGER_H
43 #define QWAYLANDDATADEVICEMANAGER_H
44
45 #include "qwaylanddisplay.h"
46
47 #include <QtCore/QMap>
48 #include <QtCore/QMimeData>
49 #include <QtCore/QStringList>
50 #include <QtGui/QClipboard>
51
52 class QWaylandDataOffer;
53 class QWaylandDataSource;
54 class QDrag;
55 class QWaylandShmBuffer;
56 class QWaylandWindow;
57
58 class QWaylandDataDeviceManager
59 {
60 public:
61     QWaylandDataDeviceManager(QWaylandDisplay *display, uint32_t id);
62     ~QWaylandDataDeviceManager();
63
64     struct wl_data_device *getDataDevice(QWaylandInputDevice *inputDevice);
65
66     QWaylandDataOffer *selectionTransfer() const;
67
68     void createAndSetDrag(QDrag *drag);
69     QMimeData *dragMime() const;
70     bool canDropDrag() const;
71     void cancelDrag();
72
73     void createAndSetSelectionSource(QMimeData *mimeData, QClipboard::Mode mode);
74     QWaylandDataSource *selectionTransferSource();
75
76     QWaylandDisplay *display()const;
77
78     struct wl_data_device_manager *handle() const;
79
80 private:
81     struct wl_data_device_manager *m_data_device_manager;
82     QWaylandDisplay *m_display;
83
84     QWaylandDataOffer *m_selection_data_offer;
85     QWaylandDataSource *m_selection_data_source;
86
87     QWaylandDataOffer *m_drag_data_offer;
88     QWaylandDataSource *m_drag_data_source;
89     QWaylandWindow *m_drag_current_event_window;
90     wl_surface *m_drag_surface;
91     wl_surface *m_drag_icon_surface;
92     QWaylandShmBuffer *m_drag_icon_buffer;
93     bool m_drag_can_drop;
94     uint32_t m_drag_last_event_time;
95     QPoint m_drag_position;
96
97     static void data_offer(void *data,
98                        struct wl_data_device *wl_data_device,
99                        uint32_t id);
100     static void enter(void *data,
101                   struct wl_data_device *wl_data_device,
102                   uint32_t time,
103                   struct wl_surface *surface,
104                   wl_fixed_t x,
105                   wl_fixed_t y,
106                   struct wl_data_offer *id);
107     static void leave(void *data,
108                   struct wl_data_device *wl_data_device);
109     static void motion(void *data,
110                    struct wl_data_device *wl_data_device,
111                    uint32_t time,
112                    wl_fixed_t x,
113                    wl_fixed_t y);
114     static void drop(void *data,
115                  struct wl_data_device *wl_data_device);
116     static void selection(void *data,
117                       struct wl_data_device *wl_data_device,
118                       struct wl_data_offer *id);
119
120     static const struct wl_data_device_listener transfer_device_listener;
121 };
122
123 #endif // QWAYLANDDATADEVICEMANAGER_H