Revert "License conversion from Flora to Apache 2.0"
[platform/core/uifw/dali-core.git] / dali / public-api / events / long-press-gesture-detector.cpp
1 //
2 // Copyright (c) 2014 Samsung Electronics Co., Ltd.
3 //
4 // Licensed under the Flora License, Version 1.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://floralicense.org/license/
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 // CLASS HEADER
18 #include <dali/public-api/events/long-press-gesture-detector.h>
19
20 // INTERNAL INCLUDES
21 #include <dali/internal/event/events/long-press-gesture-detector-impl.h>
22
23 namespace Dali
24 {
25
26 const char* const LongPressGestureDetector::SIGNAL_LONG_PRESS_DETECTED = "long-press-detected";
27
28 LongPressGestureDetector::LongPressGestureDetector(Internal::LongPressGestureDetector* internal)
29 : GestureDetector(internal)
30 {
31 }
32
33 LongPressGestureDetector::LongPressGestureDetector()
34 {
35 }
36
37 LongPressGestureDetector LongPressGestureDetector::New()
38 {
39   Internal::LongPressGestureDetectorPtr internal = Internal::LongPressGestureDetector::New();
40
41   return LongPressGestureDetector(internal.Get());
42 }
43
44 LongPressGestureDetector LongPressGestureDetector::New(unsigned int touchesRequired)
45 {
46   Internal::LongPressGestureDetectorPtr internal = Internal::LongPressGestureDetector::New(touchesRequired);
47
48   return LongPressGestureDetector(internal.Get());
49 }
50
51 LongPressGestureDetector LongPressGestureDetector::New(unsigned int minTouches, unsigned int maxTouches)
52 {
53   Internal::LongPressGestureDetectorPtr internal = Internal::LongPressGestureDetector::New(minTouches, maxTouches);
54
55   return LongPressGestureDetector(internal.Get());
56 }
57
58 LongPressGestureDetector LongPressGestureDetector::DownCast( BaseHandle handle )
59 {
60   return LongPressGestureDetector( dynamic_cast<Dali::Internal::LongPressGestureDetector*>(handle.GetObjectPtr()) );
61 }
62
63 LongPressGestureDetector::~LongPressGestureDetector()
64 {
65 }
66
67 void LongPressGestureDetector::SetTouchesRequired(unsigned int touches)
68 {
69   GetImplementation(*this).SetTouchesRequired(touches);
70 }
71
72 void LongPressGestureDetector::SetTouchesRequired(unsigned int minTouches, unsigned int maxTouches)
73 {
74   GetImplementation(*this).SetTouchesRequired(minTouches, maxTouches);
75 }
76
77 unsigned int LongPressGestureDetector::GetMinimumTouchesRequired() const
78 {
79   return GetImplementation(*this).GetMinimumTouchesRequired();
80 }
81
82 unsigned int LongPressGestureDetector::GetMaximumTouchesRequired() const
83 {
84   return GetImplementation(*this).GetMaximumTouchesRequired();
85 }
86
87 LongPressGestureDetector::DetectedSignalV2& LongPressGestureDetector::DetectedSignal()
88 {
89   return GetImplementation(*this).DetectedSignal();
90 }
91
92 } // namespace Dali