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 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/long-press-gesture-detector.h>
20
21 // INTERNAL INCLUDES
22 #include <dali/internal/event/events/long-press-gesture-detector-impl.h>
23
24 namespace Dali
25 {
26
27 const char* const LongPressGestureDetector::SIGNAL_LONG_PRESS_DETECTED = "long-press-detected";
28
29 LongPressGestureDetector::LongPressGestureDetector(Internal::LongPressGestureDetector* internal)
30 : GestureDetector(internal)
31 {
32 }
33
34 LongPressGestureDetector::LongPressGestureDetector()
35 {
36 }
37
38 LongPressGestureDetector LongPressGestureDetector::New()
39 {
40   Internal::LongPressGestureDetectorPtr internal = Internal::LongPressGestureDetector::New();
41
42   return LongPressGestureDetector(internal.Get());
43 }
44
45 LongPressGestureDetector LongPressGestureDetector::New(unsigned int touchesRequired)
46 {
47   Internal::LongPressGestureDetectorPtr internal = Internal::LongPressGestureDetector::New(touchesRequired);
48
49   return LongPressGestureDetector(internal.Get());
50 }
51
52 LongPressGestureDetector LongPressGestureDetector::New(unsigned int minTouches, unsigned int maxTouches)
53 {
54   Internal::LongPressGestureDetectorPtr internal = Internal::LongPressGestureDetector::New(minTouches, maxTouches);
55
56   return LongPressGestureDetector(internal.Get());
57 }
58
59 LongPressGestureDetector LongPressGestureDetector::DownCast( BaseHandle handle )
60 {
61   return LongPressGestureDetector( dynamic_cast<Dali::Internal::LongPressGestureDetector*>(handle.GetObjectPtr()) );
62 }
63
64 LongPressGestureDetector::~LongPressGestureDetector()
65 {
66 }
67
68 void LongPressGestureDetector::SetTouchesRequired(unsigned int touches)
69 {
70   GetImplementation(*this).SetTouchesRequired(touches);
71 }
72
73 void LongPressGestureDetector::SetTouchesRequired(unsigned int minTouches, unsigned int maxTouches)
74 {
75   GetImplementation(*this).SetTouchesRequired(minTouches, maxTouches);
76 }
77
78 unsigned int LongPressGestureDetector::GetMinimumTouchesRequired() const
79 {
80   return GetImplementation(*this).GetMinimumTouchesRequired();
81 }
82
83 unsigned int LongPressGestureDetector::GetMaximumTouchesRequired() const
84 {
85   return GetImplementation(*this).GetMaximumTouchesRequired();
86 }
87
88 LongPressGestureDetector::DetectedSignalV2& LongPressGestureDetector::DetectedSignal()
89 {
90   return GetImplementation(*this).DetectedSignal();
91 }
92
93 } // namespace Dali