1fb07865427c9aa3484dd52fd954d492043d93dd
[platform/core/uifw/widget-viewer-dali.git] / internal / widget_view_manager / widget_view_manager_impl.h
1 #ifndef __DALI_WIDGET_VIEW_INTERNAL_WIDGET_VIEW_MANAGER_H__
2 #define __DALI_WIDGET_VIEW_INTERNAL_WIDGET_VIEW_MANAGER_H__
3
4 /*
5  * Samsung API
6  * Copyright (c) 2016 Samsung Electronics Co., Ltd.
7  *
8  * Licensed under the Flora License, Version 1.1 (the License);
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  * http://floralicense.org/license/
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an AS IS BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  */
20
21 // INTERNAL INCLUDES
22 #include <public_api/widget_view/widget_view.h>
23 #include <public_api/widget_view_manager/widget_view_manager.h>
24
25 // EXTERNAL INCLUDES
26 #include <dali/public-api/object/base-object.h>
27 #include <map>
28
29 namespace Dali
30 {
31
32 namespace WidgetView
33 {
34
35 namespace Internal
36 {
37
38 class WidgetViewManager;
39 typedef IntrusivePtr<WidgetViewManager> WidgetViewManagerPtr;
40
41 class WidgetViewManager : public BaseObject, public ConnectionTracker
42 {
43 public:
44
45   /**
46    * @copydoc Dali::WidgetView::WidgetViewManager::New()
47    */
48   static WidgetViewManagerPtr New( Application application, const std::string& name );
49
50   /**
51    * @copydoc Dali::WidgetView::WidgetViewManager::AddWidget()
52    */
53   Dali::WidgetView::WidgetView AddWidget( const std::string& widgetId, const std::string& contentInfo, int width, int height, float updatePeriod );
54
55 private:
56
57   /**
58    * Construct a new WidgetViewManager.
59    */
60   WidgetViewManager();
61
62   /**
63    * A reference counted object may only be deleted by calling Unreference()
64    */
65   virtual ~WidgetViewManager();
66
67   /**
68    * Initialize the WidgetViewManager
69    */
70   int Initialize( Application application, const std::string& name );
71
72   static int WidgetEventCallback( const char* widgetId, const char* instanceId, int event, void* data );
73
74 private:
75
76   // Undefined
77   WidgetViewManager( const WidgetViewManager& );
78
79   // Undefined
80   WidgetViewManager& operator= ( const WidgetViewManager& );
81
82 private:
83
84   typedef std::map<std::string, Dali::WidgetView::WidgetView> WidgetViewContainer;
85   typedef WidgetViewContainer::iterator WidgetViewIter;
86
87   WidgetViewContainer mWidgetViewContainer;
88 };
89
90 } // namespace Internal
91
92 // Helpers for public-api forwarding methods
93
94 inline Internal::WidgetViewManager& GetImplementation( WidgetViewManager& obj )
95 {
96   DALI_ASSERT_ALWAYS( obj );
97
98   Dali::BaseObject& handle = obj.GetBaseObject();
99
100   return static_cast<Internal::WidgetViewManager&>( handle );
101 }
102
103 inline const Internal::WidgetViewManager& GetImplementation( const WidgetViewManager& obj )
104 {
105   DALI_ASSERT_ALWAYS( obj );
106
107   const Dali::BaseObject& handle = obj.GetBaseObject();
108
109   return static_cast<const Internal::WidgetViewManager&>( handle );
110 }
111
112 } // namespace WidgetView
113
114 } // namespace Dali
115
116 #endif // __DALI_WIDGET_VIEW_INTERNAL_WIDGET_VIEW_MANAGER_H__