Mir
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
session.h
Go to the documentation of this file.
1 /*
2  * Copyright © 2012 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: Robert Carr <racarr@canonical.com>
17  */
18 
19 #ifndef MIR_FRONTEND_SESSION_H_
20 #define MIR_FRONTEND_SESSION_H_
21 
22 #include "mir_toolkit/common.h"
24 
25 #include <mutex>
26 #include <atomic>
27 #include <memory>
28 #include <string>
29 
30 namespace mir
31 {
32 namespace shell
33 {
34 struct SurfaceCreationParameters;
35 }
36 
37 namespace graphics
38 {
39 class DisplayConfiguration;
40 }
41 
42 namespace frontend
43 {
44 class Surface;
45 
46 class Session
47 {
48 public:
49  virtual ~Session() {}
50 
52  virtual void destroy_surface(SurfaceId surface) = 0;
53  virtual std::shared_ptr<Surface> get_surface(SurfaceId surface) const = 0;
54 
55  virtual std::string name() const = 0;
56 
57  virtual void hide() = 0;
58  virtual void show() = 0;
59 
60  virtual void send_display_config(graphics::DisplayConfiguration const&) = 0;
61  virtual int configure_surface(SurfaceId id, MirSurfaceAttrib attrib, int value) = 0;
62 
63 protected:
64  Session() = default;
65  Session(Session const&) = delete;
66  Session& operator=(Session const&) = delete;
67 };
68 
69 }
70 }
71 
72 #endif // MIR_FRONTEND_SESSION_H_

Copyright © 2012,2013 Canonical Ltd.
Generated on Wed Oct 30 18:52:19 UTC 2013