587ed907a94c034d4bb4fb01319675853e02215d
[src/agl-compositor.git] / grpc-proxy / shell.h
1 /*
2  * Copyright © 2022 Collabora, Ltd.
3  *
4  * Permission is hereby granted, free of charge, to any person obtaining
5  * a copy of this software and associated documentation files (the
6  * "Software"), to deal in the Software without restriction, including
7  * without limitation the rights to use, copy, modify, merge, publish,
8  * distribute, sublicense, and/or sell copies of the Software, and to
9  * permit persons to whom the Software is furnished to do so, subject to
10  * the following conditions:
11  *
12  * The above copyright notice and this permission notice (including the
13  * next paragraph) shall be included in all copies or substantial
14  * portions of the Software.
15  *
16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19  * NONINFRINGEMENT.  IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
20  * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
21  * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
22  * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23  * SOFTWARE.
24  */
25 #pragma once
26
27 #include <memory>
28
29 #include "agl-shell-client-protocol.h"
30
31 #include "main-grpc.h"
32
33 class Shell {
34 public:
35         std::shared_ptr<struct agl_shell> m_shell;
36         struct shell_data *m_shell_data;
37
38         Shell(std::shared_ptr<struct agl_shell> shell,
39               struct shell_data *sh_data) :
40                 m_shell(shell), m_shell_data(sh_data) { }
41         void ActivateApp(const std::string &app_id, const std::string &output_name);
42         void DeactivateApp(const std::string &app_id);
43         void SetAppSplit(const std::string &app_id, uint32_t orientation, const std::string &output_name);
44         void SetAppFloat(const std::string &app_id,
45                          int32_t x_pos, int32_t y_pos);
46         void SetAppNormal(const std::string &app_id);
47         void SetAppFullscreen(const std::string &app_id);
48         void SetAppOnOutput(const std::string &app_id, const std::string &output);
49         void SetAppPosition(const std::string &app_id, int32_t x, int32_t y);
50         void SetAppScale(const std::string &app_id, int32_t width, int32_t height);
51 };