DALi Version 2.2.12
[platform/core/uifw/dali-core.git] / dali / public-api / events / point-state.h
1 #ifndef DALI_POINT_STATE_H
2 #define DALI_POINT_STATE_H
3
4 /*
5  * Copyright (c) 2020 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 namespace Dali
22 {
23 /**
24  * @addtogroup dali_core_events
25  * @{
26  */
27
28 /**
29  * @brief Point state
30  * @SINCE_1_1.37
31  */
32 namespace PointState
33 {
34 /**
35  * @brief Enumeration for point state type.
36  * @SINCE_1_1.37
37  */
38 enum Type
39 {
40   STARTED,         /**< Touch or hover started */
41   FINISHED,        /**< Touch or hover finished */
42   DOWN = STARTED,  /**< Screen touched */
43   UP   = FINISHED, /**< Touch stopped */
44   MOTION,          /**< Finger dragged or hovered */
45   LEAVE,           /**< Leave the boundary of an actor */
46   STATIONARY,      /**< No change from last event. Useful when a multi-point event occurs where
47                        all points are sent but indicates that this particular point has not changed
48                        since the last time */
49   INTERRUPTED,     /**< A system event has occurred which has interrupted the touch or hover event sequence. */
50 };
51 } // namespace PointState
52
53 /**
54  * @}
55  */
56 } // namespace Dali
57
58 #endif // DALI_POINT_H