summaryrefslogtreecommitdiffstats
path: root/grpc-proxy/shell.cpp
diff options
context:
space:
mode:
authorMarius Vlad <marius.vlad@collabora.com>2023-07-27 16:37:15 +0300
committerMarius Vlad <marius.vlad@collabora.com>2023-08-29 13:31:20 +0000
commit2edba91d3eab0d7b3c490c12be1f9bc3b5255aa8 (patch)
treeacba33bedb176df245634e8b449b53db4a6fa735 /grpc-proxy/shell.cpp
parenta68408367cf5e254d981e1d43ba261b9aade6166 (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.cpp')
-rw-r--r--grpc-proxy/shell.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/grpc-proxy/shell.cpp b/grpc-proxy/shell.cpp
index 34f6d37..44f2117 100644
--- a/grpc-proxy/shell.cpp
+++ b/grpc-proxy/shell.cpp
@@ -121,6 +121,15 @@ Shell::SetAppOnOutput(const std::string &app_id, const std::string &output)
}
void
+Shell::SetAppPosition(const std::string &app_id, const int32_t x, const int32_t y)
+{
+ struct agl_shell *shell = this->m_shell.get();
+
+ agl_shell_set_app_position(shell, app_id.c_str(), x, y);
+ wl_display_flush(m_shell_data->wl_display);
+}
+
+void
Shell::SetAppSplit(const std::string &app_id, uint32_t orientation)
{
(void) app_id;