X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git;a=blobdiff_plain;f=base%2Fdali-toolkit%2Finternal%2Ffocus-manager%2Ffocus-manager-impl.h;h=de2cd39c2a83e46f2771de801b395d2410effe37;hp=aefd0f6adb4dd64691f6773e8f75b6acc4e59557;hb=54be5f49c53acf0cf6f62fd409d1fda6e07c8637;hpb=cf229fa2e4f00e5fe727eab2d215868bf79ac524 diff --git a/base/dali-toolkit/internal/focus-manager/focus-manager-impl.h b/base/dali-toolkit/internal/focus-manager/focus-manager-impl.h index aefd0f6..de2cd39 100644 --- a/base/dali-toolkit/internal/focus-manager/focus-manager-impl.h +++ b/base/dali-toolkit/internal/focus-manager/focus-manager-impl.h @@ -170,6 +170,16 @@ public: bool GetWrapMode() const; /** + * @copydoc Toolkit::FocusManager::SetEndCapFeedbackEnabled + */ + void SetEndCapFeedbackEnabled(bool enabled); + + /** + * @copydoc Toolkit::FocusManager::GetEndCapFeedbackEnabled + */ + bool GetEndCapFeedbackEnabled() const; + + /** * @copydoc Toolkit::FocusManager::SetFocusIndicatorActor */ void SetFocusIndicatorActor(Actor indicator); @@ -365,10 +375,14 @@ private: bool mIsWrapped; ///< Whether the focus movement is wrapped around or not bool mIsFocusWithinGroup; ///< Whether the focus movement is limited to the current focus group or not + bool mIsEndcapFeedbackEnabled; ///< Whether the endcap feedback need to be played when the focus leaves the end or vice versa + bool mIsEndcapFeedbackPlayed; ///< Whether the endcap feedback was played or not + FocusIDContainer mFocusIDContainer; ///< The container to look up actor ID by focus order IDAdditionalInfoContainer mIDAdditionalInfoContainer; ///< The container to look up additional information by actor ID FocusIDPair mCurrentFocusActor; ///< The focus order and actor ID of current focused actor + Actor mCurrentGesturedActor; ///< The actor that will handle the gesture Actor mFocusIndicatorActor; ///< The focus indicator actor shared by all the focusable actors for highlight