Move event handling into WaylandInput api
[profile/ivi/qtwayland.git] / src / compositor / wayland_wrapper / wlcompositor.h
1 /****************************************************************************
2 **
3 ** This file is part of QtCompositor**
4 **
5 ** Copyright © 2010 Nokia Corporation and/or its subsidiary(-ies).
6 ** All rights reserved.
7 **
8 ** Contact:  Nokia Corporation qt-info@nokia.com
9 **
10 ** You may use this file under the terms of the BSD license as follows:
11 **
12 ** Redistribution and use in source and binary forms, with or without
13 ** modification, are permitted provided that the following conditions are
14 ** met:
15 **
16 ** Redistributions of source code must retain the above copyright
17 ** notice, this list of conditions and the following disclaimer.
18 **
19 ** Redistributions in binary form must reproduce the above copyright
20 ** notice, this list of conditions and the following disclaimer in the
21 ** documentation and/or other materials provided with the distribution.
22 **
23 ** Neither the name of Nokia Corporation and its Subsidiary(-ies) nor the
24 ** names of its contributors may be used to endorse or promote products
25 ** derived from this software without specific prior written permission.
26 **
27 ** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
28 ** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
29 ** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
30 ** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
31 ** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
32 ** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
33 ** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
34 ** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
35 ** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
36 ** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
37 ** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
38 **
39 ****************************************************************************/
40
41 #ifndef WL_COMPOSITOR_H
42 #define WL_COMPOSITOR_H
43
44 #include "waylandexport.h"
45
46 #include <QtCore/QSet>
47
48 #include "wloutput.h"
49 #include "wldisplay.h"
50 #include "wlshmbuffer.h"
51
52 #include <wayland-server.h>
53
54 class WaylandCompositor;
55 class GraphicsHardwareIntegration;
56 class WindowManagerServerIntegration;
57 class QMimeData;
58
59 namespace Wayland {
60
61 class Surface;
62 class InputDevice;
63 class DataDeviceManager;
64 class OutputExtensionGlobal;
65 class SurfaceExtensionGlobal;
66 class SubSurfaceExtensionGlobal;
67 class Shell;
68
69 class Q_COMPOSITOR_EXPORT Compositor : public QObject
70 {
71     Q_OBJECT
72
73 public:
74     Compositor(WaylandCompositor *qt_compositor);
75     ~Compositor();
76
77     void frameFinished(Surface *surface = 0);
78
79     Surface *getSurfaceFromWinId(uint winId) const;
80     struct wl_client *getClientFromWinId(uint winId) const;
81     QImage image(uint winId) const;
82
83     InputDevice *defaultInputDevice(); //we just have 1 default device for now (since QPA doesn't give us anything else)
84
85     void createSurface(struct wl_client *client, uint32_t id);
86     void surfaceDestroyed(Surface *surface);
87     void markSurfaceAsDirty(Surface *surface);
88
89     void destroyClientForSurface(Surface *surface);
90
91     static uint currentTimeMsecs();
92
93     QWindow *window() const;
94
95     GraphicsHardwareIntegration *graphicsHWIntegration() const;
96     void initializeHardwareIntegration();
97     void initializeDefaultInputDevice();
98     void initializeWindowManagerProtocol();
99     void enableSubSurfaceExtension();
100     bool setDirectRenderSurface(Surface *surface);
101     Surface *directRenderSurface() const {return m_directRenderSurface;}
102
103     QList<Surface*> surfacesForClient(wl_client* client);
104
105     WaylandCompositor *qtCompositor() const { return m_qt_compositor; }
106
107     struct wl_display *wl_display() const { return m_display->handle(); }
108
109     static Compositor *instance();
110
111     QList<struct wl_client *> clients() const;
112
113     WindowManagerServerIntegration *windowManagerIntegration() const { return m_windowManagerIntegration; }
114
115     void setScreenOrientation(Qt::ScreenOrientation orientation);
116     Qt::ScreenOrientation screenOrientation() const;
117     void setOutputGeometry(const QRect &geometry);
118
119     bool isDragging() const;
120     void sendDragMoveEvent(const QPoint &global, const QPoint &local, Surface *surface);
121     void sendDragEndEvent();
122
123     typedef void (*RetainedSelectionFunc)(QMimeData *, void *);
124     void setRetainedSelectionWatcher(RetainedSelectionFunc func, void *param);
125     void overrideSelection(QMimeData *data);
126
127     bool wantsRetainedSelection() const;
128     void feedRetainedSelectionData(QMimeData *data);
129
130 public slots:
131     void releaseBuffer(void*);
132
133 private slots:
134     void processWaylandEvents();
135
136 private:
137     Display *m_display;
138
139     /* Input */
140     InputDevice *m_default_input_device;
141
142     /* Output */
143     //make this a list of the available screens
144     OutputGlobal m_output_global;
145     /* shm/*/
146     ShmHandler m_shm;
147
148     DataDeviceManager *m_data_device_manager;
149
150     QList<Surface *> m_surfaces;
151     QSet<Surface *> m_dirty_surfaces;
152
153     /* Render state */
154     uint32_t m_current_frame;
155     int m_last_queued_buf;
156
157     wl_event_loop *m_loop;
158
159     WaylandCompositor *m_qt_compositor;
160     Qt::ScreenOrientation m_orientation;
161
162     Surface *m_directRenderSurface;
163
164 #ifdef QT_COMPOSITOR_WAYLAND_GL
165     GraphicsHardwareIntegration *m_graphics_hw_integration;
166 #endif
167
168     //extensions
169     WindowManagerServerIntegration *m_windowManagerIntegration;
170
171
172     Shell *m_shell;
173     OutputExtensionGlobal *m_outputExtension;
174     SurfaceExtensionGlobal *m_surfaceExtension;
175     SubSurfaceExtensionGlobal *m_subSurfaceExtension;
176
177     static void bind_func(struct wl_client *client, void *data,
178                           uint32_t version, uint32_t id);
179
180     RetainedSelectionFunc m_retainNotify;
181     void *m_retainNotifyParam;
182 };
183
184 }
185
186 #endif //WL_COMPOSITOR_H