summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Juyung Seo <seojuyung2@gmail.com>2015-06-09 01:18:48 +0900
committerDaniel Juyung Seo <seojuyung2@gmail.com>2015-06-26 10:30:21 +0900
commit9b47996b6c7a6e09194f4ca537c4f7e4152b573e (patch)
tree83942394a6554170738a7108079168a19e72916c
parent5d5506032f82a3885de0113d6705153aa2e96ea0 (diff)
downloadelementary-9b47996b6c7a6e09194f4ca537c4f7e4152b573e.tar.gz
interface_scrollable: Add more description to animators.
It is surprising that there is no such a comment on a scrollerable interface considering the complexity of scroller.
-rw-r--r--src/lib/elm_interface_scrollable.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/elm_interface_scrollable.h b/src/lib/elm_interface_scrollable.h
index 18670757d..f58ab9f6b 100644
--- a/src/lib/elm_interface_scrollable.h
+++ b/src/lib/elm_interface_scrollable.h
@@ -112,9 +112,9 @@ struct _Elm_Scrollable_Smart_Interface_Data
Ecore_Idle_Enterer *hold_enterer;
Ecore_Animator *hold_animator;
Ecore_Animator *onhold_animator;
- Ecore_Animator *momentum_animator;
- Ecore_Animator *bounce_x_animator;
- Ecore_Animator *bounce_y_animator;
+ Ecore_Animator *momentum_animator; /**< an animator which is called whenever a scroller is moving due to a flick action(mouse down, move, up) */
+ Ecore_Animator *bounce_x_animator; /**< an animator to express the bouncing animation on x axis. */
+ Ecore_Animator *bounce_y_animator; /**< an animator to express the bouncing animation on y axis. */
Eina_Bool bounce_x_hold : 1;
Eina_Bool bounce_y_hold : 1;