summaryrefslogtreecommitdiffstats
path: root/src/client/qwaylandxdgsurface_p.h
diff options
context:
space:
mode:
authorPhilippe Coval <philippe.coval@open.eurogiciel.org>2014-06-10 16:22:17 +0200
committerPhilippe Coval <rzr@gna.org>2014-06-20 13:52:38 +0200
commit4bac130b97fbaa565aa9883eb302557ef0185d50 (patch)
tree9bc1e72dab7ea574719b67fb47306ea95d4260c7 /src/client/qwaylandxdgsurface_p.h
parentb3a493786accafc5771d8242ee558b87265aa8f2 (diff)
xdg-shell: upgrade to support current version (weston-1.5.0)
The protocol file is a raw copy of Source: http://cgit.freedesktop.org/wayland/weston/plain/protocol/xdg-shell.xml?id=1.5.0 Task-number: QTBUG-38633/related Change-Id: I41ca2f89c09a8b6348ce2fbf6d59f44b4c8134df Reviewed-by: Giulio Camuffo <giulio.camuffo@jollamobile.com> Reviewed-by: Philippe Coval <rzr@gna.org>
Diffstat (limited to 'src/client/qwaylandxdgsurface_p.h')
-rw-r--r--src/client/qwaylandxdgsurface_p.h11
1 files changed, 8 insertions, 3 deletions
diff --git a/src/client/qwaylandxdgsurface_p.h b/src/client/qwaylandxdgsurface_p.h
index 744d3f377..d2a154ef0 100644
--- a/src/client/qwaylandxdgsurface_p.h
+++ b/src/client/qwaylandxdgsurface_p.h
@@ -93,10 +93,15 @@ private:
bool m_fullscreen;
QSize m_size;
- void xdg_surface_ping(uint32_t serial) Q_DECL_OVERRIDE;
- void xdg_surface_configure(uint32_t edges,
- int32_t width,
+ void xdg_surface_configure(int32_t width,
int32_t height) Q_DECL_OVERRIDE;
+ void xdg_surface_change_state(uint32_t state,
+ uint32_t value,
+ uint32_t serial) Q_DECL_OVERRIDE;
+ void xdg_surface_activated() Q_DECL_OVERRIDE;
+ void xdg_surface_deactivated() Q_DECL_OVERRIDE;
+ void xdg_surface_close() Q_DECL_OVERRIDE;
+
friend class QWaylandWindow;
};