Merge "Fix ZWJ, ZWNJ issues" into devel/master
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / internal / visuals / visual-factory-impl.h
1 #ifndef DALI_TOOLKIT_VISUAL_FACTORY_IMPL_H
2 #define DALI_TOOLKIT_VISUAL_FACTORY_IMPL_H
3
4 /*
5  * Copyright (c) 2021 Samsung Electronics Co., Ltd.
6  *
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  * http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  */
19
20 // EXTERNAL INCLUDES
21 #include <dali/public-api/object/base-object.h>
22
23 // INTERNAL INCLUDES
24 #include <dali-toolkit/devel-api/styling/style-manager-devel.h>
25 #include <dali-toolkit/devel-api/visual-factory/visual-base.h>
26 #include <dali-toolkit/devel-api/visual-factory/visual-factory.h>
27 #include <dali-toolkit/internal/visuals/visual-base-impl.h>
28 #include <dali-toolkit/public-api/styling/style-manager.h>
29
30 namespace Dali
31 {
32 namespace Toolkit
33 {
34 namespace Internal
35 {
36 class VisualFactoryCache;
37 class ImageVisualShaderFactory;
38
39 /**
40  * @copydoc Toolkit::VisualFactory
41  */
42 class VisualFactory : public BaseObject
43 {
44 public:
45   /**
46    * @brief Constructor
47    *
48    * @param[in] debugEnabled If true, use debug renderer to replace all the concrete renderer.
49    */
50   VisualFactory(bool debugEnabled);
51
52   /**
53    * @brief StyleChanged callback
54    *
55    * @param[in] styleManager Handle for style manager.
56    * @param[in] type Style change type.
57    */
58   void OnStyleChangedSignal(Toolkit::StyleManager styleManager, StyleChange::Type type);
59
60   /**
61    * @brief BrokenImageChanged callback
62    *
63    * @param[in] styleManager Handle for style manager.
64    */
65   void OnBrokenImageChangedSignal(Toolkit::StyleManager styleManager);
66
67   /**
68    * @copydoc Toolkit::VisualFactory::CreateVisual( const Property::Map& )
69    */
70   Toolkit::Visual::Base CreateVisual(const Property::Map& propertyMap);
71
72   /**
73    * @copydoc Toolkit::VisualFactory::CreateVisual( const std::string&, ImageDimensions )
74    */
75   Toolkit::Visual::Base CreateVisual(const std::string& image, ImageDimensions size);
76
77   /**
78    * @copydoc Toolkit::VisualFactory::SetPreMultiplyOnLoad()
79    */
80   void SetPreMultiplyOnLoad(bool preMultiply);
81
82   /**
83    * @copydoc Toolkit::VisualFactory::GetPreMultiplyOnLoad()
84    */
85   bool GetPreMultiplyOnLoad() const;
86
87   /**
88    * @return the reference to texture manager
89    */
90   Internal::TextureManager& GetTextureManager();
91
92 protected:
93   /**
94    * A reference counted object may only be deleted by calling Unreference()
95    */
96   ~VisualFactory() override;
97
98 private:
99   /**
100    * @brief Set the Broken Image url
101    * @param[in] styleManager The instance of StyleManager
102    */
103   void SetBrokenImageUrl(Toolkit::StyleManager& styleManager);
104
105   /**
106    * Get the factory cache, creating it if necessary.
107    */
108   Internal::VisualFactoryCache& GetFactoryCache();
109
110   /**
111    * Get the image visual shader factory, creating it if necessary.
112    */
113   ImageVisualShaderFactory& GetImageVisualShaderFactory();
114
115   VisualFactory(const VisualFactory&) = delete;
116
117   VisualFactory& operator=(const VisualFactory& rhs) = delete;
118
119 private:
120   std::unique_ptr<VisualFactoryCache>       mFactoryCache;
121   std::unique_ptr<ImageVisualShaderFactory> mImageVisualShaderFactory;
122   SlotDelegate<VisualFactory>               mSlotDelegate;
123   bool                                      mDebugEnabled : 1;
124   bool                                      mPreMultiplyOnLoad : 1; ///< Local store for this flag
125 };
126
127 /**
128  * @brief Template to allow discard old visual, get new one and set it on stage if possible
129  *
130  * @tparam ParameterType0 The type of first argument passed to the CreateVisual()
131  * @tparam ParameterType1 The type of second argument passed to the CreateVisual()
132  * @SINCE_1_0.39
133  * @param[in] actor Actor for which the visual will be replaced
134  * @param[in,out] visual The visual to be replaced
135  * @param[in] param0 First template based argument passed to the visual factory
136  * @param[in] param1 Second template based argument passed to the visual factory
137  */
138 template<class ParameterType0, class ParameterType1>
139 void InitializeVisual(Actor& actor, Toolkit::Visual::Base& visual, ParameterType0& param0, ParameterType1& param1)
140 {
141   if(actor)
142   {
143     Toolkit::GetImplementation(visual).SetOffScene(actor);
144   }
145   visual = Toolkit::VisualFactory::Get().CreateVisual(param0, param1);
146   if(visual && actor && actor.GetProperty<bool>(Actor::Property::CONNECTED_TO_SCENE))
147   {
148     Toolkit::GetImplementation(visual).SetOnScene(actor);
149   }
150 }
151
152 /**
153  * @brief Template to allow discard old visual, get new one and set it on stage if possible
154  *
155  * @tparam ParameterType The type of argument passed to the CreateVisual()
156  * @SINCE_1_0.39
157  * @param[in] actor Actor for which the visual will be replaced
158  * @param[in,out] visual The visual to be replaced
159  * @param[in] param Template based argument passed to the visual factory
160  */
161 template<class ParameterType>
162 void InitializeVisual(Actor& actor, Toolkit::Visual::Base& visual, ParameterType& param)
163 {
164   if(actor && visual)
165   {
166     Toolkit::GetImplementation(visual).SetOffScene(actor);
167   }
168   visual = Toolkit::VisualFactory::Get().CreateVisual(param);
169   if(visual && actor && actor.GetProperty<bool>(Actor::Property::CONNECTED_TO_SCENE))
170   {
171     Toolkit::GetImplementation(visual).SetOnScene(actor);
172   }
173 }
174
175 } // namespace Internal
176
177 inline const Internal::VisualFactory& GetImplementation(const Toolkit::VisualFactory& factory)
178 {
179   DALI_ASSERT_ALWAYS(factory && "VisualFactory handle is empty");
180
181   const BaseObject& handle = factory.GetBaseObject();
182
183   return static_cast<const Internal::VisualFactory&>(handle);
184 }
185
186 inline Internal::VisualFactory& GetImplementation(Toolkit::VisualFactory& factory)
187 {
188   DALI_ASSERT_ALWAYS(factory && "VisualFactory handle is empty");
189
190   BaseObject& handle = factory.GetBaseObject();
191
192   return static_cast<Internal::VisualFactory&>(handle);
193 }
194
195 } // namespace Toolkit
196
197 } // namespace Dali
198
199 #endif /* DALI_TOOLKIT_VISUAL_FACTORY_IMPL_H */