9507b08ade4d70575480c4f58c432f4da6b8fc44
[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 <QtGui/QPlatformWindow>
46
47 #include "qqnxbuffer.h"
48
49 #include <QtGui/QImage>
50
51 #include <EGL/egl.h>
52
53 #include <screen/screen.h>
54
55 QT_BEGIN_NAMESPACE
56
57 // all surfaces double buffered
58 #define MAX_BUFFER_COUNT    2
59
60 class QQnxGLContext;
61 class QQnxScreen;
62
63 class QPlatformGLContext;
64 class QSurfaceFormat;
65
66 class QQnxWindow : public QPlatformWindow
67 {
68 friend class QQnxScreen;
69 public:
70     QQnxWindow(QWindow *window, screen_context_t context);
71     virtual ~QQnxWindow();
72
73     virtual void setGeometry(const QRect &rect);
74     virtual void setVisible(bool visible);
75     virtual void setOpacity(qreal level);
76
77     virtual WId winId() const { return (WId)m_window; }
78     screen_window_t nativeHandle() const { return m_window; }
79
80     void setBufferSize(const QSize &size);
81     QSize bufferSize() const { return m_bufferSize; }
82     bool hasBuffers() const { return !m_bufferSize.isEmpty(); }
83
84     QQnxBuffer &renderBuffer();
85     void scroll(const QRegion &region, int dx, int dy, bool flush=false);
86     void post(const QRegion &dirty);
87
88     void setScreen(QQnxScreen *platformScreen);
89
90     virtual void setParent(const QPlatformWindow *window);
91     virtual void raise();
92     virtual void lower();
93     virtual void requestActivateWindow();
94
95     void gainedFocus();
96
97     QQnxScreen *screen() const { return m_screen; }
98     const QList<QQnxWindow*>& children() const { return m_childWindows; }
99
100     void setPlatformOpenGLContext(QQnxGLContext *platformOpenGLContext);
101     QQnxGLContext *platformOpenGLContext() const { return m_platformOpenGLContext; }
102
103 private:
104     void removeFromParent();
105     void offset(const QPoint &offset);
106     void updateVisibility(bool parentVisible);
107     void updateZorder(int &topZorder);
108
109     void fetchBuffers();
110
111     void copyBack(const QRegion &region, int dx, int dy, bool flush=false);
112
113     static int platformWindowFormatToNativeFormat(const QSurfaceFormat &format);
114
115     screen_context_t m_screenContext;
116     screen_window_t m_window;
117     QSize m_bufferSize;
118     QQnxBuffer m_buffers[MAX_BUFFER_COUNT];
119     int m_currentBufferIndex;
120     int m_previousBufferIndex;
121     QRegion m_previousDirty;
122     QRegion m_scrolled;
123
124     QQnxGLContext *m_platformOpenGLContext;
125     QQnxScreen *m_screen;
126     QList<QQnxWindow*> m_childWindows;
127     QQnxWindow *m_parentWindow;
128     bool m_visible;
129 };
130
131 QT_END_NAMESPACE
132
133 #endif // QQNXWINDOW_H