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/grpc-async-cb.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/grpc-async-cb.h')
-rw-r--r-- | grpc-proxy/grpc-async-cb.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/grpc-proxy/grpc-async-cb.h b/grpc-proxy/grpc-async-cb.h index 4987cf7..21a4e4d 100644 --- a/grpc-proxy/grpc-async-cb.h +++ b/grpc-proxy/grpc-async-cb.h @@ -96,6 +96,10 @@ public: const ::agl_shell_ipc::AppOnOutputRequest* request, ::agl_shell_ipc::AppOnOutputResponse* /*response*/) override; + grpc::ServerUnaryReactor *SetAppPosition(grpc::CallbackServerContext *context, + const ::agl_shell_ipc::AppPositionRequest* request, + ::agl_shell_ipc::AppPositionResponse* /*response*/) override; + grpc::ServerWriteReactor< ::agl_shell_ipc::AppStateResponse>* AppStatusState( ::grpc::CallbackServerContext* /*context*/, const ::agl_shell_ipc::AppStateRequest* /*request*/) override; |