2 * Copyright (c) 2020 Samsung Electronics Co., Ltd.
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
8 * http://www.apache.org/licenses/LICENSE-2.0
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.
19 #include <dali/public-api/events/pinch-gesture.h>
22 #include <dali/internal/event/events/pinch-gesture/pinch-gesture-impl.h>
23 #include <dali/public-api/common/dali-common.h>
27 PinchGesture::PinchGesture(Internal::PinchGesture* internal)
32 PinchGesture::PinchGesture() = default;
34 PinchGesture::PinchGesture(const PinchGesture& rhs) = default;
36 PinchGesture::PinchGesture(PinchGesture&& rhs) noexcept = default;
38 PinchGesture& PinchGesture::operator=(const PinchGesture& rhs) = default;
40 PinchGesture& PinchGesture::operator=(PinchGesture&& rhs) noexcept = default;
42 PinchGesture::~PinchGesture() = default;
44 float PinchGesture::GetScale() const
46 return GetImplementation(*this).GetScale();
49 float PinchGesture::GetSpeed() const
51 return GetImplementation(*this).GetSpeed();
54 const Vector2& PinchGesture::GetScreenCenterPoint() const
56 return GetImplementation(*this).GetScreenCenterPoint();
59 const Vector2& PinchGesture::GetLocalCenterPoint() const
61 return GetImplementation(*this).GetLocalCenterPoint();