TYPE3
[iec.git] / src / type3_AndroidCloud / anbox-master / src / anbox / cmds / session_manager.h
1 /*
2  * Copyright (C) 2016 Simon Fels <morphis@gravedo.de>
3  *
4  * This program is free software: you can redistribute it and/or modify it
5  * under the terms of the GNU General Public License version 3, as published
6  * by the Free Software Foundation.
7  *
8  * This program is distributed in the hope that it will be useful, but
9  * WITHOUT ANY WARRANTY; without even the implied warranties of
10  * MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
11  * PURPOSE.  See the GNU General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public License along
14  * with this program.  If not, see <http://www.gnu.org/licenses/>.
15  *
16  */
17
18 #ifndef ANBOX_CMDS_RUN_H_
19 #define ANBOX_CMDS_RUN_H_
20
21 #include "anbox/cli.h"
22
23 #include <functional>
24 #include <iostream>
25 #include <memory>
26
27 #include "anbox/graphics/gl_renderer_server.h"
28 #include "anbox/graphics/rect.h"
29
30 namespace anbox {
31 namespace bridge {
32 class AndroidApiStub;
33 } // namespace bridge
34 namespace container {
35 class Client;
36 }  // namespace container
37 namespace cmds {
38 class SessionManager : public cli::CommandWithFlagsAndAction {
39  public:
40   SessionManager();
41
42  private:
43   void launch_appmgr_if_needed(const std::shared_ptr<bridge::AndroidApiStub> &android_api_stub);
44
45   std::shared_ptr<container::Client> container_;
46   std::string desktop_file_hint_;
47   bool single_window_ = false;
48   graphics::Rect window_size_;
49   bool standalone_ = false;
50   bool experimental_ = false;
51   bool use_system_dbus_ = false;
52   bool use_software_rendering_ = false;
53   bool no_touch_emulation_ = false;
54   bool server_side_decoration_ = false;
55 };
56 }  // namespace cmds
57 }  // namespace anbox
58
59 #endif