Mir
decoration.h
Go to the documentation of this file.
1 /*
2  * Copyright © 2015 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: Daniel van Vugt <daniel.van.vugt@canonical.com>
17  */
18 
19 #ifndef MIR_COMPOSITOR_DECORATION_H_
20 #define MIR_COMPOSITOR_DECORATION_H_
21 
22 #include <string>
23 
24 namespace mir { namespace compositor {
25 
26 struct Decoration
27 {
28  enum class Type {none, surface} type;
30 
31  Decoration() : type{Type::none} {}
32  Decoration(Type t, std::string const& n) : type{t}, name{n} {}
33  operator bool() const { return type != Type::none; }
34 };
35 
36 } } // namespace mir::compositor
37 
38 #endif // MIR_COMPOSITOR_DECORATION_H_
All things Mir.
Definition: atomic_callback.h:25
std::string name
Definition: decoration.h:29
Decoration(Type t, std::string const &n)
Definition: decoration.h:32
Decoration()
Definition: decoration.h:31
Type
Definition: decoration.h:28
enum mir::compositor::Decoration::Type type
Definition: decoration.h:26

Copyright © 2012-2015 Canonical Ltd.
Generated on Wed Mar 30 00:29:56 UTC 2016