0114f127c6500a4568a004a8b85e1be77fab4b1c
[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
54 Q_DECLARE_METATYPE(WaylandSurface*)
55
56 class Q_COMPOSITOR_EXPORT WaylandSurfaceItem : public QQuickItem
57 {
58     Q_OBJECT
59     Q_PROPERTY(WaylandSurface* surface READ surface WRITE setSurface NOTIFY surfaceChanged)
60     Q_PROPERTY(bool paintEnabled READ paintEnabled WRITE setPaintEnabled)
61     Q_PROPERTY(bool useTextureAlpha READ useTextureAlpha WRITE setUseTextureAlpha NOTIFY useTextureAlphaChanged)
62     Q_PROPERTY(bool clientRenderingEnabled READ clientRenderingEnabled WRITE setClientRenderingEnabled NOTIFY clientRenderingEnabledChanged)
63     Q_PROPERTY(bool touchEventsEnabled READ touchEventsEnabled WRITE setTouchEventsEnabled NOTIFY touchEventsEnabledChanged)
64     Q_PROPERTY(bool isYInverted READ isYInverted NOTIFY yInvertedChanged)
65
66 public:
67     WaylandSurfaceItem(QQuickItem *parent = 0);
68     WaylandSurfaceItem(WaylandSurface *surface, QQuickItem *parent = 0);
69     ~WaylandSurfaceItem();
70
71     void setSurface(WaylandSurface *surface);
72     WaylandSurface *surface() const {return m_surface; }
73
74     Q_INVOKABLE bool isYInverted() const;
75
76     bool isTextureProvider() const { return true; }
77     QSGTextureProvider *textureProvider() const;
78
79     bool paintEnabled() const;
80     bool useTextureAlpha() const  { return m_useTextureAlpha; }
81     bool clientRenderingEnabled() const { return m_clientRenderingEnabled; }
82     bool touchEventsEnabled() const { return m_touchEventsEnabled; }
83
84     void setUseTextureAlpha(bool useTextureAlpha);
85     void setClientRenderingEnabled(bool enabled);
86     void setTouchEventsEnabled(bool enabled);
87
88 protected:
89     void mousePressEvent(QMouseEvent *event);
90     void mouseMoveEvent(QMouseEvent *event);
91     void mouseReleaseEvent(QMouseEvent *event);
92
93     void keyPressEvent(QKeyEvent *event);
94     void keyReleaseEvent(QKeyEvent *event);
95
96     void touchEvent(QTouchEvent *event);
97
98 public slots:
99     void takeFocus();
100     void setPaintEnabled(bool paintEnabled);
101
102 private slots:
103     void surfaceMapped();
104     void surfaceUnmapped();
105     void surfaceDestroyed(QObject *object);
106     void surfaceDamaged(const QRect &);
107     void parentChanged(WaylandSurface *newParent, WaylandSurface *oldParent);
108     void updateSize();
109     void updatePosition();
110
111 signals:
112     void textureChanged();
113     void useTextureAlphaChanged();
114     void clientRenderingEnabledChanged();
115     void touchEventsEnabledChanged();
116     void yInvertedChanged();
117     void surfaceChanged();
118
119 protected:
120     QSGNode *updatePaintNode(QSGNode *oldNode, UpdatePaintNodeData *);
121
122 private:
123     QPoint toSurface(const QPointF &pos) const;
124     void init(WaylandSurface *);
125
126     WaylandSurface *m_surface;
127     QSGTexture *m_texture;
128     mutable WaylandSurfaceTextureProvider *m_provider;
129     bool m_paintEnabled;
130     bool m_useTextureAlpha;
131     bool m_clientRenderingEnabled;
132     bool m_touchEventsEnabled;
133     bool m_damaged;
134     bool m_yInverted;
135 };
136
137 #endif