Merge "DALi Version 2.0.43" into devel/master
[platform/core/uifw/dali-core.git] / dali / devel-api / events / pan-gesture-devel.cpp
1 /*
2  * Copyright (c) 2020 Samsung Electronics Co., Ltd.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *
16  */
17
18 // CLASS HEADER
19 #include <dali/devel-api/events/pan-gesture-devel.h>
20
21 // INTERNAL INCLUDES
22 #include <dali/internal/event/events/pan-gesture/pan-gesture-impl.h>
23
24 namespace Dali
25 {
26 namespace DevelPanGesture
27 {
28 Dali::PanGesture New(GestureState state)
29 {
30   return PanGesture(new Internal::PanGesture(state));
31 }
32
33 void SetTime(Dali::PanGesture& gesture, uint32_t time)
34 {
35   GetImplementation(gesture).SetTime(time);
36 }
37
38 void SetVelocity(Dali::PanGesture& gesture, const Vector2& velocity)
39 {
40   GetImplementation(gesture).SetVelocity(velocity);
41 }
42
43 void SetDisplacement(Dali::PanGesture& gesture, const Vector2& displacement)
44 {
45   GetImplementation(gesture).SetDisplacement(displacement);
46 }
47
48 void SetPosition(Dali::PanGesture& gesture, const Vector2& position)
49 {
50   GetImplementation(gesture).SetPosition(position);
51 }
52
53 void SetScreenVelocity(Dali::PanGesture& gesture, const Vector2& screenVelocity)
54 {
55   GetImplementation(gesture).SetScreenVelocity(screenVelocity);
56 }
57
58 void SetScreenDisplacement(Dali::PanGesture& gesture, const Vector2& screenDisplacement)
59 {
60   GetImplementation(gesture).SetScreenDisplacement(screenDisplacement);
61 }
62
63 void SetScreenPosition(Dali::PanGesture& gesture, const Vector2& screenPosition)
64 {
65   GetImplementation(gesture).SetScreenPosition(screenPosition);
66 }
67
68 void SetNumberOfTouches(Dali::PanGesture& gesture, uint32_t numberOfTouches)
69 {
70   GetImplementation(gesture).SetNumberOfTouches(numberOfTouches);
71 }
72
73 } // namespace DevelPanGesture
74
75 } // namespace Dali