diff options
author | Marius Vlad <marius.vlad@collabora.com> | 2023-01-20 13:34:00 +0200 |
---|---|---|
committer | Marius Vlad <marius.vlad@collabora.com> | 2023-03-01 12:38:14 +0200 |
commit | 65fc5191f046ad8c7ba1bfd9e2e75afb925b4a21 (patch) | |
tree | 447de644e8e288ade0c9da629efb15a4cb8a408f /protocol/agl-shell.xml | |
parent | 28ec0cff16d62260fb1a5900f57353f48446e199 (diff) |
protocol/grpc-proxy: Add deactivate_app request
This request will hide the currently active window, and activate
either the background or the previously active window.
This request mimics the agl-shell-desktop request, actually using the
same code path. It only handles regular windows and float/pop-up. Once
we add other roles like fullscreen/split we can improve on this.
Bug-AGL: SPEC-4673
Signed-off-by: Marius Vlad <marius.vlad@collabora.com>
Change-Id: I593cda5d008dfc32fe5e3b079fad9450dc1a490d
Diffstat (limited to 'protocol/agl-shell.xml')
-rw-r--r-- | protocol/agl-shell.xml | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/protocol/agl-shell.xml b/protocol/agl-shell.xml index b8f219e..d3640f6 100644 --- a/protocol/agl-shell.xml +++ b/protocol/agl-shell.xml @@ -22,7 +22,7 @@ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. </copyright> - <interface name="agl_shell" version="4"> + <interface name="agl_shell" version="5"> <description summary="user interface for Automotive Grade Linux platform"> Starting with version 2 of the protocol, the client is required to wait for the 'bound_ok' or 'bound_fail' events in order to proceed further. @@ -200,6 +200,23 @@ <arg name="width" type="int" summary="width of rectangle"/> <arg name="height" type="int" summary="height of rectangle"/> </request> + + <request name="deactivate_app" since="5"> + <description summary="de-activate/hide window identified by app_id"> + Ask the compositor to hide the toplevel window for window + management purposes. Depending on the window role, this request + will either display the previously active window (or the background + in case there's no previously active surface) or temporarily (or + until a 'activate_app' is called upon) hide the surface. + + All the surfaces are identifiable by using the app_id, and no actions + are taken in case the app_id is not/was not present. + + See xdg_toplevel.set_app_id from the xdg-shell protocol for a + description of app_id. + </description> + <arg name="app_id" type="string"/> + </request> </interface> <interface name="agl_shell_ext" version="1"> |