fb6786c7d4d4d4749b41ce9bef0623c60a0424b5
[platform/core/uifw/dali-toolkit.git] / base / dali-toolkit / internal / controls / scroll-bar / scroll-bar-impl.h
1 #ifndef __DALI_TOOLKIT_INTERNAL_SCROLL_BAR_H__
2 #define __DALI_TOOLKIT_INTERNAL_SCROLL_BAR_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/scroll-component-impl.h>
23 #include <dali-toolkit/public-api/controls/scrollable/scroll-connector.h>
24 #include <dali-toolkit/public-api/controls/scroll-bar/scroll-bar.h>
25
26 namespace Dali
27 {
28
29 namespace Toolkit
30 {
31
32 namespace Internal
33 {
34
35 class ScrollBar;
36
37 typedef IntrusivePtr<ScrollBar> ScrollBarPtr;
38
39 /**
40  * ScrollBar is a UI component that can be added to the scrollable controls
41  * indicating the current scroll position of the scrollable content.
42  */
43 class ScrollBar : public ScrollComponentImpl
44 {
45
46 public:
47
48   // Properties
49   enum
50   {
51     SCROLLBAR_PROPERTY_START_INDEX = ControlImpl::CONTROL_PROPERTY_END_INDEX + 1,
52     SCROLLBAR_PROPERTY_END_INDEX = SCROLLBAR_PROPERTY_START_INDEX + 1000 ///< Reserving 1000 property indices
53   };
54
55   // Signals
56   typedef Toolkit::ScrollBar::ScrollPositionNotifiedSignalType ScrollPositionNotifiedSignalType;
57
58 public:
59
60   /**
61    * @copydoc Toolkit::ScrollBar::ScrollBar()
62    */
63   ScrollBar();
64
65   /**
66    * @copydoc Toolkit::ScrollBar::~ScrollBar()
67    */
68   virtual ~ScrollBar();
69
70   /**
71    * @copydoc Toolkit::ScrollBar::New()
72    */
73   static Toolkit::ScrollBar New();
74
75   /**
76    * @copydoc Toolkit::ScrollComponentImpl::OnScrollConnectorSet()
77    */
78   void OnScrollConnectorSet( Toolkit::ScrollConnector connector );
79
80   /**
81    * @copydoc Toolkit::ScrollBar::SetBackgroundImage()
82    */
83   void SetBackgroundImage( Image image, const Vector4& border );
84
85   /**
86    * @copydoc Toolkit::ScrollBar::SetIndicatorImage()
87    */
88   void SetIndicatorImage( Image image );
89
90   /**
91    * @copydoc Toolkit::ScrollBar::SetIndicatorImage()
92    */
93   void SetIndicatorImage( Image image, const Vector4& border );
94
95   /**
96    * @copydoc Toolkit::ScrollBar::GetScrollIndicator()
97    */
98   Actor GetScrollIndicator();
99
100   /**
101    * @copydoc Toolkit::ScrollBar::SetPositionNotifications()
102    */
103   void SetPositionNotifications( const std::vector<float>& positions );
104
105   /**
106    * @copydoc Toolkit::ScrollBar::SetIndicatorHeightPolicy()
107    */
108   void SetIndicatorHeightPolicy( Toolkit::ScrollBar::IndicatorHeightPolicy policy );
109
110   /**
111    * @copydoc Toolkit::ScrollBar::GetIndicatorHeightPolicy()
112    */
113   Toolkit::ScrollBar::IndicatorHeightPolicy GetIndicatorHeightPolicy();
114
115   /**
116    * @copydoc Toolkit::ScrollBar::SetIndicatorFixedHeight()
117    */
118   void SetIndicatorFixedHeight( float height );
119
120   /**
121    * @copydoc Toolkit::ScrollBar::GetIndicatorFixedHeight()
122    */
123   float GetIndicatorFixedHeight();
124
125   /**
126    * @copydoc Toolkit::ScrollBar::Show()
127    */
128   void Show();
129
130   /**
131    * @copydoc Toolkit::ScrollBar::Hide()
132    */
133  void Hide();
134
135  /**
136   * Signal emitted after the SetScrollDomain() method has been called.
137   */
138  ScrollPositionNotifiedSignalType& ScrollPositionNotifiedSignal()
139  {
140    return mScrollPositionNotifiedSignal;
141  }
142
143  // Properties
144
145  /**
146   * Called when a property of an object of this type is set.
147   * @param[in] object The object whose property is set.
148   * @param[in] index The property index.
149   * @param[in] value The new property value.
150   */
151  static void SetProperty( BaseObject* object, Property::Index index, const Property::Value& value );
152
153  /**
154   * Called to retrieve a property of an object of this type.
155   * @param[in] object The object whose property is to be retrieved.
156   * @param[in] index The property index.
157   * @return The current value of the property.
158   */
159  static Property::Value GetProperty( BaseObject* object, Property::Index index );
160
161 private: // from Control
162
163   /**
164    * @copydoc Toolkit::Control::OnInitialize
165    */
166   virtual void OnInitialize();
167
168   /**
169    * @copydoc Toolkit::Control::OnPan
170    */
171   virtual void OnPan( PanGesture gesture );
172
173 private:
174
175   /**
176    * Apply constraints for background and indicator.
177    * These constraints are based on values from the scroll connector.
178    */
179   void ApplyConstraints();
180
181   /**
182    * Callback when the start & end position and size of the scrollable content are changed.
183    * @param[in] minPosition The minimum position.
184    * @param[in] maxPosition The maximum position.
185    * @param[in] contentSize The size of scrollable content.
186    */
187   void OnScrollDomainChanged(float minPosition, float maxPosition, float contentSize);
188
189   /**
190    * Callback when the current scroll position of the scrollable content goes above or
191    * below the values specified by SetPositionNotifications().
192    * @param[in] source the property notification that triggered this callback
193    */
194   void OnScrollPositionNotified(PropertyNotification& source);
195
196   /**
197    * Process the pan gesture per predefined timeout until the gesture is finished.
198    * @return True if the timer should be kept running.
199    */
200   bool OnPanGestureProcessTick();
201
202   /**
203    * Handle SetProperty for scroll indicator height policy.
204    * @param[in] propertyValue The new property value.
205    */
206   void OnIndicatorHeightPolicyPropertySet(Property::Value propertyValue);
207
208 private:
209
210   Constrainable mScrollPositionObject;                               ///< From mScrollConnector
211
212   ImageActor mBackground;                                            ///< Background image of scroll bar.
213   ImageActor mIndicator;                                             ///< Image of scroll indicator.
214   Animation mAnimation;                                              ///< Scroll indicator Show/Hide Animation.
215
216   float mScrollStart;                                               ///< Scroll Start position (start of drag)
217   Vector3 mGestureDisplacement;                                      ///< Gesture Displacement.
218
219   bool mIsPanning;                                                  ///< Whether the scroll bar is being panned.
220   float mCurrentScrollPosition;                                     ///< The current scroll position updated by the pan gesture
221
222   Toolkit::ScrollBar::IndicatorHeightPolicy mIndicatorHeightPolicy;  ///< The height policy of scroll indicator (variable or fixed)
223   float mIndicatorFixedHeight;                                      ///< The fixed height of scroll indicator
224
225   Timer mTimer;                                                      ///< The timer to process the pan gesture after the gesture is started.
226
227   Property::Index mPropertyIndicatorPosition;                        ///< Indicatore Position ("indicator-position")
228
229   PropertyNotification mPositionNotification;                        ///< Stores the property notification used for scroll position changes
230
231   ScrollPositionNotifiedSignalType mScrollPositionNotifiedSignal;
232
233   ActiveConstraint mIndicatorSizeConstraint;
234   ActiveConstraint mIndicatorPositionConstraint;
235 };
236
237 } // namespace Internal
238
239 // Helpers for public-api forwarding methods
240
241 inline Toolkit::Internal::ScrollBar& GetImpl(Toolkit::ScrollBar& scrollBar)
242 {
243   DALI_ASSERT_ALWAYS(scrollBar);
244
245   Dali::RefObject& handle = scrollBar.GetImplementation();
246
247   return static_cast<Toolkit::Internal::ScrollBar&>(handle);
248 }
249
250 inline const Toolkit::Internal::ScrollBar& GetImpl(const Toolkit::ScrollBar& scrollBar)
251 {
252   DALI_ASSERT_ALWAYS(scrollBar);
253
254   const Dali::RefObject& handle = scrollBar.GetImplementation();
255
256   return static_cast<const Toolkit::Internal::ScrollBar&>(handle);
257 }
258
259 } // namespace Toolkit
260
261 } // namespace Dali
262
263 #endif // __DALI_TOOLKIT_INTERNAL_SCROLL_BAR_H__