Merge "Implemented the Handle assignment operators properly" into tizen
[platform/core/uifw/dali-adaptor.git] / adaptors / public-api / tilt-sensor.h
1 #ifndef __DALI_TILT_SENSOR_H__
2 #define __DALI_TILT_SENSOR_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 <boost/function.hpp>
23
24 #include <dali/public-api/object/base-handle.h>
25 #include <dali/public-api/signals/dali-signal-v2.h>
26
27 namespace Dali DALI_IMPORT_API
28 {
29
30 namespace Internal DALI_INTERNAL
31 {
32 namespace Adaptor
33 {
34 class TiltSensor;
35 }
36 }
37
38 /**
39  * TiltSensor provides pitch & roll values when the device is tilted.
40  * The basic usage is shown below:
41  *
42  * @code
43  *
44  *  void Example()
45  *  {
46  *    TiltSensor sensor = TiltSensor::Get();
47  *
48  *    // Try to enable the sensor
49  *    if ( sensor.Enable() )
50  *    {
51  *      // Query the current values
52  *      std::cout << "Roll = " << sensor.GetRoll() << ", Pitch = " << sensor.GetPitch() << std::endl;
53  *
54  *      // Get notifications when the device is tilted
55  *      sensor.SignalTilted().Connect( &OnTilted );
56  *    }
57  *  }
58  *
59  *  void OnTilted()
60  *  {
61  *    // Query the new values
62  *    std::cout << "Roll = " << sensor.GetRoll() << ", Pitch = " << sensor.GetPitch() << std::endl;
63  *  }
64  *
65  * @endcode
66  *
67  * While the tilt sensor is enabled, it will periodically poll for the latest pitch & roll values.
68  * For performance & power-saving, applications should disable this polling when no longer needed:
69  *
70  * @code
71  *
72  *  void EndExample()
73  *  {
74  *    // Disable the sensor when no longer needed
75  *    TiltSensor::Get().Disable();
76  *  }
77  *
78  * @endcode
79  */
80 class TiltSensor : public BaseHandle
81 {
82 public:
83
84   typedef SignalV2< void (const TiltSensor&) > TiltedSignalV2;
85
86   // Signal Names
87   static const char* const SIGNAL_TILTED;
88
89   static const float DEFAULT_UPDATE_FREQUENCY; // 60 hertz
90
91   /**
92    * Create an uninitialized handle.
93    * This can be initialized by calling TiltSensor::Get().
94    */
95   TiltSensor();
96
97   /**
98    * Create an initialized handle to the TiltSensor.
99    * @return A handle to a newly allocated Dali resource.
100    */
101   static TiltSensor Get();
102
103   /**
104    * @brief Destructor
105    *
106    * This is non-virtual since derived Handle types must not contain data or virtual methods.
107    */
108   ~TiltSensor();
109
110   /**
111    * Attempt to enable the tilt-sensor. This will fail if the underlying sensor hardware is powered-down,
112    * typically this occurs when the device is set to "sleep" mode.
113    * @return True if the tilt-sensor is enabled.
114    */
115   bool Enable();
116
117   /**
118    * Disable the tilt-sensor.
119    */
120   void Disable();
121
122   /**
123    * Query whether the tilt-sensor is disabled.
124    * The sensor may be disabled automatically; typically this occurs when the device is set to "sleep" mode.
125    * @return True if the tilt-sensor is enabled.
126    */
127   bool IsEnabled() const;
128
129   /**
130    * Query the roll value. This is in the range -1 to 1.
131    * When the device is lying face-up on a flat surface, this method will return a value close to zero.
132    * A value close to 1 indicates that the right-side of the device is pointing upwards.
133    * A value close to -1 indicates that the right-side of the device is pointing downwards.
134    * @pre The tilt-sensor is enabled.
135    * @return The roll value.
136    */
137   float GetRoll() const;
138
139   /**
140    * Query the pitch value. This is in the range -1 to 1.
141    * When the device is lying face-up on a flat surface, this method will return a value close to zero.
142    * A value close to 1 indicates that the top of the device is pointing upwards.
143    * A value close to -1 indicates that the top of the device is pointing downwards.
144    * @pre The tilt-sensor is enabled.
145    * @return The pitch value.
146    */
147   float GetPitch() const;
148
149   /**
150    * Retrieve the rotation of the device.
151    * When the device is lying face-up on a flat surface, the rotation angle will be approximately zero.
152    * The roll & pitch of the device is considered to be a rotation around the Y and X axes respectively.
153    * @pre The tilt-sensor is enabled.
154    * @return The rotation in quaternion format.
155    */
156   Quaternion GetRotation() const;
157
158   /**
159    * This signal will be emitted when the device is tilted, if the tilt-sensor is enabled.
160    * The frequency of the signals can be controlled using SetUpdateFrequency().
161    * @return The signal to connect to.
162    */
163   TiltedSignalV2& TiltedSignal();
164
165   /**
166    * Set the sensor update frequency.
167    * The default is TiltSensor::DEFAULT_UPDATE_FREQUENCY.
168    * @param[in] frequencyHertz The frequency in hertz.
169    */
170   void SetUpdateFrequency( float frequencyHertz );
171
172   /**
173    * Query the sensor update frequency.
174    * @return The frequency in hertz.
175    */
176   float GetUpdateFrequency() const;
177
178   /**
179    * Set the threshold value for rotation in Radians, above which TiltedSignal should be emitted.
180    * The default is 0.0f in Radians (i.e) it will be emitted always at the frequency set.
181    * Example tiltSensor.SetRotationThreshold( Radian(Degree(10) ) // A rotation threshold of 10 degrees
182    * @param[in] rotationThreshold The threshold value for rotation.
183    */
184   void SetRotationThreshold( Radian rotationThreshold );
185
186   /**
187    * Query the rotation threshold above which TiltedSignal will be emitted.
188    * @return The rotation degree threshold in Radians.
189    */
190   Radian GetRotationThreshold() const;
191
192 public: // Not intended for application developers
193
194   /**
195    * This constructor is used by TiltSensor::Get().
196    * @param[in] sensor A pointer to the tilt sensor.
197    */
198   TiltSensor( Internal::Adaptor::TiltSensor* sensor );
199 };
200
201 } // namespace Dali
202
203 #endif // __DALI_TILT_SENSOR_H__