X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=dali-toolkit%2Finternal%2Fcontrols%2Fscroll-bar%2Fscroll-bar-impl.h;h=1f9691dfeb1c349fe6329f9d2f4b532d3ece90f2;hb=2da985674b8a2344bc07ea3cf02f05d86d512249;hp=f5321a46f4406a1decc3b4212fb0c23e3cca6165;hpb=1c5674a11a51310ee689d6daf4e6b7d94dec607e;p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git diff --git a/dali-toolkit/internal/controls/scroll-bar/scroll-bar-impl.h b/dali-toolkit/internal/controls/scroll-bar/scroll-bar-impl.h index f5321a4..1f9691d 100755 --- a/dali-toolkit/internal/controls/scroll-bar/scroll-bar-impl.h +++ b/dali-toolkit/internal/controls/scroll-bar/scroll-bar-impl.h @@ -25,6 +25,7 @@ #include #include #include +#include // INTERNAL INCLUDES #include @@ -201,6 +202,11 @@ private: // from Control virtual void OnInitialize(); /** + * @copydoc Toolkit::Control::OnPan + */ + virtual void OnPan( const PanGesture& gesture ); + + /** * @copydoc CustomActorImpl::OnSizeSet( const Vector3& size ) */ virtual void OnSizeSet( const Vector3& size ); @@ -243,14 +249,6 @@ private: */ void OnIndicatorHeightPolicyPropertySet(Property::Value propertyValue); - /** - * Pan gesture callback - * - * @param[in] actor The actor the event is raised for - * @param[in] gesture The pan event info - */ - void OnPan(Actor source, const PanGesture& gesture); - private: /** @@ -267,11 +265,12 @@ private: private: Actor mIndicator; ///< Image of scroll indicator. + float mIndicatorShowAlpha; ///< The alpha value when the indicator is fully shown Animation mAnimation; ///< Scroll indicator Show/Hide Animation. Toolkit::ScrollBar::Direction mDirection; ///< The direction of scroll bar (vertical or horizontal) - Handle mScrollableObject; ///< Object to be scrolled + WeakHandleBase mScrollableObject; ///< Object to be scrolled Property::Index mPropertyScrollPosition; ///< Index of scroll position property owned by the object to be scrolled Property::Index mPropertyMinScrollPosition; ///< Index of minimum scroll position property owned by the object to be scrolled @@ -284,14 +283,11 @@ private: float mScrollStart; ///< Scroll Start position (start of drag) Vector3 mGestureDisplacement; ///< Gesture Displacement. - bool mIsPanning; ///< Whether the scroll bar is being panned. float mCurrentScrollPosition; ///< The current scroll position updated by the pan gesture Toolkit::ScrollBar::IndicatorHeightPolicy mIndicatorHeightPolicy; ///< The height policy of scroll indicator (variable or fixed) float mIndicatorFixedHeight; ///< The fixed height of scroll indicator - PanGestureDetector mPanGestureDetector; ///< The pan gesture detector for scroll indicator - Timer mContractDelayTimer; ///< Timer guarantee contract delay time. Timer mPanProcessTimer; ///< The timer to process the pan gesture after the gesture is started. @@ -304,6 +300,9 @@ private: Constraint mIndicatorPositionConstraint; Constraint mIndicatorSizeConstraint; Constraint mScrollPositionInCurrentAxisConstraint; + + bool mIsPanning : 1; ///< Whether the scroll bar is being panned. + bool mIndicatorFirstShow : 1; ///< True if the indicator has never been shown }; } // namespace Internal