X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=dali%2Fdevel-api%2Fadaptor-framework%2Faccessibility-action-handler.h;h=b4eb77fc2254a4b0d260dbf0b92a30cdf804d1e5;hb=5b100f3e0d34a9134b86a331e33998e8ed8434c6;hp=a23620d0f8958e6ca12c793dc8c280e03fc22f98;hpb=cbc82430da3f10ddbc9d6eee7514b05389e8d183;p=platform%2Fcore%2Fuifw%2Fdali-adaptor.git diff --git a/dali/devel-api/adaptor-framework/accessibility-action-handler.h b/dali/devel-api/adaptor-framework/accessibility-action-handler.h index a23620d..b4eb77f 100644 --- a/dali/devel-api/adaptor-framework/accessibility-action-handler.h +++ b/dali/devel-api/adaptor-framework/accessibility-action-handler.h @@ -20,7 +20,7 @@ // EXTERNAL INCLUDES #include -#include +#include 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 touchData 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::TouchData& touchData ) = 0; /** * Perform the accessibility action to move focus to the previous focusable actor (by one finger flick up). @@ -200,10 +200,10 @@ public: /** * Perform the accessibility action to mouse move (by one finger tap & hold and move). - * @param touchEvent touch event structure + * @param touchData touch data * @return whether the accessibility action is performed or not. */ - virtual bool AccessibilityActionTouch(const Dali::TouchEvent& touchEvent) = 0; + virtual bool AccessibilityActionTouch(const Dali::TouchData& touchData) = 0; }; // class AccessibilityActionHandler