5226f0d8e3c72392589065399ce264371bd52f75
[profile/ivi/qtwayland.git] / src / plugins / platforms / wayland / qwaylanddisplay.h
1 /****************************************************************************
2 **
3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies).
4 ** All rights reserved.
5 ** Contact: Nokia Corporation (qt-info@nokia.com)
6 **
7 ** This file is part of the plugins of the Qt Toolkit.
8 **
9 ** $QT_BEGIN_LICENSE:LGPL$
10 ** GNU Lesser General Public License Usage
11 ** This file may be used under the terms of the GNU Lesser General Public
12 ** License version 2.1 as published by the Free Software Foundation and
13 ** appearing in the file LICENSE.LGPL included in the packaging of this
14 ** file. Please review the following information to ensure the GNU Lesser
15 ** General Public License version 2.1 requirements will be met:
16 ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
17 **
18 ** In addition, as a special exception, Nokia gives you certain additional
19 ** rights. These rights are described in the Nokia Qt LGPL Exception
20 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
21 **
22 ** GNU General Public License Usage
23 ** Alternatively, this file may be used under the terms of the GNU General
24 ** Public License version 3.0 as published by the Free Software Foundation
25 ** and appearing in the file LICENSE.GPL included in the packaging of this
26 ** file. Please review the following information to ensure the GNU General
27 ** Public License version 3.0 requirements will be met:
28 ** http://www.gnu.org/copyleft/gpl.html.
29 **
30 ** Other Usage
31 ** Alternatively, this file may be used in accordance with the terms and
32 ** conditions contained in a signed written agreement between you and Nokia.
33 **
34 **
35 **
36 **
37 **
38 ** $QT_END_LICENSE$
39 **
40 ****************************************************************************/
41
42 #ifndef QWAYLANDDISPLAY_H
43 #define QWAYLANDDISPLAY_H
44
45 #include <QtCore/QObject>
46 #include <QtCore/QRect>
47
48 #include <QtCore/QWaitCondition>
49
50 #include <wayland-client.h>
51
52 class QWaylandInputDevice;
53 class QSocketNotifier;
54 class QWaylandBuffer;
55 class QPlatformScreen;
56 class QWaylandScreen;
57 class QWaylandGLIntegration;
58 class QWaylandWindowManagerIntegration;
59
60 class QWaylandDisplay : public QObject {
61     Q_OBJECT
62
63 public:
64     QWaylandDisplay(void);
65     ~QWaylandDisplay(void);
66
67     QList<QPlatformScreen *> screens() const { return mScreens; }
68     struct wl_surface *createSurface(void *handle);
69     struct wl_buffer *createShmBuffer(int fd, int width, int height,
70                                       uint32_t stride,
71                                       struct wl_visual *visual);
72     struct wl_visual *rgbVisual();
73     struct wl_visual *argbVisual();
74     struct wl_visual *argbPremultipliedVisual();
75
76 #ifdef QT_WAYLAND_GL_SUPPORT
77     QWaylandGLIntegration *eglIntegration();
78 #endif
79
80 #ifdef QT_WAYLAND_WINDOWMANAGER_SUPPORT
81     QWaylandWindowManagerIntegration *windowManagerIntegration();
82 #endif
83
84     void setCursor(QWaylandBuffer *buffer, int32_t x, int32_t y);
85
86     void syncCallback(wl_display_sync_func_t func, void *data);
87     void frameCallback(wl_display_frame_func_t func, struct wl_surface *surface, void *data);
88
89     struct wl_display *wl_display() const { return mDisplay; }
90     struct wl_shell *wl_shell() const { return mShell; }
91
92     QList<QWaylandInputDevice *> inputDevices() const { return mInputDevices; }
93
94 public slots:
95     void createNewScreen(struct wl_output *output, QRect geometry);
96     void readEvents();
97     void blockingReadEvents();
98     void flushRequests();
99
100 private:
101     void waitForScreens();
102     void displayHandleGlobal(uint32_t id,
103                              const QByteArray &interface,
104                              uint32_t version);
105
106     struct wl_display *mDisplay;
107     struct wl_compositor *mCompositor;
108     struct wl_shm *mShm;
109     struct wl_shell *mShell;
110     QList<QPlatformScreen *> mScreens;
111     QList<QWaylandInputDevice *> mInputDevices;
112
113     QSocketNotifier *mReadNotifier;
114     int mFd;
115     bool mScreensInitialized;
116
117     uint32_t mSocketMask;
118
119     struct wl_visual *argb_visual, *premultiplied_argb_visual, *rgb_visual;
120
121     static const struct wl_output_listener outputListener;
122     static const struct wl_compositor_listener compositorListener;
123     static int sourceUpdate(uint32_t mask, void *data);
124     static void displayHandleGlobal(struct wl_display *display,
125                                     uint32_t id,
126                                     const char *interface,
127                                     uint32_t version, void *data);
128     static void outputHandleGeometry(void *data,
129                                      struct wl_output *output,
130                                      int32_t x, int32_t y,
131                                      int32_t width, int32_t height);
132
133     static void handleVisual(void *data,
134                                        struct wl_compositor *compositor,
135                                        uint32_t id, uint32_t token);
136
137 #ifdef QT_WAYLAND_GL_SUPPORT
138     QWaylandGLIntegration *mEglIntegration;
139 #endif
140
141 #ifdef QT_WAYLAND_WINDOWMANAGER_SUPPORT
142     QWaylandWindowManagerIntegration *mWindowManagerIntegration;
143 #endif
144
145     static void shellHandleConfigure(void *data, struct wl_shell *shell,
146                                      uint32_t time, uint32_t edges,
147                                      struct wl_surface *surface,
148                                      int32_t width, int32_t height);
149
150     static const struct wl_shell_listener shellListener;
151 };
152
153 #endif // QWAYLANDDISPLAY_H