4a461d0acc809ef78dce20499a1af794b49f08c2
[profile/ivi/qtbase.git] / src / plugins / platforms / qnx / qqnxwindow.h
1 /***************************************************************************
2 **
3 ** Copyright (C) 2011 - 2012 Research In Motion
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 QQNXWINDOW_H
43 #define QQNXWINDOW_H
44
45 #include <qpa/qplatformwindow.h>
46
47 #include "qqnxbuffer.h"
48
49 #include <QtGui/QImage>
50
51 #ifndef QT_NO_OPENGL
52 #include <EGL/egl.h>
53 #endif
54
55 #include <screen/screen.h>
56
57 QT_BEGIN_NAMESPACE
58
59 // all surfaces double buffered
60 #define MAX_BUFFER_COUNT    2
61
62 #ifndef QT_NO_OPENGL
63 class QQnxGLContext;
64 #endif
65 class QQnxScreen;
66
67 class QSurfaceFormat;
68
69 class QQnxWindow : public QPlatformWindow
70 {
71 friend class QQnxScreen;
72 public:
73     QQnxWindow(QWindow *window, screen_context_t context);
74     virtual ~QQnxWindow();
75
76     void setGeometry(const QRect &rect);
77     void setVisible(bool visible);
78     void setOpacity(qreal level);
79
80     bool isExposed() const;
81
82     WId winId() const { return (WId)m_window; }
83     screen_window_t nativeHandle() const { return m_window; }
84
85     void setBufferSize(const QSize &size);
86     QSize bufferSize() const { return m_bufferSize; }
87     bool hasBuffers() const { return !m_bufferSize.isEmpty(); }
88
89     QQnxBuffer &renderBuffer();
90     void scroll(const QRegion &region, int dx, int dy, bool flush=false);
91     void post(const QRegion &dirty);
92
93     void setScreen(QQnxScreen *platformScreen);
94
95     void setParent(const QPlatformWindow *window);
96     void raise();
97     void lower();
98     void requestActivateWindow();
99     Qt::WindowState setWindowState(Qt::WindowState state);
100
101     void gainedFocus();
102
103     QQnxScreen *screen() const { return m_screen; }
104     const QList<QQnxWindow*>& children() const { return m_childWindows; }
105
106 #ifndef QT_NO_OPENGL
107     void setPlatformOpenGLContext(QQnxGLContext *platformOpenGLContext);
108     QQnxGLContext *platformOpenGLContext() const { return m_platformOpenGLContext; }
109 #endif
110
111     QQnxWindow *findWindow(screen_window_t windowHandle);
112
113 private:
114     void removeFromParent();
115     void setOffset(const QPoint &setOffset);
116     void updateVisibility(bool parentVisible);
117     void updateZorder(int &topZorder);
118
119     void fetchBuffers();
120
121     void copyBack(const QRegion &region, int dx, int dy, bool flush=false);
122
123     static int platformWindowFormatToNativeFormat(const QSurfaceFormat &format);
124
125     screen_context_t m_screenContext;
126     screen_window_t m_window;
127     QSize m_bufferSize;
128     QQnxBuffer m_buffers[MAX_BUFFER_COUNT];
129     int m_currentBufferIndex;
130     int m_previousBufferIndex;
131     QRegion m_previousDirty;
132     QRegion m_scrolled;
133
134 #ifndef QT_NO_OPENGL
135     QQnxGLContext *m_platformOpenGLContext;
136 #endif
137     QQnxScreen *m_screen;
138     QList<QQnxWindow*> m_childWindows;
139     QQnxWindow *m_parentWindow;
140     bool m_visible;
141     QRect m_unmaximizedGeometry;
142     Qt::WindowState m_windowState;
143 };
144
145 QT_END_NAMESPACE
146
147 #endif // QQNXWINDOW_H