diff options
author | Marius Vlad <marius.vlad@collabora.com> | 2023-07-27 16:37:15 +0300 |
---|---|---|
committer | Marius Vlad <marius.vlad@collabora.com> | 2023-08-29 13:31:20 +0000 |
commit | 2edba91d3eab0d7b3c490c12be1f9bc3b5255aa8 (patch) | |
tree | acba33bedb176df245634e8b449b53db4a6fa735 /grpc-proxy/shell.h | |
parent | a68408367cf5e254d981e1d43ba261b9aade6166 (diff) |
grpc-proxy: Add dynamic floating window movement
This adds basic movement for floating type of windows. The window needs
to be a floating type for this request to work out.
For the agl-shell protocol, this adds a set_app_float() request while
for gRPC it adds a SetAppPosition() request.
Bug-AGL: SPEC-4863
Signed-off-by: Marius Vlad <marius.vlad@collabora.com>
Change-Id: I5ecc4257c3e84d15a8cabb183757753be37867f5
Diffstat (limited to 'grpc-proxy/shell.h')
-rw-r--r-- | grpc-proxy/shell.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/grpc-proxy/shell.h b/grpc-proxy/shell.h index b047eef..b9a818c 100644 --- a/grpc-proxy/shell.h +++ b/grpc-proxy/shell.h @@ -46,4 +46,5 @@ public: void SetAppNormal(const std::string &app_id); void SetAppFullscreen(const std::string &app_id); void SetAppOnOutput(const std::string &app_id, const std::string &output); + void SetAppPosition(const std::string &app_id, int32_t x, int32_t y); }; |