Merge branch 'devel/master' into tizen
[platform/core/uifw/dali-core.git] / dali / internal / event / events / rotation-gesture / rotation-gesture-event.h
1 #ifndef DALI_INTERNAL_EVENT_ROTATION_GESTURE_EVENT_H
2 #define DALI_INTERNAL_EVENT_ROTATION_GESTURE_EVENT_H
3
4 /*
5  * Copyright (c) 2019 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/math/radian.h>
23 #include <dali/public-api/math/vector2.h>
24 #include <dali/devel-api/events/gesture-devel.h>
25 #include <dali/internal/event/events/gesture-event.h>
26
27 namespace Dali
28 {
29
30 namespace Internal
31 {
32
33 /**
34  * When a rotation gesture is detected, this structure holds information regarding the gesture.
35  *
36  * A Rotation Gesture event should be in one of four states:
37  * - Started:    If a rotation is detected.
38  * - Continuing: If after a rotation is detected, it continues.
39  * - Finished:   If after a rotation, the user lifts their finger(s).
40  * - Cancelled:  If there is a system interruption.
41  */
42 struct RotationGestureEvent : public GestureEvent
43 {
44   // Construction & Destruction
45
46   /**
47    * Default Constructor
48    * @param[in]  state  The state of the gesture
49    */
50   RotationGestureEvent( Gesture::State state )
51   : GestureEvent( DevelGesture::Rotation, state )
52   {
53   }
54
55   /**
56    * Virtual destructor
57    */
58   virtual ~RotationGestureEvent() = default;
59
60   // Data
61
62   /**
63    * @copydoc Dali::RotationGesture::rotation
64    */
65   Radian rotation;
66
67   /**
68    * @copydoc Dali::RotationGesture::screenCenterPoint
69    */
70   Vector2 centerPoint;
71 };
72
73 } // namespace Integration
74
75 } // namespace Dali
76
77 #endif // DALI_INTERNAL_EVENT_ROTATION_GESTURE_EVENT_H