e9974e1a5463ade8229f6b0fd0aeb14b895e124a
[platform/core/uifw/dali-core.git] / dali / public-api / events / pinch-gesture-detector.h
1 #ifndef __DALI_PINCH_GESTURE_DETECTOR_H__
2 #define __DALI_PINCH_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 // INTERNAL INCLUDES
22 #include <dali/public-api/events/gesture-detector.h>
23 #include <dali/public-api/signals/dali-signal-v2.h>
24
25 namespace Dali
26 {
27
28 namespace Internal DALI_INTERNAL
29 {
30 class PinchGestureDetector;
31 }
32
33 struct PinchGesture;
34
35 /**
36  * @brief This class looks for pinching gestures involving two touches.
37  *
38  * It tries to detect when the user moves two touch points towards or
39  * away from each other.  Please see PinchGesture for more
40  * information.
41  *
42  * The application programmer can use this gesture detector as follows:
43  * @code
44  * PinchGestureDetector detector = PinchGestureDetector::New();
45  * detector.Attach(myActor);
46  * detector.DetectedSignal().Connect(this, &MyApplication::OnPinch);
47  * @endcode
48  *
49  * @see PinchGesture
50  */
51 class DALI_IMPORT_API PinchGestureDetector : public GestureDetector
52 {
53 public: // Typedefs
54
55   /**
56    * @brief Signal type.
57    */
58   typedef SignalV2< void (Actor, PinchGesture) > DetectedSignalV2;
59
60   //Signal Names
61   static const char* const SIGNAL_PINCH_DETECTED; ///< name "pinch-detected"
62
63 public: // Creation & Destruction
64
65   /**
66    * @brief Create an uninitialized PinchGestureDetector; this can be initialized with PinchGestureDetector::New().
67    *
68    * Calling member functions with an uninitialized Dali::Object is not allowed.
69    */
70   PinchGestureDetector();
71
72   /**
73    * @brief Create an initialized PinchGestureDetector.
74    *
75    * @return A handle to a newly allocated Dali resource.
76    */
77   static PinchGestureDetector New();
78
79   /**
80    * @brief Downcast an Object handle to PinchGestureDetector handle.
81    *
82    * If handle points to a PinchGestureDetector object the
83    * downcast produces valid handle. If not the returned handle is left uninitialized.
84    * @param[in] handle to An object
85    * @return handle to a PinchGestureDetector object or an uninitialized handle
86    */
87   static PinchGestureDetector DownCast( BaseHandle handle );
88
89   /**
90    * @brief Destructor
91    *
92    * This is non-virtual since derived Handle types must not contain data or virtual methods.
93    */
94   ~PinchGestureDetector();
95
96   /**
97    * @brief This copy constructor is required for (smart) pointer semantics.
98    *
99    * @param [in] handle A reference to the copied handle
100    */
101   PinchGestureDetector(const PinchGestureDetector& handle);
102
103   /**
104    * @brief This assignment operator is required for (smart) pointer semantics.
105    *
106    * @param [in] rhs  A reference to the copied handle
107    * @return A reference to this
108    */
109   PinchGestureDetector& operator=(const PinchGestureDetector& rhs);
110
111 public: // Signals
112
113   /**
114    * @brief This signal is emitted when the pinch gesture is detected on the attached actor.
115    *
116    * A callback of the following type may be connected:
117    * @code
118    *   void YourCallbackName(Actor actor, PinchGesture gesture);
119    * @endcode
120    * @pre The gesture detector has been initialized.
121    * @return The signal to connect to.
122    */
123   DetectedSignalV2& DetectedSignal();
124
125 public: // Not intended for Application developers
126
127   /**
128    * @brief This constructor is used by Dali New() methods.
129    *
130    * @param [in]  internal  A pointer to a newly allocated Dali resource.
131    */
132   explicit DALI_INTERNAL PinchGestureDetector(Internal::PinchGestureDetector* internal);
133
134 };
135
136 } // namespace Dali
137
138 #endif // __DALI_PINCH_GESTURE_DETECTOR_H__