X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git;a=blobdiff_plain;f=dali-toolkit%2Finternal%2Faccessibility-manager%2Faccessibility-manager-impl.h;h=69e924a2656fc68e128f758b410715b1cd9a9a28;hp=b2428d96f80ae31765cd2801a190be7ba36b2375;hb=d85d5f55146aa0b491d4cdc35707baa3006e3ceb;hpb=a2fc5fd1c64132c393330dde2fac210f58ac5525 diff --git a/dali-toolkit/internal/accessibility-manager/accessibility-manager-impl.h b/dali-toolkit/internal/accessibility-manager/accessibility-manager-impl.h index b2428d9..69e924a 100644 --- a/dali-toolkit/internal/accessibility-manager/accessibility-manager-impl.h +++ b/dali-toolkit/internal/accessibility-manager/accessibility-manager-impl.h @@ -2,7 +2,7 @@ #define __DALI_TOOLKIT_INTERNAL_ACCESSIBILITY_MANAGER_H__ /* - * Copyright (c) 2015 Samsung Electronics Co., Ltd. + * Copyright (c) 2016 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. @@ -198,6 +198,11 @@ public: */ Actor GetFocusGroup(Actor actor); + /** + * @copydoc Toolkit::AccessibilityManager::GetReadPosition + */ + Vector2 GetReadPosition() const; + public: /** @@ -215,17 +220,6 @@ public: */ Toolkit::AccessibilityManager::FocusedActorActivatedSignalType& FocusedActorActivatedSignal(); - /** - * Connects a callback function with the object's signals. - * @param[in] object The object providing the signal. - * @param[in] tracker Used to disconnect the signal. - * @param[in] signalName The signal to connect to. - * @param[in] functor A newly allocated FunctorDelegate. - * @return True if the signal was connected. - * @post If a signal was connected, ownership of functor was passed to CallbackBase. Otherwise the caller is responsible for deleting the unused functor. - */ - static bool DoConnectSignal( BaseObject* object, ConnectionTrackerInterface* tracker, const std::string& signalName, FunctorDelegate* functor ); - public: // Signals /** @@ -485,18 +479,13 @@ private: bool DoMoveFocus(FocusIDIter focusIDIter, bool forward, bool wrapped); /** - * Activate the actor. If the actor is control, call OnActivated virtual function. + * Activate the actor. If the actor is control, call OnAccessibilityActivated virtual function. * This function will emit FocusedActorActivatedSignal. * @param actor The actor to activate */ void DoActivate(Actor actor); /** - * Create the default indicator actor to highlight the focused actor. - */ - void CreateDefaultFocusIndicatorActor(); - - /** * Set whether the actor is focusable or not. A focusable property will be registered for * the actor if not yet. * @param actor The actor to be focused @@ -646,14 +635,14 @@ private: /** * 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(); /** * 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();