Update doxygen comments
[platform/core/uifw/dali-core.git] / dali / public-api / events / touch-data.h
1 #ifndef __DALI_TOUCH_DATA_H__
2 #define __DALI_TOUCH_DATA_H__
3
4 /*
5  * Copyright (c) 2016 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 <stdint.h>
23
24 // INTERNAL INCLUDES
25 #include <dali/public-api/common/dali-common.h>
26 #include <dali/public-api/events/point-state.h>
27 #include <dali/public-api/object/base-handle.h>
28 #include <dali/public-api/math/degree.h>
29
30 namespace Dali
31 {
32
33 namespace Internal DALI_INTERNAL
34 {
35 class TouchData;
36 }
37
38 /**
39  * @addtogroup dali_core_events
40  * @{
41  */
42
43 class Actor;
44 struct Vector2;
45
46 /**
47  * @brief Touch events are a collection of points at a specific moment in time.
48  *
49  * When a multi-touch event occurs, each point represents the points that are currently being
50  * touched or the points where a touch has stopped.
51  *
52  * The first point is the primary point that's used for hit-testing.
53  * @SINCE_1_1.37
54  * @note As this is a handle to an internal object, it should not be copied (or used in a container) as all that will do is copy the handle to the same object.
55  * The internal object can change which may not be what an application writer expects.
56  * If data does need to be stored in the application, then only the required data should be saved (retrieved using the methods of this class).
57  *
58  * Should not use this in a TouchData container as it is just a handle and the internal object can change.
59  */
60 class DALI_IMPORT_API TouchData : public BaseHandle
61 {
62 public:
63
64   // Construction & Destruction
65
66   /**
67    * @brief An uninitialized TouchData instance.
68    *
69    * Calling member functions with an uninitialized TouchData handle is not allowed.
70    * @SINCE_1_1.37
71    */
72   TouchData();
73
74   /**
75    * @brief Copy constructor.
76    *
77    * @SINCE_1_1.37
78    * @param[in] other The TouchData to copy from
79    */
80   TouchData( const TouchData& other );
81
82   /**
83    * @brief Destructor.
84    *
85    * @SINCE_1_1.37
86    */
87   ~TouchData();
88
89   // Operators
90
91   /**
92    * @brief Assignment Operator.
93    *
94    * @SINCE_1_1.37
95    * @param[in] other The TouchData to copy from
96    * @return A reference to this
97    */
98   TouchData& operator=( const TouchData& other );
99
100   // Getters
101
102   /**
103    * @brief Returns the time (in ms) that the touch event occurred.
104    *
105    * @SINCE_1_1.37
106    * @return The time (in ms) that the touch event occurred
107    */
108   unsigned long GetTime() const;
109
110   /**
111    * @brief Returns the total number of points in this TouchData.
112    *
113    * @SINCE_1_1.37
114    * @return Total number of Points
115    */
116   std::size_t GetPointCount() const;
117
118   /**
119    * @brief Returns the ID of the device used for the Point specified.
120    *
121    * Each point has a unique device ID which specifies the device used for that
122    * point. This is returned by this method.
123    *
124    * @SINCE_1_1.37
125    * @param[in] point The point required
126    * @return The Device ID of this point
127    * @note If point is greater than GetPointCount() then this method will return -1.
128    */
129   int32_t GetDeviceId( std::size_t point ) const;
130
131   /**
132    * @brief Retrieves the State of the point specified.
133    *
134    * @SINCE_1_1.37
135    * @param[in] point The point required
136    * @return The state of the point specified
137    * @note If point is greater than GetPointCount() then this method will return PointState::FINISHED.
138    * @see State
139    */
140   PointState::Type GetState( std::size_t point ) const;
141
142   /**
143    * @brief Retrieves the actor that was underneath the point specified.
144    *
145    * @SINCE_1_1.37
146    * @param[in] point The point required
147    * @return The actor that was underneath the point specified
148    * @note If point is greater than GetPointCount() then this method will return an empty handle.
149    */
150   Actor GetHitActor( std::size_t point ) const;
151
152   /**
153    * @brief Retrieves the co-ordinates relative to the top-left of the hit-actor at the point specified.
154    *
155    * @SINCE_1_1.37
156    * @param[in] point The point required
157    * @return The co-ordinates relative to the top-left of the hit-actor of the point specified
158    *
159    * @note The top-left of an actor is (0.0, 0.0, 0.5).
160    * @note If you require the local coordinates of another actor (e.g the parent of the hit actor),
161    * then you should use Actor::ScreenToLocal().
162    * @note If point is greater than GetPointCount() then this method will return Vector2::ZERO.
163    */
164   const Vector2& GetLocalPosition( std::size_t point ) const;
165
166   /**
167    * @brief Retrieves the co-ordinates relative to the top-left of the screen of the point specified.
168    *
169    * @SINCE_1_1.37
170    * @param[in] point The point required
171    * @return The co-ordinates relative to the top-left of the screen of the point specified
172    * @note If point is greater than GetPointCount() then this method will return Vector2::ZERO.
173    */
174   const Vector2& GetScreenPosition( std::size_t point ) const;
175
176   /**
177    * @brief Retrieves the radius of the press point.
178    *
179    * This is the average of both the horizontal and vertical radii of the press point.
180    *
181    * @SINCE_1_1.39
182    * @param[in] point The point required
183    * @return The radius of the press point
184    * @note If point is greater than GetPointCount() then this method will return 0.0f.
185    */
186   float GetRadius( std::size_t point ) const;
187
188   /**
189    * @brief Retrieves BOTH the horizontal and the vertical radii of the press point.
190    *
191    * @SINCE_1_1.39
192    * @param[in] point The point required
193    * @return The horizontal and vertical radii of the press point
194    * @note If point is greater than GetPointCount() then this method will return Vector2::ZERO.
195    */
196   const Vector2& GetEllipseRadius( std::size_t point ) const;
197
198   /**
199    * @brief Retrieves the touch pressure.
200    *
201    * The pressure range starts at 0.0f.
202    * Normal pressure is defined as 1.0f.
203    * A value between 0.0f and 1.0f means light pressure has been applied.
204    * A value greater than 1.0f means more pressure than normal has been applied.
205    *
206    * @SINCE_1_1.39
207    * @param[in] point The point required
208    * @return The touch pressure
209    * @note If point is greater than GetPointCount() then this method will return 1.0f.
210    */
211   float GetPressure( std::size_t point ) const;
212
213   /**
214    * @brief Retrieves the angle of the press point relative to the Y-Axis.
215    *
216    * @SINCE_1_1.39
217    * @param[in] point The point required
218    * @return The angle of the press point
219    * @note If point is greater than GetPointCount() then this method will return Degree().
220    */
221   Degree GetAngle( std::size_t point ) const;
222
223 public: // Not intended for application developers
224
225   /// @cond internal
226   /**
227    * @brief This constructor is used internally to Create an initialized TouchData handle.
228    *
229    * @SINCE_1_1.37
230    * @param[in] touchData A pointer to a newly allocated Dali resource
231    */
232   explicit DALI_INTERNAL TouchData( Internal::TouchData* touchData );
233   /// @endcond
234 };
235
236 /**
237  * @}
238  */
239 } // namespace Dali
240
241 #endif // __DALI_TOUCH_DATA_H__