Use existing callback ID for recurring callbacks
[platform/core/uifw/dali-adaptor.git] / dali / devel-api / adaptor-framework / accessibility-action-handler.h
index 8bc2ac8..9ceaf58 100644 (file)
@@ -24,7 +24,6 @@
 
 namespace Dali
 {
-
 /**
  * AccessibilityActionHandler is an abstract interface, used by Dali to handle accessibility actions
  * passed by the accessibility manager.
@@ -32,7 +31,6 @@ namespace Dali
 class AccessibilityActionHandler
 {
 public:
-
   /**
    * Change the accessibility status when Accessibility feature(screen-reader) turned on or off.
    * @return whether the status is changed or not.
@@ -50,7 +48,7 @@ public:
    * @param touch The touch point (and time) of the event.
    * @return whether the focus is cleared or not.
    */
-  virtual bool AccessibilityActionScroll( Dali::TouchEvent& touch ) = 0;
+  virtual bool AccessibilityActionScroll(Dali::TouchEvent& touch) = 0;
 
   /**
    * Perform the accessibility action to move focus to the previous focusable actor (by one finger flick up).
@@ -198,13 +196,6 @@ public:
    */
   virtual bool AccessibilityActionStartStop() = 0;
 
-  /**
-   * Perform the accessibility action to mouse move (by one finger tap & hold and move).
-   * @param touch touch data
-   * @return whether the accessibility action is performed or not.
-   */
-  virtual bool AccessibilityActionTouch(const Dali::TouchEvent& touch) = 0;
-
 }; // class AccessibilityActionHandler
 
 } // namespace Dali