Change a service name of the indicator and remove a unused indicator style
[platform/core/uifw/dali-adaptor.git] / adaptors / common / accessibility-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 "accessibility-gesture-detector.h"
20
21 // EXTERNAL INCLUDES
22 #include <dali/integration-api/events/gesture-requests.h>
23
24 // INTERNAL INCLUDES
25 #include <accessibility-manager-impl.h>
26
27 namespace Dali
28 {
29
30 namespace Internal
31 {
32
33 namespace Adaptor
34 {
35
36 AccessibilityGestureDetector::AccessibilityGestureDetector()
37 : PanGestureDetectorBase(Vector2::ZERO, Integration::PanGestureRequest(), NULL),
38   mGestureHandler(NULL),
39   mPanning(false)
40 {
41 }
42
43 AccessibilityGestureDetector::~AccessibilityGestureDetector()
44 {
45 }
46
47 void AccessibilityGestureDetector::SetGestureHandler(AccessibilityGestureHandler& handler)
48 {
49   mGestureHandler = &handler;
50 }
51
52 void AccessibilityGestureDetector::EmitPan(const Integration::PanGestureEvent gesture)
53 {
54   if( mGestureHandler )
55   {
56     if(gesture.state == Gesture::Started)
57     {
58       mPanning = true;
59     }
60
61     if( mPanning )
62     {
63       mGestureHandler->HandlePanGesture(gesture);
64
65       if( (gesture.state == Gesture::Finished) ||
66           (gesture.state == Gesture::Cancelled) )
67       {
68         mPanning = false;
69       }
70     }
71   }
72 }
73
74 } // namespace Adaptor
75
76 } // namespace Internal
77
78 } // namespace Dali