Mir
shell_wrapper.h
Go to the documentation of this file.
1 /*
2  * Copyright © 2014 Canonical Ltd.
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,
6  * as published by the Free Software Foundation.
7  *
8  * This program is distributed in the hope that it will be useful,
9  * but WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11  * GNU General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public License
14  * along with this program. If not, see <http://www.gnu.org/licenses/>.
15  *
16  * Authored By: Alan Griffiths <alan@octopull.co.uk>
17  */
18 
19 #ifndef MIR_FRONTEND_SHELL_WRAPPER_H_
20 #define MIR_FRONTEND_SHELL_WRAPPER_H_
21 
22 #include "mir/frontend/shell.h"
23 
24 namespace mir
25 {
26 namespace frontend
27 {
28 class ShellWrapper : public Shell
29 {
30 public:
31  explicit ShellWrapper(std::shared_ptr<Shell> const& wrapped) :
32  wrapped(wrapped) {}
33 
34  virtual ~ShellWrapper() = default;
35 
36  std::shared_ptr<Session> open_session(
37  pid_t client_pid,
38  std::string const& name,
39  std::shared_ptr<EventSink> const& sink) override;
40 
41  void close_session(std::shared_ptr<Session> const& session) override;
42 
43  std::shared_ptr<PromptSession> start_prompt_session_for(
44  std::shared_ptr<Session> const& session,
45  scene::PromptSessionCreationParameters const& params) override;
46 
48  std::shared_ptr<PromptSession> const& prompt_session,
49  std::shared_ptr<Session> const& session) override;
50 
52  std::shared_ptr<PromptSession> const& prompt_session) override;
53 
55  std::shared_ptr<Session> const& session,
57  std::shared_ptr<EventSink> const& sink) override;
58 
59  void modify_surface(std::shared_ptr<Session> const& session, SurfaceId surface, shell::SurfaceSpecification const& modifications) override;
60 
61  void destroy_surface(std::shared_ptr<Session> const& session, SurfaceId surface) override;
62 
63  std::string persistent_id_for(std::shared_ptr<Session> const& session, SurfaceId surface) override;
64 
65  std::shared_ptr<scene::Surface> surface_for_id(std::string const& serialised_id) override;
66 
68  std::shared_ptr<Session> const& session,
69  SurfaceId surface_id,
70  MirSurfaceAttrib attrib,
71  int value) override;
72 
74  std::shared_ptr<Session> const& session,
75  SurfaceId surface_id,
76  MirSurfaceAttrib attrib) override;
77 
78  void raise_surface(
79  std::shared_ptr<Session> const& session,
80  SurfaceId surface_id,
81  uint64_t timestamp) override;
82 
83 protected:
84  std::shared_ptr<Shell> const wrapped;
85 };
86 }
87 }
88 
89 #endif /* MIR_FRONTEND_SHELL_WRAPPER_H_ */
void stop_prompt_session(std::shared_ptr< PromptSession > const &prompt_session) override
Definition: shell_wrapper.cpp:51
All things Mir.
Definition: atomic_callback.h:25
virtual ~ShellWrapper()=default
void modify_surface(std::shared_ptr< Session > const &session, SurfaceId surface, shell::SurfaceSpecification const &modifications) override
Definition: shell_wrapper.cpp:65
void destroy_surface(std::shared_ptr< Session > const &session, SurfaceId surface) override
Definition: shell_wrapper.cpp:70
ShellWrapper(std::shared_ptr< Shell > const &wrapped)
Definition: shell_wrapper.h:31
int set_surface_attribute(std::shared_ptr< Session > const &session, SurfaceId surface_id, MirSurfaceAttrib attrib, int value) override
Definition: shell_wrapper.cpp:85
Definition: shell_wrapper.h:28
std::shared_ptr< scene::Surface > surface_for_id(std::string const &serialised_id) override
Definition: shell_wrapper.cpp:80
SurfaceId create_surface(std::shared_ptr< Session > const &session, scene::SurfaceCreationParameters const &params, std::shared_ptr< EventSink > const &sink) override
Definition: shell_wrapper.cpp:57
std::string persistent_id_for(std::shared_ptr< Session > const &session, SurfaceId surface) override
Definition: shell_wrapper.cpp:75
std::shared_ptr< PromptSession > start_prompt_session_for(std::shared_ptr< Session > const &session, scene::PromptSessionCreationParameters const &params) override
Definition: shell_wrapper.cpp:37
int get_surface_attribute(std::shared_ptr< Session > const &session, SurfaceId surface_id, MirSurfaceAttrib attrib) override
Definition: shell_wrapper.cpp:94
Definition: shell.h:46
MirSurfaceAttrib
Attributes of a surface that the client and server/shell may wish to get or set over the wire...
Definition: common.h:34
void close_session(std::shared_ptr< Session > const &session) override
Definition: shell_wrapper.cpp:32
std::shared_ptr< Shell > const wrapped
Definition: shell_wrapper.h:84
void add_prompt_provider_for(std::shared_ptr< PromptSession > const &prompt_session, std::shared_ptr< Session > const &session) override
Definition: shell_wrapper.cpp:44
void raise_surface(std::shared_ptr< Session > const &session, SurfaceId surface_id, uint64_t timestamp) override
Definition: shell_wrapper.cpp:102
Definition: surface_creation_parameters.h:41
std::shared_ptr< Session > open_session(pid_t client_pid, std::string const &name, std::shared_ptr< EventSink > const &sink) override
Definition: shell_wrapper.cpp:24
Definition: prompt_session_creation_parameters.h:29
Specification of surface properties requested by client.
Definition: surface_specification.h:50

Copyright © 2012-2015 Canonical Ltd.
Generated on Thu Sep 8 14:50:19 UTC 2016