Modify AppCoreUiThreadBase class
[platform/core/appfw/app-core.git] / tizen-cpp / app-core-ui-cpp / window_position_private.hh
1 /*
2  * Copyright (c) 2023 Samsung Electronics Co., Ltd.
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 #ifndef TIZEN_CPP_APP_CORE_UI_CPP_WINDOW_POSITION_PRIVATE_HH_
18 #define TIZEN_CPP_APP_CORE_UI_CPP_WINDOW_POSITION_PRIVATE_HH_
19
20 #include <bundle_cpp.h>
21
22 #include <memory>
23
24 namespace tizen_cpp {
25
26 class WindowPosition {
27  public:
28   WindowPosition(int x, int y, int w, int h);
29
30   int GetPositionX() const;
31   int GetPositionY() const;
32   int GetScreenWidth() const;
33   int GetScreenHeight() const;
34
35  private:
36   int x_;
37   int y_;
38   int w_;
39   int h_;
40 };
41
42 class WindowPositionManager {
43  public:
44   WindowPositionManager() = default;
45
46   void WriteToFile(const std::unique_ptr<WindowPosition>& win_pos);
47   std::unique_ptr<WindowPosition> ReadFromFile();
48   std::unique_ptr<WindowPosition> ReadFromBundle(const tizen_base::Bundle& b);
49 };
50
51 }  // namespace tizen_cpp
52
53 #endif  // TIZEN_CPP_APP_CORE_UI_CPP_WINDOW_POSITION_PRIVATE_HH_