Changes after TouchData renamed to TouchEvent
[platform/core/uifw/dali-adaptor.git] / dali / devel-api / adaptor-framework / accessibility-action-handler.h
index 9cac7ca..8bc2ac8 100644 (file)
@@ -1,8 +1,8 @@
-#ifndef __DALI_ACCESSIBILITY_ACTION_HANDLER_H__
-#define __DALI_ACCESSIBILITY_ACTION_HANDLER_H__
+#ifndef DALI_ACCESSIBILITY_ACTION_HANDLER_H
+#define DALI_ACCESSIBILITY_ACTION_HANDLER_H
 
 /*
- * Copyright (c) 2015 Samsung Electronics Co., Ltd.
+ * Copyright (c) 2020 Samsung Electronics Co., Ltd.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -19,7 +19,7 @@
  */
 
 // EXTERNAL INCLUDES
-#include <dali/public-api/common/dali-common.h>
+#include <dali/public-api/dali-adaptor-common.h>
 #include <dali/public-api/events/touch-event.h>
 
 namespace Dali
@@ -47,10 +47,10 @@ public:
 
   /**
    * Perform the accessibility action associated with a scroll event.
-   * @param touchEvent The touch point (and time) of the event.
+   * @param touch The touch point (and time) of the event.
    * @return whether the focus is cleared or not.
    */
-  virtual bool AccessibilityActionScroll( Dali::TouchEvent& touchEvent ) = 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).
@@ -168,14 +168,14 @@ public:
 
   /**
    * Perform the accessibility action to move the focus to the first item on the top
-   * and read from the top item continously (by three fingers single tap).
+   * and read from the top item continuously (by three fingers single tap).
    * @return whether the accessibility action is performed or not.
    */
   virtual bool AccessibilityActionReadFromTop() = 0;
 
   /**
    * Perform the accessibility action to move the focus to and read from the next item
-   * continously (by three fingers double tap).
+   * continuously (by three fingers double tap).
    * @return whether the accessibility action is performed or not.
    */
   virtual bool AccessibilityActionReadFromNext() = 0;
@@ -187,12 +187,6 @@ public:
   virtual bool AccessibilityActionZoom() = 0;
 
   /**
-   * Perform the accessibility action to read the information in the indicator (by two fingers triple tap).
-   * @return whether the accessibility action is performed or not.
-   */
-  virtual bool AccessibilityActionReadIndicatorInformation() = 0;
-
-  /**
    * Perform the accessibility action to pause/resume the current read out (by two fingers single tap).
    * @return whether the accessibility action is performed or not.
    */
@@ -206,13 +200,13 @@ public:
 
   /**
    * Perform the accessibility action to mouse move (by one finger tap & hold and move).
-   * @param touchEvent touch event structure
+   * @param touch touch data
    * @return whether the accessibility action is performed or not.
    */
-  virtual bool AccessibilityActionTouch(const Dali::TouchEvent& touchEvent) = 0;
+  virtual bool AccessibilityActionTouch(const Dali::TouchEvent& touch) = 0;
 
 }; // class AccessibilityActionHandler
 
 } // namespace Dali
 
-#endif // __DALI_ACCESSIBILITY_ACTION_HANDLER_H__
+#endif // DALI_ACCESSIBILITY_ACTION_HANDLER_H