eb2e08ba9ff16ad586747eba430119c13768b0fd
[src/agl-compositor.git] / grpc-proxy / shell.cpp
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
26 #include <cstdio>
27 #include <ctime>
28 #include <algorithm>
29 #include <cstring>
30 #include <string>
31 #include <queue>
32
33 #include "main-grpc.h"
34 #include "shell.h"
35
36 void
37 Shell::ActivateApp(const std::string &app_id, const std::string &output_name)
38 {
39         struct window_output *woutput, *w_output;
40         struct agl_shell *shell = this->m_shell.get();
41
42         woutput = nullptr;
43         w_output = nullptr;
44
45         wl_list_for_each(woutput, &m_shell_data->output_list, link) {
46                 if (woutput->name && !strcmp(woutput->name, output_name.c_str())) {
47                         w_output = woutput;
48                         break;
49                 }
50         }
51
52         // else, get the first one available
53         if (!w_output)
54                 w_output = wl_container_of(m_shell_data->output_list.prev,
55                                            w_output, link);
56
57         agl_shell_activate_app(shell, app_id.c_str(), w_output->output);
58         wl_display_flush(m_shell_data->wl_display);
59 }
60
61 void
62 Shell::DeactivateApp(const std::string &app_id)
63 {
64         struct agl_shell *shell = this->m_shell.get();
65
66         agl_shell_deactivate_app(shell, app_id.c_str());
67         wl_display_flush(m_shell_data->wl_display);
68 }
69
70 void
71 Shell::SetAppFloat(const std::string &app_id, int32_t x_pos, int32_t y_pos)
72 {
73         struct agl_shell *shell = this->m_shell.get();
74
75         agl_shell_set_app_float(shell, app_id.c_str(), x_pos, y_pos);
76         wl_display_flush(m_shell_data->wl_display);
77 }
78
79 void
80 Shell::SetAppNormal(const std::string &app_id)
81 {
82         struct agl_shell *shell = this->m_shell.get();
83
84         agl_shell_set_app_normal(shell, app_id.c_str());
85         wl_display_flush(m_shell_data->wl_display);
86 }
87
88 void
89 Shell::SetAppSplit(const std::string &app_id, uint32_t orientation)
90 {
91         (void) app_id;
92         (void) orientation;
93 }