Mir
window_management_options.h
Go to the documentation of this file.
1/*
2 * Copyright © 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 2 or 3 as
6 * 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
17#ifndef MIRAL_WINDOW_MANAGEMENT_OPTIONS_H_
18#define MIRAL_WINDOW_MANAGEMENT_OPTIONS_H_
19
20#include <functional>
21#include <memory>
22#include <string>
23#include <vector>
24
25namespace mir
26{
27class Server;
28}
29
30namespace miral
31{
34
35using WindowManagementPolicyBuilder =
36 std::function<std::unique_ptr<miral::WindowManagementPolicy>(WindowManagerTools const& tools)>;
37
39{
40 std::string const name;
41 WindowManagementPolicyBuilder const build;
42};
43
44template<typename Policy, typename ...Args>
45inline auto add_window_manager_policy(std::string const& name, Args&... args) -> WindowManagerOption
46{
47 return {name, [&args...](WindowManagerTools const& tools) -> std::unique_ptr<miral::WindowManagementPolicy>
48 { return std::make_unique<Policy>(tools, args...); }};
49}
50
52{
53public:
55 explicit WindowManagerOptions(std::initializer_list<WindowManagerOption> const& policies) : policies(policies) {}
56
57 void operator()(mir::Server& server) const;
58
59 std::vector<WindowManagerOption> const policies;
60};
61}
62
63#endif // MIRAL_WINDOW_MANAGEMENT_OPTIONS_H_
The interface through which the window management policy is determined.
Definition: window_management_policy.h:50
Definition: window_management_options.h:52
WindowManagerOptions(std::initializer_list< WindowManagerOption > const &policies)
Definition: window_management_options.h:55
std::vector< WindowManagerOption > const policies
Definition: window_management_options.h:59
void operator()(mir::Server &server) const
Window management functions for querying and updating MirAL's model.
Definition: window_manager_tools.h:58
Definition: runner.h:27
Mir Abstraction Layer.
Definition: runner.h:35
auto add_window_manager_policy(std::string const &name, Args &... args) -> WindowManagerOption
Definition: window_management_options.h:45
Definition: window_management_options.h:39
WindowManagementPolicyBuilder const build
Definition: window_management_options.h:41
std::string const name
Definition: window_management_options.h:40

Copyright © 2012-2023 Canonical Ltd.
Generated on Tue 2 May 10:01:24 UTC 2023
This documentation is licensed under the GPL version 2 or 3.