[dali_1.0.1] Merge branch 'tizen'
[platform/core/uifw/dali-adaptor.git] / adaptors / public-api / style-monitor.h
1 #ifndef __DALI_STYLE_MONITOR_H__
2 #define __DALI_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 /**
22  * @addtogroup CAPI_DALI_ADAPTOR_MODULE
23  * @{
24  */
25
26 // EXTERNAL INCLUDES
27 #include <boost/function.hpp>
28 #include <string>
29
30 #include <dali/public-api/object/base-handle.h>
31 #include <dali/public-api/signals/dali-signal-v2.h>
32
33 // INTERNAL INCLUDES
34 #include "style-change.h"
35
36 namespace Dali DALI_IMPORT_API
37 {
38
39 namespace Internal DALI_INTERNAL
40 {
41 namespace Adaptor
42 {
43 class StyleMonitor;
44 }
45 }
46
47 /**
48  * @brief Monitors the platform for style changes.
49  *
50  * This is a handle to the adaptor's style monitor which holds the platform's style information.
51  * It provides a signal when any aspect of the default style changes on the device.
52  * @see Adaptor::GetStyleMonitor
53  */
54 class StyleMonitor : public BaseHandle
55 {
56 public: // Typedefs
57
58   typedef SignalV2< void (StyleMonitor, StyleChange) > StyleChangeSignalV2;   ///< StyleChange Signal type
59
60 public: // Creation & Destruction
61
62   /**
63    * @brief Create an uninitialized StyleMonitor handle.
64    *
65    * Tthis can be set by retrieving the style monitor from the Adaptor
66    * or the Application classes.  Calling member functions when
67    * uninitialized is not allowed.
68    */
69   StyleMonitor();
70
71   /**
72    * @brief Creates a copy of the handle.
73    *
74    * The copy will point to the same implementation as the original.
75    * @param[in]  monitor  The Style Monitor to copy from.
76    */
77   StyleMonitor(const StyleMonitor& monitor);
78
79   /**
80    * @brief Retrieve the initialized instance of the StyleMonitor.
81    * @return Handle to StyleMonitor.
82    */
83   static StyleMonitor Get();
84
85   /**
86    * @brief Destructor
87    *
88    * This is non-virtual since derived Handle types must not contain data or virtual methods.
89    */
90   ~StyleMonitor();
91
92   /**
93    * @brief Downcast an Object handle to StyleMonitor handle.
94    *
95    * If handle points to a StyleMonitor object the downcast produces a
96    * valid handle. If not the returned handle is left uninitialized.
97    *
98    * @param[in] handle to An object @return handle to a Timer object
99    * or an uninitialized handle
100    */
101   static StyleMonitor DownCast( BaseHandle handle );
102
103   /**
104    * @copydoc Dali::BaseHandle::operator=
105    */
106   using BaseHandle::operator=;
107
108 public: // Style Information
109
110   /**
111    * @brief Retrieves the default font family.
112    * @return The default font family.
113    */
114   std::string GetDefaultFontFamily() const;
115
116   /**
117    * @brief Retrieves the default font size
118    * @return The default font size.
119    */
120   float GetDefaultFontSize() const;
121
122   /**
123    * @brief Retrieves the user defined Theme.
124    * @return The user defined Theme.
125    */
126   const std::string& GetTheme() const;
127
128   /**
129    * @brief Sets an user defined Theme.
130    * @param[in] themeFilePath Path of the user defined theme
131    */
132   void SetTheme(const std::string& themeFilePath);
133
134 public: // Signals
135
136   /**
137    * @brief This signal is emitted whenever the style changes on the device.
138    *
139    * A callback of the following type may be connected:
140    * @code
141    *   void YourCallbackName(StyleMonitor styleMonitor, StyleChange change);
142    * @endcode
143    * @return The signal to connect to.
144    */
145   StyleChangeSignalV2& StyleChangeSignal();
146
147 public: // Operators
148
149   /**
150    * @brief Assignment operator.
151    *
152    * The handle points to the same implementation as the one being copied from.
153    * @param[in]  monitor  The Style Monitor to copy from.
154    * @return reference to this object
155    */
156   StyleMonitor& operator=(const StyleMonitor& monitor);
157
158
159 public: // Not intended for application developers
160   /**
161    * @brief This constructor is used internally to create a handle from an object pointer.
162    * @param [in] styleMonitor A pointer the internal style monitor.
163    */
164   explicit DALI_INTERNAL StyleMonitor(Internal::Adaptor::StyleMonitor* styleMonitor);
165 };
166
167 } // namespace Dali
168
169 /**
170  * @}
171  */
172 #endif // __DALI_STYLE_MONITOR_H__