Remove Deprecated APIs
[platform/core/uifw/dali-toolkit.git] / base / dali-toolkit / public-api / controls / scroll-bar / scroll-bar.cpp
index 83b7c68..ed08541 100755 (executable)
@@ -69,14 +69,9 @@ ScrollBar::~ScrollBar()
 {
 }
 
-void ScrollBar::SetBackgroundImage( Image image, const Vector4& border )
+void ScrollBar::SetIndicatorImage( Image image )
 {
-  GetImpl(*this).SetBackgroundImage(image, border);
-}
-
-void ScrollBar::SetIndicatorImage( Image image, const Vector4& border )
-{
-  GetImpl(*this).SetIndicatorImage(image, border);
+  GetImpl(*this).SetIndicatorImage(image);
 }
 
 Actor ScrollBar::GetScrollIndicator()
@@ -89,6 +84,26 @@ void ScrollBar::SetPositionNotifications( const std::vector<float>& 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();