Moved Gesture::State and -::Type to gesture-enumerations.h.
[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
25 namespace Dali
26 {
27
28 namespace DevelPanGesture
29 {
30
31 Dali::PanGesture New( GestureState state )
32 {
33   return PanGesture( new Internal::PanGesture( state ) );
34 }
35
36 void SetTime( Dali::PanGesture& gesture, uint32_t time )
37 {
38   GetImplementation( gesture ).SetTime( time );
39 }
40
41 void SetVelocity( Dali::PanGesture& gesture, const Vector2& velocity)
42 {
43   GetImplementation( gesture ).SetVelocity( velocity );
44 }
45
46 void SetDisplacement( Dali::PanGesture& gesture, const Vector2& displacement)
47 {
48   GetImplementation( gesture ).SetDisplacement( displacement );
49 }
50
51 void SetPosition( Dali::PanGesture& gesture, const Vector2& position)
52 {
53   GetImplementation( gesture ).SetPosition( position );
54 }
55
56 void SetScreenVelocity( Dali::PanGesture& gesture, const Vector2& screenVelocity)
57 {
58   GetImplementation( gesture ).SetScreenVelocity( screenVelocity );
59 }
60
61 void SetScreenDisplacement( Dali::PanGesture& gesture, const Vector2& screenDisplacement)
62 {
63   GetImplementation( gesture ).SetScreenDisplacement( screenDisplacement );
64 }
65
66 void SetScreenPosition( Dali::PanGesture& gesture, const Vector2& screenPosition)
67 {
68   GetImplementation( gesture ).SetScreenPosition( screenPosition );
69 }
70
71 void SetNumberOfTouches( Dali::PanGesture& gesture, uint32_t numberOfTouches )
72 {
73   GetImplementation( gesture ).SetNumberOfTouches( numberOfTouches );
74 }
75
76 } // namespace DevelPanGesture
77
78 } // namespace Dali