30e013fd164538d4495665cb324f66d456f25ad4
[apps/agl-service-windowmanager.git] / src / wm_layer_control.cpp
1 /*\r
2  * Copyright (c) 2017 TOYOTA MOTOR CORPORATION\r
3  *\r
4  * Licensed under the Apache License, Version 2.0 (the "License");\r
5  * you may not use this file except in compliance with the License.\r
6  * You may obtain a copy of the License at\r
7  *\r
8  *      http://www.apache.org/licenses/LICENSE-2.0\r
9  *\r
10  * Unless required by applicable law or agreed to in writing, software\r
11  * distributed under the License is distributed on an "AS IS" BASIS,\r
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
13  * See the License for the specific language governing permissions and\r
14  * limitations under the License.\r
15  */\r
16 \r
17 #include <assert.h>\r
18 #include "layers.hpp"\r
19 #include "wm_layer.hpp"\r
20 #include "wm_layer_control.hpp"\r
21 \r
22 using std::string;\r
23 \r
24 namespace wm {\r
25 \r
26 LayerControl::LayerControl(const string& path) : wm_layers()\r
27 {\r
28     WMError ret = this->load(path);\r
29     assert(ret == WMError::SUCCESS);\r
30 }\r
31 \r
32 LayerControl::~LayerControl()\r
33 {}\r
34 \r
35 unsigned LayerControl::getNewLayerID(const string& role)\r
36 {\r
37     unsigned ret = 0;\r
38     for(const auto& l: this->wm_layers)\r
39     {\r
40         ret = l->getNewLayerID(role);\r
41         if(ret != 0)\r
42         {\r
43             break;\r
44         }\r
45     }\r
46     return ret;\r
47 }\r
48 \r
49 WMError LayerControl::updateLayer(WMLayer& wm_layer)\r
50 {\r
51     return WMError::SUCCESS;\r
52 }\r
53 \r
54 void LayerControl::commitChange() {}\r
55 \r
56 void LayerControl::undoUpdate() {}\r
57 \r
58 WMError LayerControl::load(const string &path)\r
59 {\r
60     return WMError::SUCCESS;\r
61 }\r
62 \r
63 } // namespace wm