Avoid flicker when switching back to composited mode
[profile/ivi/qtwayland.git] / src / compositor / compositor_api / waylandsurfaceitem.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 Qt Compositor.
7 **
8 ** $QT_BEGIN_LICENSE:BSD$
9 ** You may use this file under the terms of the BSD license as follows:
10 **
11 ** "Redistribution and use in source and binary forms, with or without
12 ** modification, are permitted provided that the following conditions are
13 ** met:
14 **   * Redistributions of source code must retain the above copyright
15 **     notice, this list of conditions and the following disclaimer.
16 **   * Redistributions in binary form must reproduce the above copyright
17 **     notice, this list of conditions and the following disclaimer in
18 **     the documentation and/or other materials provided with the
19 **     distribution.
20 **   * Neither the name of Nokia Corporation and its Subsidiary(-ies) nor
21 **     the names of its contributors may be used to endorse or promote
22 **     products derived from this software without specific prior written
23 **     permission.
24 **
25 ** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
26 ** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
27 ** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
28 ** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
29 ** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
30 ** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
31 ** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
32 ** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
33 ** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
34 ** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
35 ** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
36 **
37 ** $QT_END_LICENSE$
38 **
39 ****************************************************************************/
40
41 #ifndef WAYLANDSURFACEITEM_H
42 #define WAYLANDSURFACEITEM_H
43
44 #include "waylandexport.h"
45 #include "waylandsurface.h"
46
47 #include <QtQuick/QQuickItem>
48 #include <QtQuick/qsgtexture.h>
49
50 #include <QtQuick/qsgtextureprovider.h>
51
52 class WaylandSurfaceTextureProvider;
53 class WaylandSurfaceNode;
54
55 Q_DECLARE_METATYPE(WaylandSurface*)
56
57 class Q_COMPOSITOR_EXPORT WaylandSurfaceItem : public QQuickItem
58 {
59     Q_OBJECT
60     Q_PROPERTY(WaylandSurface* surface READ surface WRITE setSurface NOTIFY surfaceChanged)
61     Q_PROPERTY(bool paintEnabled READ paintEnabled WRITE setPaintEnabled)
62     Q_PROPERTY(bool useTextureAlpha READ useTextureAlpha WRITE setUseTextureAlpha NOTIFY useTextureAlphaChanged)
63     Q_PROPERTY(bool clientRenderingEnabled READ clientRenderingEnabled WRITE setClientRenderingEnabled NOTIFY clientRenderingEnabledChanged)
64     Q_PROPERTY(bool touchEventsEnabled READ touchEventsEnabled WRITE setTouchEventsEnabled NOTIFY touchEventsEnabledChanged)
65     Q_PROPERTY(bool isYInverted READ isYInverted NOTIFY yInvertedChanged)
66
67 public:
68     WaylandSurfaceItem(QQuickItem *parent = 0);
69     WaylandSurfaceItem(WaylandSurface *surface, QQuickItem *parent = 0);
70     ~WaylandSurfaceItem();
71
72     void setSurface(WaylandSurface *surface);
73     WaylandSurface *surface() const {return m_surface; }
74
75     Q_INVOKABLE bool isYInverted() const;
76
77     bool isTextureProvider() const { return true; }
78     QSGTextureProvider *textureProvider() const;
79
80     bool paintEnabled() const;
81     bool useTextureAlpha() const  { return m_useTextureAlpha; }
82     bool clientRenderingEnabled() const { return m_clientRenderingEnabled; }
83     bool touchEventsEnabled() const { return m_touchEventsEnabled; }
84
85     void setUseTextureAlpha(bool useTextureAlpha);
86     void setClientRenderingEnabled(bool enabled);
87     void setTouchEventsEnabled(bool enabled);
88
89     void setDamagedFlag(bool on);
90
91 protected:
92     void mousePressEvent(QMouseEvent *event);
93     void mouseMoveEvent(QMouseEvent *event);
94     void mouseReleaseEvent(QMouseEvent *event);
95
96     void keyPressEvent(QKeyEvent *event);
97     void keyReleaseEvent(QKeyEvent *event);
98
99     void touchEvent(QTouchEvent *event);
100
101 public slots:
102     void takeFocus();
103     void setPaintEnabled(bool paintEnabled);
104
105 private slots:
106     void surfaceMapped();
107     void surfaceUnmapped();
108     void surfaceDestroyed(QObject *object);
109     void surfaceDamaged(const QRect &);
110     void parentChanged(WaylandSurface *newParent, WaylandSurface *oldParent);
111     void updateSize();
112     void updatePosition();
113
114 signals:
115     void textureChanged();
116     void useTextureAlphaChanged();
117     void clientRenderingEnabledChanged();
118     void touchEventsEnabledChanged();
119     void yInvertedChanged();
120     void surfaceChanged();
121
122 protected:
123     QSGNode *updatePaintNode(QSGNode *oldNode, UpdatePaintNodeData *);
124
125 private:
126     friend class WaylandSurfaceNode;
127     void updateNodeTexture(WaylandSurfaceNode *newNode);
128     QPoint toSurface(const QPointF &pos) const;
129     void init(WaylandSurface *);
130
131     WaylandSurface *m_surface;
132     QSGTexture *m_texture;
133     mutable WaylandSurfaceTextureProvider *m_provider;
134     bool m_paintEnabled;
135     bool m_useTextureAlpha;
136     bool m_clientRenderingEnabled;
137     bool m_touchEventsEnabled;
138     bool m_damaged;
139     bool m_yInverted;
140 };
141
142 #endif