Update copyright year in Nokia copyright headers.
[profile/ivi/qtdeclarative.git] / src / quick / items / qquickcanvas.h
1 /****************************************************************************
2 **
3 ** Copyright (C) 2012 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 QtDeclarative module 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 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
87     QQuickItem *mouseGrabberItem() const;
88
89     bool sendEvent(QQuickItem *, QEvent *);
90
91     QSGEngine *sceneGraphEngine() const;
92
93     QImage grabFrameBuffer();
94
95     void setRenderTarget(QOpenGLFramebufferObject *fbo);
96     QOpenGLFramebufferObject *renderTarget() const;
97
98     QDeclarativeIncubationController *incubationController() const;
99
100     virtual QAccessibleInterface *accessibleRoot() const;
101
102     // Scene graph specific functions
103     QSGTexture *createTextureFromImage(const QImage &image) const;
104     QSGTexture *createTextureFromId(uint id, const QSize &size, CreateTextureOptions options = CreateTextureOption(0)) const;
105
106     void setClearBeforeRendering(bool enabled);
107     bool clearBeforeRendering() const;
108
109     void setClearColor(const QColor &color);
110     QColor clearColor() const;
111
112     QOpenGLContext *openglContext() const;
113
114 Q_SIGNALS:
115     void frameSwapped();
116     void sceneGraphInitialized();
117     void sceneGraphInvalidated();
118     void beforeRendering();
119     void afterRendering();
120     void clearColorChanged(const QColor &);
121
122 protected:
123     QQuickCanvas(QQuickCanvasPrivate &dd, QWindow *parent = 0);
124
125     virtual void exposeEvent(QExposeEvent *);
126     virtual void resizeEvent(QResizeEvent *);
127
128     virtual void showEvent(QShowEvent *);
129     virtual void hideEvent(QHideEvent *);
130
131     virtual void focusInEvent(QFocusEvent *);
132     virtual void focusOutEvent(QFocusEvent *);
133
134     virtual bool event(QEvent *);
135     virtual void keyPressEvent(QKeyEvent *);
136     virtual void keyReleaseEvent(QKeyEvent *);
137     virtual void mousePressEvent(QMouseEvent *);
138     virtual void mouseReleaseEvent(QMouseEvent *);
139     virtual void mouseDoubleClickEvent(QMouseEvent *);
140     virtual void mouseMoveEvent(QMouseEvent *);
141 #ifndef QT_NO_WHEELEVENT
142     virtual void wheelEvent(QWheelEvent *);
143 #endif
144
145 private Q_SLOTS:
146     void maybeUpdate();
147     void cleanupSceneGraph();
148
149 private:
150     friend class QQuickItem;
151     friend class QQuickCanvasRenderLoop;
152     Q_DISABLE_COPY(QQuickCanvas)
153 };
154
155 QT_END_NAMESPACE
156
157 Q_DECLARE_METATYPE(QQuickCanvas *)
158
159 QT_END_HEADER
160
161 #endif // QQUICKCANVAS_H
162