Apply the new doxygen tagging rule for @SINCE
[platform/core/uifw/dali-core.git] / dali / public-api / events / gesture.h
1 #ifndef __DALI_GESTURE_H__
2 #define __DALI_GESTURE_H__
3
4 /*
5  * Copyright (c) 2015 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 // INTERNAL INCLUDES
22 #include <dali/public-api/common/dali-common.h>
23
24 namespace Dali
25 {
26 /**
27  * @addtogroup dali_core_events
28  * @{
29  */
30
31 /**
32  * @brief Base structure for different gestures that an application can receive.
33  *
34  * A gesture is an event that is produced from a combination of
35  * several touch events in a particular order or within a certain time
36  * frame (e.g pinch).
37  *
38  * To receive a particular gesture, the application has to create and connect to the appropriate
39  * GestureDetector.
40  *
41  * @SINCE_1_0.0
42  * @note An instance of this class cannot be created.
43  * @see GestureDetector
44  *
45  */
46 struct DALI_IMPORT_API Gesture
47 {
48   /**
49    * @brief Copy constructor.
50    * @SINCE_1_0.0
51    */
52   Gesture( const Gesture& rhs );
53
54   /**
55    * @brief Assignment operator.
56    * @SINCE_1_0.0
57    */
58   Gesture& operator=( const Gesture& rhs );
59
60   // Destruction
61
62   /**
63    * @brief Virtual destructor.
64    * @SINCE_1_0.0
65    */
66   virtual ~Gesture();
67
68   /**
69    * @brief Type of gesture.
70    * @SINCE_1_0.0
71    */
72   enum Type
73   {
74     Pinch      = 1 << 0, ///< When two touch points move away or towards each other. @SINCE_1_0.0
75     Pan        = 1 << 1, ///< When the user drags their finger(s) in a particular direction. @SINCE_1_0.0
76     Tap        = 1 << 2, ///< When the user taps the screen. @SINCE_1_0.0
77     LongPress  = 1 << 3  ///< When the user continues to touch the same area on the screen for the device configured time. @SINCE_1_0.0
78   };
79
80   /**
81    * @brief State of the gesture.
82    * @SINCE_1_0.0
83    */
84   enum State
85   {
86     Clear,      ///< There is no state associated with this gesture. @SINCE_1_0.0
87     Started,    ///< The touched points on the screen have moved enough to be considered a gesture. @SINCE_1_0.0
88     Continuing, ///< The gesture is continuing. @SINCE_1_0.0
89     Finished,   ///< The user has lifted a finger or touched an additional point on the screen. @SINCE_1_0.0
90     Cancelled,  ///< The gesture has been cancelled. @SINCE_1_0.0
91     Possible    ///< A gesture is possible. @SINCE_1_0.0
92   };
93
94   // Data
95
96   /**
97    * @brief The gesture type.
98    */
99   Type type;
100
101   /**
102    * @brief The gesture state.
103    *
104    * Please see the description in the sub-classes to see the states
105    * used by the actual gesture.
106    */
107   State state;
108
109   /**
110    * @brief The time the gesture took place.
111    */
112   unsigned int time;
113
114 protected: // Creation
115
116   /**
117    * @brief This constructor is only used by derived classes.
118    *
119    * @SINCE_1_0.0
120    * @param[in] gestureType   The type of gesture event.
121    * @param[in] gestureState  The state of the gesture event.
122    */
123   Gesture(Type gestureType, State gestureState);
124
125 };
126
127 /**
128  * @}
129  */
130 } // namespace Dali
131
132 #endif // __DALI_GESTURE_H__