Chromium Code Reviews| Index: third_party/wayland-protocols/unstable/remote-shell/remote-shell-unstable-v1.xml |
| diff --git a/third_party/wayland-protocols/unstable/remote-shell/remote-shell-unstable-v1.xml b/third_party/wayland-protocols/unstable/remote-shell/remote-shell-unstable-v1.xml |
| index 89d3e97c22acf152f712301aca8828cdea0429ef..7fd3a3769902b7ac69246fc7e8353cb9449564b5 100644 |
| --- a/third_party/wayland-protocols/unstable/remote-shell/remote-shell-unstable-v1.xml |
| +++ b/third_party/wayland-protocols/unstable/remote-shell/remote-shell-unstable-v1.xml |
| @@ -38,7 +38,7 @@ |
| reset. |
| </description> |
| - <interface name="zcr_remote_shell_v1" version="2"> |
| + <interface name="zcr_remote_shell_v1" version="3"> |
| <description summary="remote_shell"> |
| The global interface that allows clients to turn a wl_surface into a |
| "real window" which is remotely managed but can be stacked, activated |
| @@ -126,7 +126,7 @@ |
| <event name="configuration_changed"> |
| <description summary="suggests a re-configuration of remote shell"> |
| - Suggests a re-configuration of remote shell. |
| + Deprecated. Suggests a re-configuration of remote shell. |
| </description> |
| <arg name="width" type="int"/> |
| <arg name="height" type="int"/> |
| @@ -138,6 +138,35 @@ |
| <arg name="work_area_inset_bottom" type="int"/> |
| <arg name="layout_mode" type="uint"/> |
| </event> |
| + |
| + <!-- Version 3 additions --> |
| + |
| + <event name="workspace" version="3"> |
| + <description summary="area of remote shell"> |
| + Defines an area of the remote shell used for layout. |
| + </description> |
| + <arg name="id" type="uint"/> |
| + <arg name="x" type="int"/> |
| + <arg name="y" type="int"/> |
| + <arg name="width" type="int"/> |
| + <arg name="height" type="int"/> |
| + <arg name="inset_left" type="int"/> |
| + <arg name="inset_top" type="int"/> |
| + <arg name="inset_right" type="int"/> |
| + <arg name="inset_bottom" type="int"/> |
| + </event> |
|
reveman
2016/10/26 15:13:44
I understand that inset is the workspace but what
Dominik Laskowski
2016/10/26 19:53:10
Bounds of the workspace in virtual coordinates, i.
reveman
2016/11/11 01:36:13
Ok, makes sense.
|
| + |
| + <event name="configure" version="3"> |
| + <description summary="suggests configuration of remote shell"> |
| + Suggests a new configuration of the remote shell. Preceded by a series |
| + of "workspace" events. |
| + </description> |
| + <arg name="width" type="int"/> |
| + <arg name="height" type="int"/> |
| + <arg name="transform" type="int"/> |
| + <arg name="scale_factor" type="fixed"/> |
| + <arg name="layout_mode" type="uint"/> |
| + </event> |
| </interface> |
| <interface name="zcr_remote_surface_v1" version="2"> |