Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(30)

Unified Diff: third_party/wayland-protocols/include/protocol/remote-shell-unstable-v1-client-protocol.h

Issue 2104473002: third_party: Update to version 8 of remote_shell_protocol (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/wayland-protocols/include/protocol/remote-shell-unstable-v1-client-protocol.h
diff --git a/third_party/wayland-protocols/include/protocol/remote-shell-unstable-v1-client-protocol.h b/third_party/wayland-protocols/include/protocol/remote-shell-unstable-v1-client-protocol.h
index 2dd1d700274237bee137c1641883d5cc235c6f2a..fea6c8a4f030d46aa3d2c53bd2cf093c01ba5066 100644
--- a/third_party/wayland-protocols/include/protocol/remote-shell-unstable-v1-client-protocol.h
+++ b/third_party/wayland-protocols/include/protocol/remote-shell-unstable-v1-client-protocol.h
@@ -169,6 +169,27 @@ enum zwp_remote_shell_v1_error {
};
#endif /* ZWP_REMOTE_SHELL_V1_ERROR_ENUM */
+#ifndef ZWP_REMOTE_SHELL_V1_SHELL_MODE_ENUM
+#define ZWP_REMOTE_SHELL_V1_SHELL_MODE_ENUM
+/**
+ * @ingroup iface_zwp_remote_shell_v1
+ * the mode of the shell
+ *
+ * Determine how a remote surface should be stacked relative to other
+ * shell surfaces.
+ */
+enum zwp_remote_shell_v1_shell_mode {
+ /**
+ * mulitple windows
+ */
+ ZWP_REMOTE_SHELL_V1_SHELL_MODE_WINDOWED = 1,
+ /**
+ * restricted mode for table
+ */
+ ZWP_REMOTE_SHELL_V1_SHELL_MODE_TABLET = 2,
+};
+#endif /* ZWP_REMOTE_SHELL_V1_SHELL_MODE_ENUM */
+
/**
* @ingroup iface_zwp_remote_shell_v1
* @struct zwp_remote_shell_v1_listener
@@ -196,6 +217,18 @@ struct zwp_remote_shell_v1_listener {
struct zwp_remote_shell_v1 *zwp_remote_shell_v1,
struct wl_surface *gained_active,
struct wl_surface *lost_active);
+ /**
+ * desktop mode changed
+ *
+ * The shell_mode_changed event is sent by the compositor when
+ * the shell mode was changed.
+ *
+ * This is an event to notify that the shell mode has switched.
+ * @since 7
+ */
+ void (*shell_mode_changed)(void *data,
+ struct zwp_remote_shell_v1 *zwp_remote_shell_v1,
+ uint32_t shell_mode);
};
/**
@@ -448,6 +481,8 @@ zwp_remote_surface_v1_add_listener(struct zwp_remote_surface_v1 *zwp_remote_surf
#define ZWP_REMOTE_SURFACE_V1_SET_RECTANGULAR_SHADOW 11
#define ZWP_REMOTE_SURFACE_V1_SET_TITLE 12
#define ZWP_REMOTE_SURFACE_V1_SET_TOP_INSET 13
+#define ZWP_REMOTE_SURFACE_V1_SET_SYSTEM_MODAL 14
+#define ZWP_REMOTE_SURFACE_V1_UNSET_SYSTEM_MODAL 15
/**
* @ingroup iface_zwp_remote_surface_v1
@@ -505,6 +540,14 @@ zwp_remote_surface_v1_add_listener(struct zwp_remote_surface_v1 *zwp_remote_surf
* @ingroup iface_zwp_remote_surface_v1
*/
#define ZWP_REMOTE_SURFACE_V1_SET_TOP_INSET_SINCE_VERSION 5
+/**
+ * @ingroup iface_zwp_remote_surface_v1
+ */
+#define ZWP_REMOTE_SURFACE_V1_SET_SYSTEM_MODAL_SINCE_VERSION 7
+/**
+ * @ingroup iface_zwp_remote_surface_v1
+ */
+#define ZWP_REMOTE_SURFACE_V1_UNSET_SYSTEM_MODAL_SINCE_VERSION 7
/** @ingroup iface_zwp_remote_surface_v1 */
static inline void
@@ -770,6 +813,30 @@ zwp_remote_surface_v1_set_top_inset(struct zwp_remote_surface_v1 *zwp_remote_sur
ZWP_REMOTE_SURFACE_V1_SET_TOP_INSET, height);
}
+/**
+ * @ingroup iface_zwp_remote_surface_v1
+ *
+ * Suggests a surface should become system modal.
+ */
+static inline void
+zwp_remote_surface_v1_set_system_modal(struct zwp_remote_surface_v1 *zwp_remote_surface_v1)
+{
+ wl_proxy_marshal((struct wl_proxy *) zwp_remote_surface_v1,
+ ZWP_REMOTE_SURFACE_V1_SET_SYSTEM_MODAL);
+}
+
+/**
+ * @ingroup iface_zwp_remote_surface_v1
+ *
+ * Suggests a surface should become non system modal.
+ */
+static inline void
+zwp_remote_surface_v1_unset_system_modal(struct zwp_remote_surface_v1 *zwp_remote_surface_v1)
+{
+ wl_proxy_marshal((struct wl_proxy *) zwp_remote_surface_v1,
+ ZWP_REMOTE_SURFACE_V1_UNSET_SYSTEM_MODAL);
+}
+
#define ZWP_NOTIFICATION_SURFACE_V1_DESTROY 0
/**

Powered by Google App Engine
This is Rietveld 408576698