1 #ifndef __DALI_GESTURE_DETECTOR_H__
2 #define __DALI_GESTURE_DETECTOR_H__
5 * Copyright (c) 2018 Samsung Electronics Co., Ltd.
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
11 * http://www.apache.org/licenses/LICENSE-2.0
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.
22 #include <dali/public-api/common/vector-wrapper.h>
23 #include <dali/public-api/object/handle.h>
28 * @addtogroup dali_core_events
32 namespace Internal DALI_INTERNAL
34 class GestureDetector;
40 * @brief GestureDetectors analyse a stream of touch events and attempt to determine the intention of the user.
42 * An actor is attached to a gesture detector and if the detector recognises a pattern in its analysis, it will
43 * emit a detected signal to the application.
45 * This is the base class for different gesture detectors available and provides functionality that is common
46 * to all the gesture detectors.
51 class DALI_CORE_API GestureDetector : public Handle
53 public: // Creation & Destruction
56 * @brief Creates an uninitialized GestureDetector.
58 * This can be initialized with one of the derived gesture detectors' New() methods. For example, PanGestureDetector::New().
60 * Calling member functions with an uninitialized Dali::GestureDetector handle is not allowed.
66 * @brief Downcasts a handle to GestureDetector handle.
68 * If handle points to a GestureDetector object, the downcast produces valid handle.
69 * If not, the returned handle is left uninitialized.
71 * @param[in] handle Handle to an object
72 * @return Handle to a GestureDetector object or an uninitialized handle
74 static GestureDetector DownCast( BaseHandle handle );
77 * @brief Dali::GestureDetector is intended as a base class.
79 * This is non-virtual since derived Handle types must not contain data or virtual methods.
85 * @brief This copy constructor is required for (smart) pointer semantics.
88 * @param[in] handle A reference to the copied handle
90 GestureDetector(const GestureDetector& handle);
93 * @brief This assignment operator is required for (smart) pointer semantics.
96 * @param[in] rhs A reference to the copied handle
97 * @return A reference to this
99 GestureDetector& operator=(const GestureDetector& rhs);
101 public: // Actor related
104 * @brief Attaches an actor to the gesture.
106 * The detected signal will be dispatched when the gesture occurs on
107 * the attached actor.
109 * @param[in] actor The actor to attach to the gesture detector
110 * @pre The gesture detector has been initialized.
111 * @note You can attach several actors to a gesture detector.
113 void Attach(Actor actor);
116 * @brief Detaches the attached actor from the gesture detector.
119 * @param[in] actor The actor to detach from the gesture detector
120 * @pre The gesture detector has been initialized.
121 * @pre The specified actor has been attached to the gesture detector.
123 void Detach(Actor actor);
126 * @brief Detaches all the actors that have been attached to the gesture detector.
129 * @pre The gesture detector has been initialized.
130 * @pre At least one actor has been attached to the gesture detector.
135 * @brief Returns the number of actors attached to the gesture detector.
139 * @pre The gesture detector has been initialized.
141 size_t GetAttachedActorCount() const;
144 * @brief Returns an actor by index. An empty handle if the index is not valid.
147 * @param[in] index The attached actor's index
148 * @return The attached actor or an empty handle
149 * @pre The gesture detector has been initialized.
151 Actor GetAttachedActor(size_t index) const;
157 * @brief This constructor is used by New() methods of derived classes (For example, PanGestureDetector::New()).
160 * @param[in] internal A pointer to a newly allocated Dali resource
162 explicit DALI_INTERNAL GestureDetector(Internal::GestureDetector* internal);
171 #endif // __DALI_GESTURE_DETECTOR_H__