X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=base%2Fdali-toolkit%2Fpublic-api%2Fcontrols%2Fscrollable%2Fscroll-view%2Fscroll-view.cpp;h=03f9d3829e364f7a05439dc02649f3d705887b12;hb=refs%2Fchanges%2F35%2F30135%2F5;hp=30e95d021425cca4c38c5d5740de23244e22ce66;hpb=865bc7d9efba2ba1ddc5e365ce99fa94ae3e9187;p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git diff --git a/base/dali-toolkit/public-api/controls/scrollable/scroll-view/scroll-view.cpp b/base/dali-toolkit/public-api/controls/scrollable/scroll-view/scroll-view.cpp index 30e95d0..03f9d38 100644 --- a/base/dali-toolkit/public-api/controls/scrollable/scroll-view/scroll-view.cpp +++ b/base/dali-toolkit/public-api/controls/scrollable/scroll-view/scroll-view.cpp @@ -188,6 +188,11 @@ unsigned int DefaultRuler::GetTotalPages() const FixedRuler::FixedRuler(float spacing) : mSpacing(spacing) { + if(fabsf(mSpacing) <= Math::MACHINE_EPSILON_1) + { + DALI_LOG_ERROR( "Page spacing too small (%f).", double(spacing) ); + mSpacing = spacing >= 0.0f ? Math::MACHINE_EPSILON_1 : -Math::MACHINE_EPSILON_1; + } mType = Fixed; } @@ -203,7 +208,7 @@ float FixedRuler::GetPositionFromPage(unsigned int page, unsigned int &volume, b volume = 0; // spacing must be present. - if(mEnabled && fabsf(mSpacing) > Math::MACHINE_EPSILON_1) + if( mEnabled ) { unsigned int column = page; @@ -237,7 +242,7 @@ unsigned int FixedRuler::GetPageFromPosition(float position, bool wrap) const unsigned int page = 0; // spacing must be present. - if(mEnabled && fabsf(mSpacing) > Math::MACHINE_EPSILON_1) + if( mEnabled ) { if( wrap ) { @@ -248,6 +253,12 @@ unsigned int FixedRuler::GetPageFromPosition(float position, bool wrap) const if(wrap) { unsigned int pagesPerVolume = mDomain.GetSize() / mSpacing; + // Defensive check to avoid a divide by zero below when the ruler is in an invalid state (entire domain smaller than spacing between pages of it): + if(pagesPerVolume < 1u) + { + pagesPerVolume = 1u; + DALI_LOG_ERROR("Ruler domain(%f) is smaller than its spacing(%f).", mDomain.GetSize() * 1.0, mSpacing * 1.0 ); + } page %= pagesPerVolume; } } @@ -260,7 +271,7 @@ unsigned int FixedRuler::GetTotalPages() const unsigned int pagesPerVolume = 1; // spacing must be present. - if(mEnabled && fabsf(mSpacing) > Math::MACHINE_EPSILON_1) + if( mEnabled ) { pagesPerVolume = mDomain.GetSize() / mSpacing; } @@ -541,12 +552,23 @@ void ScrollView::ScrollTo(const Vector3 &position, float duration) GetImpl(*this).ScrollTo(position, duration); } +void ScrollView::ScrollTo(const Vector3 &position, float duration, AlphaFunction alpha) +{ + GetImpl(*this).ScrollTo(position, duration, alpha); +} + void ScrollView::ScrollTo(const Vector3 &position, float duration, DirectionBias horizontalBias, DirectionBias verticalBias) { GetImpl(*this).ScrollTo(position, duration, horizontalBias, verticalBias); } +void ScrollView::ScrollTo(const Vector3 &position, float duration, AlphaFunction alpha, + DirectionBias horizontalBias, DirectionBias verticalBias) +{ + GetImpl(*this).ScrollTo(position, duration, alpha, horizontalBias, verticalBias); +} + void ScrollView::ScrollTo(unsigned int page) { GetImpl(*this).ScrollTo(page);