efe9f16c5855d14a5febe0e404613b68fa51c6fd
[platform/core/uifw/dali-adaptor.git] / dali / internal / system / tizen-wayland / widget-controller-tizen.cpp
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
18 // CLASS HEADER
19 #include <dali/internal/system/tizen-wayland/widget-controller-tizen.h>
20
21 // EXTERNAL INCLUDES
22 #include <bundle.h>
23 #include <widget_base.h>
24
25 namespace Dali
26 {
27 namespace Internal
28 {
29 namespace Adaptor
30 {
31 WidgetImplTizen::WidgetImplTizen(widget_base_instance_h instanceHandle)
32 : Widget::Impl(),
33   mInstanceHandle(instanceHandle),
34   mWindow(),
35   mWidgetId(),
36   mUsingKeyEvent(false)
37 {
38 }
39
40 WidgetImplTizen::~WidgetImplTizen()
41 {
42 }
43
44 void WidgetImplTizen::SetContentInfo(const std::string& contentInfo)
45 {
46   bundle*     contentBundle;
47   bundle_raw* contentBundleRaw = reinterpret_cast<bundle_raw*>(const_cast<char*>(contentInfo.c_str()));
48   int         len              = contentInfo.length();
49   contentBundle                = bundle_decode(contentBundleRaw, len);
50
51   widget_base_context_set_content_info(mInstanceHandle, contentBundle);
52
53   bundle_free(contentBundle);
54 }
55
56 bool WidgetImplTizen::IsKeyEventUsing() const
57 {
58   return mUsingKeyEvent;
59 }
60
61 void WidgetImplTizen::SetUsingKeyEvent(bool flag)
62 {
63   mUsingKeyEvent = flag;
64 }
65
66 void WidgetImplTizen::SetInformation(Dali::Window window, const std::string& widgetId)
67 {
68   mWindow = window;
69   mWidgetId = widgetId;
70 }
71
72 Dali::Window WidgetImplTizen::GetWindow() const
73 {
74   return mWindow;
75 }
76
77 std::string WidgetImplTizen::GetWidgetId() const
78 {
79   return mWidgetId;
80 }
81
82 } // namespace Adaptor
83
84 } // namespace Internal
85
86 } // namespace Dali