diff options
author | Marius Vlad <marius.vlad@collabora.com> | 2023-07-31 14:41:48 +0300 |
---|---|---|
committer | Marius Vlad <marius.vlad@collabora.com> | 2023-08-29 13:31:20 +0000 |
commit | ca537df2c52990acf97fb1c42ec2d993c60eae2d (patch) | |
tree | 04dee27f2bec9969285547bb7815238264bf2bff /protocol | |
parent | 2edba91d3eab0d7b3c490c12be1f9bc3b5255aa8 (diff) |
grpc-proxy: Add dynamic scale of floating windows
This adds basic scaling for floating windows, sending new dimensions to
the clients to resize itself.
Bug-AGL: SPEC-4862
Signed-off-by: Marius Vlad <marius.vlad@collabora.com>
Change-Id: Ic693153cd704b278dcddd2514afc8dafecf8829b
Diffstat (limited to 'protocol')
-rw-r--r-- | protocol/agl-shell.xml | 20 |
1 files changed, 19 insertions, 1 deletions
diff --git a/protocol/agl-shell.xml b/protocol/agl-shell.xml index b85cf01..b11beb6 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="9"> + <interface name="agl_shell" version="10"> <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. @@ -324,6 +324,24 @@ <arg name="x" type="int"/> <arg name="y" type="int"/> </request> + + <request name="set_app_scale" since="10"> + <description summary="scale window to a specific rectangle"> + Clients can inform the compositor to scale a floating type of window + to the values specified in width and height. If the window is + not a floating type, the request will be discarded. If the window + doesn't exist the compositor will ignore the request. For this request + to function properly the window would first to be set as floating + and then it can be moved using this request. + + + 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="width" type="int"/> + <arg name="height" type="int"/> + </request> </interface> <interface name="agl_shell_ext" version="1"> |