Mir
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
nested_display_configuration.h
Go to the documentation of this file.
1 /*
2  * Copyright © 2013 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: Eleni Maria Stea <elenimaria.stea@canonical.com>
17  */
18 
19 #ifndef MIR_GRAPHICS_NESTED_NESTED_DISPLAY_CONFIGURATION_H_
20 #define MIR_GRAPHICS_NESTED_NESTED_DISPLAY_CONFIGURATION_H_
21 
24 #include <memory>
25 
26 namespace mir
27 {
28 namespace graphics
29 {
30 namespace nested
31 {
33 {
34 public:
36  std::shared_ptr<MirDisplayConfiguration> const& display_config);
37 
38  void for_each_card(std::function<void(DisplayConfigurationCard const&)>) const override;
39  void for_each_output(std::function<void(DisplayConfigurationOutput const&)>) const override;
40  void for_each_output(std::function<void(UserDisplayConfigurationOutput&)>) override;
41 
42  operator MirDisplayConfiguration*() const { return display_config.get(); }
43 
44 private:
45  std::shared_ptr<MirDisplayConfiguration> const display_config;
46 };
47 }
48 }
49 }
50 
51 #endif // MIR_GRAPHICS_NESTED_NESTED_DISPLAY_CONFIGURATION_H_
Mirror of a DisplayConfigurationOutput, with some fields limited to being read-only, preventing users from changing things they shouldn't.
Definition: display_configuration.h:123
All things Mir.
Definition: aging_buffer.h:24
Definition: client_types.h:266
Configuration information for a display card.
Definition: display_configuration.h:43
Definition: nested_display_configuration.h:32
NestedDisplayConfiguration(std::shared_ptr< MirDisplayConfiguration > const &display_config)
Definition: nested_display_configuration.cpp:33
void for_each_card(std::function< void(DisplayConfigurationCard const &)>) const override
Executes a function object for each card in the configuration.
Definition: nested_display_configuration.cpp:39
Configuration information for a display output.
Definition: display_configuration.h:83
void for_each_output(std::function< void(DisplayConfigurationOutput const &)>) const override
Executes a function object for each output in the configuration.
Definition: nested_display_configuration.cpp:51
Interface to a configuration of display cards and outputs.
Definition: display_configuration.h:159

Copyright © 2012,2013 Canonical Ltd.
Generated on Fri Oct 10 14:07:14 UTC 2014