3467ff543ac26b2f6257ec5a98479aa337f62e26
[platform/core/uifw/dali-core.git] / dali / public-api / events / pan-gesture-detector.h
1 #ifndef DALI_PAN_GESTURE_DETECTOR_H
2 #define DALI_PAN_GESTURE_DETECTOR_H
3
4 /*
5  * Copyright (c) 2022 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 <cstdint> // uint32_t
23
24 // INTERNAL INCLUDES
25 #include <dali/public-api/events/gesture-detector.h>
26 #include <dali/public-api/events/pan-gesture.h>
27 #include <dali/public-api/object/property-index-ranges.h>
28 #include <dali/public-api/signals/dali-signal.h>
29
30 namespace Dali
31 {
32 struct Radian;
33
34 namespace Internal DALI_INTERNAL
35 {
36 class PanGestureDetector;
37 }
38
39 /**
40  * @addtogroup dali_core_events
41  * @{
42  */
43
44 /**
45  * @brief This class looks for panning (or dragging) gestures.
46  *
47  * The user will be pressing one or more fingers on an actor while they pan it.
48  *
49  * The application programmer can use this gesture detector as follows:
50  * @code
51  * PanGestureDetector detector = PanGestureDetector::New();
52  * detector.Attach(myActor);
53  * detector.DetectedSignal().Connect(this, &MyApplication::OnPan);
54  *
55  * // Detect pan gesture for single and double touch.
56  * detector.SetMaximumTouchesRequired(2);
57  * @endcode
58  *
59  * @SINCE_1_0.0
60  * @see PanGesture
61  *
62  * Signals
63  * | %Signal Name | Method                |
64  * |--------------|-----------------------|
65  * | panDetected  | @ref DetectedSignal() |
66  */
67 class DALI_CORE_API PanGestureDetector : public GestureDetector
68 {
69 public:
70   /**
71    * @brief Enumeration for the instance of properties belonging to the PanGestureDetector class.
72    * @SINCE_1_0.0
73    */
74   struct Property
75   {
76     /**
77      * @brief Enumeration for the instance of properties belonging to the PanGestureDetector class.
78      * @SINCE_1_0.0
79      */
80     enum
81     {
82       SCREEN_POSITION = DEFAULT_GESTURE_DETECTOR_PROPERTY_START_INDEX, ///< name "screenPosition",      type Vector2 @SINCE_1_0.0
83       SCREEN_DISPLACEMENT,                                             ///< name "screenDisplacement",  type Vector2 @SINCE_1_0.0
84       SCREEN_VELOCITY,                                                 ///< name "screenVelocity",      type Vector2 @SINCE_1_0.0
85       LOCAL_POSITION,                                                  ///< name "localPosition",       type Vector2 @SINCE_1_0.0
86       LOCAL_DISPLACEMENT,                                              ///< name "localDisplacement",   type Vector2 @SINCE_1_0.0
87       LOCAL_VELOCITY,                                                  ///< name "localVelocity",       type Vector2 @SINCE_1_0.0
88       PANNING,                                                         ///< name "panning",             type bool @SINCE_1_0.0
89     };
90   };
91
92   // Typedefs
93   using DetectedSignalType = Signal<void(Actor, const PanGesture&)>; ///< Pan gesture detected signal type @SINCE_1_0.0
94
95   // Directional Pan
96   using AngleThresholdPair = std::pair<Radian, Radian>; ///< Range of angles for a direction @SINCE_1_0.0
97
98   static const Radian DIRECTION_LEFT;       ///< For a left pan (-PI Radians).
99   static const Radian DIRECTION_RIGHT;      ///< For a right pan (0 Radians).
100   static const Radian DIRECTION_UP;         ///< For an up pan (-0.5 * PI Radians).
101   static const Radian DIRECTION_DOWN;       ///< For a down pan (0.5 * PI Radians).
102   static const Radian DIRECTION_HORIZONTAL; ///< For a left and right pan (PI Radians). Useful for AddDirection().
103   static const Radian DIRECTION_VERTICAL;   ///< For an up and down pan (-0.5 * PI Radians). Useful for AddDirection().
104
105   static const Radian DEFAULT_THRESHOLD; ///< The default threshold is PI * 0.25 radians (or 45 degrees).
106
107 public: // Creation & Destruction
108   /**
109    * @brief Creates an uninitialized PanGestureDetector; this can be initialized with PanGestureDetector::New().
110    *
111    * Calling member functions with an uninitialized PanGestureDetector handle is not allowed.
112    * @SINCE_1_0.0
113    */
114   PanGestureDetector();
115
116   /**
117    * @brief Creates an initialized PanGestureDetector.
118    *
119    * @SINCE_1_0.0
120    * @return A handle to a newly allocated Dali resource
121    */
122   static PanGestureDetector New();
123
124   /**
125    * @brief Downcasts a handle to PanGestureDetector handle.
126    *
127    * If handle points to a PanGestureDetector object, the
128    * downcast produces valid handle. If not, the returned handle is left uninitialized.
129    * @SINCE_1_0.0
130    * @param[in] handle Handle to an object
131    * @return Handle to a PanGestureDetector object or an uninitialized handle
132    */
133   static PanGestureDetector DownCast(BaseHandle handle);
134
135   /**
136    * @brief Destructor.
137    *
138    * This is non-virtual since derived Handle types must not contain data or virtual methods.
139    * @SINCE_1_0.0
140    */
141   ~PanGestureDetector();
142
143   /**
144    * @brief This copy constructor is required for (smart) pointer semantics.
145    *
146    * @SINCE_1_0.0
147    * @param[in] handle A reference to the copied handle
148    */
149   PanGestureDetector(const PanGestureDetector& handle);
150
151   /**
152    * @brief This assignment operator is required for (smart) pointer semantics.
153    *
154    * @SINCE_1_0.0
155    * @param[in] rhs A reference to the copied handle
156    * @return A reference to this
157    */
158   PanGestureDetector& operator=(const PanGestureDetector& rhs);
159
160 public: // Setters
161   /**
162    * @brief This is the minimum number of touches required for the pan gesture to be detected.
163    *
164    * @SINCE_1_0.0
165    * @param[in] minimum Minimum touches required
166    * @pre The gesture detector has been initialized.
167    * @note The default minimum is '1'.
168    */
169   void SetMinimumTouchesRequired(uint32_t minimum);
170
171   /**
172    * @brief This is the maximum number of touches required for the pan gesture to be detected.
173    *
174    * @SINCE_1_0.0
175    * @param[in] maximum Maximum touches required
176    * @pre The gesture detector has been initialized.
177    * @note The default maximum is '1'.
178    */
179   void SetMaximumTouchesRequired(uint32_t maximum);
180
181   /**
182    * @brief This value is a maximum duration of motion can live on the pan gesture event queue.
183    * If duration exceed it, the motion event is discarded.
184    *
185    * @SINCE_2_1.28
186    * @param[in] maximumAge Maximum age of motion events as milliseconds
187    * @pre The gesture detector has been initialized.
188    * @note The default maximumAge is 'std::numeric_limits<uint32_t>::max()'.
189    */
190   void SetMaximumMotionEventAge(uint32_t maximumAge);
191
192 public: // Getters
193   /**
194    * @brief Retrieves the minimum number of touches required for the pan gesture to be detected.
195    *
196    * @SINCE_1_0.0
197    * @return The minimum touches required
198    * @pre The gesture detector has been initialized.
199    */
200   uint32_t GetMinimumTouchesRequired() const;
201
202   /**
203    * @brief Retrieves the maximum number of touches required for the pan gesture to be detected.
204    *
205    * @SINCE_1_0.0
206    * @return The maximum touches required
207    * @pre The gesture detector has been initialized.
208    */
209   uint32_t GetMaximumTouchesRequired() const;
210
211   /**
212    * @brief Retrieves the maximum age for the pan gesture motion as milliseconds.
213    *
214    * @SINCE_2_1.28
215    * @return The maximum age of motion events as milliseconds
216    * @pre The gesture detector has been initialized.
217    */
218   uint32_t GetMaximumMotionEventAge() const;
219
220 public: // Directional Panning
221   /**
222    * @brief The pan gesture is only emitted if the pan occurs in the direction specified by this method with a +/- threshold allowance.
223    *
224    * The angle is from -180 -> 0 -> 180 degrees (or -M_PI -> 0 -> M_PI in radians) i.e:
225    *
226    * @code
227    *           -90.0f ( -0.5f * PI )
228    *                     |
229    *                     |
230    * 180.0f ( PI ) ------------- 0.0f ( 0.0f )
231    *                     |
232    *                     |
233    *            90.0f ( 0.5f * PI )
234    * @endcode
235    *
236    * If an angle of 0.0 degrees is specified and the threshold is 45 degrees then the acceptable
237    * direction range is from -45 to 45 degrees.
238    *
239    * @SINCE_1_0.0
240    * @param[in] angle     The angle that pan should be allowed
241    * @param[in] threshold The threshold around that angle
242    *
243    * @pre The gesture detector has been initialized.
244    * @note The angle added using this API is only checked when the gesture first starts, after that,
245    *       this detector will emit the gesture regardless of what angle the pan is moving.
246    * @note The user can add as many angles as they require.
247    * @note If an angle outside the range above is given, then it is wrapped within the range, i.e.
248    *       190 degrees becomes -170 degrees and 370 degrees becomes 10 degrees.
249    * @note As long as you specify the type, you can also pass in a Dali::Degree to this method.
250    * @note If no threshold is provided, then the default threshold (PI * 0.25) is used.
251    * @note If the threshold is greater than PI, then PI will be used as the threshold.
252    *
253    */
254   void AddAngle(Radian angle, Radian threshold = DEFAULT_THRESHOLD);
255
256   /**
257    * @brief A helper method for adding bi-directional angles where the pan should take place.
258    *
259    * In other words, if 0 is requested, then PI will also be added so that we have both left and
260    * right scrolling.
261    *
262    * @SINCE_1_0.0
263    * @param[in] direction The direction of panning required
264    * @param[in] threshold The threshold
265    *
266    * @pre The gesture detector has been initialized.
267    *
268    * @note If a direction outside the range above is given, then it is wrapped within the range, i.e.
269    *       190 degrees becomes -170 degrees and 370 degrees becomes 10 degrees.
270    * @note If no threshold is provided, then the default threshold (PI * 0.25) is used.
271    * @note If the threshold is greater than PI, then PI will be used as the threshold.
272    * @note As long as you specify the type, you can also pass in a Dali::Degree to this method.
273    *
274    * @see AddAngle
275    */
276   void AddDirection(Radian direction, Radian threshold = DEFAULT_THRESHOLD);
277
278   /**
279    * @brief Returns the count of angles that this pan gesture detector emits a signal.
280    *
281    * @SINCE_1_0.0
282    * @return The count
283    * @pre The gesture detector has been initialized.
284    */
285   size_t GetAngleCount() const;
286
287   /**
288    * @brief Returns the angle by index that this pan gesture detector emits a signal.
289    *
290    * @SINCE_1_0.0
291    * @param[in] index The angle's index
292    * @return An angle threshold pair, or a zero valued angle pair when index is invalid
293    * @pre The gesture detector has been initialized.
294    * @pre The index is less than GetAngleCount()
295    */
296   AngleThresholdPair GetAngle(size_t index) const;
297
298   /**
299    * @brief Clears any directional angles that are used by the gesture detector.
300    *
301    * After this, the pan gesture
302    * will be emitted for a pan in ANY direction.
303    * @SINCE_1_0.0
304    * @pre The gesture detector has been initialized.
305    */
306   void ClearAngles();
307
308   /**
309    * @brief Removes the angle specified from the container.
310    *
311    * @SINCE_1_0.0
312    * @param[in] angle The angle to remove
313    * @pre The gesture detector has been initialized.
314    * @note This will only remove the first instance of the angle found from the container.
315    * @note If an angle outside the range in AddAngle() is given, then the value is wrapped within
316    *       the range and that is removed.
317    */
318   void RemoveAngle(Radian angle);
319
320   /**
321    * @brief Removes the two angles that make up the direction from the container.
322    *
323    * @SINCE_1_0.0
324    * @param[in] direction The direction to remove
325    * @pre The gesture detector has been initialized.
326    * @note If a direction outside the range in AddAngle() is given, then the value is wrapped within
327    *       the range and that is removed.
328    */
329   void RemoveDirection(Radian direction);
330
331 public: // Signals
332   /**
333    * @brief This signal is emitted when the pan gesture is detected on the attached actor.
334    *
335    * A callback of the following type may be connected:
336    * @code
337    *   void YourCallbackName( Actor actor, const PanGesture& gesture );
338    * @endcode
339    * @SINCE_1_0.0
340    * @return The signal to connect to
341    * @pre The gesture detector has been initialized.
342    */
343   DetectedSignalType& DetectedSignal();
344
345 public: // Pan Properties Setters
346   /**
347    * @brief Allows setting of the pan properties that are returned in constraints.
348    *
349    * @SINCE_1_0.0
350    * @param[in] pan The pan gesture to set
351    * @note If a normal pan is taking place, then any value set is ignored.
352    */
353   static void SetPanGestureProperties(const PanGesture& pan);
354
355 public: // Not intended for Application developers
356   /// @cond internal
357   /**
358    * @brief This constructor is used by PanGestureDetector::New() methods.
359    *
360    * @SINCE_1_0.0
361    * @param[in] internal A pointer to a newly allocated Dali resource
362    */
363   explicit DALI_INTERNAL PanGestureDetector(Internal::PanGestureDetector* internal);
364   /// @endcond
365 };
366
367 /**
368  * @}
369  */
370
371 } // namespace Dali
372
373 #endif // DALI_PAN_GESTURE_DETECTOR_H