9c72c25b495ed780279fc5bb0434914e3904201c
[platform/core/uifw/dali-core.git] / dali / public-api / events / pinch-gesture.cpp
1 /*
2  * Copyright (c) 2016 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/public-api/events/pinch-gesture.h>
20
21 // INTERNAL INCLUDES
22 #include <dali/public-api/common/dali-common.h>
23
24 namespace Dali
25 {
26
27 PinchGesture::PinchGesture(Gesture::State state)
28 : Gesture(Gesture::Pinch, state),
29   scale(0.0f),
30   speed(0.0f)
31 {
32 }
33
34 PinchGesture::PinchGesture( const PinchGesture& rhs )
35 : Gesture( rhs ),
36   scale( rhs.scale ),
37   speed( rhs.speed ),
38   screenCenterPoint( rhs.screenCenterPoint ),
39   localCenterPoint( rhs.localCenterPoint )
40 {
41 }
42
43 PinchGesture& PinchGesture::operator=( const PinchGesture& rhs )
44 {
45   if( this != &rhs )
46   {
47     Gesture::operator=(rhs);
48     scale = rhs.scale;
49     speed = rhs.speed;
50     screenCenterPoint = rhs.screenCenterPoint;
51     localCenterPoint = rhs.localCenterPoint;
52   }
53
54   return *this;
55 }
56
57 PinchGesture::~PinchGesture()
58 {
59 }
60
61 } // namespace Dali