(Control) Ensure background-color blends fully with the control color
[platform/core/uifw/dali-toolkit.git] / base / dali-toolkit / public-api / controls / scrollable / item-view / item-view.cpp
index b638186..0bb8842 100644 (file)
@@ -113,16 +113,6 @@ void ItemView::DeactivateCurrentLayout()
   GetImpl(*this).DeactivateCurrentLayout();
 }
 
-void ItemView::SetDefaultAlphaFunction(AlphaFunction func)
-{
-  GetImpl(*this).SetDefaultAlphaFunction(func);
-}
-
-AlphaFunction ItemView::GetDefaultAlphaFunction() const
-{
-  return GetImpl(*this).GetDefaultAlphaFunction();
-}
-
 void ItemView::SetMinimumSwipeSpeed(float speed)
 {
   GetImpl(*this).SetMinimumSwipeSpeed(speed);
@@ -228,7 +218,6 @@ void ItemView::ReplaceItems(const ItemContainer& replacementItems, float duratio
   GetImpl(*this).ReplaceItems( replacementItems, durationSeconds );
 }
 
-
 void ItemView::SetItemsParentOrigin( const Vector3& parentOrigin )
 {
   GetImpl(*this).SetItemsParentOrigin( parentOrigin );
@@ -249,6 +238,11 @@ Vector3 ItemView::GetItemsAnchorPoint() const
   return GetImpl(*this).GetItemsAnchorPoint();
 }
 
+void ItemView::GetItemsRange(ItemRange& range)
+{
+  GetImpl(*this).GetItemsRange(range);
+}
+
 } // namespace Toolkit
 
 } // namespace Dali