8d2bf73a5172f137e8c147d84ee5a341eb8e0fbb
[platform/core/uifw/dali-adaptor.git] / adaptors / common / style-monitor-impl.h
1 #ifndef __DALI_INTERNAL_STYLE_MONITOR_H__
2 #define __DALI_INTERNAL_STYLE_MONITOR_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
21 // EXTERNAL INCLUDES
22 #include <dali/public-api/object/ref-object.h>
23 #include <dali/public-api/object/base-object.h>
24 #include <dali/devel-api/text-abstraction/font-client.h>
25
26 // INTERNAL INCLUDES
27 #include <style-monitor.h>
28
29 namespace Dali
30 {
31
32 namespace Internal
33 {
34
35 namespace Adaptor
36 {
37
38 /**
39  * This holds the platform's style information.
40  * It provides a signal when any aspect of the default style changes on the device.
41  */
42 class StyleMonitor : public BaseObject
43 {
44 public:
45
46   // Creation & Destruction
47
48   /**
49    * Constructor.
50    */
51   StyleMonitor();
52
53   /**
54    * Retrieve the initialized instance of the StyleMonitor.
55    * @return Handle to StyleMonitor.
56    */
57   static Dali::StyleMonitor Get();
58
59   // Style Change Notifications
60
61   /**
62    * Informs the Style Monitor that the style has changed.
63    * @param[in]  styleChange  The details of the change.
64    */
65   void StyleChanged( StyleChange::Type styleChange );
66
67   // Style Information
68
69   /**
70    * @copydoc Dali::StyleMonitor::GetDefaultFontFamily() const
71    */
72   std::string GetDefaultFontFamily() const;
73
74   /**
75    * @copydoc Dali::StyleMonitor::GetDefaultFontStyle() const
76    */
77   std::string GetDefaultFontStyle() const;
78
79   /**
80    * @copydoc Dali::StyleMonitor::GetDefaultFontSize() const
81    */
82   int GetDefaultFontSize() const;
83
84   /**
85    * @copydoc Dali::StyleMonitor::GetTheme() const
86    */
87   const std::string& GetTheme() const;
88
89   /**
90    * @copydoc Dali::StyleMonitor::SetTheme()
91    */
92   void SetTheme(const std::string& themeFilePath);
93
94   /**
95    * @copydoc Dali::StyleMonitor::LoadThemeFile()
96    */
97   bool LoadThemeFile( const std::string& filename, std::string& output );
98
99   /**
100    * @copydoc Dali::StyleMonitor::GetIgnoreGlobalFontSizeChange()
101    */
102   int GetIgnoreGlobalFontSizeChange();
103
104   /**
105    * @copydoc Dali::StyleMonitor::SetIgnoreGlobalFontSizeChange()
106    */
107   void SetIgnoreGlobalFontSizeChange(int value);
108
109   // Signals
110
111   /**
112    * @copydoc Dali::StyleMonitor::StyleChangeSignal()
113    */
114   Dali::StyleMonitor::StyleChangeSignalType& StyleChangeSignal();
115
116 protected:
117
118   /**
119    * Virtual Destructor.
120    */
121   virtual ~StyleMonitor();
122
123 private:
124
125   /**
126    * Emit the style change signal.
127    * @param[in]  styleChange  The details of the style change
128    */
129   inline void EmitStyleChangeSignal( StyleChange::Type styleChange );
130
131 private:
132
133   Dali::StyleMonitor::StyleChangeSignalType mStyleChangeSignal; ///< Emitted when the style changes
134
135   TextAbstraction::FontClient mFontClient;
136   std::string mDefaultFontFamily;        ///< The system default font family
137   std::string mDefaultFontStyle;         ///< The default font style
138   std::string mUserDefinedThemeFilePath; ///< String containing the user defined theme file path
139   int mDefaultFontSize;                  ///< The default accessibility font size e.g. 0 is smallest
140   int mIgnoreGlobalFontSizeChange;       ///< Ignore global font size change when it is 1
141 };
142
143 } // namespace Adaptor
144
145 } // namespace Internal
146
147 // Additional Helpers for public-api forwarding methods
148
149 inline Internal::Adaptor::StyleMonitor& GetImplementation(Dali::StyleMonitor& monitor)
150 {
151   DALI_ASSERT_ALWAYS(monitor && "Monitor handle is empty");
152   BaseObject& handle = monitor.GetBaseObject();
153   return static_cast<Internal::Adaptor::StyleMonitor&>(handle);
154 }
155
156 inline const Internal::Adaptor::StyleMonitor& GetImplementation(const Dali::StyleMonitor& monitor)
157 {
158   DALI_ASSERT_ALWAYS(monitor && "Monitor handle is empty");
159   const BaseObject& handle = monitor.GetBaseObject();
160   return static_cast<const Internal::Adaptor::StyleMonitor&>(handle);
161 }
162
163 } // namespace Dali
164
165 #endif // __DALI_INTERNAL_STYLE_MONITOR_H__