ItemView API to set the alpha function
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / internal / controls / scrollable / item-view / item-view-impl.h
1 #ifndef __DALI_TOOLKIT_INTERNAL_ITEM_VIEW_H__
2 #define __DALI_TOOLKIT_INTERNAL_ITEM_VIEW_H__
3
4 //
5 // Copyright (c) 2014 Samsung Electronics Co., Ltd.
6 //
7 // Licensed under the Flora License, Version 1.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://floralicense.org/license/
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 // EXTERNAL INCLUDES
21 #include <dali/dali.h>
22
23 // INTERNAL INCLUDES
24 #include <dali-toolkit/public-api/controls/control-impl.h>
25 #include <dali-toolkit/public-api/controls/scrollable/item-view/item-view.h>
26 #include <dali-toolkit/public-api/controls/scrollable/item-view/item-layout.h>
27 #include <dali-toolkit/public-api/controls/scrollable/scroll-connector.h>
28 #include <dali-toolkit/internal/controls/scrollable/scrollable-impl.h>
29 #include <dali-toolkit/public-api/focus-manager/keyboard-focus-manager.h>
30 #include <dali-toolkit/internal/controls/scrollable/scroll-view/scroll-overshoot-indicator-impl.h>
31
32 namespace Dali
33 {
34
35 namespace Toolkit
36 {
37
38 namespace Internal
39 {
40
41 class ItemView;
42
43 typedef IntrusivePtr<ItemView> ItemViewPtr;
44
45 /**
46  * ItemView is a scrollable layout container.
47  * Multiple ItemLayouts may be provided, to determine the logical position of each item a layout.
48  * Actor-ID pairs are provided from a shared ItemFactory, to display the currently visible items.
49  */
50 class ItemView : public Scrollable
51 {
52 public:
53
54   /**
55    * Create a new ItemView.
56    * @param[in] factory The factory which provides ItemView with items.
57    * @return A public handle to the newly allocated ItemView.
58    */
59   static Dali::Toolkit::ItemView New(ItemFactory& factory);
60
61   /**
62    * @copydoc Toolkit::ItemView::GetScrollConnector
63    */
64   Dali::Toolkit::ScrollConnector GetScrollConnector() const;
65
66   /**
67    * @copydoc Toolkit::ItemView::GetLayoutCount
68    */
69   unsigned int GetLayoutCount() const;
70
71   /**
72    * @copydoc Toolkit::ItemView::AddLayout
73    */
74   void AddLayout(ItemLayout& layout);
75
76   /**
77    * @copydoc Toolkit::ItemView::RemoveLayout
78    */
79   void RemoveLayout(unsigned int layoutIndex);
80
81   /**
82    * @copydoc Toolkit::ItemView::GetLayout
83    */
84   ItemLayoutPtr GetLayout(unsigned int layoutIndex) const;
85
86   /**
87    * @copydoc Toolkit::ItemView::GetActiveLayout
88    */
89   ItemLayoutPtr GetActiveLayout() const;
90
91   /**
92    * @copydoc Toolkit::ItemView::GetCurrentLayoutPosition
93    */
94   float GetCurrentLayoutPosition(unsigned int itemId) const;
95
96   /**
97    * @copydoc Toolkit::ItemView::ActivateLayout
98    */
99   void ActivateLayout(unsigned int layoutIndex, const Vector3& targetSize, float durationSeconds);
100
101   /**
102    * @copydoc Toolkit::ItemView::SetDefaultAlphaFunction
103    */
104   void SetDefaultAlphaFunction(AlphaFunction func);
105
106   /**
107    * @copydoc Toolkit::ItemView::GetDefaultAlphaFunction
108    */
109   AlphaFunction GetDefaultAlphaFunction() const;
110
111   /**
112    * @copydoc Toolkit::ItemView::DeactivateCurrentLayout
113    */
114   void DeactivateCurrentLayout();
115
116   /**
117    * @copydoc Toolkit::ItemView::SetMinimumSwipeSpeed
118    */
119   void SetMinimumSwipeSpeed(float speed);
120
121   /**
122    * @copydoc Toolkit::ItemView::GetMinimumSwipeSpeed
123    */
124   float GetMinimumSwipeSpeed() const;
125
126   /**
127    * @copydoc Toolkit::ItemView::SetMinimumSwipeDistance
128    */
129   void SetMinimumSwipeDistance(float distance);
130
131   /**
132    * @copydoc Toolkit::ItemView::GetMinimumSwipeDistance
133    */
134   float GetMinimumSwipeDistance() const;
135
136   /**
137    * @copydoc Toolkit::ItemView::SetMouseWheelScrollDistanceStep
138    */
139   void SetMouseWheelScrollDistanceStep(float step);
140
141   /**
142    * @copydoc Toolkit::ItemView::GetMouseWheelScrollDistanceStep
143    */
144   float GetMouseWheelScrollDistanceStep() const;
145
146   /**
147    * @copydoc Toolkit::ItemView::SetAnchoring
148    */
149   void SetAnchoring(bool enabled);
150
151   /**
152    * @copydoc Toolkit::ItemView::GetAnchoring
153    */
154   bool GetAnchoring() const;
155
156   /**
157    * @copydoc Toolkit::ItemView::SetAnchoringDuration
158    */
159   void SetAnchoringDuration(float durationSeconds);
160
161   /**
162    * @copydoc Toolkit::ItemView::GetAnchoringDuration
163    */
164   float GetAnchoringDuration() const;
165
166   /**
167    * @copydoc Toolkit::ItemView::ScrollToItem
168    */
169   void ScrollToItem(unsigned int itemId, float durationSeconds);
170
171   /**
172    * @copydoc Toolkit::ItemView::SetRefreshInterval
173    */
174   void SetRefreshInterval(unsigned int intervalMilliseconds);
175
176   /**
177    * @copydoc Toolkit::ItemView::GetRefreshInterval
178    */
179   unsigned int GetRefreshInterval() const;
180
181   /**
182    * @copydoc Toolkit::ItemView::GetItem
183    */
184   Actor GetItem(unsigned int itemId) const;
185
186   /**
187    * @copydoc Toolkit::ItemView::GetItemId
188    */
189   unsigned int GetItemId(Actor actor) const;
190
191   /**
192    * @copydoc Toolkit::ItemView::InsertItem
193    */
194   void InsertItem(Item newItem, float durationSeconds);
195
196   /**
197    * @copydoc Toolkit::ItemView::InsertItem
198    */
199   void InsertItems(const ItemContainer& newItems, float durationSeconds);
200
201   /**
202    * @copydoc Toolkit::ItemView::RemoveItem
203    */
204   void RemoveItem(ItemId itemId, float durationSeconds);
205
206   /**
207    * @copydoc Toolkit::ItemView::InsertItem
208    */
209   void RemoveItems(const ItemIdContainer& itemIds, float durationSeconds);
210
211   /**
212    * @copydoc Toolkit::ItemView::InsertItem
213    */
214   void ReplaceItem(Item replacementItem, float durationSeconds);
215
216   /**
217    * @copydoc Toolkit::ItemView::InsertItem
218    */
219   void ReplaceItems(const ItemContainer& replacementItems, float durationSeconds);
220
221   /**
222    * @copydoc Toolkit::Scrollable::GetDomainSize
223    */
224   Vector3 GetDomainSize() const;
225
226   /**
227    * @copydoc Toolkit::Scrollable::GetCurrentScrollPosition
228    */
229   Vector3 GetCurrentScrollPosition() const;
230
231   /**
232    * @copydoc Toolkit::Scrollable::AddOverlay()
233    */
234   void AddOverlay(Actor actor);
235
236   /**
237    * @copydoc Toolkit::Scrollable::RemoveOverlay()
238    */
239   void RemoveOverlay(Actor actor);
240
241   /**
242    * @copydoc Toolkit::Scrollable::ScrollTo(const Vector3& position, float duration)
243    */
244   void ScrollTo(const Vector3& position, float duration);
245
246 private:
247
248   /**
249    * Remove an Actor if found in the ItemPool.
250    * @param[in] itemId The item to remove.
251    * @return True if an actor was removed.
252    */
253   bool RemoveActor( unsigned int itemId );
254
255   /**
256    * Remove any Actors outside a given range.
257    * @param[in] @param[in] range The range of required items.
258    */
259   void RemoveActorsOutsideRange( ItemRange range );
260
261   /**
262    * Add a range of Actors, if they are not already in the ItemPool.
263    * @param[in] layout The active layout.
264    * @param[in] range The range of Item IDs to associate with the new actors.
265    */
266   void AddActorsWithinRange( ItemRange range );
267
268   /**
269    * Add a new Actor, if not already in the ItemPool.
270    * @param[in] item The ID for the new item.
271    */
272   void AddNewActor( ItemId item );
273
274   /**
275    * Apply the constraints etc. that are required for ItemView children.
276    * @param[in] item The item to setup.
277    * @param[in] durationSeconds The time taken to fully constrain the actor.
278    */
279   void SetupActor( Item item, float durationSeconds );
280
281 private: // From CustomActorImpl
282
283   /**
284    * From CustomActorImpl; called after a touch-signal is received by the owning actor.
285    * @param[in] event The touch event.
286    * @return True if the event should be consumed.
287    */
288   virtual bool OnTouchEvent(const TouchEvent& event);
289
290   /**
291    * From CustomActorImpl; called after a mouse-wheel-event is received by the owning actor.
292    * @param[in] event The mouse wheel event.
293    * @return True if the event should be consumed.
294    */
295   virtual bool OnMouseWheelEvent(const MouseWheelEvent& event);
296
297 private: // From ControlImpl
298
299   /**
300    * @copydoc Toolkit::Control::OnInitialize()
301    */
302   virtual void OnInitialize();
303
304   /**
305    * @copydoc Toolkit::Control::OnAccessibilityPan()
306    */
307   virtual bool OnAccessibilityPan(PanGesture gesture);
308
309   /**
310    * @copydoc Toolkit::Control::GetNextKeyboardFocusableActor()
311    */
312   virtual Actor GetNextKeyboardFocusableActor(Actor actor, Control::KeyboardFocusNavigationDirection direction, bool loopEnabled);
313
314   /**
315    * @copydoc Toolkit::Control::OnKeyboardFocusChangeCommitted()
316    */
317   virtual void OnKeyboardFocusChangeCommitted(Actor commitedFocusableActor);
318
319 protected:
320
321   /**
322    * Construct a new ItemView.
323    * @param[in] factory The factory which provides ItemView with items.
324    */
325   ItemView(ItemFactory& factory);
326
327   /**
328    * A reference counted object may only be deleted by calling Unreference()
329    */
330   virtual ~ItemView();
331
332 private:
333
334   // Undefined
335   ItemView(const ItemView&);
336
337   // Undefined
338   ItemView& operator=(const ItemView& rhs);
339
340   /**
341    * Helper to apply constraints to an actor.
342    * @param[in] actor The actor to constrain.
343    * @param[in] layout The active layout.
344    * @param[in] itemId The ID of the item represented by the actor.
345    * @param[in] durationSeconds The time taken to fully constrain the actors.
346    */
347   void ApplyConstraints(Actor& actor, ItemLayout& layout, unsigned int itemId, float durationSeconds);
348
349   /**
350    * Helper to re-apply all the constraints after items have been inserted, removed etc.
351    * @param[in] durationSeconds The time taken to fully constrain the actors.
352    */
353   void ReapplyAllConstraints( float durationSeconds );
354
355   /**
356    * Helper to remove items outside a given range.
357    * @param[in] range The range of required items.
358    */
359   void RemoveItems(ItemRange range);
360
361   /**
362    * Helper to add a range of items, if not already in the ItemPool.
363    * @param[in] layout The layout used to position the new items.
364    * @param[in] layoutSize The current size of the layout.
365    * @param[in] range The range of required items.
366    */
367   void AddItems(ItemLayout& layout, const Vector3& layoutSize, ItemRange range);
368
369   /**
370    * Helper to find the range of items to populate with.
371    * @param[in] layout The current layout.
372    * @param[in] range The range of items.
373    * @param[in] reserveExtra True if reserve items should be included.
374    */
375   ItemRange GetItemRange(ItemLayout& layout, const Vector3& layoutSize, bool reserveExtra);
376
377   // Input Handling
378
379   /**
380    * Helper to handle pressed (Down) events.
381    * @param[in] x The X coordinate of the touch event.
382    * @param[in] y The Y coordinate of the touch event.
383    * @param[in] timeMs The time-stamp of the touch event.
384    */
385   void OnPressed(float x, float y, unsigned long timeMs);
386
387   /**
388    * Helper to clamp the first-item position when dragging/swiping.
389    * @param[in] targetPosition The target position of the drag etc.
390    * @param[in] targetSize The target ItemView & layout size.
391    * @param[in] layout The current layout.
392    * @return The clamped first-item position.
393    */
394   float ClampFirstItemPosition(float targetPosition, const Vector3& targetSize, ItemLayout& layout);
395
396   /**
397    * Called upon pan gesture event.
398    *
399    * @param[in] gesture The gesture event.
400    */
401   void OnPan(PanGesture pan);
402
403   /**
404    * Helper to handle anchoring animations.
405    * @return The animation, or an uninitialized handle if not necessary.
406    */
407   Animation DoAnchoring();
408
409   /**
410    * Callback from scroll animations
411    * @param[in] animation The scroll-animation which has finished.
412    */
413   void OnScrollFinished(Animation& animation);
414
415   /**
416    * Called by animation system when overshoot has finished animating to maximum (either -1.0f or 1.0f)
417    *
418    * @param[in] animation the animation that has finished
419    */
420   void OnOvershootOnFinished(Animation& animation);
421
422   /**
423    * Helper to start the refresh timer.
424    */
425   void StartRefreshTimer();
426
427   /**
428    * Helper to cancel the refresh timer.
429    */
430   void CancelRefreshTimer();
431
432   /**
433    * Refresh the ItemView; this is called after a timeout when scrolling.
434    * During a refresh, ItemFactory::NewItem() will be called to create newly visible items.
435    * @return True if the refresh timer should be kept running.
436    */
437   bool OnRefreshTick();
438
439   /**
440    * This is called after a timeout when no new mouse wheel event is received for a certain period of time.
441    * @return will return false; one-shot timer.
442    */
443   bool OnMouseWheelEventFinished();
444
445   /**
446    * Stops and removes animation if exists.
447    * @param[in,out] animation The animation handle to be removed.
448    */
449   void RemoveAnimation(Animation& animation);
450
451   /**
452    * Helper to apply constraints to the overshoot overlay actor.
453    */
454   void ApplyOvershootOverlayConstraints();
455
456   /**
457    * Helper to calculate the scroll overshoot according to the pan gesture displacement.
458    * @return The scroll overshoot.
459    */
460   float CalculateScrollOvershoot();
461
462   /**
463    * Helper to calculate the scroll overshoot according to the pan gesture displacement.
464    *
465    * @param[in] overshootAmount amount to animate to
466    * @param[in] animateBack whether to animate back to zero immediately after
467    * @return The scroll overshoot.
468    */
469   void AnimateScrollOvershoot(float overshootAmount, bool animateBack = false);
470
471   /**
472    * Gets the scroll position in pixels according to the logical layout position.
473    * @param[in] layoutSize The current size of the layout.
474    */
475   float GetScrollPosition(float layoutPosition, const Vector3& layoutSize) const;
476
477   /**
478    * Calculates the minimum and maximum positions for each axis to scroll to.
479    * @param[in] layoutSize The current size of the layout.
480    */
481   void CalculateDomainSize(const Vector3& layoutSize);
482
483   /**
484    * Calculates whether we want to allow current item view to scroll.
485    * @param[in] layoutSize The current size of the layout.
486    * @return    true if itemview is scrollable
487    */
488   bool IsLayoutScrollable(const Vector3& layoutSize);
489
490 private:
491
492   ItemFactory& mItemFactory;
493
494   typedef std::map<unsigned int, Actor> ItemPool;
495   typedef ItemPool::iterator            ItemPoolIter;
496   typedef ItemPool::const_iterator      ConstItemPoolIter;
497
498   ItemPool mItemPool;
499
500   ItemLayoutContainer mLayouts;
501   ItemLayout* mActiveLayout;
502   Vector3 mActiveLayoutTargetSize;
503
504   AlphaFunction mDefaultAlphaFunction;
505
506   Animation mResizeAnimation;
507   Animation mScrollAnimation;
508   Animation mScrollSpeedAnimation;
509   Animation mScrollOvershootAnimation;
510   bool      mAnimatingOvershootOn;          ///< whether we are currently animating overshoot to 1.0f/-1.0f (on) or to 0.0f (off)
511   bool      mAnimateOvershootOff;         ///< whether we are currently animating overshoot to 1.0f/-1.0f (on) or to 0.0f (off)
512
513   bool mAnchoringEnabled;
514   float mAnchoringDuration;
515
516   Timer mRefreshTimer;
517   int mRefreshIntervalMilliseconds;
518   bool mRefreshOrderHint; ///< True if scrolling towards the last item
519
520   // Input handling
521
522   float mMinimumSwipeSpeed;
523   float mMinimumSwipeDistance;
524   float mMouseWheelScrollDistanceStep; ///< The step of scroll distance in actor coordinates for each mouse wheel event received.
525
526   float mScrollDistance;
527   float mScrollSpeed;
528   Vector2 mTotalPanDisplacement;
529
530   float mScrollOvershoot;
531   bool mIsFlicking;
532
533   Timer mMouseWheelEventFinishedTimer; ///< The timer to determine whether there is no mouse wheel event received for a certain period of time.
534
535   Dali::Gesture::State mGestureState;
536
537   ImageActor mOvershootOverlay;           ///< The overlay actor for overshoot effect
538   OvershootRippleEffect mOvershootEffect; ///< The vertex/fragment shader used to display the overshoot ripple effect
539
540   Dali::Toolkit::ScrollConnector mScrollConnector; ///< Connects ItemView with scrollable components e.g. scroll bars
541   Constrainable   mScrollPositionObject;     ///< From mScrollConnector
542
543   Property::Index mPropertyPosition; ///< The physical position of the first item within the layout
544   Property::Index mPropertyMinimumLayoutPosition; ///< The minimum valid layout position in the layout.
545   Property::Index mPropertyScrollSpeed; ///< The current scroll speed of item view
546   Property::Index mPropertyOvershoot; ///< The scroll overshoot (difference of the layout position before and after clamping)
547 };
548
549 } // namespace Internal
550
551 // Helpers for public-api forwarding methods
552
553 inline Toolkit::Internal::ItemView& GetImpl(Toolkit::ItemView& itemView)
554 {
555   DALI_ASSERT_ALWAYS(itemView);
556
557   Dali::RefObject& handle = itemView.GetImplementation();
558
559   return static_cast<Toolkit::Internal::ItemView&>(handle);
560 }
561
562 inline const Toolkit::Internal::ItemView& GetImpl(const Toolkit::ItemView& itemView)
563 {
564   DALI_ASSERT_ALWAYS(itemView);
565
566   const Dali::RefObject& handle = itemView.GetImplementation();
567
568   return static_cast<const Toolkit::Internal::ItemView&>(handle);
569 }
570
571 } // namespace Toolkit
572
573 } // namespace Dali
574
575 #endif // __DALI_TOOLKIT_INTERNAL_ITEM_VIEW_H__