X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=dali%2Fdevel-api%2Fadaptor-framework%2Faccessibility-adaptor.h;h=f6f963c4dc932721521fc5cb631db1f2f369ee4d;hb=97568a209c309d5f99bf288afa951a77f7fdcddd;hp=14b856b7c4b07d5a342ce6a0c9b2afaf106332a5;hpb=5b100f3e0d34a9134b86a331e33998e8ed8434c6;p=platform%2Fcore%2Fuifw%2Fdali-adaptor.git diff --git a/dali/devel-api/adaptor-framework/accessibility-adaptor.h b/dali/devel-api/adaptor-framework/accessibility-adaptor.h old mode 100755 new mode 100644 index 14b856b..f6f963c --- a/dali/devel-api/adaptor-framework/accessibility-adaptor.h +++ b/dali/devel-api/adaptor-framework/accessibility-adaptor.h @@ -2,7 +2,7 @@ #define DALI_ACCESSIBILITY_ADAPTOR_H /* - * Copyright (c) 2019 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. @@ -18,26 +18,24 @@ * */ - // EXTERNAL INCLUDES -#include -#include +#include #include +#include namespace Dali { - namespace Internal DALI_INTERNAL { namespace Adaptor { class AccessibilityAdaptor; } -} +} // namespace DALI_INTERNAL class AccessibilityActionHandler; class AccessibilityGestureHandler; -class TouchPoint; +struct TouchPoint; /** * @brief The AccessibilityAdaptor provides communication to the accessibility manager interface (implemented in toolkit). @@ -46,7 +44,6 @@ class TouchPoint; class DALI_ADAPTOR_API AccessibilityAdaptor : public BaseHandle { public: - /** * @brief Create an uninitialized handle. * @@ -188,16 +185,6 @@ public: bool HandleActionScrollEvent(const TouchPoint& point, unsigned long timeStamp); /** - * @brief Handle the accessibility action to move for the current focused actor - * (by 1 finger tap & hold and move). - * - * @param[in] point The touch point information. - * @param[in] timeStamp The time the touch occurred. - * @return Whether the action is performed successfully or not. - */ - bool HandleActionTouchEvent(const TouchPoint& point, unsigned long timeStamp); - - /** * @brief Handle the accessibility action to navigate back (by two fingers circle draw). * @return Whether the action is performed successfully or not. */ @@ -320,20 +307,19 @@ public: bool HandleActionStartStopEvent(); public: // Not intended for application developers - /** * @brief Creates a handle using the Adaptor::Internal implementation. * * @param[in] adaptor The AccessibilityAdaptor implementation. */ - DALI_INTERNAL AccessibilityAdaptor( Internal::Adaptor::AccessibilityAdaptor& adaptor ); + DALI_INTERNAL AccessibilityAdaptor(Internal::Adaptor::AccessibilityAdaptor& adaptor); /** * @brief This constructor is used by AccessibilityAdaptor::Get(). * * @param[in] adaptor A pointer to the accessibility adaptor. */ - explicit DALI_INTERNAL AccessibilityAdaptor( Internal::Adaptor::AccessibilityAdaptor* adaptor ); + explicit DALI_INTERNAL AccessibilityAdaptor(Internal::Adaptor::AccessibilityAdaptor* adaptor); }; } // namespace Dali