Re-order StyleManager implementation file to match header
[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    */
148   void SetTheme();
149
150   /**
151    * @brief Internal helper method to read a file from file system.
152    * @param filename The name of the file to read.
153    * @param[out] stringOut The string to return the file in
154    *
155    * @param Return true if file was found
156    */
157   bool LoadFile(const std::string& filename, std::string& stringOut);
158
159   /**
160    * @brief Create a new builder.
161    *
162    * @param[in] constants A map of constants to be used by the builder
163    *
164    * @return Return the newly created builder
165    */
166   Toolkit::Builder CreateBuilder( const Property::Map& constants );
167
168   /**
169    * @brief Load a JSON file into given builder
170    *
171    * @param[in] builder The builder object to load the theme file
172    * @param[in] jsonFileName The name of the JSON file to load
173    * @return Return true if file was loaded
174    */
175   bool LoadJSON( Toolkit::Builder builder, const std::string& jsonFileName );
176
177   /**
178    * @brief Collect qualifiers (e.g. Landscape, portrait etc) for a given style
179    *
180    * @param[in,out] qualifiersOut The list to populate with qualifiers
181    */
182   void CollectQualifiers( StringList& qualifiersOut );
183
184   /**
185    * @brief Construct a qualified style name out of qualifiers
186    *
187    * A qualifed style name will be in the format: style-qualifier0-qualifier1-qualifierN
188    *
189    * @param[in] styleName The root name of the style
190    * @param[in] qualifiers List of qualifier names
191    * @param[out] qualifiedStyleOut The qualified style name
192    */
193   void BuildQualifiedStyleName( const std::string& styleName, const StringList& qualifiers, std::string& qualifiedStyleOut );
194
195   /**
196    * @brief Apply a style to the control using the given builder
197    *
198    * @param[in] builder The builder to apply the style from
199    * @param[in] control The control to apply the style to
200    */
201   void ApplyStyle( Toolkit::Builder builder, Toolkit::Control control );
202
203   /**
204    * @brief Callback for orientation changes
205    *
206    * @param[in] orientation The orientation object
207    */
208   void OnOrientationChanged( Orientation orientation );
209
210   /**
211    * Search for a builder in the cache
212    *
213    * @param[in] key The key the builder was cached under
214    * @return Return the cached builder if found or an empty builder object if not found
215    */
216   Toolkit::Builder FindCachedBuilder( const std::string& key );
217
218   /**
219    * Store a given builder in the cache keyed to the given key
220    *
221    * @param[in] builder The builder object to store
222    * @param[in] key The key to store the builder under
223    */
224   void CacheBuilder( Toolkit::Builder builder, const std::string& key );
225
226   /**
227    * Callback for when style monitor raises a signal
228    *
229    * @param[in] styleMonitor The style monitor object
230    * @param[in] styleChange The style change type
231    */
232   void StyleMonitorChange( StyleMonitor styleMonitor, StyleChange::Type styleChange );
233
234   // Undefined
235   StyleManager(const StyleManager&);
236
237   StyleManager& operator=(const StyleManager& rhs);
238
239 private:
240
241   // Map to store builders keyed by JSON file name
242   typedef std::map< std::string, Toolkit::Builder > BuilderMap;
243
244   Toolkit::Builder mThemeBuilder;     ///< Builder for all default theme properties
245   StyleMonitor mStyleMonitor;         ///< Style monitor handle
246
247   Orientation mOrientation;           ///< Handle to application orientation object
248   int mOrientationDegrees;            ///< Directly set value of orientation
249
250   int mDefaultFontSize;               ///< Logical size, not a point-size
251
252   std::string mDefaultFontFamily;
253
254   std::string mThemeFile;             ///< The full path of the current theme file
255
256   Property::Map mThemeBuilderConstants;   ///< Contants to give the theme builder
257   Property::Map mStyleBuilderConstants;   ///< Constants specific to building styles
258
259   BuilderMap mBuilderCache;           ///< Cache of builders keyed by JSON file name
260
261   Toolkit::Internal::FeedbackStyle* mFeedbackStyle; ///< Feedback style
262
263   // Signals
264   Toolkit::StyleManager::StyleChangeSignalType       mStyleChangeSignal;         ///< Emitted when the style( theme/font ) changes
265 };
266
267 } // namespace Internal
268
269 inline Internal::StyleManager& GetImpl( Dali::Toolkit::StyleManager& obj )
270 {
271   DALI_ASSERT_ALWAYS( obj );
272
273   Dali::BaseObject& handle = obj.GetBaseObject();
274
275   return static_cast< Internal::StyleManager& >( handle );
276 }
277
278 inline const Internal::StyleManager& GetImpl( const Dali::Toolkit::StyleManager& obj )
279 {
280   DALI_ASSERT_ALWAYS( obj );
281
282   const Dali::BaseObject& handle = obj.GetBaseObject();
283
284   return static_cast< const Internal::StyleManager& >( handle );
285 }
286
287 } // namespace Toolkit
288
289 } // namespace Dali
290
291 #endif // __DALI_TOOLKIT_INTERNAL_STYLE_MANAGER_H__