Merge "Changes needed for https://review.tizen.org/gerrit/#/c/191202/" into devel...
[platform/core/uifw/dali-adaptor.git] / dali / internal / system / tizen / widget-controller-tizen.cpp
1 /*
2  * Copyright (c) 2017 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/widget-controller-tizen.h>
20
21 // EXTERNAL INCLUDES
22 #include <bundle.h>
23 #include <widget_base.h>
24
25 namespace Dali
26 {
27
28 namespace Internal
29 {
30
31 namespace Adaptor
32 {
33
34 WidgetImplTizen::WidgetImplTizen( widget_base_instance_h instanceHandle )
35 : Widget::Impl(), mInstanceHandle( instanceHandle )
36 {
37 }
38
39 WidgetImplTizen::~WidgetImplTizen()
40 {
41 }
42
43 void WidgetImplTizen::SetContentInfo( const std::string& contentInfo )
44 {
45   bundle *contentBundle;
46   bundle_raw *contentBundleRaw = reinterpret_cast< bundle_raw* >( const_cast<char*>(contentInfo.c_str()) );
47   int len = contentInfo.length();
48   contentBundle = bundle_decode(contentBundleRaw, len);
49
50   widget_base_context_set_content_info( mInstanceHandle, contentBundle );
51
52   bundle_free( contentBundle );
53 }
54
55
56 } // namespace Adaptor
57
58 } // namespace Internal
59
60 } // namespace Dali