Merge "TextController - Update the text model." into devel/master
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / internal / styling / style-manager-impl.h
1 #ifndef __DALI_TOOLKIT_INTERNAL_STYLE_MANAGER_H__
2 #define __DALI_TOOLKIT_INTERNAL_STYLE_MANAGER_H__
3
4 /*
5  * Copyright (c) 2014 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 <string>
22 #include <dali/public-api/common/vector-wrapper.h>
23 #include <dali/devel-api/common/map-wrapper.h>
24 #include <dali/devel-api/adaptor-framework/style-monitor.h>
25 #include <dali/public-api/object/base-object.h>
26 #include <dali/public-api/object/property-map.h>
27 #include <dali/public-api/signals/connection-tracker.h>
28
29 // INTERNAL INCLUDES
30 #include <dali-toolkit/devel-api/styling/style-manager.h>
31 #include <dali-toolkit/devel-api/builder/builder.h>
32
33 namespace Dali
34 {
35
36 namespace Toolkit
37 {
38
39 namespace Internal
40 {
41
42 class FeedbackStyle;
43
44 /**
45  * @copydoc Toolkit::StyleManager
46  */
47 class StyleManager : public Dali::BaseObject, public ConnectionTracker
48 {
49 public:
50   /**
51    * Singleton access
52    *
53    * @return The StyleManager object
54    */
55   static Toolkit::StyleManager Get();
56
57   /**
58    * Construct a new StyleManager.
59    */
60   StyleManager();
61
62 protected:
63   /**
64    * @brief Destructor
65    */
66   virtual ~StyleManager();
67
68 public: // Public API
69
70   /**
71    * @copydoc Toolkit::StyleManager::SetOrientationValue
72    */
73   void SetOrientationValue( int orientation );
74
75   /**
76    * @copydoc Toolkit::StyleManager::GetOrientationValue
77    */
78   int GetOrientationValue();
79
80   /**
81    * @copydoc Toolkit::StyleManager::SetOrientation( Orientation orientation )
82    */
83   void SetOrientation( Orientation orientation );
84
85   /**
86    * @copydoc Toolkit::StyleManager::GetOrientation
87    */
88   Orientation GetOrientation();
89
90   /**
91    * @copydoc Toolkit::StyleManager::GetDefaultFontFamily
92    */
93   std::string GetDefaultFontFamily() const;
94
95   /**
96    * @copydoc Toolkit::StyleManager::SetStyleConstant
97    */
98   void SetStyleConstant( const std::string& key, const Property::Value& value );
99
100   /**
101    * @copydoc Toolkit::StyleManager::GetStyleConstant
102    */
103   bool GetStyleConstant( const std::string& key, Property::Value& valueOut );
104
105   /**
106    * @copydoc Toolkit::StyleManager::RequestThemeChange
107    */
108   void RequestThemeChange( const std::string& themeFile );
109
110   /**
111    * @copydoc Toolkit::StyleManager::RequestDefaultTheme
112    */
113   void RequestDefaultTheme();
114
115   /**
116    * @brief Apply the theme style to a control.
117    *
118    * @param[in] control The control to apply style.
119    */
120   void ApplyThemeStyle( Toolkit::Control control );
121
122   /**
123    * @brief Apply the theme style to a control at initialization.
124    *
125    * @param[in] control The control to apply style.
126    */
127   void ApplyThemeStyleAtInit( Toolkit::Control control );
128
129   /**
130    * @copydoc Toolkit::StyleManager::ApplyStyle
131    */
132   void ApplyStyle( Toolkit::Control control, const std::string& jsonFileName, const std::string& styleName );
133
134 public:
135   // SIGNALS
136
137   /**
138    * @copydoc Toolkit::StyleManager::StyleChangeSignal
139    */
140   Toolkit::StyleManager::StyleChangeSignalType& StyleChangeSignal();
141
142 private:
143   typedef std::vector<std::string> StringList;
144
145   /**
146    * @brief Set the current theme. Called only once per event processing cycle.
147    * @param[in] themeFile The name of the theme file to read.
148    */
149   void SetTheme( const std::string& themeFile );
150
151   /**
152    * @brief Internal helper method to read a file from file system.
153    * @param filename The name of the file to read.
154    * @param[out] stringOut The string to return the file in
155    *
156    * @param Return true if file was found
157    */
158   bool LoadFile(const std::string& filename, std::string& stringOut);
159
160   /**
161    * @brief Create a new builder.
162    *
163    * @param[in] constants A map of constants to be used by the builder
164    *
165    * @return Return the newly created builder
166    */
167   Toolkit::Builder CreateBuilder( const Property::Map& constants );
168
169   /**
170    * @brief Load a JSON file into given builder
171    *
172    * @param[in] builder The builder object to load the theme file
173    * @param[in] jsonFileName The name of the JSON file to load
174    * @return Return true if file was loaded
175    */
176   bool LoadJSON( Toolkit::Builder builder, const std::string& jsonFileName );
177
178   /**
179    * @brief Collect qualifiers (e.g. Landscape, portrait etc) for a given style
180    *
181    * @param[in,out] qualifiersOut The list to populate with qualifiers
182    */
183   void CollectQualifiers( StringList& qualifiersOut );
184
185   /**
186    * @brief Construct a qualified style name out of qualifiers
187    *
188    * A qualifed style name will be in the format: style-qualifier0-qualifier1-qualifierN
189    *
190    * @param[in] styleName The root name of the style
191    * @param[in] qualifiers List of qualifier names
192    * @param[out] qualifiedStyleOut The qualified style name
193    */
194   void BuildQualifiedStyleName( const std::string& styleName, const StringList& qualifiers, std::string& qualifiedStyleOut );
195
196   /**
197    * @brief Apply a style to the control using the given builder
198    *
199    * @param[in] builder The builder to apply the style from
200    * @param[in] control The control to apply the style to
201    */
202   void ApplyStyle( Toolkit::Builder builder, Toolkit::Control control );
203
204   /**
205    * @brief Callback for orientation changes
206    *
207    * @param[in] orientation The orientation object
208    */
209   void OnOrientationChanged( Orientation orientation );
210
211   /**
212    * Search for a builder in the cache
213    *
214    * @param[in] key The key the builder was cached under
215    * @return Return the cached builder if found or an empty builder object if not found
216    */
217   Toolkit::Builder FindCachedBuilder( const std::string& key );
218
219   /**
220    * Store a given builder in the cache keyed to the given key
221    *
222    * @param[in] builder The builder object to store
223    * @param[in] key The key to store the builder under
224    */
225   void CacheBuilder( Toolkit::Builder builder, const std::string& key );
226
227   /**
228    * Callback for when style monitor raises a signal
229    *
230    * @param[in] styleMonitor The style monitor object
231    * @param[in] styleChange The style change type
232    */
233   void StyleMonitorChange( StyleMonitor styleMonitor, StyleChange::Type styleChange );
234
235   // Undefined
236   StyleManager(const StyleManager&);
237
238   StyleManager& operator=(const StyleManager& rhs);
239
240 private:
241
242   // Map to store builders keyed by JSON file name
243   typedef std::map< std::string, Toolkit::Builder > BuilderMap;
244
245   Toolkit::Builder mThemeBuilder;     ///< Builder for all default theme properties
246   StyleMonitor mStyleMonitor;         ///< Style monitor handle
247
248   Orientation mOrientation;           ///< Handle to application orientation object
249   int mOrientationDegrees;            ///< Directly set value of orientation
250
251   int mDefaultFontSize;               ///< Logical size, not a point-size
252   std::string mDefaultFontFamily;
253   std::string mThemeFile;             ///< The full path of the current theme file
254
255   Property::Map mThemeBuilderConstants;   ///< Contants to give the theme builder
256   Property::Map mStyleBuilderConstants;   ///< Constants specific to building styles
257
258   BuilderMap mBuilderCache;           ///< Cache of builders keyed by JSON file name
259
260   Toolkit::Internal::FeedbackStyle* mFeedbackStyle; ///< Feedback style
261
262   // Signals
263   Toolkit::StyleManager::StyleChangeSignalType       mStyleChangeSignal;         ///< Emitted when the style( theme/font ) changes
264 };
265
266 } // namespace Internal
267
268 inline Internal::StyleManager& GetImpl( Dali::Toolkit::StyleManager& obj )
269 {
270   DALI_ASSERT_ALWAYS( obj );
271
272   Dali::BaseObject& handle = obj.GetBaseObject();
273
274   return static_cast< Internal::StyleManager& >( handle );
275 }
276
277 inline const Internal::StyleManager& GetImpl( const Dali::Toolkit::StyleManager& obj )
278 {
279   DALI_ASSERT_ALWAYS( obj );
280
281   const Dali::BaseObject& handle = obj.GetBaseObject();
282
283   return static_cast< const Internal::StyleManager& >( handle );
284 }
285
286 } // namespace Toolkit
287
288 } // namespace Dali
289
290 #endif // __DALI_TOOLKIT_INTERNAL_STYLE_MANAGER_H__