d1d977691bcf5ca6cac3ffa76cf169e488c915c5
[platform/core/uifw/dali-core.git] / dali / internal / event / events / pinch-gesture / pinch-gesture-detector-impl.cpp
1 /*
2  * Copyright (c) 2020 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/internal/event/events/pinch-gesture/pinch-gesture-detector-impl.h>
20
21 // EXTERNAL INCLUDES
22 #include <cstring> // for strcmp
23
24 // INTERNAL INCLUDES
25 #include <dali/public-api/events/pinch-gesture.h>
26 #include <dali/public-api/object/type-registry.h>
27 #include <dali/internal/event/events/gesture-event-processor.h>
28 #include <dali/integration-api/debug.h>
29
30 namespace Dali
31 {
32
33 namespace Internal
34 {
35
36 namespace
37 {
38
39 // Signals
40
41 const char* const SIGNAL_PINCH_DETECTED = "pinchDetected";
42
43 BaseHandle Create()
44 {
45   return Dali::PinchGestureDetector::New();
46 }
47
48 TypeRegistration mType( typeid(Dali::PinchGestureDetector), typeid(Dali::GestureDetector), Create );
49
50 SignalConnectorType signalConnector1( mType, SIGNAL_PINCH_DETECTED, &PinchGestureDetector::DoConnectSignal );
51
52 }
53
54
55 PinchGestureDetectorPtr PinchGestureDetector::New()
56 {
57   return new PinchGestureDetector;
58 }
59
60 PinchGestureDetector::PinchGestureDetector()
61 : GestureDetector(Dali::Gesture::Pinch)
62 {
63 }
64
65 PinchGestureDetector::~PinchGestureDetector()
66 {
67 }
68
69 void PinchGestureDetector::EmitPinchGestureSignal(Dali::Actor actor, const Dali::PinchGesture& pinch)
70 {
71   // Guard against destruction during signal emission
72   Dali::PinchGestureDetector handle( this );
73
74   mDetectedSignal.Emit( actor, pinch );
75 }
76
77 bool PinchGestureDetector::DoConnectSignal( BaseObject* object, ConnectionTrackerInterface* tracker, const std::string& signalName, FunctorDelegate* functor )
78 {
79   bool connected( true );
80   PinchGestureDetector* gesture = static_cast< PinchGestureDetector* >(object); // TypeRegistry guarantees that this is the correct type.
81
82   if ( 0 == strcmp( signalName.c_str(), SIGNAL_PINCH_DETECTED ) )
83   {
84     gesture->DetectedSignal().Connect( tracker, functor );
85   }
86   else
87   {
88     // signalName does not match any signal
89     connected = false;
90   }
91
92   return connected;
93 }
94
95 void PinchGestureDetector::OnActorAttach(Actor& actor)
96 {
97   // Do nothing
98 }
99
100 void PinchGestureDetector::OnActorDetach(Actor& actor)
101 {
102   // Do nothing
103 }
104
105 void PinchGestureDetector::OnActorDestroyed(Object& object)
106 {
107   // Do nothing
108 }
109
110 } // namespace Internal
111
112 } // namespace Dali