Copied some TextInput grab/selection handle code
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / internal / controls / text-controls / text-field-impl.h
index 443e3e1..7b013f5 100644 (file)
@@ -89,6 +89,11 @@ private: // From Control
   virtual void OnTap( const TapGesture& tap );
 
   /**
+   * TODO - Fix TapGestureDetector to support single and double tap
+   */
+  void OnDoubleTap( Actor actor, const TapGesture& tap );
+
+  /**
    * @copydoc Text::ControlInterface::RequestTextRelayout()
    */
   virtual void RequestTextRelayout();
@@ -117,6 +122,8 @@ private: // Data
   Text::RendererPtr mRenderer;
   Text::DecoratorPtr mDecorator;
 
+  TapGestureDetector mDoubleTapDetector;
+
   unsigned int mRenderingBackend;
 };