add license text to implementation files
[staging/windowmanager.git] / src / layout.hpp
1 /*
2  * Copyright (C) 2017 Mentor Graphics Development (Deutschland) GmbH
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 //
18 // Created by mfritzsc on 6/27/17.
19 //
20
21 #ifndef TMCAGLWM_LAYOUT_HPP
22 #define TMCAGLWM_LAYOUT_HPP
23
24 #include <cstdint>
25 #include <string>
26
27 #include "result.hpp"
28 #include "wayland.hpp"
29
30 namespace wm {
31
32 // Areas and layouts are defined to have a name, let's just keep it this way,
33 // we will not copy them around anyway.
34 struct area {
35    std::string name;
36    genivi::rect rect;
37    uint32_t layer;  // i.e. zorder?
38 };
39
40 struct layout {
41    static constexpr unsigned MAX_N_AREAS = 2;
42
43    std::string name;
44    uint32_t n_areas;
45    struct area areas[MAX_N_AREAS];
46 };
47
48 typedef std::vector<struct layout> layouts_type;
49
50 }  // namespace wm
51
52 #endif  // TMCAGLWM_LAYOUT_HPP