Modify AppCoreUiThreadBase class
[platform/core/appfw/app-core.git] / tizen-cpp / app-core-ui-cpp / wayland_handler_private.hh
1 /*
2  * Copyright (c) 2021 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_WAYLAND_HANDLER_PRIVATE_HH_
18 #define TIZEN_CPP_APP_CORE_UI_CPP_WAYLAND_HANDLER_PRIVATE_HH_
19
20 #include <tizen-extension-client-protocol.h>
21 #include <wayland-client.h>
22 #include <wayland-tbm-client.h>
23
24 #include <string>
25
26 namespace tizen_cpp {
27
28 class WaylandHandler {
29  public:
30   WaylandHandler();
31   ~WaylandHandler();
32
33   int Init();
34   void Fini();
35   void SetBgState();
36   void UnsetBgState();
37   void SetAppId(const std::string& app_id);
38
39  private:
40   static void WlListenerCb(void* data, struct wl_registry* reg,
41       uint32_t id, const char* interface, uint32_t ver);
42   static void WlListenerRemoveCb(void* data, struct wl_registry* reg,
43       unsigned int id);
44
45  private:
46   bool initialized_ = false;
47   struct wl_display* dsp_ = nullptr;
48   struct wl_registry* reg_ = nullptr;
49   struct tizen_policy* tz_policy_ = nullptr;
50
51   const struct wl_registry_listener reg_listener_ = {
52     WlListenerCb,
53     WlListenerRemoveCb
54   };
55 };
56
57 }  // namespace tizen_cpp
58
59 #endif  // TIZEN_CPP_APP_CORE_UI_CPP_WAYLAND_HANDLER_PRIVATE_HH_