Merge "Text decorator - It consumes tap, double tap and long press events on handles...
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / internal / controls / scrollable / scroll-view / scroll-view-impl.cpp
1 /*
2  * Copyright (c) 2015 Samsung Electronics Co., Ltd.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *
16  */
17
18 // CLASS HEADER
19 #include <dali-toolkit/internal/controls/scrollable/scroll-view/scroll-view-impl.h>
20
21 // EXTERNAL INCLUDES
22 #include <cstring> // for strcmp
23 #include <dali/public-api/animation/constraints.h>
24 #include <dali/public-api/common/stage.h>
25 #include <dali/public-api/events/wheel-event.h>
26 #include <dali/public-api/events/touch-data.h>
27 #include <dali/public-api/object/type-registry.h>
28 #include <dali/public-api/object/type-registry-helper.h>
29 #include <dali/integration-api/debug.h>
30
31 // INTERNAL INCLUDES
32 #include <dali-toolkit/public-api/controls/scroll-bar/scroll-bar.h>
33 #include <dali-toolkit/public-api/controls/scrollable/scroll-view/scroll-view.h>
34 #include <dali-toolkit/public-api/controls/scrollable/scroll-view/scroll-view-constraints.h>
35 #include <dali-toolkit/internal/controls/scrollable/scroll-view/scroll-overshoot-indicator-impl.h>
36 #include <dali-toolkit/internal/controls/scrollable/scroll-view/scroll-view-effect-impl.h>
37
38 //#define ENABLED_SCROLL_STATE_LOGGING
39
40 #ifdef ENABLED_SCROLL_STATE_LOGGING
41 #define DALI_LOG_SCROLL_STATE(format, args...) Dali::Integration::Log::LogMessage(Dali::Integration::Log::DebugInfo, "%s:%d " format "\n", __PRETTY_FUNCTION__, __LINE__, ## args)
42 #else
43 #define DALI_LOG_SCROLL_STATE(format, args...)
44 #endif
45
46 // TODO: Change to two class system:
47 // 1. DraggableActor (is an actor which can be dragged anywhere, can be set to range using the ruler)
48 // 2. ScrollView (contains a draggable actor that can a) be dragged in the negative X, and Y domain, b) has a hitArea for touches)
49 // TODO: external components (page and status overlays).
50 // TODO: Orientation.
51 // TODO: upgrade Vector2/3 to support returning Unit vectors, normals, & cross product (dot product is already provided)
52
53 using namespace Dali;
54
55 namespace
56 {
57 const float DEFAULT_SLOW_SNAP_ANIMATION_DURATION(0.5f);             ///< Default Drag-Release animation time.
58 const float DEFAULT_FAST_SNAP_ANIMATION_DURATION(0.25f);            ///< Default Drag-Flick animation time.
59 const float DEFAULT_SNAP_OVERSHOOT_DURATION(0.5f);                  ///< Default Overshoot snapping animation time.
60 const float DEFAULT_MAX_OVERSHOOT(100.0f);                          ///< Default maximum allowed overshoot in pixels
61
62 const float DEFAULT_AXIS_AUTO_LOCK_GRADIENT(0.36f);                 ///< Default Axis-AutoLock gradient threshold. default is 0.36:1 (20 degrees)
63 const float DEFAULT_FRICTION_COEFFICIENT(1.0f);                     ///< Default Friction Co-efficient. (in stage diagonals per second)
64 const float DEFAULT_FLICK_SPEED_COEFFICIENT(1.0f);                  ///< Default Flick speed coefficient (multiples input touch velocity)
65 const float DEFAULT_MAX_FLICK_SPEED(3.0f);                          ///< Default Maximum flick speed. (in stage diagonals per second)
66
67 const Vector2 DEFAULT_MIN_FLICK_DISTANCE(30.0f, 30.0f);              ///< minimum distance for pan before flick allowed
68 const float DEFAULT_MIN_FLICK_SPEED_THRESHOLD(500.0f);              ///< Minimum pan speed required for flick in pixels/s
69 const float FREE_FLICK_SPEED_THRESHOLD = 200.0f;                    ///< Free-Flick threshold in pixels/ms
70 const float AUTOLOCK_AXIS_MINIMUM_DISTANCE2 = 100.0f;               ///< Auto-lock axis after minimum distance squared.
71 const float FLICK_ORTHO_ANGLE_RANGE = 75.0f;                        ///< degrees. (if >45, then supports diagonal flicking)
72 const Vector2 DEFAULT_WHEEL_SCROLL_DISTANCE_STEP_PROPORTION = Vector2(0.17f, 0.1f); ///< The step of horizontal scroll distance in the proportion of stage size for each wheel event received.
73 const unsigned long MINIMUM_TIME_BETWEEN_DOWN_AND_UP_FOR_RESET( 150u );
74 const float TOUCH_DOWN_TIMER_INTERVAL = 100.0f;
75 const float DEFAULT_SCROLL_UPDATE_DISTANCE( 30.0f );                ///< Default distance to travel in pixels for scroll update signal
76
77 const std::string INTERNAL_MAX_POSITION_PROPERTY_NAME( "internalMaxPosition" );
78
79 // Helpers ////////////////////////////////////////////////////////////////////////////////////////
80
81 /**
82  * Find the vector (distance) from (a) to (b)
83  * in domain (start) to (end)
84  * (\ / start)               (\ / end)
85  *   |-a                 b<----|
86  *
87  * @note assumes both (a) and (b) are already with the domain
88  * (start) to (end)
89  *
90  * @param[in] a the current point
91  * @param[in] b the target point
92  * @param[in] start the start of the domain
93  * @param[in] end the end of the domain
94  * @param[in] bias whether to only take the right direction or the left direction,
95  * or the shortest direction.
96  * @return the shortest direction and distance
97  */
98 float VectorInDomain(float a, float b, float start, float end, Dali::Toolkit::DirectionBias bias)
99 {
100   if(bias == Dali::Toolkit::DirectionBiasNone)
101   {
102     return ShortestDistanceInDomain( a, b, start, end );
103   }
104   //  (a-start + end-b)
105   float size = end-start;
106   float vect = b-a;
107
108   if(vect > 0)
109   {
110     // +ve vector
111     if(bias == Dali::Toolkit::DirectionBiasRight) // going right, take the vector.
112     {
113       return vect;
114     }
115     else
116     {
117       float aRight = a+size;
118       return b-aRight;
119     }
120   }
121   else
122   {
123     // -ve vector
124     if(bias == Dali::Toolkit::DirectionBiasLeft) // going left, take the vector.
125     {
126       return vect;
127     }
128     else
129     {
130       float aLeft = a-size;
131       return b-aLeft;
132     }
133   }
134 }
135
136 /**
137  * Returns the position of the anchor within actor
138  *
139  * @param actor The Actor
140  * @param anchor The Anchor point of interest.
141  * @return The position of the Anchor
142  */
143 Vector3 GetPositionOfAnchor(Actor &actor, const Vector3 &anchor)
144 {
145   Vector3 childPosition = actor.GetCurrentPosition();
146   Vector3 childAnchor = - actor.GetCurrentAnchorPoint() + anchor;
147   Vector3 childSize = actor.GetCurrentSize();
148
149   return childPosition + childAnchor * childSize;
150 }
151
152 // AlphaFunctions /////////////////////////////////////////////////////////////////////////////////
153
154 float FinalDefaultAlphaFunction(float offset)
155 {
156   return offset * 0.5f;
157 }
158
159 /**
160  * ConstantDecelerationAlphaFunction
161  * Newtoninan distance for constant deceleration
162  * v = 1 - t, s = t - 1/2 t^2
163  * when t = 0, s = 0.0 (min distance)
164  * when t = 1, s = 0.5 (max distance)
165  * progress = s / (max-min) = 2t - t^2
166  *
167  * @param[in] offset The input progress
168  * @return The output progress
169  */
170 float ConstantDecelerationAlphaFunction(float progress)
171 {
172   return progress * 2.0f - progress * progress;
173 }
174
175 // Internal Constraints ///////////////////////////////////////////////////////////////////////////
176
177 /**
178  * Internal Relative position Constraint
179  * Generates the relative position value of the scroll view
180  * based on the absolute position, and it's relation to the
181  * scroll domain. This is a value from 0.0f to 1.0f in each
182  * scroll position axis.
183  */
184 void InternalRelativePositionConstraint( Vector2& relativePosition, const PropertyInputContainer& inputs)
185 {
186   Vector2 position = -inputs[0]->GetVector2();
187   const Vector2& min = inputs[1]->GetVector2();
188   const Vector2& max = inputs[2]->GetVector2();
189   const Vector3& size = inputs[3]->GetVector3();
190
191   position.x = WrapInDomain(position.x, min.x, max.x);
192   position.y = WrapInDomain(position.y, min.y, max.y);
193
194   Vector2 domainSize = (max - min) - size.GetVectorXY();
195
196   relativePosition.x = domainSize.x > Math::MACHINE_EPSILON_1 ? fabsf((position.x - min.x) / domainSize.x) : 0.0f;
197   relativePosition.y = domainSize.y > Math::MACHINE_EPSILON_1 ? fabsf((position.y - min.y) / domainSize.y) : 0.0f;
198 }
199
200 /**
201  * Internal scroll domain Constraint
202  * Generates the scroll domain of the scroll view.
203  */
204 void InternalScrollDomainConstraint( Vector2& scrollDomain, const PropertyInputContainer& inputs)
205 {
206   const Vector2& min = inputs[0]->GetVector2();
207   const Vector2& max = inputs[1]->GetVector2();
208   const Vector3& size = inputs[2]->GetVector3();
209
210   scrollDomain = (max - min) - size.GetVectorXY();
211 }
212
213 /**
214  * Internal maximum scroll position Constraint
215  * Generates the maximum scroll position of the scroll view.
216  */
217 void InternalPrePositionMaxConstraint( Vector2& scrollMax, const PropertyInputContainer& inputs)
218 {
219   const Vector2& max = inputs[0]->GetVector2();
220   const Vector3& size = inputs[1]->GetVector3();
221
222   scrollMax = max - size.GetVectorXY();
223 }
224
225 } // unnamed namespace
226
227 namespace Dali
228 {
229
230 namespace Toolkit
231 {
232
233 namespace Internal
234 {
235
236 namespace
237 {
238
239 BaseHandle Create()
240 {
241   return Toolkit::ScrollView::New();
242 }
243
244 // Setup properties, signals and actions using the type-registry.
245 DALI_TYPE_REGISTRATION_BEGIN( Toolkit::ScrollView, Toolkit::Scrollable, Create )
246
247 DALI_PROPERTY_REGISTRATION( Toolkit, ScrollView, "wrapEnabled",                BOOLEAN,   WRAP_ENABLED                )
248 DALI_PROPERTY_REGISTRATION( Toolkit, ScrollView, "panningEnabled",             BOOLEAN,   PANNING_ENABLED             )
249 DALI_PROPERTY_REGISTRATION( Toolkit, ScrollView, "axisAutoLockEnabled",        BOOLEAN,   AXIS_AUTO_LOCK_ENABLED      )
250 DALI_PROPERTY_REGISTRATION( Toolkit, ScrollView, "wheelScrollDistanceStep",    VECTOR2,   WHEEL_SCROLL_DISTANCE_STEP  )
251
252 DALI_ANIMATABLE_PROPERTY_REGISTRATION( Toolkit, ScrollView, "scrollPosition",  VECTOR2, SCROLL_POSITION)
253 DALI_ANIMATABLE_PROPERTY_REGISTRATION( Toolkit, ScrollView, "scrollPrePosition",   VECTOR2, SCROLL_PRE_POSITION)
254 DALI_ANIMATABLE_PROPERTY_COMPONENT_REGISTRATION( Toolkit, ScrollView, "scrollPrePositionX",    SCROLL_PRE_POSITION_X, SCROLL_PRE_POSITION, 0)
255 DALI_ANIMATABLE_PROPERTY_COMPONENT_REGISTRATION( Toolkit, ScrollView, "scrollPrePositionY",    SCROLL_PRE_POSITION_Y, SCROLL_PRE_POSITION, 1)
256 DALI_ANIMATABLE_PROPERTY_REGISTRATION( Toolkit, ScrollView, "scrollPrePositionMax",    VECTOR2, SCROLL_PRE_POSITION_MAX)
257 DALI_ANIMATABLE_PROPERTY_COMPONENT_REGISTRATION( Toolkit, ScrollView, "scrollPrePositionMaxX",     SCROLL_PRE_POSITION_MAX_X, SCROLL_PRE_POSITION_MAX, 0)
258 DALI_ANIMATABLE_PROPERTY_COMPONENT_REGISTRATION( Toolkit, ScrollView, "scrollPrePositionMaxY",     SCROLL_PRE_POSITION_MAX_Y, SCROLL_PRE_POSITION_MAX, 1)
259 DALI_ANIMATABLE_PROPERTY_REGISTRATION( Toolkit, ScrollView, "overshootX",  FLOAT, OVERSHOOT_X)
260 DALI_ANIMATABLE_PROPERTY_REGISTRATION( Toolkit, ScrollView, "overshootY",  FLOAT, OVERSHOOT_Y)
261 DALI_ANIMATABLE_PROPERTY_REGISTRATION( Toolkit, ScrollView, "scrollFinal",  VECTOR2, SCROLL_FINAL)
262 DALI_ANIMATABLE_PROPERTY_COMPONENT_REGISTRATION( Toolkit, ScrollView, "scrollFinalX",   SCROLL_FINAL_X, SCROLL_FINAL,0)
263 DALI_ANIMATABLE_PROPERTY_COMPONENT_REGISTRATION( Toolkit, ScrollView, "scrollFinalY",   SCROLL_FINAL_Y, SCROLL_FINAL,1)
264 DALI_ANIMATABLE_PROPERTY_REGISTRATION( Toolkit, ScrollView, "wrap", BOOLEAN, WRAP)
265 DALI_ANIMATABLE_PROPERTY_REGISTRATION( Toolkit, ScrollView, "panning", BOOLEAN, PANNING)
266 DALI_ANIMATABLE_PROPERTY_REGISTRATION( Toolkit, ScrollView, "scrolling", BOOLEAN, SCROLLING)
267 DALI_ANIMATABLE_PROPERTY_REGISTRATION( Toolkit, ScrollView, "scrollDomainSize",   VECTOR2, SCROLL_DOMAIN_SIZE)
268 DALI_ANIMATABLE_PROPERTY_COMPONENT_REGISTRATION( Toolkit, ScrollView, "scrollDomainSizeX",    SCROLL_DOMAIN_SIZE_X, SCROLL_DOMAIN_SIZE, 0)
269 DALI_ANIMATABLE_PROPERTY_COMPONENT_REGISTRATION( Toolkit, ScrollView, "scrollDomainSizeY",    SCROLL_DOMAIN_SIZE_Y, SCROLL_DOMAIN_SIZE, 1)
270 DALI_ANIMATABLE_PROPERTY_REGISTRATION( Toolkit, ScrollView, "scrollDomainOffset",   VECTOR2, SCROLL_DOMAIN_OFFSET)
271 DALI_ANIMATABLE_PROPERTY_REGISTRATION( Toolkit, ScrollView, "scrollPositionDelta",   VECTOR2, SCROLL_POSITION_DELTA)
272 DALI_ANIMATABLE_PROPERTY_REGISTRATION( Toolkit, ScrollView, "startPagePosition",   VECTOR3, START_PAGE_POSITION)
273
274 DALI_SIGNAL_REGISTRATION( Toolkit, ScrollView, "valueChanged",  SIGNAL_SNAP_STARTED )
275
276 DALI_TYPE_REGISTRATION_END()
277
278 /**
279  * Returns whether to lock scrolling to a particular axis
280  *
281  * @param[in] panDelta Distance panned since gesture started
282  * @param[in] currentLockAxis The current lock axis value
283  * @param[in] lockGradient How quickly to lock to a particular axis
284  *
285  * @return The new axis lock state
286  */
287 ScrollView::LockAxis GetLockAxis(const Vector2& panDelta, ScrollView::LockAxis currentLockAxis, float lockGradient)
288 {
289   if(panDelta.LengthSquared() > AUTOLOCK_AXIS_MINIMUM_DISTANCE2 &&
290       currentLockAxis == ScrollView::LockPossible)
291   {
292     float dx = fabsf(panDelta.x);
293     float dy = fabsf(panDelta.y);
294     if(dx * lockGradient >= dy)
295     {
296       // 0.36:1 gradient to the horizontal (deviate < 20 degrees)
297       currentLockAxis = ScrollView::LockVertical;
298     }
299     else if(dy * lockGradient > dx)
300     {
301       // 0.36:1 gradient to the vertical (deviate < 20 degrees)
302       currentLockAxis = ScrollView::LockHorizontal;
303     }
304     else
305     {
306       currentLockAxis = ScrollView::LockNone;
307     }
308   }
309   return currentLockAxis;
310 }
311
312 /**
313  * Internal Pre-Position Property Constraint.
314  *
315  * Generates position property based on current position + gesture displacement.
316  * Or generates position property based on positionX/Y.
317  * Note: This is the position prior to any clamping at scroll boundaries.
318  */
319 struct InternalPrePositionConstraint
320 {
321   InternalPrePositionConstraint( const Vector2& initialPanPosition,
322                                  const Vector2& initialPanMask,
323                                  bool axisAutoLock,
324                                  float axisAutoLockGradient,
325                                  ScrollView::LockAxis initialLockAxis,
326                                  const Vector2& maxOvershoot,
327                                  const RulerPtr& rulerX, const RulerPtr& rulerY )
328   : mLocalStart( initialPanPosition ),
329     mInitialPanMask( initialPanMask ),
330     mMaxOvershoot( maxOvershoot ),
331     mAxisAutoLockGradient( axisAutoLockGradient ),
332     mLockAxis( initialLockAxis ),
333     mAxisAutoLock( axisAutoLock ),
334     mWasPanning( false )
335   {
336     const RulerDomain& rulerDomainX = rulerX->GetDomain();
337     const RulerDomain& rulerDomainY = rulerY->GetDomain();
338     mDomainMin = Vector2( rulerDomainX.min, -rulerDomainY.min );
339     mDomainMax = Vector2( -rulerDomainX.max, -rulerDomainY.max );
340     mClampX = rulerDomainX.enabled;
341     mClampY = rulerDomainY.enabled;
342     mFixedRulerX = rulerX->GetType() == Ruler::Fixed;
343     mFixedRulerY = rulerY->GetType() == Ruler::Fixed;
344   }
345
346   void operator()( Vector2& scrollPostPosition, const PropertyInputContainer& inputs )
347   {
348     const Vector2& panPosition = inputs[0]->GetVector2();
349     const bool& inGesture = inputs[1]->GetBoolean();
350
351     // First check if we are within a gesture.
352     // The ScrollView may have received a start gesture from ::OnPan()
353     // while the finish gesture is received now in this constraint.
354     // This gesture must then be rejected as the value will be "old".
355     // Typically the last value from the end of the last gesture.
356     // If we are rejecting the gesture, we simply don't modify the constraint target.
357     if( inGesture )
358     {
359       if( !mWasPanning )
360       {
361         mPrePosition = scrollPostPosition;
362         mStartPosition = mPrePosition;
363         mCurrentPanMask = mInitialPanMask;
364         mWasPanning = true;
365       }
366
367       // Calculate Deltas...
368       const Vector2& currentPosition = panPosition;
369       Vector2 panDelta( currentPosition - mLocalStart );
370
371       // Axis Auto Lock - locks the panning to the horizontal or vertical axis if the pan
372       // appears mostly horizontal or mostly vertical respectively...
373       if( mAxisAutoLock )
374       {
375         mLockAxis = GetLockAxis( panDelta, mLockAxis, mAxisAutoLockGradient );
376         if( mLockAxis == ScrollView::LockVertical )
377         {
378           mCurrentPanMask.y = 0.0f;
379         }
380         else if( mLockAxis == ScrollView::LockHorizontal )
381         {
382           mCurrentPanMask.x = 0.0f;
383         }
384       }
385
386       // Restrict deltas based on ruler enable/disable and axis-lock state...
387       panDelta *= mCurrentPanMask;
388
389       // Perform Position transform based on input deltas...
390       scrollPostPosition = mPrePosition;
391       scrollPostPosition += panDelta;
392
393       // if no wrapping then clamp preposition to maximum overshoot amount
394       const Vector3& size = inputs[2]->GetVector3();
395       if( mClampX )
396       {
397         float newXPosition = Clamp( scrollPostPosition.x, ( mDomainMax.x + size.x ) - mMaxOvershoot.x, mDomainMin.x + mMaxOvershoot.x );
398         if( (newXPosition < scrollPostPosition.x - Math::MACHINE_EPSILON_1)
399           || (newXPosition > scrollPostPosition.x + Math::MACHINE_EPSILON_1) )
400         {
401           mPrePosition.x = newXPosition;
402           mLocalStart.x = panPosition.x;
403         }
404         scrollPostPosition.x = newXPosition;
405       }
406       if( mClampY )
407       {
408         float newYPosition = Clamp( scrollPostPosition.y, ( mDomainMax.y + size.y ) - mMaxOvershoot.y, mDomainMin.y + mMaxOvershoot.y );
409         if( ( newYPosition < scrollPostPosition.y - Math::MACHINE_EPSILON_1 )
410           || ( newYPosition > scrollPostPosition.y + Math::MACHINE_EPSILON_1 ) )
411         {
412           mPrePosition.y = newYPosition;
413           mLocalStart.y = panPosition.y;
414         }
415         scrollPostPosition.y = newYPosition;
416       }
417
418       // If we are using a fixed ruler in a particular axis, limit the maximum pages scrolled on that axis.
419       if( mFixedRulerX || mFixedRulerY )
420       {
421         // Here we limit the maximum amount that can be moved from the starting position of the gesture to one page.
422         // We do this only if we have a fixed ruler (on that axis) and the mode is enabled.
423         // Note: 1.0f is subtracted to keep the value within one page size (otherwise we stray on to the page after).
424         // Note: A further 1.0f is subtracted to handle a compensation that happens later within the flick handling code in SnapWithVelocity().
425         //       When a flick is completed, an adjustment of 1.0f is sometimes made to allow for the scenario where:
426         //       A flick finishes before the update thread has advanced the scroll position past the previous snap point.
427         Vector2 pageSizeLimit( size.x - ( 1.0f + 1.0f ), size.y - ( 1.0f - 1.0f ) );
428         Vector2 minPosition( mStartPosition.x - pageSizeLimit.x, mStartPosition.y - pageSizeLimit.y );
429         Vector2 maxPosition( mStartPosition.x + pageSizeLimit.x, mStartPosition.y + pageSizeLimit.y );
430
431         if( mFixedRulerX )
432         {
433           scrollPostPosition.x = Clamp( scrollPostPosition.x, minPosition.x, maxPosition.x );
434         }
435         if( mFixedRulerY )
436         {
437           scrollPostPosition.y = Clamp( scrollPostPosition.y, minPosition.y, maxPosition.y );
438         }
439       }
440     }
441   }
442
443   Vector2 mPrePosition;
444   Vector2 mLocalStart;
445   Vector2 mStartPosition;               ///< The start position of the gesture - used to limit scroll amount (not modified by clamping).
446   Vector2 mInitialPanMask;              ///< Initial pan mask (based on ruler settings).
447   Vector2 mCurrentPanMask;              ///< Current pan mask that can be altered by axis lock mode.
448   Vector2 mDomainMin;
449   Vector2 mDomainMax;
450   Vector2 mMaxOvershoot;
451
452   float mAxisAutoLockGradient;          ///< Set by ScrollView
453   ScrollView::LockAxis mLockAxis;
454
455   bool mAxisAutoLock:1;                 ///< Set by ScrollView
456   bool mWasPanning:1;
457   bool mClampX:1;
458   bool mClampY:1;
459   bool mFixedRulerX:1;
460   bool mFixedRulerY:1;
461 };
462
463 /**
464  * Internal Position Property Constraint.
465  *
466  * Generates position property based on pre-position
467  * Note: This is the position after clamping.
468  * (uses result of InternalPrePositionConstraint)
469  */
470 struct InternalPositionConstraint
471 {
472   InternalPositionConstraint(const RulerDomain& domainX, const RulerDomain& domainY, bool wrap)
473   : mDomainMin( -domainX.min, -domainY.min ),
474     mDomainMax( -domainX.max, -domainY.max ),
475     mClampX( domainX.enabled ),
476     mClampY( domainY.enabled ),
477     mWrap( wrap )
478   {
479   }
480
481   void operator()( Vector2& position, const PropertyInputContainer& inputs )
482   {
483     position = inputs[0]->GetVector2();
484     const Vector2& size = inputs[3]->GetVector3().GetVectorXY();
485     const Vector2& min = inputs[1]->GetVector2();
486     const Vector2& max = inputs[2]->GetVector2();
487
488     if( mWrap )
489     {
490       position.x = -WrapInDomain(-position.x, min.x, max.x);
491       position.y = -WrapInDomain(-position.y, min.y, max.y);
492     }
493     else
494     {
495       // clamp post position to domain
496       position.x = mClampX ? Clamp(position.x, mDomainMax.x + size.x, mDomainMin.x ) : position.x;
497       position.y = mClampY ? Clamp(position.y, mDomainMax.y + size.y, mDomainMin.y ) : position.y;
498     }
499   }
500
501   Vector2 mDomainMin;
502   Vector2 mDomainMax;
503   bool mClampX;
504   bool mClampY;
505   bool mWrap;
506
507 };
508
509 /**
510  * This constraint updates the X overshoot property using the difference
511  * SCROLL_PRE_POSITION.x and SCROLL_POSITION.x, returning a relative value between 0.0f and 1.0f
512  */
513 struct OvershootXConstraint
514 {
515   OvershootXConstraint(float maxOvershoot) : mMaxOvershoot(maxOvershoot) {}
516
517   void operator()( float& current, const PropertyInputContainer& inputs )
518   {
519     if( inputs[2]->GetBoolean() )
520     {
521       const Vector2& scrollPrePosition = inputs[0]->GetVector2();
522       const Vector2& scrollPostPosition = inputs[1]->GetVector2();
523       float newOvershoot = scrollPrePosition.x - scrollPostPosition.x;
524       current = (newOvershoot > 0.0f ? std::min(newOvershoot, mMaxOvershoot) : std::max(newOvershoot, -mMaxOvershoot)) / mMaxOvershoot;
525     }
526     else
527     {
528       current = 0.0f;
529     }
530   }
531
532   float mMaxOvershoot;
533 };
534
535 /**
536  * This constraint updates the Y overshoot property using the difference
537  * SCROLL_PRE_POSITION.y and SCROLL_POSITION.y, returning a relative value between 0.0f and 1.0f
538  */
539 struct OvershootYConstraint
540 {
541   OvershootYConstraint(float maxOvershoot) : mMaxOvershoot(maxOvershoot) {}
542
543   void operator()( float& current, const PropertyInputContainer& inputs )
544   {
545     if( inputs[2]->GetBoolean() )
546     {
547       const Vector2& scrollPrePosition = inputs[0]->GetVector2();
548       const Vector2& scrollPostPosition = inputs[1]->GetVector2();
549       float newOvershoot = scrollPrePosition.y - scrollPostPosition.y;
550       current = (newOvershoot > 0.0f ? std::min(newOvershoot, mMaxOvershoot) : std::max(newOvershoot, -mMaxOvershoot)) / mMaxOvershoot;
551     }
552     else
553     {
554       current = 0.0f;
555     }
556   }
557
558   float mMaxOvershoot;
559 };
560
561 /**
562  * Internal Position-Delta Property Constraint.
563  *
564  * Generates position-delta property based on scroll-position + scroll-offset properties.
565  */
566 void InternalPositionDeltaConstraint( Vector2& current, const PropertyInputContainer& inputs )
567 {
568   const Vector2& scrollPosition = inputs[0]->GetVector2();
569   const Vector2& scrollOffset = inputs[1]->GetVector2();
570
571   current = scrollPosition + scrollOffset;
572 }
573
574 /**
575  * Internal Final Position Constraint
576  * The position of content is:
577  * of scroll-position + f(scroll-overshoot)
578  * where f(...) function defines how overshoot
579  * should affect final-position.
580  */
581 struct InternalFinalConstraint
582 {
583   InternalFinalConstraint(AlphaFunctionPrototype functionX,
584                           AlphaFunctionPrototype functionY)
585   : mFunctionX(functionX),
586     mFunctionY(functionY)
587   {
588   }
589
590   void operator()( Vector2& current, const PropertyInputContainer& inputs )
591   {
592     const float& overshootx = inputs[1]->GetFloat();
593     const float& overshooty = inputs[2]->GetFloat();
594     Vector2 offset( mFunctionX(overshootx),
595                     mFunctionY(overshooty) );
596
597     current = inputs[0]->GetVector2() - offset;
598   }
599
600   AlphaFunctionPrototype mFunctionX;
601   AlphaFunctionPrototype mFunctionY;
602 };
603
604 }
605
606
607 ///////////////////////////////////////////////////////////////////////////////////////////////////
608 // ScrollView
609 ///////////////////////////////////////////////////////////////////////////////////////////////////
610
611 Dali::Toolkit::ScrollView ScrollView::New()
612 {
613   // Create the implementation
614   ScrollViewPtr scrollView(new ScrollView());
615
616   // Pass ownership to CustomActor via derived handle
617   Dali::Toolkit::ScrollView handle(*scrollView);
618
619   // Second-phase init of the implementation
620   // This can only be done after the CustomActor connection has been made...
621   scrollView->Initialize();
622
623   return handle;
624 }
625
626 ScrollView::ScrollView()
627 : ScrollBase( ControlBehaviour( REQUIRES_WHEEL_EVENTS ) ),   // Enable size negotiation
628   mTouchDownTime(0u),
629   mGestureStackDepth(0),
630   mScrollStateFlags(0),
631   mLockAxis(LockPossible),
632   mScrollUpdateDistance(DEFAULT_SCROLL_UPDATE_DISTANCE),
633   mMaxOvershoot(DEFAULT_MAX_OVERSHOOT, DEFAULT_MAX_OVERSHOOT),
634   mUserMaxOvershoot(DEFAULT_MAX_OVERSHOOT, DEFAULT_MAX_OVERSHOOT),
635   mSnapOvershootDuration(DEFAULT_SNAP_OVERSHOOT_DURATION),
636   mSnapOvershootAlphaFunction(AlphaFunction::EASE_OUT),
637   mSnapDuration(DEFAULT_SLOW_SNAP_ANIMATION_DURATION),
638   mSnapAlphaFunction(AlphaFunction::EASE_OUT),
639   mMinFlickDistance(DEFAULT_MIN_FLICK_DISTANCE),
640   mFlickSpeedThreshold(DEFAULT_MIN_FLICK_SPEED_THRESHOLD),
641   mFlickDuration(DEFAULT_FAST_SNAP_ANIMATION_DURATION),
642   mFlickAlphaFunction(AlphaFunction::EASE_OUT),
643   mAxisAutoLockGradient(DEFAULT_AXIS_AUTO_LOCK_GRADIENT),
644   mFrictionCoefficient(DEFAULT_FRICTION_COEFFICIENT),
645   mFlickSpeedCoefficient(DEFAULT_FLICK_SPEED_COEFFICIENT),
646   mMaxFlickSpeed(DEFAULT_MAX_FLICK_SPEED),
647   mWheelScrollDistanceStep(Vector2::ZERO),
648   mInAccessibilityPan(false),
649   mScrolling(false),
650   mScrollInterrupted(false),
651   mPanning(false),
652   mSensitive(true),
653   mTouchDownTimeoutReached(false),
654   mActorAutoSnapEnabled(false),
655   mAutoResizeContainerEnabled(false),
656   mWrapMode(false),
657   mAxisAutoLock(false),
658   mAlterChild(false),
659   mDefaultMaxOvershoot(true),
660   mCanScrollHorizontal(true),
661   mCanScrollVertical(true)
662 {
663 }
664
665 void ScrollView::OnInitialize()
666 {
667   Actor self = Self();
668
669   // Internal Actor, used to hide actors from enumerations.
670   // Also actors added to Internal actor appear as overlays e.g. ScrollBar components.
671   mInternalActor = Actor::New();
672   self.Add(mInternalActor);
673
674   mInternalActor.SetParentOrigin(ParentOrigin::CENTER);
675   mInternalActor.SetAnchorPoint(AnchorPoint::CENTER);
676   mInternalActor.SetResizePolicy( ResizePolicy::FILL_TO_PARENT, Dimension::ALL_DIMENSIONS );
677
678   mAlterChild = true;
679
680   mScrollPostPosition = mScrollPrePosition = Vector2::ZERO;
681
682   mWheelScrollDistanceStep = Stage::GetCurrent().GetSize() * DEFAULT_WHEEL_SCROLL_DISTANCE_STEP_PROPORTION;
683
684   mGestureStackDepth = 0;
685
686   self.TouchSignal().Connect( this, &ScrollView::OnTouch );
687   EnableGestureDetection( Gesture::Type( Gesture::Pan ) );
688
689   // By default we'll allow the user to freely drag the scroll view,
690   // while disabling the other rulers.
691   RulerPtr ruler = new DefaultRuler();
692   mRulerX = ruler;
693   mRulerY = ruler;
694
695   self.SetProperty(Toolkit::Scrollable::Property::CAN_SCROLL_VERTICAL, mCanScrollVertical);
696   self.SetProperty(Toolkit::Scrollable::Property::CAN_SCROLL_HORIZONTAL, mCanScrollHorizontal);
697
698   UpdatePropertyDomain();
699   SetInternalConstraints();
700 }
701
702 void ScrollView::OnStageConnection( int depth )
703 {
704   ScrollBase::OnStageConnection( depth );
705
706   DALI_LOG_SCROLL_STATE("[0x%X]", this);
707
708   if ( mSensitive )
709   {
710     SetScrollSensitive( false );
711     SetScrollSensitive( true );
712   }
713   if(IsOvershootEnabled())
714   {
715     // try and make sure property notifications are set
716     EnableScrollOvershoot(true);
717   }
718 }
719
720 void ScrollView::OnStageDisconnection()
721 {
722   DALI_LOG_SCROLL_STATE("[0x%X]", this);
723
724   StopAnimation();
725
726   ScrollBase::OnStageDisconnection();
727 }
728
729 ScrollView::~ScrollView()
730 {
731   DALI_LOG_SCROLL_STATE("[0x%X]", this);
732 }
733
734 AlphaFunction ScrollView::GetScrollSnapAlphaFunction() const
735 {
736   return mSnapAlphaFunction;
737 }
738
739 void ScrollView::SetScrollSnapAlphaFunction(AlphaFunction alpha)
740 {
741   mSnapAlphaFunction = alpha;
742 }
743
744 AlphaFunction ScrollView::GetScrollFlickAlphaFunction() const
745 {
746   return mFlickAlphaFunction;
747 }
748
749 void ScrollView::SetScrollFlickAlphaFunction(AlphaFunction alpha)
750 {
751   mFlickAlphaFunction = alpha;
752 }
753
754 float ScrollView::GetScrollSnapDuration() const
755 {
756   return mSnapDuration;
757 }
758
759 void ScrollView::SetScrollSnapDuration(float time)
760 {
761   mSnapDuration = time;
762 }
763
764 float ScrollView::GetScrollFlickDuration() const
765 {
766   return mFlickDuration;
767 }
768
769 void ScrollView::SetScrollFlickDuration(float time)
770 {
771   mFlickDuration = time;
772 }
773
774 void ScrollView::ApplyEffect(Toolkit::ScrollViewEffect effect)
775 {
776   Dali::Toolkit::ScrollView self = Dali::Toolkit::ScrollView::DownCast(Self());
777
778   // Assertion check to ensure effect doesn't already exist in this scrollview
779   bool effectAlreadyExistsInScrollView(false);
780   for (ScrollViewEffectIter iter = mEffects.begin(); iter != mEffects.end(); ++iter)
781   {
782     if(*iter==effect)
783     {
784       effectAlreadyExistsInScrollView = true;
785       break;
786     }
787   }
788
789   DALI_ASSERT_ALWAYS(!effectAlreadyExistsInScrollView);
790
791   // add effect to effects list
792   mEffects.push_back(effect);
793
794   // invoke Attachment request to ScrollView first
795   GetImpl(effect).Attach(self);
796 }
797
798 void ScrollView::RemoveEffect(Toolkit::ScrollViewEffect effect)
799 {
800   Dali::Toolkit::ScrollView self = Dali::Toolkit::ScrollView::DownCast(Self());
801
802   // remove effect from effects list
803   bool effectExistedInScrollView(false);
804   for (ScrollViewEffectIter iter = mEffects.begin(); iter != mEffects.end(); ++iter)
805   {
806     if(*iter==effect)
807     {
808       mEffects.erase(iter);
809       effectExistedInScrollView = true;
810       break;
811     }
812   }
813
814   // Assertion check to ensure effect existed.
815   DALI_ASSERT_ALWAYS(effectExistedInScrollView);
816
817   // invoke Detachment request to ScrollView last
818   GetImpl(effect).Detach(self);
819 }
820
821 void ScrollView::RemoveAllEffects()
822 {
823   Dali::Toolkit::ScrollView self = Dali::Toolkit::ScrollView::DownCast(Self());
824
825   for (ScrollViewEffectIter effectIter = mEffects.begin(); effectIter != mEffects.end(); ++effectIter)
826   {
827     Toolkit::ScrollViewEffect effect = *effectIter;
828
829     // invoke Detachment request to ScrollView last
830     GetImpl(effect).Detach(self);
831   }
832
833   mEffects.clear();
834 }
835
836 void ScrollView::ApplyConstraintToChildren(Constraint constraint)
837 {
838   ApplyConstraintToBoundActors(constraint);
839 }
840
841 void ScrollView::RemoveConstraintsFromChildren()
842 {
843   RemoveConstraintsFromBoundActors();
844 }
845
846 const RulerPtr ScrollView::GetRulerX() const
847 {
848   return mRulerX;
849 }
850
851 const RulerPtr ScrollView::GetRulerY() const
852 {
853   return mRulerY;
854 }
855
856 void ScrollView::SetRulerX(RulerPtr ruler)
857 {
858   mRulerX = ruler;
859
860   UpdatePropertyDomain();
861   UpdateMainInternalConstraint();
862 }
863
864 void ScrollView::SetRulerY(RulerPtr ruler)
865 {
866   mRulerY = ruler;
867
868   UpdatePropertyDomain();
869   UpdateMainInternalConstraint();
870 }
871
872 void ScrollView::UpdatePropertyDomain()
873 {
874   Actor self = Self();
875   Vector3 size = self.GetTargetSize();
876   Vector2 min = mMinScroll;
877   Vector2 max = mMaxScroll;
878   bool scrollPositionChanged = false;
879   bool domainChanged = false;
880
881   bool canScrollVertical = false;
882   bool canScrollHorizontal = false;
883   UpdateLocalScrollProperties();
884   if(mRulerX->IsEnabled())
885   {
886     const Toolkit::RulerDomain& rulerDomain = mRulerX->GetDomain();
887     if( fabsf(min.x - rulerDomain.min) > Math::MACHINE_EPSILON_100
888         || fabsf(max.x - rulerDomain.max) > Math::MACHINE_EPSILON_100 )
889     {
890       domainChanged = true;
891       min.x = rulerDomain.min;
892       max.x = rulerDomain.max;
893
894       // make sure new scroll value is within new domain
895       if( mScrollPrePosition.x < min.x
896           || mScrollPrePosition.x > max.x )
897       {
898         scrollPositionChanged = true;
899         mScrollPrePosition.x = Clamp(mScrollPrePosition.x, -(max.x - size.x), -min.x);
900       }
901     }
902     if( (fabsf(rulerDomain.max - rulerDomain.min) - size.x) > Math::MACHINE_EPSILON_100 )
903     {
904       canScrollHorizontal = true;
905     }
906   }
907   else if( fabs(min.x) > Math::MACHINE_EPSILON_100
908            || fabs(max.x) > Math::MACHINE_EPSILON_100 )
909   {
910     // need to reset to 0
911     domainChanged = true;
912     min.x = 0.0f;
913     max.x = 0.0f;
914     canScrollHorizontal = false;
915   }
916
917   if(mRulerY->IsEnabled())
918   {
919     const Toolkit::RulerDomain& rulerDomain = mRulerY->GetDomain();
920     if( fabsf(min.y - rulerDomain.min) > Math::MACHINE_EPSILON_100
921         || fabsf(max.y - rulerDomain.max) > Math::MACHINE_EPSILON_100 )
922     {
923       domainChanged = true;
924       min.y = rulerDomain.min;
925       max.y = rulerDomain.max;
926
927       // make sure new scroll value is within new domain
928       if( mScrollPrePosition.y < min.y
929           || mScrollPrePosition.y > max.y )
930       {
931         scrollPositionChanged = true;
932         mScrollPrePosition.y = Clamp(mScrollPrePosition.y, -(max.y - size.y), -min.y);
933       }
934     }
935     if( (fabsf(rulerDomain.max - rulerDomain.min) - size.y) > Math::MACHINE_EPSILON_100 )
936     {
937       canScrollVertical = true;
938     }
939   }
940   else if( fabs(min.y) > Math::MACHINE_EPSILON_100
941            || fabs(max.y) > Math::MACHINE_EPSILON_100 )
942   {
943     // need to reset to 0
944     domainChanged = true;
945     min.y = 0.0f;
946     max.y = 0.0f;
947     canScrollVertical = false;
948   }
949
950   // avoid setting properties if possible, otherwise this will cause an entire update as well as triggering constraints using each property we update
951   if( mCanScrollVertical != canScrollVertical )
952   {
953     mCanScrollVertical = canScrollVertical;
954     self.SetProperty(Toolkit::Scrollable::Property::CAN_SCROLL_VERTICAL, canScrollVertical);
955   }
956   if( mCanScrollHorizontal != canScrollHorizontal )
957   {
958     mCanScrollHorizontal = canScrollHorizontal;
959     self.SetProperty(Toolkit::Scrollable::Property::CAN_SCROLL_HORIZONTAL, canScrollHorizontal);
960   }
961   if( scrollPositionChanged )
962   {
963     DALI_LOG_SCROLL_STATE("[0x%X] Domain Changed, setting SCROLL_PRE_POSITION To[%.2f, %.2f]", this, mScrollPrePosition.x, mScrollPrePosition.y );
964     self.SetProperty(Toolkit::ScrollView::Property::SCROLL_PRE_POSITION, mScrollPrePosition);
965   }
966   if( domainChanged )
967   {
968     mMinScroll = min;
969     mMaxScroll = max;
970     self.SetProperty(Toolkit::Scrollable::Property::SCROLL_POSITION_MIN, mMinScroll );
971     self.SetProperty(Toolkit::Scrollable::Property::SCROLL_POSITION_MAX, mMaxScroll );
972   }
973 }
974
975 bool ScrollView::GetScrollSensitive()
976 {
977   return mSensitive;
978 }
979
980 void ScrollView::SetScrollSensitive(bool sensitive)
981 {
982   Actor self = Self();
983   PanGestureDetector panGesture( GetPanGestureDetector() );
984
985   DALI_LOG_SCROLL_STATE("[0x%X] sensitive: before:[%d] setting[%d]", this, int(mSensitive), int(sensitive));
986
987   if((!mSensitive) && (sensitive))
988   {
989     mSensitive = sensitive;
990     panGesture.Attach(self);
991   }
992   else if((mSensitive) && (!sensitive))
993   {
994     DALI_LOG_SCROLL_STATE("[0x%X] BEFORE: panning:[%d]", this, int(mPanning));
995
996     // while the scroll view is panning, the state needs to be reset.
997     if ( mPanning )
998     {
999       PanGesture cancelGesture( Gesture::Cancelled );
1000       OnPan( cancelGesture );
1001     }
1002
1003     panGesture.Detach(self);
1004     mSensitive = sensitive;
1005
1006     mGestureStackDepth = 0;
1007     DALI_LOG_SCROLL_STATE("[0x%X] AFTER: panning:[%d]", this, int(mPanning));
1008   }
1009 }
1010
1011 void ScrollView::SetMaxOvershoot(float overshootX, float overshootY)
1012 {
1013   mMaxOvershoot.x = overshootX;
1014   mMaxOvershoot.y = overshootY;
1015   mUserMaxOvershoot = mMaxOvershoot;
1016   mDefaultMaxOvershoot = false;
1017   UpdateMainInternalConstraint();
1018 }
1019
1020 void ScrollView::SetSnapOvershootAlphaFunction(AlphaFunction alpha)
1021 {
1022   mSnapOvershootAlphaFunction = alpha;
1023 }
1024
1025 float ScrollView::GetSnapOvershootDuration()
1026 {
1027   return mSnapOvershootDuration;
1028 }
1029
1030 void ScrollView::SetSnapOvershootDuration(float duration)
1031 {
1032   mSnapOvershootDuration = duration;
1033 }
1034
1035 bool ScrollView::GetActorAutoSnap()
1036 {
1037   return mActorAutoSnapEnabled;
1038 }
1039
1040 void ScrollView::SetActorAutoSnap(bool enable)
1041 {
1042   mActorAutoSnapEnabled = enable;
1043 }
1044
1045 void ScrollView::SetAutoResize(bool enable)
1046 {
1047   mAutoResizeContainerEnabled = enable;
1048   // TODO: This needs a lot of issues to be addressed before working.
1049 }
1050
1051 bool ScrollView::GetWrapMode() const
1052 {
1053   return mWrapMode;
1054 }
1055
1056 void ScrollView::SetWrapMode(bool enable)
1057 {
1058   mWrapMode = enable;
1059   Self().SetProperty(Toolkit::ScrollView::Property::WRAP, enable);
1060 }
1061
1062 int ScrollView::GetScrollUpdateDistance() const
1063 {
1064   return mScrollUpdateDistance;
1065 }
1066
1067 void ScrollView::SetScrollUpdateDistance(int distance)
1068 {
1069   mScrollUpdateDistance = distance;
1070 }
1071
1072 bool ScrollView::GetAxisAutoLock() const
1073 {
1074   return mAxisAutoLock;
1075 }
1076
1077 void ScrollView::SetAxisAutoLock(bool enable)
1078 {
1079   mAxisAutoLock = enable;
1080   UpdateMainInternalConstraint();
1081 }
1082
1083 float ScrollView::GetAxisAutoLockGradient() const
1084 {
1085   return mAxisAutoLockGradient;
1086 }
1087
1088 void ScrollView::SetAxisAutoLockGradient(float gradient)
1089 {
1090   DALI_ASSERT_DEBUG( gradient >= 0.0f && gradient <= 1.0f );
1091   mAxisAutoLockGradient = gradient;
1092   UpdateMainInternalConstraint();
1093 }
1094
1095 float ScrollView::GetFrictionCoefficient() const
1096 {
1097   return mFrictionCoefficient;
1098 }
1099
1100 void ScrollView::SetFrictionCoefficient(float friction)
1101 {
1102   DALI_ASSERT_DEBUG( friction > 0.0f );
1103   mFrictionCoefficient = friction;
1104 }
1105
1106 float ScrollView::GetFlickSpeedCoefficient() const
1107 {
1108   return mFlickSpeedCoefficient;
1109 }
1110
1111 void ScrollView::SetFlickSpeedCoefficient(float speed)
1112 {
1113   mFlickSpeedCoefficient = speed;
1114 }
1115
1116 Vector2 ScrollView::GetMinimumDistanceForFlick() const
1117 {
1118   return mMinFlickDistance;
1119 }
1120
1121 void ScrollView::SetMinimumDistanceForFlick( const Vector2& distance )
1122 {
1123   mMinFlickDistance = distance;
1124 }
1125
1126 float ScrollView::GetMinimumSpeedForFlick() const
1127 {
1128   return mFlickSpeedThreshold;
1129 }
1130
1131 void ScrollView::SetMinimumSpeedForFlick( float speed )
1132 {
1133   mFlickSpeedThreshold = speed;
1134 }
1135
1136 float ScrollView::GetMaxFlickSpeed() const
1137 {
1138   return mMaxFlickSpeed;
1139 }
1140
1141 void ScrollView::SetMaxFlickSpeed(float speed)
1142 {
1143   mMaxFlickSpeed = speed;
1144 }
1145
1146 void ScrollView::SetWheelScrollDistanceStep(Vector2 step)
1147 {
1148   mWheelScrollDistanceStep = step;
1149 }
1150
1151 Vector2 ScrollView::GetWheelScrollDistanceStep() const
1152 {
1153   return mWheelScrollDistanceStep;
1154 }
1155
1156 unsigned int ScrollView::GetCurrentPage() const
1157 {
1158   // in case animation is currently taking place.
1159   Vector2 position = GetPropertyPosition();
1160
1161   Actor self = Self();
1162   unsigned int page = 0;
1163   unsigned int pagesPerVolume = 1;
1164   unsigned int volume = 0;
1165
1166   // if rulerX is enabled, then get page count (columns)
1167   page = mRulerX->GetPageFromPosition(-position.x, mWrapMode);
1168   volume = mRulerY->GetPageFromPosition(-position.y, mWrapMode);
1169   pagesPerVolume = mRulerX->GetTotalPages();
1170
1171   return volume * pagesPerVolume + page;
1172 }
1173
1174 Vector2 ScrollView::GetCurrentScrollPosition() const
1175 {
1176   return -GetPropertyPosition();
1177 }
1178
1179 void ScrollView::TransformTo(const Vector2& position,
1180                              DirectionBias horizontalBias, DirectionBias verticalBias)
1181 {
1182   TransformTo(position, mSnapDuration, mSnapAlphaFunction, horizontalBias, verticalBias);
1183 }
1184
1185 void ScrollView::TransformTo(const Vector2& position, float duration, AlphaFunction alpha,
1186                              DirectionBias horizontalBias, DirectionBias verticalBias)
1187 {
1188   // If this is called while the timer is running, then cancel it
1189   StopTouchDownTimer();
1190
1191   Actor self( Self() );
1192
1193   // Guard against destruction during signal emission
1194   // Note that Emit() methods are called indirectly e.g. from within ScrollView::AnimateTo()
1195   Toolkit::ScrollView handle( GetOwner() );
1196
1197   DALI_LOG_SCROLL_STATE("[0x%X] pos[%.2f,%.2f], duration[%.2f] bias[%d, %d]",
1198     this, position.x, position.y, duration, int(horizontalBias), int(verticalBias));
1199
1200   Vector2 currentScrollPosition = GetCurrentScrollPosition();
1201   self.SetProperty( Toolkit::ScrollView::Property::START_PAGE_POSITION, Vector3(currentScrollPosition) );
1202
1203   if( mScrolling ) // are we interrupting a current scroll?
1204   {
1205     // set mScrolling to false, in case user has code that interrogates mScrolling Getter() in complete.
1206     mScrolling = false;
1207     DALI_LOG_SCROLL_STATE("[0x%X] mScrollCompletedSignal 1 [%.2f, %.2f]", this, currentScrollPosition.x, currentScrollPosition.y);
1208     mScrollCompletedSignal.Emit( currentScrollPosition );
1209   }
1210
1211   if( mPanning ) // are we interrupting a current pan?
1212   {
1213     DALI_LOG_SCROLL_STATE("[0x%X] Interrupting Pan, set to false", this );
1214     mPanning = false;
1215     mGestureStackDepth = 0;
1216     self.SetProperty( Toolkit::ScrollView::Property::PANNING, false );
1217
1218     if( mScrollMainInternalPrePositionConstraint )
1219     {
1220       mScrollMainInternalPrePositionConstraint.Remove();
1221     }
1222   }
1223
1224   self.SetProperty(Toolkit::ScrollView::Property::SCROLLING, true);
1225   mScrolling = true;
1226
1227   DALI_LOG_SCROLL_STATE("[0x%X] mScrollStartedSignal 1 [%.2f, %.2f]", this, currentScrollPosition.x, currentScrollPosition.y);
1228   mScrollStartedSignal.Emit( currentScrollPosition );
1229   bool animating = AnimateTo(-position,
1230                              Vector2::ONE * duration,
1231                              alpha,
1232                              true,
1233                              horizontalBias,
1234                              verticalBias,
1235                              Snap);
1236
1237   if(!animating)
1238   {
1239     // if not animating, then this pan has completed right now.
1240     self.SetProperty(Toolkit::ScrollView::Property::SCROLLING, false);
1241     mScrolling = false;
1242
1243     // If we have no duration, then in the next update frame, we will be at the position specified as we just set.
1244     // In this scenario, we cannot return the currentScrollPosition as this is out-of-date and should instead return the requested final position
1245     Vector2 completedPosition( currentScrollPosition );
1246     if( duration <= Math::MACHINE_EPSILON_10 )
1247     {
1248       completedPosition = position;
1249     }
1250
1251     DALI_LOG_SCROLL_STATE("[0x%X] mScrollCompletedSignal 2 [%.2f, %.2f]", this, completedPosition.x, completedPosition.y);
1252     SetScrollUpdateNotification(false);
1253     mScrollCompletedSignal.Emit( completedPosition );
1254   }
1255 }
1256
1257 void ScrollView::ScrollTo(const Vector2& position)
1258 {
1259   ScrollTo(position, mSnapDuration );
1260 }
1261
1262 void ScrollView::ScrollTo(const Vector2& position, float duration)
1263 {
1264   ScrollTo(position, duration, DirectionBiasNone, DirectionBiasNone);
1265 }
1266
1267 void ScrollView::ScrollTo(const Vector2& position, float duration, AlphaFunction alpha)
1268 {
1269   ScrollTo(position, duration, alpha, DirectionBiasNone, DirectionBiasNone);
1270 }
1271
1272 void ScrollView::ScrollTo(const Vector2& position, float duration,
1273                           DirectionBias horizontalBias, DirectionBias verticalBias)
1274 {
1275   ScrollTo(position, duration, mSnapAlphaFunction, horizontalBias, verticalBias);
1276 }
1277
1278 void ScrollView::ScrollTo(const Vector2& position, float duration, AlphaFunction alpha,
1279                 DirectionBias horizontalBias, DirectionBias verticalBias)
1280 {
1281   DALI_LOG_SCROLL_STATE("[0x%X] position[%.2f, %.2f] duration[%.2f], bias[%d, %d]", this, position.x, position.y, duration, int(horizontalBias), int(verticalBias));
1282   TransformTo(position, duration, alpha, horizontalBias, verticalBias);
1283 }
1284
1285 void ScrollView::ScrollTo(unsigned int page)
1286 {
1287   ScrollTo(page, mSnapDuration);
1288 }
1289
1290 void ScrollView::ScrollTo(unsigned int page, float duration, DirectionBias bias)
1291 {
1292   Vector2 position;
1293   unsigned int volume;
1294   unsigned int libraries;
1295
1296   // The position to scroll to is continuous and linear
1297   // unless a domain has been enabled on the X axis.
1298   // or if WrapMode has been enabled.
1299   bool carryX = mRulerX->GetDomain().enabled | mWrapMode;
1300   bool carryY = mRulerY->GetDomain().enabled | mWrapMode;
1301
1302   position.x = mRulerX->GetPositionFromPage(page, volume, carryX);
1303   position.y = mRulerY->GetPositionFromPage(volume, libraries, carryY);
1304
1305   ScrollTo(position, duration, bias, bias);
1306 }
1307
1308 void ScrollView::ScrollTo(Actor &actor)
1309 {
1310   ScrollTo(actor, mSnapDuration);
1311 }
1312
1313 void ScrollView::ScrollTo(Actor &actor, float duration)
1314 {
1315   DALI_ASSERT_ALWAYS(actor.GetParent() == Self());
1316
1317   Actor self = Self();
1318   Vector3 size = self.GetCurrentSize();
1319   Vector3 position = actor.GetCurrentPosition();
1320   Vector2 prePosition = GetPropertyPrePosition();
1321   position.GetVectorXY() -= prePosition;
1322
1323   ScrollTo(Vector2(position.x - size.width * 0.5f, position.y - size.height * 0.5f), duration);
1324 }
1325
1326 Actor ScrollView::FindClosestActor()
1327 {
1328   Actor self = Self();
1329   Vector3 size = self.GetCurrentSize();
1330
1331   return FindClosestActorToPosition(Vector3(size.width * 0.5f,size.height * 0.5f,0.0f));
1332 }
1333
1334 Actor ScrollView::FindClosestActorToPosition(const Vector3& position, FindDirection dirX, FindDirection dirY, FindDirection dirZ)
1335 {
1336   Actor closestChild;
1337   float closestDistance2 = 0.0f;
1338   Vector3 actualPosition = position;
1339
1340   unsigned int numChildren = Self().GetChildCount();
1341
1342   for(unsigned int i = 0; i < numChildren; ++i)
1343   {
1344     Actor child = Self().GetChildAt(i);
1345
1346     if(mInternalActor == child) // ignore internal actor.
1347     {
1348       continue;
1349     }
1350
1351     Vector3 childPosition = GetPositionOfAnchor(child, AnchorPoint::CENTER);
1352
1353     Vector3 delta = childPosition - actualPosition;
1354
1355     // X-axis checking (only find Actors to the [dirX] of actualPosition)
1356     if(dirX > All) // != All,None
1357     {
1358       FindDirection deltaH = delta.x > 0 ? Right : Left;
1359       if(dirX != deltaH)
1360       {
1361         continue;
1362       }
1363     }
1364
1365     // Y-axis checking (only find Actors to the [dirY] of actualPosition)
1366     if(dirY > All) // != All,None
1367     {
1368       FindDirection deltaV = delta.y > 0 ? Down : Up;
1369       if(dirY  != deltaV)
1370       {
1371         continue;
1372       }
1373     }
1374
1375     // Z-axis checking (only find Actors to the [dirZ] of actualPosition)
1376     if(dirZ > All) // != All,None
1377     {
1378       FindDirection deltaV = delta.y > 0 ? In : Out;
1379       if(dirZ  != deltaV)
1380       {
1381         continue;
1382       }
1383     }
1384
1385     // compare child to closest child in terms of distance.
1386     float distance2 = 0.0f;
1387
1388     // distance2 = the Square of the relevant dimensions of delta
1389     if(dirX != None)
1390     {
1391       distance2 += delta.x * delta.x;
1392     }
1393
1394     if(dirY != None)
1395     {
1396       distance2 += delta.y * delta.y;
1397     }
1398
1399     if(dirZ != None)
1400     {
1401       distance2 += delta.z * delta.z;
1402     }
1403
1404     if(closestChild) // Next time.
1405     {
1406       if(distance2 < closestDistance2)
1407       {
1408         closestChild = child;
1409         closestDistance2 = distance2;
1410       }
1411     }
1412     else // First time.
1413     {
1414       closestChild = child;
1415       closestDistance2 = distance2;
1416     }
1417   }
1418
1419   return closestChild;
1420 }
1421
1422 bool ScrollView::ScrollToSnapPoint()
1423 {
1424   DALI_LOG_SCROLL_STATE("[0x%X]", this );
1425   Vector2 stationaryVelocity = Vector2(0.0f, 0.0f);
1426   return SnapWithVelocity( stationaryVelocity );
1427 }
1428
1429 // TODO: In situations where axes are different (X snap, Y free)
1430 // Each axis should really have their own independent animation (time and equation)
1431 // Consider, X axis snapping to nearest grid point (EaseOut over fixed time)
1432 // Consider, Y axis simulating physics to arrive at a point (Physics equation over variable time)
1433 // Currently, the axes have been split however, they both use the same EaseOut equation.
1434 bool ScrollView::SnapWithVelocity(Vector2 velocity)
1435 {
1436   // Animator takes over now, touches are assumed not to interfere.
1437   // And if touches do interfere, then we'll stop animation, update PrePosition
1438   // to current mScroll's properties, and then resume.
1439   // Note: For Flicking this may work a bit different...
1440
1441   float angle = atan2(velocity.y, velocity.x);
1442   float speed2 = velocity.LengthSquared();
1443   AlphaFunction alphaFunction = mSnapAlphaFunction;
1444   Vector2 positionDuration = Vector2::ONE * mSnapDuration;
1445   float biasX = 0.5f;
1446   float biasY = 0.5f;
1447   FindDirection horizontal = None;
1448   FindDirection vertical = None;
1449
1450   // orthoAngleRange = Angle tolerance within the Exact N,E,S,W direction
1451   // that will be accepted as a general N,E,S,W flick direction.
1452
1453   const float orthoAngleRange = FLICK_ORTHO_ANGLE_RANGE * M_PI / 180.0f;
1454   const float flickSpeedThreshold2 = mFlickSpeedThreshold * mFlickSpeedThreshold;
1455
1456   Vector2 positionSnap = mScrollPrePosition;
1457
1458   // Flick logic X Axis
1459
1460   if(mRulerX->IsEnabled() && mLockAxis != LockHorizontal)
1461   {
1462     horizontal = All;
1463
1464     if( speed2 > flickSpeedThreshold2 || // exceeds flick threshold
1465         mInAccessibilityPan ) // With AccessibilityPan its easier to move between snap positions
1466     {
1467       if((angle >= -orthoAngleRange) && (angle < orthoAngleRange)) // Swiping East
1468       {
1469         biasX = 0.0f, horizontal = Left;
1470
1471         // This guards against an error where no movement occurs, due to the flick finishing
1472         // before the update-thread has advanced mScrollPostPosition past the the previous snap point.
1473         positionSnap.x += 1.0f;
1474       }
1475       else if((angle >= M_PI-orthoAngleRange) || (angle < -M_PI+orthoAngleRange)) // Swiping West
1476       {
1477         biasX = 1.0f, horizontal = Right;
1478
1479         // This guards against an error where no movement occurs, due to the flick finishing
1480         // before the update-thread has advanced mScrollPostPosition past the the previous snap point.
1481         positionSnap.x -= 1.0f;
1482       }
1483     }
1484   }
1485
1486   // Flick logic Y Axis
1487
1488   if(mRulerY->IsEnabled() && mLockAxis != LockVertical)
1489   {
1490     vertical = All;
1491
1492     if( speed2 > flickSpeedThreshold2 || // exceeds flick threshold
1493         mInAccessibilityPan ) // With AccessibilityPan its easier to move between snap positions
1494     {
1495       if((angle >= M_PI_2-orthoAngleRange) && (angle < M_PI_2+orthoAngleRange)) // Swiping South
1496       {
1497         biasY = 0.0f, vertical = Up;
1498       }
1499       else if((angle >= -M_PI_2-orthoAngleRange) && (angle < -M_PI_2+orthoAngleRange)) // Swiping North
1500       {
1501         biasY = 1.0f, vertical = Down;
1502       }
1503     }
1504   }
1505
1506   // isFlick: Whether this gesture is a flick or not.
1507   bool isFlick = (horizontal != All || vertical != All);
1508   // isFreeFlick: Whether this gesture is a flick under free panning criteria.
1509   bool isFreeFlick = velocity.LengthSquared() > (FREE_FLICK_SPEED_THRESHOLD*FREE_FLICK_SPEED_THRESHOLD);
1510
1511   if(isFlick || isFreeFlick)
1512   {
1513     positionDuration = Vector2::ONE * mFlickDuration;
1514     alphaFunction = mFlickAlphaFunction;
1515   }
1516
1517   // Calculate next positionSnap ////////////////////////////////////////////////////////////
1518
1519   if(mActorAutoSnapEnabled)
1520   {
1521     Vector3 size = Self().GetCurrentSize();
1522
1523     Actor child = FindClosestActorToPosition( Vector3(size.width * 0.5f,size.height * 0.5f,0.0f), horizontal, vertical );
1524
1525     if(!child && isFlick )
1526     {
1527       // If we conducted a direction limited search and found no actor, then just snap to the closest actor.
1528       child = FindClosestActorToPosition( Vector3(size.width * 0.5f,size.height * 0.5f,0.0f) );
1529     }
1530
1531     if(child)
1532     {
1533       Vector2 position = Self().GetProperty<Vector2>(Toolkit::ScrollView::Property::SCROLL_POSITION);
1534
1535       // Get center-point of the Actor.
1536       Vector3 childPosition = GetPositionOfAnchor(child, AnchorPoint::CENTER);
1537
1538       if(mRulerX->IsEnabled())
1539       {
1540         positionSnap.x = position.x - childPosition.x + size.width * 0.5f;
1541       }
1542       if(mRulerY->IsEnabled())
1543       {
1544         positionSnap.y = position.y - childPosition.y + size.height * 0.5f;
1545       }
1546     }
1547   }
1548
1549   Vector2 startPosition = positionSnap;
1550   positionSnap.x = -mRulerX->Snap(-positionSnap.x, biasX);  // NOTE: X & Y rulers think in -ve coordinate system.
1551   positionSnap.y = -mRulerY->Snap(-positionSnap.y, biasY);  // That is scrolling RIGHT (e.g. 100.0, 0.0) means moving LEFT.
1552
1553   Vector2 clampDelta(Vector2::ZERO);
1554   ClampPosition(positionSnap);
1555
1556   if( (mRulerX->GetType() == Ruler::Free || mRulerY->GetType() == Ruler::Free)
1557       && isFreeFlick && !mActorAutoSnapEnabled)
1558   {
1559     // Calculate target position based on velocity of flick.
1560
1561     // a = Deceleration (Set to diagonal stage length * friction coefficient)
1562     // u = Initial Velocity (Flick velocity)
1563     // v = 0 (Final Velocity)
1564     // t = Time (Velocity / Deceleration)
1565     Vector2 stageSize = Stage::GetCurrent().GetSize();
1566     float stageLength = Vector3(stageSize.x, stageSize.y, 0.0f).Length();
1567     float a = (stageLength * mFrictionCoefficient);
1568     Vector3 u = Vector3(velocity.x, velocity.y, 0.0f) * mFlickSpeedCoefficient;
1569     float speed = u.Length();
1570     u/= speed;
1571
1572     // TODO: Change this to a decay function. (faster you flick, the slower it should be)
1573     speed = std::min(speed, stageLength * mMaxFlickSpeed );
1574     u*= speed;
1575     alphaFunction = ConstantDecelerationAlphaFunction;
1576
1577     float t = speed / a;
1578
1579     if(mRulerX->IsEnabled() && mRulerX->GetType() == Ruler::Free)
1580     {
1581       positionSnap.x += t*u.x*0.5f;
1582     }
1583
1584     if(mRulerY->IsEnabled() && mRulerY->GetType() == Ruler::Free)
1585     {
1586       positionSnap.y += t*u.y*0.5f;
1587     }
1588
1589     clampDelta = positionSnap;
1590     ClampPosition(positionSnap);
1591     if((positionSnap - startPosition).LengthSquared() > Math::MACHINE_EPSILON_0)
1592     {
1593       clampDelta -= positionSnap;
1594       clampDelta.x = clampDelta.x > 0.0f ? std::min(clampDelta.x, mMaxOvershoot.x) : std::max(clampDelta.x, -mMaxOvershoot.x);
1595       clampDelta.y = clampDelta.y > 0.0f ? std::min(clampDelta.y, mMaxOvershoot.y) : std::max(clampDelta.y, -mMaxOvershoot.y);
1596     }
1597     else
1598     {
1599       clampDelta = Vector2::ZERO;
1600     }
1601
1602     // If Axis is Free and has velocity, then calculate time taken
1603     // to reach target based on velocity in axis.
1604     if(mRulerX->IsEnabled() && mRulerX->GetType() == Ruler::Free)
1605     {
1606       float deltaX = fabsf(startPosition.x - positionSnap.x);
1607
1608       if(fabsf(u.x) > Math::MACHINE_EPSILON_1)
1609       {
1610         positionDuration.x = fabsf(deltaX / u.x);
1611       }
1612       else
1613       {
1614         positionDuration.x = 0;
1615       }
1616     }
1617
1618     if(mRulerY->IsEnabled() && mRulerY->GetType() == Ruler::Free)
1619     {
1620       float deltaY = fabsf(startPosition.y - positionSnap.y);
1621
1622       if(fabsf(u.y) > Math::MACHINE_EPSILON_1)
1623       {
1624         positionDuration.y = fabsf(deltaY / u.y);
1625       }
1626       else
1627       {
1628         positionDuration.y = 0;
1629       }
1630     }
1631   }
1632
1633   if(IsOvershootEnabled())
1634   {
1635     // Scroll to the end of the overshoot only when overshoot is enabled.
1636     positionSnap += clampDelta;
1637   }
1638
1639   bool animating = AnimateTo(positionSnap, positionDuration,
1640                              alphaFunction, false,
1641                              DirectionBiasNone, DirectionBiasNone,
1642                              isFlick || isFreeFlick ? Flick : Snap);
1643
1644   return animating;
1645 }
1646
1647 void ScrollView::StopAnimation(void)
1648 {
1649   // Clear Snap animation if exists.
1650   StopAnimation(mInternalXAnimation);
1651   StopAnimation(mInternalYAnimation);
1652   mScrollStateFlags = 0;
1653   // remove scroll animation flags
1654   HandleStoppedAnimation();
1655 }
1656
1657 void ScrollView::StopAnimation(Animation& animation)
1658 {
1659   if(animation)
1660   {
1661     animation.Stop();
1662     animation.Reset();
1663   }
1664 }
1665
1666 bool ScrollView::AnimateTo(const Vector2& position, const Vector2& positionDuration,
1667                            AlphaFunction alpha, bool findShortcuts,
1668                            DirectionBias horizontalBias, DirectionBias verticalBias,
1669                            SnapType snapType)
1670 {
1671   // Here we perform an animation on a number of properties (depending on which have changed)
1672   // The animation is applied to all ScrollBases
1673   Actor self = Self();
1674   mScrollTargetPosition = position;
1675   float totalDuration = 0.0f;
1676
1677   bool positionChanged = (mScrollTargetPosition != mScrollPostPosition);
1678
1679   if(positionChanged)
1680   {
1681     totalDuration = std::max(totalDuration, positionDuration.x);
1682     totalDuration = std::max(totalDuration, positionDuration.y);
1683   }
1684   else
1685   {
1686     // try to animate for a frame, on some occasions update will be changing scroll value while event side thinks it hasnt changed
1687     totalDuration = 0.01f;
1688     positionChanged = true;
1689   }
1690
1691   StopAnimation();
1692
1693   // Position Delta ///////////////////////////////////////////////////////
1694   if(positionChanged)
1695   {
1696     if(mWrapMode && findShortcuts)
1697     {
1698       // In Wrap Mode, the shortest distance is a little less intuitive...
1699       const RulerDomain rulerDomainX = mRulerX->GetDomain();
1700       const RulerDomain rulerDomainY = mRulerY->GetDomain();
1701
1702       if(mRulerX->IsEnabled())
1703       {
1704         float dir = VectorInDomain(-mScrollPrePosition.x, -mScrollTargetPosition.x, rulerDomainX.min, rulerDomainX.max, horizontalBias);
1705         mScrollTargetPosition.x = mScrollPrePosition.x + -dir;
1706       }
1707
1708       if(mRulerY->IsEnabled())
1709       {
1710         float dir = VectorInDomain(-mScrollPrePosition.y, -mScrollTargetPosition.y, rulerDomainY.min, rulerDomainY.max, verticalBias);
1711         mScrollTargetPosition.y = mScrollPrePosition.y + -dir;
1712       }
1713     }
1714
1715     // note we have two separate animations for X & Y, this deals with sliding diagonally and hitting
1716     // a horizonal/vertical wall.delay
1717     AnimateInternalXTo(mScrollTargetPosition.x, positionDuration.x, alpha);
1718     AnimateInternalYTo(mScrollTargetPosition.y, positionDuration.y, alpha);
1719
1720     if( !(mScrollStateFlags & SCROLL_ANIMATION_FLAGS) )
1721     {
1722       DALI_LOG_SCROLL_STATE("[0x%X] Setting SCROLL_PRE_POSITION To[%.2f, %.2f]", this, mScrollTargetPosition.x, mScrollTargetPosition.y );
1723       self.SetProperty(Toolkit::ScrollView::Property::SCROLL_PRE_POSITION, mScrollTargetPosition);
1724       mScrollPrePosition = mScrollTargetPosition;
1725       mScrollPostPosition = mScrollTargetPosition;
1726       WrapPosition(mScrollPostPosition);
1727     }
1728
1729     DALI_LOG_SCROLL_STATE("[0x%X] position-changed, mScrollTargetPosition[%.2f, %.2f], mScrollPrePosition[%.2f, %.2f], mScrollPostPosition[%.2f, %.2f]", this, mScrollTargetPosition.x, mScrollTargetPosition.y, mScrollPrePosition.x, mScrollPrePosition.y, mScrollPostPosition.x, mScrollPostPosition.y );
1730     DALI_LOG_SCROLL_STATE("[0x%X] SCROLL_PRE_POSITION[%.2f, %.2f], SCROLL_POSITION[%.2f, %.2f]", this, self.GetProperty( Toolkit::ScrollView::Property::SCROLL_PRE_POSITION ).Get<Vector2>().x, self.GetProperty( Toolkit::ScrollView::Property::SCROLL_PRE_POSITION ).Get<Vector2>().y, self.GetProperty( Toolkit::ScrollView::Property::SCROLL_POSITION ).Get<Vector2>().x, self.GetProperty( Toolkit::ScrollView::Property::SCROLL_POSITION ).Get<Vector2>().y );
1731   }
1732
1733   SetScrollUpdateNotification(true);
1734
1735   // Always send a snap event when AnimateTo is called.
1736   Toolkit::ScrollView::SnapEvent snapEvent;
1737   snapEvent.type = snapType;
1738   snapEvent.position = -mScrollTargetPosition;
1739   snapEvent.duration = totalDuration;
1740
1741   DALI_LOG_SCROLL_STATE("[0x%X] mSnapStartedSignal [%.2f, %.2f]", this, snapEvent.position.x, snapEvent.position.y);
1742   mSnapStartedSignal.Emit( snapEvent );
1743
1744   return (mScrollStateFlags & SCROLL_ANIMATION_FLAGS) != 0;
1745 }
1746
1747 void ScrollView::EnableScrollOvershoot(bool enable)
1748 {
1749   if (enable)
1750   {
1751     if (!mOvershootIndicator)
1752     {
1753       mOvershootIndicator = ScrollOvershootIndicator::New();
1754     }
1755
1756     mOvershootIndicator->AttachToScrollable(*this);
1757   }
1758   else
1759   {
1760     mMaxOvershoot = mUserMaxOvershoot;
1761
1762     if (mOvershootIndicator)
1763     {
1764       mOvershootIndicator->DetachFromScrollable(*this);
1765     }
1766   }
1767
1768   UpdateMainInternalConstraint();
1769 }
1770
1771 void ScrollView::AddOverlay(Actor actor)
1772 {
1773   actor.SetDrawMode( DrawMode::OVERLAY_2D );
1774   mInternalActor.Add( actor );
1775 }
1776
1777 void ScrollView::RemoveOverlay(Actor actor)
1778 {
1779   mInternalActor.Remove( actor );
1780 }
1781
1782 void ScrollView::SetOvershootEffectColor( const Vector4& color )
1783 {
1784   mOvershootEffectColor = color;
1785   if( mOvershootIndicator )
1786   {
1787     mOvershootIndicator->SetOvershootEffectColor( color );
1788   }
1789 }
1790
1791 void ScrollView::SetScrollingDirection( Radian direction, Radian threshold )
1792 {
1793   PanGestureDetector panGesture( GetPanGestureDetector() );
1794
1795   // First remove just in case we have some set, then add.
1796   panGesture.RemoveDirection( direction );
1797   panGesture.AddDirection( direction, threshold );
1798 }
1799
1800 void ScrollView::RemoveScrollingDirection( Radian direction )
1801 {
1802   PanGestureDetector panGesture( GetPanGestureDetector() );
1803   panGesture.RemoveDirection( direction );
1804 }
1805
1806 Toolkit::ScrollView::SnapStartedSignalType& ScrollView::SnapStartedSignal()
1807 {
1808   return mSnapStartedSignal;
1809 }
1810
1811 void ScrollView::FindAndUnbindActor(Actor child)
1812 {
1813   UnbindActor(child);
1814 }
1815
1816 Vector2 ScrollView::GetPropertyPrePosition() const
1817 {
1818   Vector2 position = Self().GetProperty<Vector2>(Toolkit::ScrollView::Property::SCROLL_PRE_POSITION);
1819   WrapPosition(position);
1820   return position;
1821 }
1822
1823 Vector2 ScrollView::GetPropertyPosition() const
1824 {
1825   Vector2 position = Self().GetProperty<Vector2>(Toolkit::ScrollView::Property::SCROLL_POSITION);
1826   WrapPosition(position);
1827
1828   return position;
1829 }
1830
1831 void ScrollView::HandleStoppedAnimation()
1832 {
1833   SetScrollUpdateNotification(false);
1834 }
1835
1836 void ScrollView::HandleSnapAnimationFinished()
1837 {
1838   // Emit Signal that scrolling has completed.
1839   mScrolling = false;
1840   Actor self = Self();
1841   self.SetProperty(Toolkit::ScrollView::Property::SCROLLING, false);
1842
1843   Vector2 deltaPosition(mScrollPrePosition);
1844
1845   UpdateLocalScrollProperties();
1846   WrapPosition(mScrollPrePosition);
1847   DALI_LOG_SCROLL_STATE("[0x%X] Setting SCROLL_PRE_POSITION To[%.2f, %.2f]", this, mScrollPrePosition.x, mScrollPrePosition.y );
1848   self.SetProperty(Toolkit::ScrollView::Property::SCROLL_PRE_POSITION, mScrollPrePosition);
1849
1850   Vector2 currentScrollPosition = GetCurrentScrollPosition();
1851   DALI_LOG_SCROLL_STATE("[0x%X] mScrollCompletedSignal 3 current[%.2f, %.2f], mScrollTargetPosition[%.2f, %.2f]", this, currentScrollPosition.x, currentScrollPosition.y, -mScrollTargetPosition.x, -mScrollTargetPosition.y );
1852   mScrollCompletedSignal.Emit( currentScrollPosition );
1853
1854   mDomainOffset += deltaPosition - mScrollPostPosition;
1855   self.SetProperty(Toolkit::ScrollView::Property::SCROLL_DOMAIN_OFFSET, mDomainOffset);
1856   HandleStoppedAnimation();
1857 }
1858
1859 void ScrollView::SetScrollUpdateNotification( bool enabled )
1860 {
1861   Actor self = Self();
1862   if( mScrollXUpdateNotification )
1863   {
1864     // disconnect now to avoid a notification before removed from update thread
1865     mScrollXUpdateNotification.NotifySignal().Disconnect(this, &ScrollView::OnScrollUpdateNotification);
1866     self.RemovePropertyNotification(mScrollXUpdateNotification);
1867     mScrollXUpdateNotification.Reset();
1868   }
1869   if( enabled && !mScrollUpdatedSignal.Empty())
1870   {
1871     // Only set up the notification when the application has connected to the updated signal
1872     mScrollXUpdateNotification = self.AddPropertyNotification(Toolkit::ScrollView::Property::SCROLL_POSITION, 0, StepCondition(mScrollUpdateDistance, 0.0f));
1873     mScrollXUpdateNotification.NotifySignal().Connect( this, &ScrollView::OnScrollUpdateNotification );
1874   }
1875   if( mScrollYUpdateNotification )
1876   {
1877     // disconnect now to avoid a notification before removed from update thread
1878     mScrollYUpdateNotification.NotifySignal().Disconnect(this, &ScrollView::OnScrollUpdateNotification);
1879     self.RemovePropertyNotification(mScrollYUpdateNotification);
1880     mScrollYUpdateNotification.Reset();
1881   }
1882   if( enabled && !mScrollUpdatedSignal.Empty())
1883   {
1884     // Only set up the notification when the application has connected to the updated signal
1885     mScrollYUpdateNotification = self.AddPropertyNotification(Toolkit::ScrollView::Property::SCROLL_POSITION, 1, StepCondition(mScrollUpdateDistance, 0.0f));
1886     mScrollYUpdateNotification.NotifySignal().Connect( this, &ScrollView::OnScrollUpdateNotification );
1887   }
1888 }
1889
1890 void ScrollView::OnScrollUpdateNotification(Dali::PropertyNotification& source)
1891 {
1892   // Guard against destruction during signal emission
1893   Toolkit::ScrollView handle( GetOwner() );
1894
1895   Vector2 currentScrollPosition = GetCurrentScrollPosition();
1896   mScrollUpdatedSignal.Emit( currentScrollPosition );
1897 }
1898
1899 bool ScrollView::DoConnectSignal( BaseObject* object, ConnectionTrackerInterface* tracker, const std::string& signalName, FunctorDelegate* functor )
1900 {
1901   Dali::BaseHandle handle( object );
1902
1903   bool connected( true );
1904   Toolkit::ScrollView view = Toolkit::ScrollView::DownCast( handle );
1905
1906   if( 0 == strcmp( signalName.c_str(), SIGNAL_SNAP_STARTED ) )
1907   {
1908     view.SnapStartedSignal().Connect( tracker, functor );
1909   }
1910   else
1911   {
1912     // signalName does not match any signal
1913     connected = false;
1914   }
1915
1916   return connected;
1917 }
1918
1919 void ScrollView::OnSizeAnimation(Animation& animation, const Vector3& targetSize)
1920 {
1921   // need to update domain properties for new size
1922   UpdatePropertyDomain();
1923 }
1924
1925 void ScrollView::OnSizeSet( const Vector3& size )
1926 {
1927   // need to update domain properties for new size
1928   if( mDefaultMaxOvershoot )
1929   {
1930     mUserMaxOvershoot.x = size.x * 0.5f;
1931     mUserMaxOvershoot.y = size.y * 0.5f;
1932     if( !IsOvershootEnabled() )
1933     {
1934       mMaxOvershoot = mUserMaxOvershoot;
1935     }
1936   }
1937   UpdatePropertyDomain();
1938   UpdateMainInternalConstraint();
1939   if( IsOvershootEnabled() )
1940   {
1941     mOvershootIndicator->Reset();
1942   }
1943 }
1944
1945 void ScrollView::OnChildAdd(Actor& child)
1946 {
1947   ScrollBase::OnChildAdd( child );
1948
1949   Dali::Toolkit::ScrollBar scrollBar = Dali::Toolkit::ScrollBar::DownCast(child);
1950   if(scrollBar)
1951   {
1952     mInternalActor.Add(scrollBar);
1953     if(scrollBar.GetScrollDirection() == Toolkit::ScrollBar::Horizontal)
1954     {
1955       scrollBar.SetScrollPropertySource(Self(),
1956                                         Toolkit::ScrollView::Property::SCROLL_PRE_POSITION_X,
1957                                         Toolkit::Scrollable::Property::SCROLL_POSITION_MIN_X,
1958                                         Toolkit::ScrollView::Property::SCROLL_PRE_POSITION_MAX_X,
1959                                         Toolkit::ScrollView::Property::SCROLL_DOMAIN_SIZE_X);
1960     }
1961     else
1962     {
1963       scrollBar.SetScrollPropertySource(Self(),
1964                                         Toolkit::ScrollView::Property::SCROLL_PRE_POSITION_Y,
1965                                         Toolkit::Scrollable::Property::SCROLL_POSITION_MIN_Y,
1966                                         Toolkit::ScrollView::Property::SCROLL_PRE_POSITION_MAX_Y,
1967                                         Toolkit::ScrollView::Property::SCROLL_DOMAIN_SIZE_Y);
1968     }
1969   }
1970   else if(mAlterChild)
1971   {
1972     BindActor(child);
1973   }
1974 }
1975
1976 void ScrollView::OnChildRemove(Actor& child)
1977 {
1978   // TODO: Actor needs a RemoveConstraint method to take out an individual constraint.
1979   UnbindActor(child);
1980
1981   ScrollBase::OnChildRemove( child );
1982 }
1983
1984 void ScrollView::StartTouchDownTimer()
1985 {
1986   if ( !mTouchDownTimer )
1987   {
1988     mTouchDownTimer = Timer::New( TOUCH_DOWN_TIMER_INTERVAL );
1989     mTouchDownTimer.TickSignal().Connect( this, &ScrollView::OnTouchDownTimeout );
1990   }
1991
1992   mTouchDownTimer.Start();
1993 }
1994
1995 void ScrollView::StopTouchDownTimer()
1996 {
1997   if ( mTouchDownTimer )
1998   {
1999     mTouchDownTimer.Stop();
2000   }
2001 }
2002
2003 bool ScrollView::OnTouchDownTimeout()
2004 {
2005   DALI_LOG_SCROLL_STATE("[0x%X]", this);
2006
2007   mTouchDownTimeoutReached = true;
2008
2009   unsigned int currentScrollStateFlags( mScrollStateFlags ); // Cleared in StopAnimation so keep local copy for comparison
2010   if( currentScrollStateFlags & (SCROLL_ANIMATION_FLAGS | SNAP_ANIMATION_FLAGS) )
2011   {
2012     DALI_LOG_SCROLL_STATE("[0x%X] Scrolling Or snapping flags set, stopping animation", this);
2013
2014     StopAnimation();
2015     if( currentScrollStateFlags & SCROLL_ANIMATION_FLAGS )
2016     {
2017       DALI_LOG_SCROLL_STATE("[0x%X] Scrolling flags set, emitting signal", this);
2018
2019       mScrollInterrupted = true;
2020       // reset domain offset as scrolling from original plane.
2021       mDomainOffset = Vector2::ZERO;
2022       Self().SetProperty(Toolkit::ScrollView::Property::SCROLL_DOMAIN_OFFSET, Vector2::ZERO);
2023
2024       UpdateLocalScrollProperties();
2025       Vector2 currentScrollPosition = GetCurrentScrollPosition();
2026       DALI_LOG_SCROLL_STATE("[0x%X] mScrollCompletedSignal 4 [%.2f, %.2f]", this, currentScrollPosition.x, currentScrollPosition.y);
2027       mScrollCompletedSignal.Emit( currentScrollPosition );
2028     }
2029   }
2030
2031   return false;
2032 }
2033
2034 bool ScrollView::OnTouch( Actor actor, const TouchData& touch )
2035 {
2036   if(!mSensitive)
2037   {
2038     DALI_LOG_SCROLL_STATE("[0x%X], Not Sensitive, ignoring", this);
2039
2040     // Ignore this touch event, if scrollview is insensitive.
2041     return false;
2042   }
2043
2044   // Ignore events with multiple-touch points
2045   if (touch.GetPointCount() != 1)
2046   {
2047     DALI_LOG_SCROLL_STATE("[0x%X], multiple touch, ignoring", this);
2048
2049     return false;
2050   }
2051
2052   const PointState::Type pointState = touch.GetState( 0 );
2053   if( pointState == PointState::DOWN )
2054   {
2055     DALI_LOG_SCROLL_STATE("[0x%X] Down", this);
2056
2057     if(mGestureStackDepth==0)
2058     {
2059       mTouchDownTime = touch.GetTime();
2060
2061       // This allows time for a pan-gesture to start, to avoid breaking snap-animation behavior with fast flicks.
2062       // If touch-down does not become a pan (after timeout interval), then snap-animation can be interrupted.
2063       mTouchDownTimeoutReached = false;
2064       mScrollInterrupted = false;
2065       StartTouchDownTimer();
2066     }
2067   }
2068   else if( ( pointState == PointState::UP ) ||
2069            ( ( pointState == PointState::INTERRUPTED ) && ( touch.GetHitActor( 0 )== Self() ) ) )
2070   {
2071     DALI_LOG_SCROLL_STATE("[0x%X] %s", this, ( ( pointState == TouchPoint::Up ) ? "Up" : "Interrupted" ) );
2072
2073     StopTouchDownTimer();
2074
2075     // if the user touches and releases without enough movement to go
2076     // into a gesture state, then we should snap to nearest point.
2077     // otherwise our scroll could be stopped (interrupted) half way through an animation.
2078     if(mGestureStackDepth==0 && mTouchDownTimeoutReached)
2079     {
2080       if( ( pointState == PointState::INTERRUPTED ) ||
2081           ( ( touch.GetTime() - mTouchDownTime ) >= MINIMUM_TIME_BETWEEN_DOWN_AND_UP_FOR_RESET ) )
2082       {
2083         // Reset the velocity only if down was received a while ago
2084         mLastVelocity = Vector2( 0.0f, 0.0f );
2085       }
2086
2087       UpdateLocalScrollProperties();
2088       // Only finish the transform if scrolling was interrupted on down or if we are scrolling
2089       if ( mScrollInterrupted || mScrolling )
2090       {
2091         DALI_LOG_SCROLL_STATE("[0x%X] Calling FinishTransform", this);
2092
2093         FinishTransform();
2094       }
2095     }
2096     mTouchDownTimeoutReached = false;
2097     mScrollInterrupted = false;
2098   }
2099
2100   return true;
2101 }
2102
2103 bool ScrollView::OnWheelEvent(const WheelEvent& event)
2104 {
2105   if(!mSensitive)
2106   {
2107     // Ignore this wheel event, if scrollview is insensitive.
2108     return false;
2109   }
2110
2111   Vector2 targetScrollPosition = GetPropertyPosition();
2112
2113   if(mRulerX->IsEnabled() && !mRulerY->IsEnabled())
2114   {
2115     // If only the ruler in the X axis is enabled, scroll in the X axis.
2116     if(mRulerX->GetType() == Ruler::Free)
2117     {
2118       // Free panning mode
2119       targetScrollPosition.x += event.z * mWheelScrollDistanceStep.x;
2120       ClampPosition(targetScrollPosition);
2121       ScrollTo(-targetScrollPosition);
2122     }
2123     else if(!mScrolling)
2124     {
2125       // Snap mode, only respond to the event when the previous snap animation is finished.
2126       ScrollTo(GetCurrentPage() - event.z);
2127     }
2128   }
2129   else
2130   {
2131     // If the ruler in the Y axis is enabled, scroll in the Y axis.
2132     if(mRulerY->GetType() == Ruler::Free)
2133     {
2134       // Free panning mode
2135       targetScrollPosition.y += event.z * mWheelScrollDistanceStep.y;
2136       ClampPosition(targetScrollPosition);
2137       ScrollTo(-targetScrollPosition);
2138     }
2139     else if(!mScrolling)
2140     {
2141       // Snap mode, only respond to the event when the previous snap animation is finished.
2142       ScrollTo(GetCurrentPage() - event.z * mRulerX->GetTotalPages());
2143     }
2144   }
2145
2146   return true;
2147 }
2148
2149 void ScrollView::ResetScrolling()
2150 {
2151   Actor self = Self();
2152   self.GetProperty(Toolkit::ScrollView::Property::SCROLL_POSITION).Get(mScrollPostPosition);
2153   mScrollPrePosition = mScrollPostPosition;
2154   DALI_LOG_SCROLL_STATE("[0x%X] Setting SCROLL_PRE_POSITION To[%.2f, %.2f]", this, mScrollPostPosition.x, mScrollPostPosition.y );
2155   self.SetProperty(Toolkit::ScrollView::Property::SCROLL_PRE_POSITION, mScrollPostPosition);
2156 }
2157
2158 void ScrollView::UpdateLocalScrollProperties()
2159 {
2160   Actor self = Self();
2161   self.GetProperty(Toolkit::ScrollView::Property::SCROLL_PRE_POSITION).Get(mScrollPrePosition);
2162   self.GetProperty(Toolkit::ScrollView::Property::SCROLL_POSITION).Get(mScrollPostPosition);
2163 }
2164
2165 // private functions
2166
2167 void ScrollView::PreAnimatedScrollSetup()
2168 {
2169   // SCROLL_PRE_POSITION is our unclamped property with wrapping
2170   // SCROLL_POSITION is our final scroll position after clamping
2171
2172   Actor self = Self();
2173
2174   Vector2 deltaPosition(mScrollPostPosition);
2175   WrapPosition(mScrollPostPosition);
2176   mDomainOffset += deltaPosition - mScrollPostPosition;
2177   Self().SetProperty(Toolkit::ScrollView::Property::SCROLL_DOMAIN_OFFSET, mDomainOffset);
2178
2179   if( mScrollStateFlags & SCROLL_X_STATE_MASK )
2180   {
2181     // already performing animation on internal x position
2182     StopAnimation(mInternalXAnimation);
2183   }
2184
2185   if( mScrollStateFlags & SCROLL_Y_STATE_MASK )
2186   {
2187     // already performing animation on internal y position
2188     StopAnimation(mInternalYAnimation);
2189   }
2190
2191   mScrollStateFlags = 0;
2192
2193   // Update Actor position with this wrapped value.
2194 }
2195
2196 void ScrollView::FinaliseAnimatedScroll()
2197 {
2198   // TODO - common animation finishing code in here
2199 }
2200
2201 void ScrollView::AnimateInternalXTo( float position, float duration, AlphaFunction alpha )
2202 {
2203   StopAnimation(mInternalXAnimation);
2204
2205   if( duration > Math::MACHINE_EPSILON_10 )
2206   {
2207     Actor self = Self();
2208     DALI_LOG_SCROLL_STATE("[0x%X], Animating from[%.2f] to[%.2f]", this, self.GetProperty(Toolkit::ScrollView::Property::SCROLL_PRE_POSITION).Get<Vector2>().x, position );
2209     mInternalXAnimation = Animation::New(duration);
2210     DALI_LOG_SCROLL_STATE("[0x%X], mInternalXAnimation[0x%X]", this, mInternalXAnimation.GetObjectPtr() );
2211     mInternalXAnimation.FinishedSignal().Connect(this, &ScrollView::OnScrollAnimationFinished);
2212     mInternalXAnimation.AnimateTo( Property(self, Toolkit::ScrollView::Property::SCROLL_PRE_POSITION, 0), position, alpha, TimePeriod(duration));
2213     mInternalXAnimation.Play();
2214
2215     // erase current state flags
2216     mScrollStateFlags &= ~SCROLL_X_STATE_MASK;
2217     // add internal animation state flag
2218     mScrollStateFlags |= AnimatingInternalX;
2219   }
2220 }
2221
2222 void ScrollView::AnimateInternalYTo( float position, float duration, AlphaFunction alpha )
2223 {
2224   StopAnimation(mInternalYAnimation);
2225
2226   if( duration > Math::MACHINE_EPSILON_10 )
2227   {
2228     Actor self = Self();
2229     DALI_LOG_SCROLL_STATE("[0x%X], Animating from[%.2f] to[%.2f]", this, self.GetProperty(Toolkit::ScrollView::Property::SCROLL_PRE_POSITION).Get<Vector2>().y, position );
2230     mInternalYAnimation = Animation::New(duration);
2231     DALI_LOG_SCROLL_STATE("[0x%X], mInternalYAnimation[0x%X]", this, mInternalYAnimation.GetObjectPtr() );
2232     mInternalYAnimation.FinishedSignal().Connect(this, &ScrollView::OnScrollAnimationFinished);
2233     mInternalYAnimation.AnimateTo( Property(self, Toolkit::ScrollView::Property::SCROLL_PRE_POSITION, 1), position, alpha, TimePeriod(duration));
2234     mInternalYAnimation.Play();
2235
2236     // erase current state flags
2237     mScrollStateFlags &= ~SCROLL_Y_STATE_MASK;
2238     // add internal animation state flag
2239     mScrollStateFlags |= AnimatingInternalY;
2240   }
2241 }
2242
2243 void ScrollView::OnScrollAnimationFinished( Animation& source )
2244 {
2245   // Guard against destruction during signal emission
2246   // Note that ScrollCompletedSignal is emitted from HandleSnapAnimationFinished()
2247   Toolkit::ScrollView handle( GetOwner() );
2248
2249   bool scrollingFinished = false;
2250
2251   // update our local scroll positions
2252   UpdateLocalScrollProperties();
2253
2254   if( source == mInternalXAnimation )
2255   {
2256     DALI_LOG_SCROLL_STATE("[0x%X] mInternalXAnimation[0x%X], expected[%.2f], actual[%.2f], post[%.2f]", this, mInternalXAnimation.GetObjectPtr(), mScrollTargetPosition.x, Self().GetProperty(SCROLL_PRE_POSITION).Get<Vector2>().x, mScrollPostPosition.x );
2257
2258     if( !(mScrollStateFlags & AnimatingInternalY) )
2259     {
2260       scrollingFinished = true;
2261     }
2262     mInternalXAnimation.Reset();
2263     // wrap pre scroll x position and set it
2264     if( mWrapMode )
2265     {
2266       const RulerDomain rulerDomain = mRulerX->GetDomain();
2267       mScrollPrePosition.x = -WrapInDomain(-mScrollPrePosition.x, rulerDomain.min, rulerDomain.max);
2268       DALI_LOG_SCROLL_STATE("[0x%X] Setting SCROLL_PRE_POSITION To[%.2f, %.2f]", this, mScrollPrePosition.x, mScrollPrePosition.y );
2269       handle.SetProperty(Toolkit::ScrollView::Property::SCROLL_PRE_POSITION, mScrollPrePosition);
2270     }
2271     SnapInternalXTo(mScrollPostPosition.x);
2272   }
2273
2274   if( source == mInternalYAnimation )
2275   {
2276     DALI_LOG_SCROLL_STATE("[0x%X] mInternalYAnimation[0x%X], expected[%.2f], actual[%.2f], post[%.2f]", this, mInternalYAnimation.GetObjectPtr(), mScrollTargetPosition.y, Self().GetProperty(SCROLL_PRE_POSITION).Get<Vector2>().y, mScrollPostPosition.y );
2277
2278     if( !(mScrollStateFlags & AnimatingInternalX) )
2279     {
2280       scrollingFinished = true;
2281     }
2282     mInternalYAnimation.Reset();
2283     if( mWrapMode )
2284     {
2285       // wrap pre scroll y position and set it
2286       const RulerDomain rulerDomain = mRulerY->GetDomain();
2287       mScrollPrePosition.y = -WrapInDomain(-mScrollPrePosition.y, rulerDomain.min, rulerDomain.max);
2288       DALI_LOG_SCROLL_STATE("[0x%X] Setting SCROLL_PRE_POSITION To[%.2f, %.2f]", this, mScrollPrePosition.x, mScrollPrePosition.y );
2289       handle.SetProperty(Toolkit::ScrollView::Property::SCROLL_PRE_POSITION, mScrollPrePosition);
2290     }
2291     SnapInternalYTo(mScrollPostPosition.y);
2292   }
2293
2294   DALI_LOG_SCROLL_STATE("[0x%X] scrollingFinished[%d] Animation[0x%X]", this, scrollingFinished, source.GetObjectPtr());
2295
2296   if(scrollingFinished)
2297   {
2298     HandleSnapAnimationFinished();
2299   }
2300 }
2301
2302 void ScrollView::OnSnapInternalPositionFinished( Animation& source )
2303 {
2304   Actor self = Self();
2305   UpdateLocalScrollProperties();
2306   if( source == mInternalXAnimation )
2307   {
2308     DALI_LOG_SCROLL_STATE("[0x%X] Finished X PostPosition Animation", this );
2309
2310     // clear internal x animation flags
2311     mScrollStateFlags &= ~SCROLL_X_STATE_MASK;
2312     mInternalXAnimation.Reset();
2313     WrapPosition(mScrollPrePosition);
2314   }
2315   if( source == mInternalYAnimation )
2316   {
2317     DALI_LOG_SCROLL_STATE("[0x%X] Finished Y PostPosition Animation", this );
2318
2319     mScrollStateFlags &= ~SCROLL_Y_STATE_MASK;
2320     mInternalYAnimation.Reset();
2321     WrapPosition(mScrollPrePosition);
2322   }
2323 }
2324
2325 void ScrollView::SnapInternalXTo(float position)
2326 {
2327   Actor self = Self();
2328
2329   StopAnimation(mInternalXAnimation);
2330
2331   // erase current state flags
2332   mScrollStateFlags &= ~SCROLL_X_STATE_MASK;
2333
2334   // if internal x not equal to inputed parameter, animate it
2335   float duration = std::min(fabsf((position - mScrollPrePosition.x) / mMaxOvershoot.x) * mSnapOvershootDuration, mSnapOvershootDuration);
2336   DALI_LOG_SCROLL_STATE("[0x%X] duration[%.2f]", this, duration );
2337   if( duration > Math::MACHINE_EPSILON_1 )
2338   {
2339     DALI_LOG_SCROLL_STATE("[0x%X] Starting X Snap Animation to[%.2f]", this, position );
2340
2341     mInternalXAnimation = Animation::New(duration);
2342     mInternalXAnimation.FinishedSignal().Connect(this, &ScrollView::OnSnapInternalPositionFinished);
2343     mInternalXAnimation.AnimateTo(Property(self, Toolkit::ScrollView::Property::SCROLL_PRE_POSITION, 0), position);
2344     mInternalXAnimation.Play();
2345
2346     // add internal animation state flag
2347     mScrollStateFlags |= SnappingInternalX;
2348   }
2349 }
2350
2351 void ScrollView::SnapInternalYTo(float position)
2352 {
2353   Actor self = Self();
2354
2355   StopAnimation(mInternalYAnimation);
2356
2357   // erase current state flags
2358   mScrollStateFlags &= ~SCROLL_Y_STATE_MASK;
2359
2360   // if internal y not equal to inputed parameter, animate it
2361   float duration = std::min(fabsf((position - mScrollPrePosition.y) / mMaxOvershoot.y) * mSnapOvershootDuration, mSnapOvershootDuration);
2362   DALI_LOG_SCROLL_STATE("[0x%X] duration[%.2f]", this, duration );
2363   if( duration > Math::MACHINE_EPSILON_1 )
2364   {
2365     DALI_LOG_SCROLL_STATE("[0x%X] Starting Y Snap Animation to[%.2f]", this, position );
2366
2367     mInternalYAnimation = Animation::New(duration);
2368     mInternalYAnimation.FinishedSignal().Connect(this, &ScrollView::OnSnapInternalPositionFinished);
2369     mInternalYAnimation.AnimateTo(Property(self, Toolkit::ScrollView::Property::SCROLL_PRE_POSITION, 1), position);
2370     mInternalYAnimation.Play();
2371
2372     // add internal animation state flag
2373     mScrollStateFlags |= SnappingInternalY;
2374   }
2375 }
2376
2377 void ScrollView::GestureStarted()
2378 {
2379   // we handle the first gesture.
2380   // if we're currently doing a gesture and receive another
2381   // we continue and combine the effects of the gesture instead of reseting.
2382   if(mGestureStackDepth++==0)
2383   {
2384     Actor self = Self();
2385     StopTouchDownTimer();
2386     StopAnimation();
2387     mPanDelta = Vector2::ZERO;
2388     mLastVelocity = Vector2::ZERO;
2389     if( !mScrolling )
2390     {
2391       mLockAxis = LockPossible;
2392     }
2393
2394     if( mScrollStateFlags & SCROLL_X_STATE_MASK )
2395     {
2396       StopAnimation(mInternalXAnimation);
2397     }
2398     if( mScrollStateFlags & SCROLL_Y_STATE_MASK )
2399     {
2400       StopAnimation(mInternalYAnimation);
2401     }
2402     mScrollStateFlags = 0;
2403
2404     if(mScrolling) // are we interrupting a current scroll?
2405     {
2406       // set mScrolling to false, in case user has code that interrogates mScrolling Getter() in complete.
2407       mScrolling = false;
2408       // send negative scroll position since scroll internal scroll position works as an offset for actors,
2409       // give applications the position within the domain from the scroll view's anchor position
2410       DALI_LOG_SCROLL_STATE("[0x%X] mScrollCompletedSignal 5 [%.2f, %.2f]", this, -mScrollPostPosition.x, -mScrollPostPosition.y);
2411       mScrollCompletedSignal.Emit( -mScrollPostPosition );
2412     }
2413   }
2414 }
2415
2416 void ScrollView::GestureContinuing(const Vector2& panDelta)
2417 {
2418   mPanDelta.x+= panDelta.x;
2419   mPanDelta.y+= panDelta.y;
2420
2421   // Save the velocity, there is a bug in PanGesture
2422   // Whereby the Gesture::Finished's velocity is either:
2423   // NaN (due to time delta of zero between the last two events)
2424   // or 0 (due to position being the same between the last two events)
2425
2426   // Axis Auto Lock - locks the panning to the horizontal or vertical axis if the pan
2427   // appears mostly horizontal or mostly vertical respectively.
2428   if(mAxisAutoLock)
2429   {
2430     mLockAxis = GetLockAxis(mPanDelta, mLockAxis, mAxisAutoLockGradient);
2431   } // end if mAxisAutoLock
2432 }
2433
2434 // TODO: Upgrade to use a more powerful gesture detector (one that supports multiple touches on pan - so works as pan and flick gesture)
2435 // BUG: Gesture::Finished doesn't always return velocity on release (due to
2436 // timeDelta between last two events being 0 sometimes, or posiiton being the same)
2437 void ScrollView::OnPan( const PanGesture& gesture )
2438 {
2439   // Guard against destruction during signal emission
2440   // Note that Emit() methods are called indirectly e.g. from within ScrollView::OnGestureEx()
2441   Actor self( Self() );
2442
2443   if(!mSensitive)
2444   {
2445     DALI_LOG_SCROLL_STATE("[0x%X] Pan Ignored, Insensitive", this);
2446
2447     // If another callback on the same original signal disables sensitivity,
2448     // this callback will still be called, so we must suppress it.
2449     return;
2450   }
2451
2452   // translate Gesture input to get useful data...
2453   switch(gesture.state)
2454   {
2455     case Gesture::Started:
2456     {
2457       DALI_LOG_SCROLL_STATE("[0x%X] Pan Started", this);
2458       mPanStartPosition = gesture.position - gesture.displacement;
2459       UpdateLocalScrollProperties();
2460       GestureStarted();
2461       mPanning = true;
2462       self.SetProperty( Toolkit::ScrollView::Property::PANNING, true );
2463       self.SetProperty( Toolkit::ScrollView::Property::START_PAGE_POSITION, Vector3(gesture.position.x, gesture.position.y, 0.0f) );
2464
2465       UpdateMainInternalConstraint();
2466       break;
2467     }
2468
2469     case Gesture::Continuing:
2470     {
2471       if ( mPanning )
2472       {
2473         DALI_LOG_SCROLL_STATE("[0x%X] Pan Continuing", this);
2474         GestureContinuing(gesture.screenDisplacement);
2475       }
2476       else
2477       {
2478         // If we do not think we are panning, then we should not do anything here
2479         return;
2480       }
2481       break;
2482     }
2483
2484     case Gesture::Finished:
2485     case Gesture::Cancelled:
2486     {
2487       if ( mPanning )
2488       {
2489         DALI_LOG_SCROLL_STATE("[0x%X] Pan %s", this, ( ( gesture.state == Gesture::Finished ) ? "Finished" : "Cancelled" ) );
2490
2491         UpdateLocalScrollProperties();
2492         mLastVelocity = gesture.velocity;
2493         mPanning = false;
2494         self.SetProperty( Toolkit::ScrollView::Property::PANNING, false );
2495
2496         if( mScrollMainInternalPrePositionConstraint )
2497         {
2498           mScrollMainInternalPrePositionConstraint.Remove();
2499         }
2500       }
2501       else
2502       {
2503         // If we do not think we are panning, then we should not do anything here
2504         return;
2505       }
2506       break;
2507     }
2508
2509     case Gesture::Possible:
2510     case Gesture::Clear:
2511     {
2512       // Nothing to do, not needed.
2513       break;
2514     }
2515
2516   } // end switch(gesture.state)
2517
2518   OnGestureEx(gesture.state);
2519 }
2520
2521 void ScrollView::OnGestureEx(Gesture::State state)
2522 {
2523   // call necessary signals for application developer
2524
2525   if(state == Gesture::Started)
2526   {
2527     Vector2 currentScrollPosition = GetCurrentScrollPosition();
2528     Self().SetProperty(Toolkit::ScrollView::Property::SCROLLING, true);
2529     mScrolling = true;
2530     DALI_LOG_SCROLL_STATE("[0x%X] mScrollStartedSignal 2 [%.2f, %.2f]", this, currentScrollPosition.x, currentScrollPosition.y);
2531     mScrollStartedSignal.Emit( currentScrollPosition );
2532   }
2533   else if( (state == Gesture::Finished) ||
2534            (state == Gesture::Cancelled) ) // Finished/default
2535   {
2536     // when all the gestures have finished, we finish the transform.
2537     // so if a user decides to pan (1 gesture), and then pan+zoom (2 gestures)
2538     // then stop panning (back to 1 gesture), and then stop zooming (0 gestures).
2539     // this is the point we end, and perform necessary snapping.
2540     mGestureStackDepth--;
2541     if(mGestureStackDepth==0)
2542     {
2543       // no flick if we have not exceeded min flick distance
2544       if( (fabsf(mPanDelta.x) < mMinFlickDistance.x)
2545           && (fabsf(mPanDelta.y) < mMinFlickDistance.y) )
2546       {
2547         // reset flick velocity
2548         mLastVelocity = Vector2::ZERO;
2549       }
2550       FinishTransform();
2551     }
2552     else
2553     {
2554       DALI_LOG_SCROLL_STATE("[0x%X] mGestureStackDepth[%d]", this, mGestureStackDepth);
2555     }
2556   }
2557 }
2558
2559 void ScrollView::FinishTransform()
2560 {
2561   // at this stage internal x and x scroll position should have followed prescroll position exactly
2562   Actor self = Self();
2563
2564   PreAnimatedScrollSetup();
2565
2566   // convert pixels/millisecond to pixels per second
2567   bool animating = SnapWithVelocity(mLastVelocity * 1000.0f);
2568
2569   if(!animating)
2570   {
2571     // if not animating, then this pan has completed right now.
2572     SetScrollUpdateNotification(false);
2573     mScrolling = false;
2574     Self().SetProperty(Toolkit::ScrollView::Property::SCROLLING, false);
2575
2576     if( fabs(mScrollPrePosition.x - mScrollTargetPosition.x) > Math::MACHINE_EPSILON_10 )
2577     {
2578       SnapInternalXTo(mScrollTargetPosition.x);
2579     }
2580     if( fabs(mScrollPrePosition.y - mScrollTargetPosition.y) > Math::MACHINE_EPSILON_10 )
2581     {
2582       SnapInternalYTo(mScrollTargetPosition.y);
2583     }
2584     Vector2 currentScrollPosition = GetCurrentScrollPosition();
2585     DALI_LOG_SCROLL_STATE("[0x%X] mScrollCompletedSignal 6 [%.2f, %.2f]", this, currentScrollPosition.x, currentScrollPosition.y);
2586     mScrollCompletedSignal.Emit( currentScrollPosition );
2587   }
2588 }
2589
2590 Vector2 ScrollView::GetOvershoot(Vector2& position) const
2591 {
2592   Vector3 size = Self().GetCurrentSize();
2593   Vector2 overshoot;
2594
2595   const RulerDomain rulerDomainX = mRulerX->GetDomain();
2596   const RulerDomain rulerDomainY = mRulerY->GetDomain();
2597
2598   if(mRulerX->IsEnabled() && rulerDomainX.enabled)
2599   {
2600     const float left = rulerDomainX.min - position.x;
2601     const float right = size.width - rulerDomainX.max - position.x;
2602     if(left<0)
2603     {
2604       overshoot.x = left;
2605     }
2606     else if(right>0)
2607     {
2608       overshoot.x = right;
2609     }
2610   }
2611
2612   if(mRulerY->IsEnabled() && rulerDomainY.enabled)
2613   {
2614     const float top = rulerDomainY.min - position.y;
2615     const float bottom = size.height - rulerDomainY.max - position.y;
2616     if(top<0)
2617     {
2618       overshoot.y = top;
2619     }
2620     else if(bottom>0)
2621     {
2622       overshoot.y = bottom;
2623     }
2624   }
2625
2626   return overshoot;
2627 }
2628
2629 bool ScrollView::OnAccessibilityPan(PanGesture gesture)
2630 {
2631   // Keep track of whether this is an AccessibilityPan
2632   mInAccessibilityPan = true;
2633   OnPan(gesture);
2634   mInAccessibilityPan = false;
2635
2636   return true;
2637 }
2638
2639 void ScrollView::ClampPosition(Vector2& position) const
2640 {
2641   ClampState2D clamped;
2642   ClampPosition(position, clamped);
2643 }
2644
2645 void ScrollView::ClampPosition(Vector2& position, ClampState2D &clamped) const
2646 {
2647   Vector3 size = Self().GetCurrentSize();
2648
2649   position.x = -mRulerX->Clamp(-position.x, size.width, 1.0f, clamped.x);    // NOTE: X & Y rulers think in -ve coordinate system.
2650   position.y = -mRulerY->Clamp(-position.y, size.height, 1.0f, clamped.y);   // That is scrolling RIGHT (e.g. 100.0, 0.0) means moving LEFT.
2651 }
2652
2653 void ScrollView::WrapPosition(Vector2& position) const
2654 {
2655   if(mWrapMode)
2656   {
2657     const RulerDomain rulerDomainX = mRulerX->GetDomain();
2658     const RulerDomain rulerDomainY = mRulerY->GetDomain();
2659
2660     if(mRulerX->IsEnabled())
2661     {
2662       position.x = -WrapInDomain(-position.x, rulerDomainX.min, rulerDomainX.max);
2663     }
2664
2665     if(mRulerY->IsEnabled())
2666     {
2667       position.y = -WrapInDomain(-position.y, rulerDomainY.min, rulerDomainY.max);
2668     }
2669   }
2670 }
2671
2672 void ScrollView::UpdateMainInternalConstraint()
2673 {
2674   // TODO: Only update the constraints which have changed, rather than remove all and add all again.
2675   // Requires a dali-core ApplyConstraintAt, or a ReplaceConstraint. The former is probably more flexible.
2676   Actor self = Self();
2677   PanGestureDetector detector( GetPanGestureDetector() );
2678
2679   if(mScrollMainInternalPositionConstraint)
2680   {
2681     mScrollMainInternalPositionConstraint.Remove();
2682     mScrollMainInternalDeltaConstraint.Remove();
2683     mScrollMainInternalFinalConstraint.Remove();
2684     mScrollMainInternalRelativeConstraint.Remove();
2685     mScrollMainInternalDomainConstraint.Remove();
2686     mScrollMainInternalPrePositionMaxConstraint.Remove();
2687   }
2688   if( mScrollMainInternalPrePositionConstraint )
2689   {
2690     mScrollMainInternalPrePositionConstraint.Remove();
2691   }
2692
2693   // TODO: It's probably better to use a local displacement value as this will give a displacement when scrolling just commences
2694   // but we need to make sure than the gesture system gives displacement since last frame (60Hz), not displacement since last touch event (90Hz).
2695
2696   // 1. First calculate the pre-position (this is the scroll position if no clamping has taken place)
2697   Vector2 initialPanMask = Vector2(mRulerX->IsEnabled() ? 1.0f : 0.0f, mRulerY->IsEnabled() ? 1.0f : 0.0f);
2698
2699   if( mLockAxis == LockVertical )
2700   {
2701     initialPanMask.y = 0.0f;
2702   }
2703   else if( mLockAxis == LockHorizontal )
2704   {
2705     initialPanMask.x = 0.0f;
2706   }
2707
2708   if( mPanning )
2709   {
2710     mScrollMainInternalPrePositionConstraint = Constraint::New<Vector2>( self,
2711                                                                          Toolkit::ScrollView::Property::SCROLL_PRE_POSITION,
2712                                                                          InternalPrePositionConstraint( mPanStartPosition,
2713                                                                                                         initialPanMask,
2714                                                                                                         mAxisAutoLock,
2715                                                                                                         mAxisAutoLockGradient,
2716                                                                                                         mLockAxis,
2717                                                                                                         mMaxOvershoot,
2718                                                                                                         mRulerX,
2719                                                                                                         mRulerY ) );
2720     mScrollMainInternalPrePositionConstraint.AddSource( Source( detector, PanGestureDetector::Property::LOCAL_POSITION ) );
2721     mScrollMainInternalPrePositionConstraint.AddSource( Source( detector, PanGestureDetector::Property::PANNING ) );
2722     mScrollMainInternalPrePositionConstraint.AddSource( Source( self, Actor::Property::SIZE ) );
2723     mScrollMainInternalPrePositionConstraint.Apply();
2724   }
2725
2726   // 2. Second calculate the clamped position (actual position)
2727   mScrollMainInternalPositionConstraint = Constraint::New<Vector2>( self,
2728                                                                     Toolkit::ScrollView::Property::SCROLL_POSITION,
2729                                                                     InternalPositionConstraint( mRulerX->GetDomain(),
2730                                                                                                 mRulerY->GetDomain(),
2731                                                                                                 mWrapMode ) );
2732   mScrollMainInternalPositionConstraint.AddSource( LocalSource( Toolkit::ScrollView::Property::SCROLL_PRE_POSITION ) );
2733   mScrollMainInternalPositionConstraint.AddSource( LocalSource( Toolkit::Scrollable::Property::SCROLL_POSITION_MIN ) );
2734   mScrollMainInternalPositionConstraint.AddSource( LocalSource( Toolkit::Scrollable::Property::SCROLL_POSITION_MAX ) );
2735   mScrollMainInternalPositionConstraint.AddSource( Source( self, Actor::Property::SIZE ) );
2736   mScrollMainInternalPositionConstraint.Apply();
2737
2738   mScrollMainInternalDeltaConstraint = Constraint::New<Vector2>( self, Toolkit::ScrollView::Property::SCROLL_POSITION_DELTA, InternalPositionDeltaConstraint );
2739   mScrollMainInternalDeltaConstraint.AddSource( LocalSource( Toolkit::ScrollView::Property::SCROLL_POSITION ) );
2740   mScrollMainInternalDeltaConstraint.AddSource( LocalSource( Toolkit::ScrollView::Property::SCROLL_DOMAIN_OFFSET ) );
2741   mScrollMainInternalDeltaConstraint.Apply();
2742
2743   mScrollMainInternalFinalConstraint = Constraint::New<Vector2>( self, Toolkit::ScrollView::Property::SCROLL_FINAL,
2744                                                                  InternalFinalConstraint( FinalDefaultAlphaFunction,
2745                                                                                           FinalDefaultAlphaFunction ) );
2746   mScrollMainInternalFinalConstraint.AddSource( LocalSource( Toolkit::ScrollView::Property::SCROLL_POSITION ) );
2747   mScrollMainInternalFinalConstraint.AddSource( LocalSource( Toolkit::ScrollView::Property::OVERSHOOT_X ) );
2748   mScrollMainInternalFinalConstraint.AddSource( LocalSource( Toolkit::ScrollView::Property::OVERSHOOT_Y ) );
2749   mScrollMainInternalFinalConstraint.Apply();
2750
2751   mScrollMainInternalRelativeConstraint = Constraint::New<Vector2>( self, Toolkit::Scrollable::Property::SCROLL_RELATIVE_POSITION, InternalRelativePositionConstraint );
2752   mScrollMainInternalRelativeConstraint.AddSource( LocalSource( Toolkit::ScrollView::Property::SCROLL_POSITION ) );
2753   mScrollMainInternalRelativeConstraint.AddSource( LocalSource( Toolkit::Scrollable::Property::SCROLL_POSITION_MIN ) );
2754   mScrollMainInternalRelativeConstraint.AddSource( LocalSource( Toolkit::Scrollable::Property::SCROLL_POSITION_MAX ) );
2755   mScrollMainInternalRelativeConstraint.AddSource( LocalSource( Actor::Property::SIZE ) );
2756   mScrollMainInternalRelativeConstraint.Apply();
2757
2758   mScrollMainInternalDomainConstraint = Constraint::New<Vector2>( self, Toolkit::ScrollView::Property::SCROLL_DOMAIN_SIZE, InternalScrollDomainConstraint );
2759   mScrollMainInternalDomainConstraint.AddSource( LocalSource( Toolkit::Scrollable::Property::SCROLL_POSITION_MIN ) );
2760   mScrollMainInternalDomainConstraint.AddSource( LocalSource( Toolkit::Scrollable::Property::SCROLL_POSITION_MAX ) );
2761   mScrollMainInternalDomainConstraint.AddSource( LocalSource( Actor::Property::SIZE ) );
2762   mScrollMainInternalDomainConstraint.Apply();
2763
2764   mScrollMainInternalPrePositionMaxConstraint = Constraint::New<Vector2>( self, Toolkit::ScrollView::Property::SCROLL_PRE_POSITION_MAX, InternalPrePositionMaxConstraint );
2765   mScrollMainInternalPrePositionMaxConstraint.AddSource( LocalSource( Toolkit::Scrollable::Property::SCROLL_POSITION_MAX ) );
2766   mScrollMainInternalPrePositionMaxConstraint.AddSource( LocalSource( Actor::Property::SIZE ) );
2767   mScrollMainInternalPrePositionMaxConstraint.Apply();
2768
2769   // When panning we want to make sure overshoot values are affected by pre position and post position
2770   SetOvershootConstraintsEnabled(!mWrapMode);
2771 }
2772
2773 void ScrollView::SetOvershootConstraintsEnabled(bool enabled)
2774 {
2775   Actor self( Self() );
2776   // remove and reset, it may now be in wrong order with the main internal constraints
2777   if( mScrollMainInternalOvershootXConstraint )
2778   {
2779     mScrollMainInternalOvershootXConstraint.Remove();
2780     mScrollMainInternalOvershootXConstraint.Reset();
2781     mScrollMainInternalOvershootYConstraint.Remove();
2782     mScrollMainInternalOvershootYConstraint.Reset();
2783   }
2784   if( enabled )
2785   {
2786     mScrollMainInternalOvershootXConstraint= Constraint::New<float>( self, Toolkit::ScrollView::Property::OVERSHOOT_X, OvershootXConstraint(mMaxOvershoot.x) );
2787     mScrollMainInternalOvershootXConstraint.AddSource( LocalSource( Toolkit::ScrollView::Property::SCROLL_PRE_POSITION ) );
2788     mScrollMainInternalOvershootXConstraint.AddSource( LocalSource( Toolkit::ScrollView::Property::SCROLL_POSITION ) );
2789     mScrollMainInternalOvershootXConstraint.AddSource( LocalSource( Toolkit::Scrollable::Property::CAN_SCROLL_HORIZONTAL ) );
2790     mScrollMainInternalOvershootXConstraint.Apply();
2791
2792     mScrollMainInternalOvershootYConstraint = Constraint::New<float>( self, Toolkit::ScrollView::Property::OVERSHOOT_Y, OvershootYConstraint(mMaxOvershoot.y) );
2793     mScrollMainInternalOvershootYConstraint.AddSource( LocalSource( Toolkit::ScrollView::Property::SCROLL_PRE_POSITION ) );
2794     mScrollMainInternalOvershootYConstraint.AddSource( LocalSource( Toolkit::ScrollView::Property::SCROLL_POSITION ) );
2795     mScrollMainInternalOvershootYConstraint.AddSource( LocalSource( Toolkit::Scrollable::Property::CAN_SCROLL_VERTICAL ) );
2796     mScrollMainInternalOvershootYConstraint.Apply();
2797   }
2798   else
2799   {
2800     self.SetProperty(Toolkit::ScrollView::Property::OVERSHOOT_X, 0.0f);
2801     self.SetProperty(Toolkit::ScrollView::Property::OVERSHOOT_Y, 0.0f);
2802   }
2803 }
2804
2805 void ScrollView::SetInternalConstraints()
2806 {
2807   // Internal constraints (applied to target ScrollBase Actor itself) /////////
2808   UpdateMainInternalConstraint();
2809
2810   // User definable constraints to apply to all child actors //////////////////
2811   Actor self = Self();
2812
2813   // Apply some default constraints to ScrollView & its bound actors
2814   // Movement + Wrap function
2815
2816   Constraint constraint;
2817
2818   // MoveActor (scrolling)
2819   constraint = Constraint::New<Vector3>( self, Actor::Property::POSITION, MoveActorConstraint );
2820   constraint.AddSource( Source( self, Toolkit::ScrollView::Property::SCROLL_POSITION ) );
2821   constraint.SetRemoveAction(Constraint::Discard);
2822   ApplyConstraintToBoundActors(constraint);
2823
2824   // WrapActor (wrap functionality)
2825   constraint = Constraint::New<Vector3>( self, Actor::Property::POSITION, WrapActorConstraint );
2826   constraint.AddSource( LocalSource( Actor::Property::SCALE ) );
2827   constraint.AddSource( LocalSource( Actor::Property::ANCHOR_POINT ) );
2828   constraint.AddSource( LocalSource( Actor::Property::SIZE ) );
2829   constraint.AddSource( Source( self, Toolkit::Scrollable::Property::SCROLL_POSITION_MIN ) );
2830   constraint.AddSource( Source( self, Toolkit::Scrollable::Property::SCROLL_POSITION_MAX ) );
2831   constraint.AddSource( Source( self, Toolkit::ScrollView::Property::WRAP ) );
2832   constraint.SetRemoveAction(Constraint::Discard);
2833   ApplyConstraintToBoundActors(constraint);
2834 }
2835
2836 void ScrollView::SetProperty( BaseObject* object, Property::Index index, const Property::Value& value )
2837 {
2838   Toolkit::ScrollView scrollView = Toolkit::ScrollView::DownCast( Dali::BaseHandle( object ) );
2839
2840   if( scrollView )
2841   {
2842     ScrollView& scrollViewImpl( GetImpl( scrollView ) );
2843     switch( index )
2844     {
2845       case Toolkit::ScrollView::Property::WRAP_ENABLED:
2846       {
2847         scrollViewImpl.SetWrapMode( value.Get<bool>() );
2848         break;
2849       }
2850       case Toolkit::ScrollView::Property::PANNING_ENABLED:
2851       {
2852         scrollViewImpl.SetScrollSensitive( value.Get<bool>() );
2853         break;
2854       }
2855       case Toolkit::ScrollView::Property::AXIS_AUTO_LOCK_ENABLED:
2856       {
2857         scrollViewImpl.SetAxisAutoLock( value.Get<bool>() );
2858         break;
2859       }
2860       case Toolkit::ScrollView::Property::WHEEL_SCROLL_DISTANCE_STEP:
2861       {
2862         scrollViewImpl.SetWheelScrollDistanceStep( value.Get<Vector2>() );
2863         break;
2864       }
2865     }
2866   }
2867 }
2868
2869 Property::Value ScrollView::GetProperty( BaseObject* object, Property::Index index )
2870 {
2871   Property::Value value;
2872
2873   Toolkit::ScrollView scrollView = Toolkit::ScrollView::DownCast( Dali::BaseHandle( object ) );
2874
2875   if( scrollView )
2876   {
2877     ScrollView& scrollViewImpl( GetImpl( scrollView ) );
2878     switch( index )
2879     {
2880       case Toolkit::ScrollView::Property::WRAP_ENABLED:
2881       {
2882         value = scrollViewImpl.GetWrapMode();
2883         break;
2884       }
2885       case Toolkit::ScrollView::Property::PANNING_ENABLED:
2886       {
2887         value = scrollViewImpl.GetScrollSensitive();
2888         break;
2889       }
2890       case Toolkit::ScrollView::Property::AXIS_AUTO_LOCK_ENABLED:
2891       {
2892         value = scrollViewImpl.GetAxisAutoLock();
2893         break;
2894       }
2895       case Toolkit::ScrollView::Property::WHEEL_SCROLL_DISTANCE_STEP:
2896       {
2897         value = scrollViewImpl.GetWheelScrollDistanceStep();
2898         break;
2899       }
2900     }
2901   }
2902
2903   return value;
2904 }
2905
2906 } // namespace Internal
2907
2908 } // namespace Toolkit
2909
2910 } // namespace Dali