6edf64a0850bbd20164f815c64630f3a8168b699
[profile/ivi/qtwayland.git] / src / compositor / wayland_wrapper / wlextendedsurface.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 WLEXTENDEDSURFACE_H
42 #define WLEXTENDEDSURFACE_H
43
44 #include "wayland-surface-extension-server-protocol.h"
45
46 #include "wlsurface.h"
47 #include "waylandsurface.h"
48
49 #include <QtCore/QVariant>
50 #include <QtCore/QLinkedList>
51
52 class WaylandSurface;
53
54 namespace Wayland {
55
56 class Compositor;
57
58 class SurfaceExtensionGlobal
59 {
60 public:
61     SurfaceExtensionGlobal(Compositor *compositor);
62
63 private:
64     Compositor *m_compositor;
65
66     static void bind_func(struct wl_client *client, void *data,
67                           uint32_t version, uint32_t id);
68     static void get_extended_surface(struct wl_client *client,
69                                  struct wl_resource *resource,
70                                  uint32_t id,
71                                  struct wl_resource *surface);
72     static const struct wl_surface_extension_interface surface_extension_interface;
73
74 };
75
76 class ExtendedSurface
77 {
78 public:
79     ExtendedSurface(struct wl_client *client, uint32_t id, Surface *surface);
80     ~ExtendedSurface();
81
82     void sendGenericProperty(const QString &name, const QVariant &variant);
83     void sendOnScreenVisibility(bool visible);
84
85     void setSubSurface(ExtendedSurface *subSurface,int x, int y);
86     void removeSubSurface(ExtendedSurface *subSurfaces);
87     ExtendedSurface *parent() const;
88     void setParent(ExtendedSurface *parent);
89     QLinkedList<WaylandSurface *> subSurfaces() const;
90
91     Qt::ScreenOrientation windowOrientation() const;
92     Qt::ScreenOrientation contentOrientation() const;
93
94     WaylandSurface::WindowFlags windowFlags() const { return m_windowFlags; }
95
96     qint64 processId() const;
97     void setProcessId(qint64 processId);
98
99     QVariantMap windowProperties() const;
100     QVariant windowProperty(const QString &propertyName) const;
101     void setWindowProperty(const QString &name, const QVariant &value, bool writeUpdateToClient = true);
102
103 private:
104     struct wl_resource *m_extended_surface_resource;
105     Surface *m_surface;
106
107     Qt::ScreenOrientation m_windowOrientation;
108     Qt::ScreenOrientation m_contentOrientation;
109
110     WaylandSurface::WindowFlags m_windowFlags;
111
112     QByteArray m_authenticationToken;
113     QVariantMap m_windowProperties;
114
115
116     static void update_generic_property(struct wl_client *client,
117                                     struct wl_resource *resource,
118                                     const char *name,
119                                     struct wl_array *value);
120
121     static void set_window_orientation(struct wl_client *client,
122                                        struct wl_resource *resource,
123                                        int32_t orientation);
124
125     static void set_content_orientation(struct wl_client *client,
126                                         struct wl_resource *resource,
127                                         int32_t orientation);
128
129     static void set_window_flags(struct wl_client *client,
130                                  struct wl_resource *resource,
131                                  int32_t flags);
132     void setWindowFlags(WaylandSurface::WindowFlags flags);
133
134     static const struct wl_extended_surface_interface extended_surface_interface;
135 };
136
137 }
138
139 #endif // WLEXTENDEDSURFACE_H