[dali_1.0.17] Merge branch 'tizen'
[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 LongPressGestureDetector::LongPressGestureDetector(const LongPressGestureDetector& handle)
69 : GestureDetector(handle)
70 {
71 }
72
73 LongPressGestureDetector& LongPressGestureDetector::operator=(const LongPressGestureDetector& rhs)
74 {
75   BaseHandle::operator=(rhs);
76   return *this;
77 }
78
79 void LongPressGestureDetector::SetTouchesRequired(unsigned int touches)
80 {
81   GetImplementation(*this).SetTouchesRequired(touches);
82 }
83
84 void LongPressGestureDetector::SetTouchesRequired(unsigned int minTouches, unsigned int maxTouches)
85 {
86   GetImplementation(*this).SetTouchesRequired(minTouches, maxTouches);
87 }
88
89 unsigned int LongPressGestureDetector::GetMinimumTouchesRequired() const
90 {
91   return GetImplementation(*this).GetMinimumTouchesRequired();
92 }
93
94 unsigned int LongPressGestureDetector::GetMaximumTouchesRequired() const
95 {
96   return GetImplementation(*this).GetMaximumTouchesRequired();
97 }
98
99 LongPressGestureDetector::DetectedSignalV2& LongPressGestureDetector::DetectedSignal()
100 {
101   return GetImplementation(*this).DetectedSignal();
102 }
103
104 } // namespace Dali