Merge branch 'devel/master' into tizen
[platform/core/uifw/dali-adaptor.git] / dali / internal / accessibility / common / accessibility-gesture-detector.h
1 #ifndef __DALI_INTERNAL_ACCESSIBILITY_GESTURE_DETECTOR_H__
2 #define __DALI_INTERNAL_ACCESSIBILITY_GESTURE_DETECTOR_H__
3
4 /*
5  * Copyright (c) 2014 Samsung Electronics Co., Ltd.
6  *
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  * http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  *
19  */
20
21 // EXTERNAL INCLUDES
22
23 // INTERNAL INCLUDES
24 #include <dali/internal/input/common/pan-gesture-detector-base.h>
25 #include <dali/devel-api/adaptor-framework/accessibility-gesture-handler.h>
26
27 namespace Dali
28 {
29
30 namespace Integration
31 {
32 class Core;
33 struct TouchEvent;
34 struct PanGestureRequest;
35 }
36
37 namespace Internal
38 {
39
40 namespace Adaptor
41 {
42
43 /**
44  * Detects an accessibility pan gesture and sends it to the gesture handler.
45  */
46 class AccessibilityGestureDetector : public PanGestureDetectorBase
47 {
48 public:
49
50   /**
51    * Constructor
52    */
53   AccessibilityGestureDetector();
54
55   /**
56    * Virtual destructor.
57    */
58   virtual ~AccessibilityGestureDetector();
59
60   /**
61    * Set the handler to handle accessibility gestures.
62    * @param[in] handler The Accessibility gesture handler.
63    * @note Handlers should remove themselves when they are destroyed.
64    */
65   void SetGestureHandler(AccessibilityGestureHandler& handler);
66
67 private:
68
69   /**
70    * Emits the pan gesture event to the gesture handler.
71    * @param[in] gesture The pan gesture event.
72    */
73   virtual void EmitPan(const Integration::PanGestureEvent gesture);
74
75 private:
76
77   AccessibilityGestureHandler* mGestureHandler; ///< The pointer of accessibility gesture handler
78   bool mPanning;    ///< Keep track of panning state, when panning is occuring, this is true.
79 };
80
81 using AccessibilityGestureDetectorPtr = Dali::IntrusivePtr<AccessibilityGestureDetector>;
82
83 } // namespace Adaptor
84
85 } // namespace Internal
86
87 } // namespace Dali
88
89 #endif // __DALI_INTERNAL_ACCESSIBILITY_GESTURE_DETECTOR_H__