diff options
author | Marius Vlad <marius.vlad@collabora.com> | 2023-01-20 16:32:35 +0200 |
---|---|---|
committer | Marius Vlad <marius.vlad@collabora.com> | 2023-03-01 12:38:14 +0200 |
commit | 4af44df30c1784a69b96d310f152133a507bc2e1 (patch) | |
tree | 473b08dcd8123a3c30f2f8931972b98caa78b22d /protocol/agl-shell.xml | |
parent | 65fc5191f046ad8c7ba1bfd9e2e75afb925b4a21 (diff) |
protocol, grpc-proxy: Add support for set_app_float
Add support for setting a window as float/popup. This allows either the
application itself be set-up as float, or from other gRPC clients.
Bug-AGL: SPEC-4673
Signed-off-by: Marius Vlad <marius.vlad@collabora.com>
Change-Id: Ic7ee8203cd9c4dfcc51b7fc9709f35be504ae9d0
Diffstat (limited to 'protocol/agl-shell.xml')
-rw-r--r-- | protocol/agl-shell.xml | 28 |
1 files changed, 27 insertions, 1 deletions
diff --git a/protocol/agl-shell.xml b/protocol/agl-shell.xml index d3640f6..140910c 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="5"> + <interface name="agl_shell" version="6"> <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. @@ -217,6 +217,32 @@ </description> <arg name="app_id" type="string"/> </request> + + <request name="set_app_float" since="6"> + <description summary="set the window identified by app_id as float"> + Makes the application identified by app_id as floating. If the + application's window is already mapped, in a maximized, normal state, + it would transition to the float state. + + For applications that want to modify their own state, this request + must be done before the initial surface commit in order to take effect. + + If the application is already in floating state, this request wouldn't + do anything. + + There's no persistence of this request, once the application terminated + you'll to issue this request again for that particular app_id. + + The x, and y values would be initial position of the window where the + window surface will be placed. + + See xdg_toplevel.set_app_id from the xdg-shell protocol for a + description of app_id. + </description> + <arg name="app_id" type="string"/> + <arg name="x" type="int" summary="x position"/> + <arg name="y" type="int" summary="y position"/> + </request> </interface> <interface name="agl_shell_ext" version="1"> |