Added QQuickCanvas::setRenderTarget(uint fbo, const QSize &size)
[profile/ivi/qtdeclarative.git] / src / quick / items / qquickcanvas.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 QtDeclarative module 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 QQUICKCANVAS_H
43 #define QQUICKCANVAS_H
44
45 #include <QtQuick/qtquickglobal.h>
46 #include <QtCore/qmetatype.h>
47 #include <QtGui/qopengl.h>
48 #include <QtGui/qwindow.h>
49 #include <QtGui/qevent.h>
50
51 QT_BEGIN_HEADER
52
53 QT_BEGIN_NAMESPACE
54
55 class QSGEngine;
56 class QQuickItem;
57 class QSGTexture;
58 class QInputMethodEvent;
59 class QQuickCanvasPrivate;
60 class QOpenGLFramebufferObject;
61 class QDeclarativeIncubationController;
62 class QInputMethodEvent;
63
64 class Q_QUICK_EXPORT QQuickCanvas : public QWindow
65 {
66     Q_OBJECT
67     Q_PRIVATE_PROPERTY(QQuickCanvas::d_func(), QDeclarativeListProperty<QObject> data READ data DESIGNABLE false)
68     Q_PROPERTY(QColor color READ clearColor WRITE setClearColor NOTIFY clearColorChanged)
69     Q_CLASSINFO("DefaultProperty", "data")
70     Q_DECLARE_PRIVATE(QQuickCanvas)
71 public:
72     enum CreateTextureOption {
73         TextureHasAlphaChannel  = 0x0001,
74         TextureHasMipmaps       = 0x0002,
75         TextureOwnsGLTexture    = 0x0004
76     };
77
78     Q_DECLARE_FLAGS(CreateTextureOptions, CreateTextureOption)
79
80     QQuickCanvas(QWindow *parent = 0);
81
82     virtual ~QQuickCanvas();
83
84     QQuickItem *rootItem() const;
85     QQuickItem *activeFocusItem() const;
86     QObject *focusObject() const;
87
88     QQuickItem *mouseGrabberItem() const;
89
90     bool sendEvent(QQuickItem *, QEvent *);
91
92     QSGEngine *sceneGraphEngine() const;
93
94     QImage grabFrameBuffer();
95
96     void setRenderTarget(QOpenGLFramebufferObject *fbo);
97     QOpenGLFramebufferObject *renderTarget() const;
98
99     void setRenderTarget(uint fboId, const QSize &size);
100     uint renderTargetId() const;
101     QSize renderTargetSize() const;
102
103     QDeclarativeIncubationController *incubationController() const;
104
105     virtual QAccessibleInterface *accessibleRoot() const;
106
107     // Scene graph specific functions
108     QSGTexture *createTextureFromImage(const QImage &image) const;
109     QSGTexture *createTextureFromId(uint id, const QSize &size, CreateTextureOptions options = CreateTextureOption(0)) const;
110
111     void setClearBeforeRendering(bool enabled);
112     bool clearBeforeRendering() const;
113
114     void setClearColor(const QColor &color);
115     QColor clearColor() const;
116
117     QOpenGLContext *openglContext() const;
118
119 Q_SIGNALS:
120     void frameSwapped();
121     void sceneGraphInitialized();
122     void sceneGraphInvalidated();
123     void beforeRendering();
124     void afterRendering();
125     void clearColorChanged(const QColor &);
126
127 protected:
128     QQuickCanvas(QQuickCanvasPrivate &dd, QWindow *parent = 0);
129
130     virtual void exposeEvent(QExposeEvent *);
131     virtual void resizeEvent(QResizeEvent *);
132
133     virtual void showEvent(QShowEvent *);
134     virtual void hideEvent(QHideEvent *);
135
136     virtual void focusInEvent(QFocusEvent *);
137     virtual void focusOutEvent(QFocusEvent *);
138
139     virtual bool event(QEvent *);
140     virtual void keyPressEvent(QKeyEvent *);
141     virtual void keyReleaseEvent(QKeyEvent *);
142     virtual void mousePressEvent(QMouseEvent *);
143     virtual void mouseReleaseEvent(QMouseEvent *);
144     virtual void mouseDoubleClickEvent(QMouseEvent *);
145     virtual void mouseMoveEvent(QMouseEvent *);
146 #ifndef QT_NO_WHEELEVENT
147     virtual void wheelEvent(QWheelEvent *);
148 #endif
149
150 private Q_SLOTS:
151     void maybeUpdate();
152     void cleanupSceneGraph();
153
154 private:
155     friend class QQuickItem;
156     friend class QQuickCanvasRenderLoop;
157     Q_DISABLE_COPY(QQuickCanvas)
158 };
159
160 QT_END_NAMESPACE
161
162 Q_DECLARE_METATYPE(QQuickCanvas *)
163
164 QT_END_HEADER
165
166 #endif // QQUICKCANVAS_H
167