Remove ScrollViewCustomEffect
[platform/core/uifw/dali-toolkit.git] / base / dali-toolkit / public-api / controls / scrollable / scroll-view / scroll-view.h
1 #ifndef __DALI_TOOLKIT_SCROLL_VIEW_H__
2 #define __DALI_TOOLKIT_SCROLL_VIEW_H__
3
4 /*
5  * Copyright (c) 2014 Samsung Electronics Co., Ltd.
6  *
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  * http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  *
19  */
20
21 // INTERNAL INCLUDES
22 #include <dali-toolkit/public-api/controls/scrollable/scrollable.h>
23
24 namespace Dali
25 {
26
27 namespace Toolkit
28 {
29
30 namespace Internal DALI_INTERNAL
31 {
32 class ScrollView;
33 }
34
35 /**
36  * @brief The snap type
37  */
38 enum SnapType
39 {
40   Snap,  ///< Snap
41   Flick  ///< Flick
42 };
43
44 /**
45  * @brief DirectionBias types.
46  */
47 enum DirectionBias
48 {
49   DirectionBiasLeft  = -1,  ///< Bias scroll snap to Left
50   DirectionBiasNone  =  0,  ///< Don't bias scroll snap
51   DirectionBiasRight =  1   ///< Bias scroll snap to Right
52 };
53
54 /**
55  * @brief Used for specifying minimum/maximum extents of a ruler.
56  */
57 class DALI_IMPORT_API RulerDomain
58 {
59 public:
60
61   /**
62    * @brief Creates Ruler domain allowing a point to traverse between min and max extents.
63    *
64    * @param[in] min Minimum extent (point cannot traverse less than this)
65    * @param[in] max Maximum extent (point cannot traverse greater than this)
66    * @param[in] enabled Whether domain has been enabled or not.
67    */
68   explicit RulerDomain(float min, float max, bool enabled = true);
69
70 public:
71
72   float min;    ///< Minimum extent (point cannot traverse less than this)
73   float max;    ///< Maximum extent (point cannot traverse greater than this)
74   bool enabled; ///< Whether domain has been enabled or not.
75
76   /**
77    * @brief Clamps value (x) from (min) to (max).
78    *
79    * An optional length parameter can be specified to suggest that the
80    * subject is not a point but a line to that should be clamped.
81    *
82    * @param[in] x X point to be clamped between (min) and (max) extents.
83    * @param[in] length (optional) The Length of the line from (x) to (x + length) to be clamped.
84    * @param[in] scale Scaling parameter which treats domain as scaled in calculations.
85    * @return The clamped value.
86    */
87   float Clamp(float x, float length = 0.0f, float scale = 1.0f) const;
88
89   /**
90    * @brief Clamps value (x) from (min) to (max).
91    *
92    * An optional length parameter can be specified to suggest that the
93    * subject is not a point but a line to that should be clamped.
94    *
95    * @param[in] x X point to be clamped between (min) and (max) extents.
96    * @param[in] length (optional) The Length of the line from (x) to (x + length) to be clamped.
97    * @param[in] scale Scaling parameter which treats domain as scaled in calculations.
98    * @param[out] clamped Whether clamping occured and which size (None, Min or Max)
99    * @return The clamped value.
100    */
101   float Clamp(float x, float length, float scale, ClampState &clamped) const;
102
103   /**
104    * @brief Returns (max-min) size of ruler.
105    *
106    * @return The size of the ruler from min to max.
107    */
108   float GetSize() const;
109
110 };
111
112 /**
113  * @brief Abstract class to define scroll axes.
114  *
115  * It can specify whether they are traversable, where their snap
116  * points are and their domain.
117  */
118 class DALI_IMPORT_API Ruler : public RefObject
119 {
120 public:
121   /// @brief The type of the ruler
122   enum RulerType {
123     Fixed,  ///< A fixed ruler
124     Free    ///< A free ruler
125   };
126
127 public:
128
129   /**
130    * @brief Constructs ruler, default enabled, with limitless domain.
131    */
132   Ruler();
133
134   /**
135    * @brief Snaps (x) in accordance to the ruler settings.
136    *
137    * @param[in] x The input value on the ruler to be snapped.
138    * @param[in] bias (optional) The biasing employed for snapping
139    * 0 floor input (floor x) "Used for Flick Left"
140    * 0.5 round input (floor x + 0.5) "Used for Release"
141    * 1 ceil input (floor x + 1.0) "Used for Flick Right"
142    * @return The position of the one dimensional point passed in once snapped.
143    */
144   virtual float Snap(float x, float bias = 0.5f) const = 0;
145
146   /**
147    * @brief Returns position from page, based on whatever the ruler
148    * defines as a page.
149    *
150    * If (wrap) is true, then will set volume to the number of
151    * times page has exceeded the domain's volume (volume being the
152    * number of pages within the domain), while wrapping the position
153    * within the domain.
154    *
155    * @param[in] page The page index
156    * @param[out] volume The overflow volume when the page exceeds the domain (wrap must be enabled)
157    * @param[in] wrap Enable wrap mode
158    * @return The position representing this page point.
159    */
160   virtual float GetPositionFromPage(unsigned int page, unsigned int &volume, bool wrap) const = 0;
161
162   /**
163    * @brief Returns page from position, based on whatever the ruler
164    * defines as a page.
165    *
166    * If (wrap) is true, then will return a page wrapped within the domain.
167    *
168    * @param[in] position The position on the domain
169    * @param[in] wrap Enable wrap mode
170    * @return The page where this position resides.
171    */
172   virtual unsigned int GetPageFromPosition(float position, bool wrap) const = 0;
173
174   /**
175    * @brief Returns the total number of pages within this Ruler.
176    *
177    * @return The number of pages in the Ruler.
178    */
179   virtual unsigned int GetTotalPages() const = 0;
180
181 public:
182
183   /**
184    * @brief Gets the ruler type.
185    *
186    * @return The ruler type.
187    */
188   Ruler::RulerType GetType() const;
189
190   /**
191    * @brief Returns whether this axis has been enabled or not.
192    *
193    * @return true if axis is enabled
194    */
195   bool IsEnabled() const;
196
197   /**
198    * @brief Enables ruler (ruler must be enabled in order to traverse along it).
199    */
200   void Enable();
201
202   /**
203    * @brief Disables ruler.
204    */
205   void Disable();
206
207   /**
208    * @brief Sets Domain.
209    *
210    * @param[in] domain Ruler domain object.
211    */
212   void SetDomain(RulerDomain domain);
213
214   /**
215    * @brief Gets Domain.
216    *
217    * @return The domain
218    */
219   const RulerDomain &GetDomain() const;
220
221   /**
222    * @brief Disables Domain (minimum/maximum extents for this axis).
223    */
224   void DisableDomain();
225
226   /**
227    * @brief Clamps value (x) from (min) to (max).
228    *
229    * An optional length parameter can be specified to suggest that the
230    * subject is not a point but a line that should be clamped.
231    *
232    * @param[in] x X point to be clamped between (min) and (max) extents.
233    * @param[in] length (optional) The Length of the line from (x) to (x + length) to be clamped.
234    * @param[in] scale Scaling parameter which treats domain as scaled in calculations.
235    * @return The clamped value.
236    */
237   float Clamp(float x, float length = 0.0f, float scale = 1.0f) const;
238
239
240   /**
241    * @brief Clamps value (x) from (min) to (max).
242    *
243    * An optional length parameter can be specified to suggest that the
244    * subject is not a point but a line to that should be clamped.
245    *
246    * @param[in] x X point to be clamped between (min) and (max) extents.
247    * @param[in] length (optional) The Length of the line from (x) to (x + length) to be clamped.
248    * @param[in] scale Scaling parameter which treats domain as scaled in calculations.
249    * @param[out] clamped Whether clamping occured and which size (None, Min or Max)
250    * @return The clamped value.
251    */
252   float Clamp(float x, float length, float scale, ClampState &clamped) const;
253
254   /**
255    * @brief Snaps and Clamps (x) in accordance to ruler settings.
256    *
257    * @param[in] x value to be snapped in accordance to ruler snap value,
258    *            and clamped in accordance to the ruler's domain (if set).
259    * @param[in] bias (optional) The biasing employed for snapping
260    *            0 floor input (floor x) "Used for Flick Left"
261    *            0.5 round input (floor x + 0.5) "Used for Release"
262    *            1 ceil input (floor x + 1.0) "Used for Flick Right"
263    * @param[in] length (optional) The Length of the line from (x) to (x + length)
264    *            to be clamped.
265    * @param[in] scale Scaling parameter which treats domain as scaled in calculations.
266    * @return the clamped value after snapping
267    */
268   float SnapAndClamp(float x, float bias = 0.5f, float length = 0.0f, float scale = 1.0f) const;
269
270   /**
271    * @brief Snaps and Clamps (x) in accordance to ruler settings.
272    *
273    * @param[in] x value to be snapped in accordance to ruler snap value,
274    *            and clamped in accordance to the ruler's domain (if set).
275    * @param[in] bias (optional) The biasing employed for snapping
276    * 0 floor input (floor x) "Used for Flick Left"
277    * 0.5 round input (floor x + 0.5) "Used for Release"
278    * 1 ceil input (floor x + 1.0) "Used for Flick Right"
279    * @param[in] length (optional) The Length of the line from (x) to (x + length)
280    * to be clamped.
281    * @param[in] scale Scaling parameter which treats domain as scaled in calculations.
282    * @param[out] clamped Whether clamping occured and which size (None, Min or Max)
283    * @return The clamped value after snapping
284    */
285   float SnapAndClamp(float x, float bias, float length, float scale, ClampState &clamped) const;
286
287 protected:
288
289   /**
290    * @brief Destructor - A reference counted object may only be deleted by calling Unreference().
291    */
292   virtual ~Ruler();
293
294 protected:
295
296   RulerType mType;               ///< Type of Ruler (Fixed or Free).
297   bool mEnabled;                 ///< If the ruler is enabled.
298   RulerDomain mDomain;           ///< The domain of the ruler.
299
300 };
301
302 typedef IntrusivePtr<Ruler> RulerPtr; ///< Pointer to Dali::Toolkit::Ruler object
303
304 /**
305  * @brief Concrete implementation of Ruler that has no snapping and has one single page.
306  */
307 class DALI_IMPORT_API DefaultRuler : public Ruler
308 {
309 public:
310   /**
311    * @brief DefaultRuler constructor.
312    */
313   DefaultRuler();
314
315   /**
316    * @copydoc Toolkit::Ruler::Snap
317    */
318   virtual float Snap(float x, float bias) const;
319
320   /**
321    * @copydoc Toolkit::Ruler::GetPositionFromPage
322    */
323   virtual float GetPositionFromPage(unsigned int page, unsigned int &volume, bool wrap) const;
324
325   /**
326    * @copydoc Toolkit::Ruler::GetPageFromPosition
327    */
328   virtual unsigned int GetPageFromPosition(float position, bool wrap) const;
329
330   /**
331    * @copydoc Toolkit::Ruler::GetTotalPages
332    */
333   virtual unsigned int GetTotalPages() const;
334 };
335
336 /**
337  * @brief Concrete implementation of Ruler that has fixed snapping.
338  */
339 class DALI_IMPORT_API FixedRuler : public Ruler
340 {
341 public:
342   /**
343    * @brief Constructor
344    *
345    * @param[in] spacing The spacing between each interval on this ruler.
346    */
347   FixedRuler(float spacing = 1.0f);
348
349   /**
350    * @copydoc Toolkit::Ruler::Snap
351    */
352   virtual float Snap(float x, float bias) const;
353
354   /**
355    * @copydoc Toolkit::Ruler::GetPositionFromPage
356    */
357   virtual float GetPositionFromPage(unsigned int page, unsigned int &volume, bool wrap) const;
358
359   /**
360    * @copydoc Toolkit::Ruler::GetPageFromPosition
361    */
362   virtual unsigned int GetPageFromPosition(float position, bool wrap) const;
363
364   /**
365    * @copydoc Toolkit::Ruler::GetTotalPages
366    */
367   virtual unsigned int GetTotalPages() const;
368
369 private:
370   float mSpacing; ///< The spacing between each interval
371 };
372
373 class ScrollViewEffect;
374 class ScrollView;
375
376 /**
377  * @brief ScrollView contains actors that can be scrolled manually (via touch)
378  * or automatically.
379  */
380 class DALI_IMPORT_API ScrollView : public Scrollable
381 {
382 public:
383
384   // Custom properties
385
386   static const std::string SCROLL_PAGE_CURRENT;                         ///< Property, name "scroll-page-current",       type INT
387   static const std::string SCROLL_TIME_PROPERTY_NAME;                   ///< Property, name "scroll-time",               type FLOAT
388   static const std::string SCROLL_POSITION_PROPERTY_NAME;               ///< Property, name "scroll-position",           type VECTOR3
389   static const std::string SCROLL_PRE_POSITION_PROPERTY_NAME;           ///< Property, name "scroll-pre-position",       type VECTOR3
390   static const std::string SCROLL_OVERSHOOT_X_PROPERTY_NAME;            ///< Property, name "scroll-overshoot-x",         type float
391   static const std::string SCROLL_OVERSHOOT_Y_PROPERTY_NAME;            ///< Property, name "scroll-overshoot-y",         type float
392   static const std::string SCROLL_FINAL_PROPERTY_NAME;                  ///< Property, name "scroll-final",              type VECTOR3
393   static const std::string SCROLL_SCALE_PROPERTY_NAME;                  ///< Property, name "scroll-scale",              type VECTOR3
394   static const std::string SCROLL_WRAP_PROPERTY_NAME;                   ///< Property, name "scroll-wrap",               type BOOLEAN
395   static const std::string SCROLL_PANNING_PROPERTY_NAME;                ///< Property, name "scroll-panning",            type BOOLEAN
396   static const std::string SCROLL_SCROLLING_PROPERTY_NAME;              ///< Property, name "scroll-scrolling",          type BOOLEAN
397   static const std::string SCROLL_POSITION_DELTA_PROPERTY_NAME;         ///< Property, name "scroll-position-delta"      type VECTOR3
398   static const std::string SCROLL_START_PAGE_POSITION_PROPERTY_NAME;    ///< Property, name "scroll-start-page-position" type VECTOR3
399
400   // Default settings
401
402   static const float DEFAULT_SLOW_SNAP_ANIMATION_DURATION;              ///< Default Drag-Release animation time.
403   static const float DEFAULT_FAST_SNAP_ANIMATION_DURATION;              ///< Default Drag-Flick animation time.
404   static const float DEFAULT_SNAP_OVERSHOOT_DURATION;                   ///< Default Overshoot snapping animation time.
405   static const float DEFAULT_MAX_OVERSHOOT;                             ///< Default maximum allowed overshoot
406
407   static const float DEFAULT_AXIS_AUTO_LOCK_GRADIENT;                   ///< Default Axis-AutoLock gradient threshold. default is 0.36:1 (20 degrees)
408   static const float DEFAULT_FRICTION_COEFFICIENT;                      ///< Default Friction Co-efficient. (in stage diagonals per second)
409   static const float DEFAULT_FLICK_SPEED_COEFFICIENT;                   ///< Default Flick speed coefficient (multiples input touch velocity)
410   static const float DEFAULT_MAX_FLICK_SPEED;                           ///< Default Maximum flick speed. (in stage diagonals per second)
411
412   //Signal Names
413   static const char* const SIGNAL_SNAP_STARTED; ///< Name "snap-started"
414
415   /// Direction of transitions
416   enum EDirectionFlag
417   {
418     DirectionFlagLeft               = 0x01,
419     DirectionFlagRight              = 0x02,
420     DirectionFlagUp                 = 0x04,
421     DirectionFlagDown               = 0x08,
422     DirectionFlagTransitionOn       = 0x10,            ///< doesnt mean a page is moving towards centre, it affects whether the current page is using values for moving onto screen or off screen, if the user changes scroll direction we dont want things to flip over when in view
423     DirectionFlagTransitionOff      = 0x20,
424     DirectionFlagMask_Direction     = DirectionFlagLeft | DirectionFlagRight | DirectionFlagUp | DirectionFlagDown,
425     DirectionFlagMask_Transition    = DirectionFlagTransitionOn | DirectionFlagTransitionOff
426   };
427
428 public:
429
430   /**
431    * @brief Snap signal event's data.
432    */
433   struct SnapEvent
434   {
435     SnapType type;    ///< Current snap commencing
436     Vector3 position; ///< Target snap position
437     float duration;   ///< Duration of snap animation.
438   };
439
440   typedef SignalV2< void ( const SnapEvent& ) > SnapStartedSignalV2; ///< SnapStarted signal type
441
442   /**
443    * @brief Signal emitted when the ScrollView has started to snap or flick (it tells the target
444    * position, scale, rotation for the snap or flick)
445    */
446   SnapStartedSignalV2& SnapStartedSignal();
447
448 public:
449
450   /**
451    * @brief Creates an empty ScrollView handle.
452    */
453   ScrollView();
454
455   /**
456    * @brief Copy constructor.
457    *
458    * Creates another handle that points to the same real object
459    *
460    * @param[in] handle to copy from
461    */
462   ScrollView( const ScrollView& handle );
463
464   /**
465    * @brief Assignment operator.
466    *
467    * Changes this handle to point to another real object
468    * @param[in] handle The handle to copy from
469    * @return A reference to this
470    */
471   ScrollView& operator=( const ScrollView& handle );
472
473   /**
474    * @brief Destructor
475    *
476    * This is non-virtual since derived Handle types must not contain data or virtual methods.
477    */
478   ~ScrollView();
479
480   /**
481    * @brief Create an initialized ScrollView.
482    *
483    * @return A handle to a newly allocated Dali resource.
484    */
485   static ScrollView New();
486
487   /**
488    * @brief Downcast an Object handle to ScrollView.
489    *
490    * If handle points to a ScrollView the downcast produces valid
491    * handle. If not the returned handle is left uninitialized.
492    *
493    * @param[in] handle Handle to an object
494    * @return handle to a ScrollView or an uninitialized handle
495    */
496   static ScrollView DownCast( BaseHandle handle );
497
498 public:
499
500   /**
501    * @brief Get snap-animation's AlphaFunction.
502    *
503    * @return Current easing alpha function of the snap animation.
504    */
505   AlphaFunction GetScrollSnapAlphaFunction() const;
506
507   /**
508    * @brief Set snap-animation's AlphaFunction.
509    *
510    * @param[in] alpha Easing alpha function of the snap animation.
511    */
512   void SetScrollSnapAlphaFunction(AlphaFunction alpha);
513
514   /**
515    * @brief Get flick-animation's AlphaFunction.
516    *
517    * @return Current easing alpha function of the flick animation.
518    */
519   AlphaFunction GetScrollFlickAlphaFunction() const;
520
521   /**
522    * @brief Set flick-animation's AlphaFunction.
523    *
524    * @param[in] alpha Easing alpha function of the flick animation.
525    */
526   void SetScrollFlickAlphaFunction(AlphaFunction alpha);
527
528   /**
529    * @brief Gets the time for the scroll snap-animation.
530    *
531    * This animation occurs when the user drags, and releases.
532    *
533    * @return The time in seconds for the animation to take.
534    */
535   float GetScrollSnapDuration() const;
536
537   /**
538    * @brief Sets the time for the scroll snap-animation.
539    *
540    * This animation occurs when the user drags, and releases.
541    *
542    * @param[in] time The time in seconds for the animation to take.
543    */
544   void SetScrollSnapDuration(float time);
545
546   /**
547    * @brief Gets the time for the scroll flick-animation.
548    *
549    * This animation occurs when the user flicks scroll view.
550    *
551    * @return The time in seconds for the animation to take.
552    */
553   float GetScrollFlickDuration() const;
554
555   /**
556    * @brief Sets the time for the scroll flick-animation.
557    *
558    * This animation occurs when the user flicks scroll view.
559    *
560    * @param[in] time The time in seconds for the animation to take.
561    */
562   void SetScrollFlickDuration(float time);
563
564   /**
565    * @brief Set X axis ruler.
566    *
567    * Defines how scrolling horizontally is snapped, and
568    * the boundary (domain) in which the ScrollView can pan.
569    *
570    * @param[in] ruler The ruler to be used for the X axis
571    */
572   void SetRulerX(RulerPtr ruler);
573
574   /**
575    * @brief Set Y axis ruler.
576    *
577    * Defines how scrolling vertically is snapped, and the boundary
578    * (domain) in which the ScrollView can pan.
579    *
580    * @param[in] ruler The ruler to be used for the Y axis
581    */
582   void SetRulerY(RulerPtr ruler);
583
584   /**
585    * @brief Set Scroll's touch sensitivity.
586    *
587    * @note Unlike SetSensitive(), this determines whether this ScrollView
588    * should react (e.g. pan), without disrupting the sensitivity of it's children.
589    *
590    * @param[in] sensitive true to enable scroll, false to disable scrolling
591    */
592   void SetScrollSensitive(bool sensitive);
593
594   /**
595    * @brief Set maximum overshoot amount.
596    *
597    * The final overshoot value is within 0.0f to 1.0f, but the maximum
598    * overshoot is in pixels (e.g. if you scroll 75 pixels beyond the
599    * edge of a scrollable area and the maximum overshoot is 100 then
600    * the final overshoot value will be 0.75f)
601    *
602    * @param[in] overshootX the maximum number of horizontally scrolled pixels before overshoot X reaches 1.0f
603    * @param[in] overshootY the maximum number of vertically scrolled pixels before overshoot Y reaches 1.0f
604    */
605   void SetMaxOvershoot(float overshootX, float overshootY);
606
607   /**
608    * @brief Set Snap Overshoot animation's AlphaFunction.
609    *
610    * @param[in] alpha Easing alpha function of the overshoot snap animation.
611    */
612   void SetSnapOvershootAlphaFunction(AlphaFunction alpha);
613
614   /**
615    * @brief Set Snap Overshoot animation's Duration.
616    *
617    * @note Set duration to 0 seconds, to disable Animation.
618    *
619    * @param[in] duration The duration of the overshoot snap animation.
620    */
621   void SetSnapOvershootDuration(float duration);
622
623   /**
624    * @brief Sets Touches required for pan gestures.
625    *
626    * Panning requires number of touches to be within (minTouches) and
627    * (maxTouches).
628    *
629    * If (endOutside) is true, then outside this range of touches,
630    * the pan gesture will end and thus will snap.
631    *
632    * If (endOutside) is false, then outside this range of touches,
633    * the pan gesture will pause. but will not end until touches = 0.
634    *
635    * @param[in] minTouches Minimum touches for panning to occur.
636    * @param[out] maxTouches Maxiumum touches for panning to occur.
637    * @param[in] endOutside Whether to end the panning gesture outside of touch range
638    */
639   void SetTouchesRequiredForPanning(unsigned int minTouches = 1, unsigned int maxTouches = 1, bool endOutside = true);
640
641   /**
642    * @brief Enables or Disables Actor Auto-Snap mode.
643    *
644    * When Actor Auto-Snap mode has been enabled, ScrollView will automatically
645    * snap to the closest actor (The closest actor will appear in the center of
646    * the ScrollView).
647    *
648    * @param[in] enable Enables (true), or disables (false) Actor AutoSnap
649    */
650   void SetActorAutoSnap(bool enable);
651
652   /**
653    * @brief Enables or Disables Wrap mode for ScrollView contents.
654    *
655    * When enabled, the ScrollView contents are wrapped over the X/Y Domain.
656    *
657    * @note You must apply a position constraint that causes Wrapping
658    * to all children.
659    *
660    * @param[in] enable Enables (true), or disables (false) Wrap Mode.
661    */
662   void SetWrapMode(bool enable);
663
664   /**
665    * @brief Gets the current distance needed to scroll for ScrollUpdatedSignal to be emitted
666    *
667    * @return Current scroll update distance
668    */
669   int GetScrollUpdateDistance() const;
670
671   /**
672    * @brief Sets the distance needed to scroll for ScrollUpdatedSignal to be emitted
673    *
674    * The scroll update distance tells ScrollView how far to move before ScrollUpdatedSignal the informs application.
675    * Each time the ScrollView crosses this distance the signal will be emitted
676    *
677    * @param[in] distance The distance for ScrollView to move before emitting update signal
678    */
679   void SetScrollUpdateDistance(int distance);
680
681   /**
682    * @brief Returns state of Axis Auto Lock mode.
683    *
684    * @return Whether Axis Auto Lock mode has been enabled or not.
685    */
686   bool GetAxisAutoLock() const;
687
688   /**
689    * @brief Enables or Disables Axis Auto Lock mode for panning within the ScrollView.
690    *
691    * When enabled, any pan gesture that appears mostly horizontal or mostly
692    * vertical, will be automatically restricted to horizontal only or vertical
693    * only panning, until the pan gesture has completed.
694    *
695    * @param[in] enable Enables (true), or disables (false) AxisAutoLock mode.
696    */
697   void SetAxisAutoLock(bool enable);
698
699   /**
700    * @brief Gets the gradient threshold at which a panning gesture
701    * should be locked to the Horizontal or Vertical axis.
702    *
703    * @return The gradient, a value between 0.0 and 1.0f.
704    */
705   float GetAxisAutoLockGradient() const;
706
707   /**
708    * @brief Sets the gradient threshold at which a panning gesture should be locked to the
709    * Horizontal or Vertical axis.
710    *
711    * By default this is 0.36 (0.36:1) which means angles less than 20
712    * degrees to an axis will lock to that axis.
713    *
714    * @note: Specifying a value of 1.0 (the maximum value accepted) indicates that
715    * all panning gestures will auto-lock. Either to the horizontal or vertical axis.
716    *
717    * @param[in] gradient A value between 0.0 and 1.0 (auto-lock for all angles)
718    */
719   void SetAxisAutoLockGradient(float gradient);
720
721   /**
722    * @brief Gets the friction coefficient setting for ScrollView when
723    * flicking in free panning mode.
724    *
725    * This is a value in stage-diagonals per second^2.
726    * stage-diagonal = Length( stage.width, stage.height )
727    * @return Friction coefficient is returned.
728    */
729   float GetFrictionCoefficient() const;
730
731   /**
732    * @brief Sets the friction coefficient for ScrollView when flicking
733    * in free panning mode.
734    *
735    * This is a value in stage-diagonals per second^2.
736    * stage-diagonal = Length( stage.width, stage.height ).
737    * example:
738    * A stage 480x800 in size has a diagonal length of 933.
739    * Friction coefficient of 1.0 means the swipe velocity will
740    * reduce by 1.0 * 933 pixels/sec^2.
741    * @param[in] friction Friction coefficient, must be greater than 0.0 (default = 1.0)
742    */
743   void SetFrictionCoefficient(float friction);
744
745   /**
746    * @brief Gets the flick speed coefficient for ScrollView when
747    * flicking in free panning mode.
748    *
749    * This is a constant which multiplies the input touch
750    * flick velocity to determine the actual velocity at
751    * which to move the scrolling area.
752    * @return The flick speed coefficient is returned.
753    */
754   float GetFlickSpeedCoefficient() const;
755
756   /**
757    * @brief Sets the flick speed coefficient for ScrollView when
758    * flicking in free panning mode.
759    *
760    * This is a constant which multiplies the input touch
761    * flick velocity to determine the actual velocity at
762    * which to move the scrolling area.
763    * @param[in] speed The flick speed coefficient (default = 1.0).
764    */
765   void SetFlickSpeedCoefficient(float speed);
766
767   /**
768    * @brief Returns the minimum pan distance required for a flick gesture in pixels
769    *
770    * @return Minimum pan distance vector with separate x and y distance
771    */
772   Vector2 GetMinimumDistanceForFlick() const;
773
774   /**
775    * @brief Sets the minimum pan distance required for a flick in pixels
776    *
777    * Takes a Vector2 containing separate x and y values. As long as the pan distance exceeds one of these axes a flick will be allowed
778    *
779    * @param[in] distance The minimum pan distance for a flick
780    */
781   void SetMinimumDistanceForFlick( const Vector2& distance );
782
783   /**
784    * @brief Returns the minimum pan speed required for a flick gesture in pixels per second
785    *
786    * @return Minimum pan speed
787    */
788   float GetMinimumSpeedForFlick() const;
789
790   /**
791    * @brief Sets the minimum pan speed required for a flick in pixels per second
792    *
793    * @param[in] speed The minimum pan speed for a flick
794    */
795   void SetMinimumSpeedForFlick( float speed );
796
797   /**
798    * @brief Gets the maximum flick speed setting for ScrollView when
799    * flicking in free panning mode.
800    *
801    * This is a value in stage-diagonals per second.
802    * stage-diagonal = Length( stage.width, stage.height )
803    * @return Maximum flick speed is returned
804    */
805   float GetMaxFlickSpeed() const;
806
807   /**
808    * @brief Sets the maximum flick speed for the ScrollView when
809    * flicking in free panning mode.
810    *
811    * This is a value in stage-diagonals per second.
812    * stage-diagonal = Length( stage.width, stage.height )
813    * example:
814    * A stage 480x800 in size has a diagonal length of 933.
815    * Max Flick speed of 1.0 means the maximum velocity of
816    * a swipe can be 1.0 * 933 pixels/sec.
817    * @param[in] speed Maximum flick speed (default = 3.0)
818    */
819   void SetMaxFlickSpeed(float speed);
820
821   /**
822    * @brief Gets the step of scroll distance in actor coordinates for
823    * each mouse wheel event received in free panning mode.
824    *
825    * @return The step of scroll distance(pixel) in X and Y axes.
826    */
827   Vector2 GetMouseWheelScrollDistanceStep() const;
828
829   /**
830    * @brief Sets the step of scroll distance in actor coordinates for
831    * each mouse wheel event received in free panning mode.
832    *
833    * @param[in] step The step of scroll distance(pixel) in X and Y axes.
834    *
835    * @note: If snap points are defined in the rulers, it will always
836    * scroll to the next snap point towards the scroll direction while
837    * receiving the mouse wheel events.
838    *
839    */
840   void SetMouseWheelScrollDistanceStep(Vector2 step);
841
842   /**
843    * @brief Retrieves current scroll position.
844    *
845    * @returns The current scroll position.
846    */
847   Vector3 GetCurrentScrollPosition() const;
848
849   /**
850    * @brief Sets the current scroll position, overriding current scroll animations. If panning is currently taking place
851    *        SetScrollPosition will have no effect. Try to ensure panning has stopped before calling this function.
852    *
853    * @param[in] position The new scroll position to set.
854    */
855   void SetScrollPosition(const Vector3& position);
856
857   /**
858    * @brief Retrieves current scroll page based on ScrollView
859    * dimensions being the size of one page, and all pages laid out in
860    * a grid fashion, increasing from left to right until the end of
861    * the X-domain.
862    *
863    * @note: Pages start from 0 as the first page, not 1.
864    *
865    * @returns The Current page.
866    */
867   unsigned int GetCurrentPage() const;
868
869   /**
870    * @brief Scrolls View to position specified (contents will scroll to this position).
871    *
872    * Position 0,0 is the origin. Increasing X scrolls contents left, while
873    * increasing Y scrolls contents up.
874    * - If Rulers have been applied to the axes, then the contents will scroll until
875    * reaching the domain boundary.
876    * @note Contents will not snap to ruler snap points.
877    *
878    * @param[in] position The position to scroll to.
879    */
880   void ScrollTo(const Vector3 &position);
881
882   /**
883    * @brief Scrolls View to position specified (contents will scroll to this position).
884    *
885    * Position 0,0 is the origin. Increasing X scrolls contents left, while
886    * increasing Y scrolls contents up.
887    * - If Rulers have been applied to the axes, then the contents will scroll until
888    * reaching the domain boundary.
889    * @note Contents will not snap to ruler snap points.
890    *
891    * @param[in] position The position to scroll to.
892    * @param[in] duration The duration of the animation in seconds
893    */
894   void ScrollTo(const Vector3 &position, float duration);
895
896   /**
897    * @brief Scrolls View to position specified (contents will scroll to this position)
898    *
899    * Position 0,0 is the origin. Increasing X scrolls contents left, while
900    * increasing Y scrolls contents up.
901    * - If Rulers have been applied to the axes, then the contents will scroll until
902    * reaching the domain boundary.
903    * @note Contents will not snap to ruler snap points.
904    *
905    * @param[in] position The position to scroll to.
906    * @param[in] duration The duration of the animation in seconds
907    * @param[in] alpha The alpha function to use
908    */
909   void ScrollTo(const Vector3 &position, float duration, AlphaFunction alpha);
910
911   /**
912    * @brief Scrolls View to position specified (contents will scroll to this position).
913    *
914    * Position 0,0 is the origin. Increasing X scrolls contents left, while
915    * increasing Y scrolls contents up.
916    * - If Rulers have been applied to the axes, then the contents will scroll until
917    * reaching the domain boundary.
918    * @note Contents will not snap to ruler snap points.
919    * Biasing parameters are provided such that in scenarios with 2 or 2x2 pages in
920    * wrap mode, the application developer can decide whether to scroll left or right
921    * to get to the target page
922    *
923    * @param[in] position The position to scroll to.
924    * @param[in] duration The duration of the animation in seconds
925    * @param[in] horizontalBias Whether to bias scrolling to left or right.
926    * @param[in] verticalBias Whether to bias scrolling to top or bottom.
927    */
928   void ScrollTo(const Vector3 &position, float duration,
929                 DirectionBias horizontalBias, DirectionBias verticalBias);
930
931   /**
932    * @brief Scrolls View to position specified (contents will scroll to this position)
933    *
934    * Position 0,0 is the origin. Increasing X scrolls contents left, while
935    * increasing Y scrolls contents up.
936    * - If Rulers have been applied to the axes, then the contents will scroll until
937    * reaching the domain boundary.
938    * @note Contents will not snap to ruler snap points.
939    * Biasing parameters are provided such that in scenarios with 2 or 2x2 pages in
940    * wrap mode, the application developer can decide whether to scroll left or right
941    * to get to the target page
942    *
943    * @param[in] position The position to scroll to.
944    * @param[in] duration The duration of the animation in seconds
945    * @param[in] horizontalBias Whether to bias scrolling to left or right.
946    * @param[in] verticalBias Whether to bias scrolling to top or bottom.
947    * @param[in] alpha Alpha function to use
948    */
949   void ScrollTo(const Vector3 &position, float duration, AlphaFunction alpha,
950                 DirectionBias horizontalBias, DirectionBias verticalBias);
951
952   /**
953    * @brief Scrolls View to page currently based on assumption that each page is
954    * "(page) * ScrollViewSize.width, 0".
955    *
956    * @note Should probably be upgraded so that page is an abstract class, that can be
957    * a function of ScrollViewSize, ruler domain, ruler snap points etc. as pages may be
958    * orchestrated in a 2D grid fashion, or variable width.
959    *
960    * @param[in] page to scroll to
961    */
962   void ScrollTo(unsigned int page);
963
964   /**
965    * @brief Scrolls View to page currently based on assumption that each page is
966    * "(page) * ScrollViewSize.width, 0".
967    *
968    * @note Should probably be upgraded so that page is an abstract class, that can be
969    * a function of ScrollViewSize, ruler domain, ruler snap points etc. as pages may be
970    * orchestrated in a 2D grid fashion, or variable width.
971    *
972    * @param[in] page to scroll to
973    * @param[in] duration The duration of the animation in seconds
974    */
975   void ScrollTo(unsigned int page, float duration);
976
977   /**
978    * @brief Scrolls View to page currently based on assumption that each page is
979    * "(page) * ScrollViewSize.width, 0".
980    *
981    * @note Should probably be upgraded so that page is an abstract class, that can be
982    * a function of ScrollViewSize, ruler domain, ruler snap points etc. as pages may be
983    * orchestrated in a 2D grid fashion, or variable width.
984    * A biasing parameter is provided such that in scenarios with 2 pages in wrap mode,
985    * the application developer can decide whether to scroll left or right to get to
986    * the target page.
987    *
988    * @param[in] page to scroll to
989    * @param[in] duration The duration of the animation in seconds
990    * @param[in] bias Whether to bias scrolling to left or right.
991    */
992   void ScrollTo(unsigned int page, float duration, DirectionBias bias);
993
994   /**
995    * @brief Scrolls View such that actor appears in the center of the ScrollView.
996    *
997    * @note Actor must be a direct child of ScrollView, otherwise will
998    * cause an assertion failure.
999    * @param[in] actor The actor to center in on (via Scrolling).
1000    */
1001   void ScrollTo(Actor& actor);
1002
1003   /**
1004    * @brief Scrolls View such that actor appears in the center of the ScrollView.
1005    *
1006    * @note Actor must be a direct child of ScrollView, otherwise will
1007    * cause an assertion failure.
1008    * @param[in] actor The actor to center in on (via Scrolling).
1009    * @param[in] duration The duration of the animation in seconds
1010    */
1011   void ScrollTo(Actor& actor, float duration);
1012
1013   /**
1014    * @brief Scrolls View to the nearest snap points as specified by the Rulers.
1015    *
1016    * If already at snap points, then will return false, and not scroll.
1017    *
1018    * @return True if Snapping necessary.
1019    */
1020   bool ScrollToSnapPoint();
1021
1022   /**
1023    * @brief Applies a constraint that will affect the children of ScrollView.
1024    *
1025    * @note this affects all existing and future Actors that are added to scrollview.
1026    * @param[in] constraint The constraint to apply
1027    */
1028   void ApplyConstraintToChildren(Constraint constraint);
1029
1030   /**
1031    * @brief Removes all constraints that will affect the children of ScrollView.
1032    *
1033    * @note this removes all constraints from actors that have been added
1034    * to scrollview.
1035    */
1036   void RemoveConstraintsFromChildren();
1037
1038   /**
1039    * @brief Apply Effect to ScrollView.
1040    *
1041    * @param[in] effect The effect to apply to scroll view
1042    */
1043   void ApplyEffect(ScrollViewEffect effect);
1044
1045   /**
1046    * @brief Remove Effect from ScrollView.
1047    *
1048    * @param[in] effect The effect to remove.
1049    */
1050   void RemoveEffect(ScrollViewEffect effect);
1051
1052   /**
1053    * @brief Remove All Effects from ScrollView.
1054    */
1055   void RemoveAllEffects();
1056
1057   /**
1058    * @brief Binds actor to this ScrollView.
1059    *
1060    * Once an actor is bound to a ScrollView, it will be subject to
1061    * that ScrollView's properties.
1062    *
1063    * @param[in] child The actor to add to this ScrollView.
1064    */
1065   void BindActor(Actor child);
1066
1067   /**
1068    * @brief Unbind Actor from this ScrollView.
1069    *
1070    * Once Unbound, this ScrollView will not affect the actor.
1071    * @note this does not remove the child from the ScrollView container
1072    *
1073    * @param[in] child The actor to be unbound.
1074    */
1075   void UnbindActor(Actor child);
1076
1077   /**
1078    * @brief Allows the user to constrain the scroll view in a particular direction.
1079    *
1080    * @param[in] direction The axis to constrain the scroll-view to.
1081    *                      Usually set to PanGestureDetector::DIRECTION_VERTICAL or PanGestureDetector::DIRECTION_HORIZONTAL (but can be any other angle if desired).
1082    * @param[in] threshold The threshold to apply around the axis.
1083    * @note If no threshold is specified, then the default threshold of PI * 0.25 radians (or 45 degrees) is used.
1084    */
1085   void SetScrollingDirection( Radian direction, Radian threshold = PanGestureDetector::DEFAULT_THRESHOLD );
1086
1087   /**
1088    * @brief Remove a direction constraint from the scroll view.
1089    *
1090    * @param[in] direction The axis to stop constraining to.
1091    *                      Usually will be PanGestureDetector::DIRECTION_VERTICAL or PanGestureDetector::DIRECTION_HORIZONTAL (but can be any other angle if desired).
1092    */
1093   void RemoveScrollingDirection( Radian direction );
1094
1095 public: // Not intended for application developers
1096
1097   /**
1098    * @brief Creates a handle using the Toolkit::Internal implementation.
1099    *
1100    * @param[in]  implementation  The Control implementation.
1101    */
1102   DALI_INTERNAL ScrollView(Internal::ScrollView& implementation);
1103
1104   /**
1105    * @brief Allows the creation of this Control from an Internal::CustomActor pointer.
1106    *
1107    * @param[in]  internal  A pointer to the internal CustomActor.
1108    */
1109   explicit DALI_INTERNAL ScrollView( Dali::Internal::CustomActor* internal );
1110 };
1111
1112 } // namespace Toolkit
1113
1114 } // namespace Dali
1115
1116 #endif // __DALI_TOOLKIT_SCROLL_VIEW_H__