X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git;a=blobdiff_plain;f=base%2Fdali-toolkit%2Fpublic-api%2Fcontrols%2Fscroll-bar%2Fscroll-bar.cpp;h=c1b8ab4e2eaf581c6c9658443002afeda9e516c2;hp=b0279de148890244bd06a0c0f6d3027f9467d233;hb=1f49cc894b0c8c769f4b34f3a0e7084ce686b664;hpb=e58fa784d19a558e35f458ecf6d262a2344beb4f diff --git a/base/dali-toolkit/public-api/controls/scroll-bar/scroll-bar.cpp b/base/dali-toolkit/public-api/controls/scroll-bar/scroll-bar.cpp index b0279de..c1b8ab4 100755 --- a/base/dali-toolkit/public-api/controls/scroll-bar/scroll-bar.cpp +++ b/base/dali-toolkit/public-api/controls/scroll-bar/scroll-bar.cpp @@ -73,6 +73,11 @@ void ScrollBar::SetBackgroundImage( Image image, const Vector4& border ) GetImpl(*this).SetBackgroundImage(image, border); } +void ScrollBar::SetIndicatorImage( Image image ) +{ + GetImpl(*this).SetIndicatorImage(image); +} + void ScrollBar::SetIndicatorImage( Image image, const Vector4& border ) { GetImpl(*this).SetIndicatorImage(image, border); @@ -88,6 +93,26 @@ void ScrollBar::SetPositionNotifications( const std::vector& positions ) GetImpl(*this).SetPositionNotifications(positions); } +void ScrollBar::SetIndicatorHeightPolicy( ScrollBar::IndicatorHeightPolicy policy ) +{ + GetImpl(*this).SetIndicatorHeightPolicy(policy); +} + +ScrollBar::IndicatorHeightPolicy ScrollBar::GetIndicatorHeightPolicy() +{ + return GetImpl(*this).GetIndicatorHeightPolicy(); +} + +void ScrollBar::SetIndicatorFixedHeight( float height ) +{ + GetImpl(*this).SetIndicatorFixedHeight(height); +} + +float ScrollBar::GetIndicatorFixedHeight() +{ + return GetImpl(*this).GetIndicatorFixedHeight(); +} + void ScrollBar::Show() { GetImpl(*this).Show();