[3.0] Added scroll-bar to text selection toolbar
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / internal / controls / text-controls / text-selection-toolbar-impl.cpp
1 /*
2  * Copyright (c) 2016 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/text-controls/text-selection-toolbar-impl.h>
20
21 // EXTERNAL INCLUDES
22 #include <cfloat>
23 #include <dali/public-api/images/buffer-image.h>
24 #include <dali/public-api/math/vector2.h>
25 #include <dali/public-api/math/vector4.h>
26 #include <dali/public-api/object/property-map.h>
27 #include <dali/public-api/object/type-registry-helper.h>
28
29 // INTERNAL INCLUDES
30 #include <dali-toolkit/public-api/controls/image-view/image-view.h>
31 #include <dali-toolkit/devel-api/controls/control-depth-index-ranges.h>
32
33 namespace Dali
34 {
35
36 namespace Toolkit
37 {
38
39 namespace Internal
40 {
41
42 namespace
43 {
44
45 const Dali::Vector2 DEFAULT_SCROLL_BAR_PADDING( 8.0f, 6.0f );
46
47 BaseHandle Create()
48 {
49   return Toolkit::TextSelectionToolbar::New();
50 }
51
52 // Setup properties, signals and actions using the type-registry.
53
54 DALI_TYPE_REGISTRATION_BEGIN( Toolkit::TextSelectionToolbar, Toolkit::Control, Create );
55
56 DALI_PROPERTY_REGISTRATION( Toolkit, TextSelectionToolbar, "maxSize",  VECTOR2, MAX_SIZE )
57 DALI_PROPERTY_REGISTRATION( Toolkit, TextSelectionToolbar, "enableOvershoot",  BOOLEAN, ENABLE_OVERSHOOT )
58 DALI_PROPERTY_REGISTRATION( Toolkit, TextSelectionToolbar, "enableScrollBar", BOOLEAN, ENABLE_SCROLL_BAR )
59 DALI_PROPERTY_REGISTRATION( Toolkit, TextSelectionToolbar, "scrollBarPadding", VECTOR2, SCROLL_BAR_PADDING )
60 DALI_PROPERTY_REGISTRATION( Toolkit, TextSelectionToolbar, "scrollView",  MAP, SCROLL_VIEW )
61
62 DALI_TYPE_REGISTRATION_END()
63
64 } // namespace
65
66 Dali::Toolkit::TextSelectionToolbar TextSelectionToolbar::New()
67 {
68   // Create the implementation, temporarily owned by this handle on stack
69   IntrusivePtr< TextSelectionToolbar > impl = new TextSelectionToolbar();
70
71   // Pass ownership to CustomActor handle
72   Dali::Toolkit::TextSelectionToolbar handle( *impl );
73
74   // Second-phase init of the implementation
75   // This can only be done after the CustomActor connection has been made...
76   impl->Initialize();
77
78   return handle;
79 }
80
81 void TextSelectionToolbar::SetProperty( BaseObject* object, Property::Index index, const Property::Value& value )
82 {
83   Toolkit::TextSelectionToolbar selectionPopup = Toolkit::TextSelectionToolbar::DownCast( Dali::BaseHandle( object ) );
84
85   if( selectionPopup )
86   {
87     TextSelectionToolbar& impl( GetImpl( selectionPopup ) );
88
89     switch( index )
90     {
91       case Toolkit::TextSelectionToolbar::Property::MAX_SIZE:
92       {
93        impl.SetPopupMaxSize( value.Get< Vector2 >() );
94        break;
95       }
96       case Toolkit::TextSelectionToolbar::Property::ENABLE_OVERSHOOT:
97       {
98         if( !impl.mScrollView )
99         {
100           impl.mScrollView  = Toolkit::ScrollView::New();
101         }
102         impl.mScrollView.SetOvershootEnabled( value.Get< bool >() );
103         break;
104       }
105       case Toolkit::TextSelectionToolbar::Property::ENABLE_SCROLL_BAR:
106       {
107         impl.SetUpScrollBar( value.Get< bool >() );
108         break;
109       }
110       case Toolkit::TextSelectionToolbar::Property::SCROLL_BAR_PADDING:
111       {
112         impl.SetScrollBarPadding( value.Get< Vector2 >() );
113         break;
114       }
115       case Toolkit::TextSelectionToolbar::Property::SCROLL_VIEW:
116       {
117         // Get a Property::Map from the property if possible.
118         Property::Map setPropertyMap;
119         if( value.Get( setPropertyMap ) )
120         {
121           impl.ConfigureScrollview( setPropertyMap );
122         }
123         break;
124       }
125     } // switch
126   } // TextSelectionToolbar
127 }
128
129 Property::Value TextSelectionToolbar::GetProperty( BaseObject* object, Property::Index index )
130 {
131   Property::Value value;
132
133   Toolkit::TextSelectionToolbar selectionPopup = Toolkit::TextSelectionToolbar::DownCast( Dali::BaseHandle( object ) );
134
135   if( selectionPopup )
136   {
137     TextSelectionToolbar& impl( GetImpl( selectionPopup ) );
138
139     switch( index )
140     {
141       case Toolkit::TextSelectionToolbar::Property::MAX_SIZE:
142       {
143         value = impl.GetPopupMaxSize();
144         break;
145       }
146       case Toolkit::TextSelectionToolbar::Property::ENABLE_OVERSHOOT:
147       {
148         value = impl.mScrollView.IsOvershootEnabled();
149         break;
150       }
151       case Toolkit::TextSelectionToolbar::Property::ENABLE_SCROLL_BAR:
152       {
153         value = impl.mScrollBar ? true : false;
154         break;
155       }
156       case Toolkit::TextSelectionToolbar::Property::SCROLL_BAR_PADDING:
157       {
158         value = impl.GetScrollBarPadding();
159         break;
160       }
161     } // switch
162   }
163   return value;
164 }
165
166 void TextSelectionToolbar::OnInitialize()
167 {
168   SetUp();
169 }
170
171 void TextSelectionToolbar::OnRelayout( const Vector2& size, RelayoutContainer& container )
172 {
173   float width = std::max ( mTableOfButtons.GetNaturalSize().width, size.width );
174   mRulerX->SetDomain( RulerDomain( 0.0, width, true ) );
175   mScrollView.SetRulerX( mRulerX );
176
177   if( mScrollBar )
178   {
179     float barWidth = std::min( mTableOfButtons.GetNaturalSize().width, size.width ) - 2.f * mScrollBarPadding.x;
180     mScrollBar.SetSize( Vector2( 0.0f, barWidth ) );
181   }
182 }
183
184 void TextSelectionToolbar::OnStageConnection( int depth )
185 {
186   // Call the Control::OnStageConnection() to set the depth of the background.
187   Control::OnStageConnection( depth );
188
189   // Texts are controls, they have their own OnStageConnection() implementation.
190   // Icons are inside a TableView. It has it's own OnStageConnection() implementation.
191 }
192
193 void TextSelectionToolbar::SetPopupMaxSize( const Size& maxSize )
194 {
195   mMaxSize = maxSize;
196   if (mScrollView && mToolbarLayer )
197   {
198     mScrollView.SetMaximumSize( mMaxSize );
199     mToolbarLayer.SetMaximumSize( mMaxSize );
200   }
201 }
202
203 const Dali::Vector2& TextSelectionToolbar::GetPopupMaxSize() const
204 {
205   return mMaxSize;
206 }
207
208 void TextSelectionToolbar::SetUpScrollView()
209 {
210   mScrollView.SetResizePolicy( ResizePolicy::FIT_TO_CHILDREN, Dimension::ALL_DIMENSIONS );
211   mScrollView.SetParentOrigin( ParentOrigin::CENTER_LEFT );
212   mScrollView.SetAnchorPoint( AnchorPoint::CENTER_LEFT );
213
214   mScrollView.SetScrollingDirection( PanGestureDetector::DIRECTION_HORIZONTAL, Degree( 40.0f ) );
215   mScrollView.SetAxisAutoLock( true );
216   mScrollView.ScrollStartedSignal().Connect( this, &TextSelectionToolbar::OnScrollStarted );
217   mScrollView.ScrollCompletedSignal().Connect( this, &TextSelectionToolbar::OnScrollCompleted );
218
219   mRulerX = new DefaultRuler();  // IntrusivePtr which is unreferenced when ScrollView is destroyed.
220
221   RulerPtr rulerY = new DefaultRuler();  // IntrusivePtr which is unreferenced when ScrollView is destroyed.
222   rulerY->Disable();
223   mScrollView.SetRulerY( rulerY );
224
225   mScrollView.SetOvershootEnabled( true );
226 }
227
228 void TextSelectionToolbar::SetUp()
229 {
230   Actor self = Self();
231
232   self.SetResizePolicy( ResizePolicy::FIT_TO_CHILDREN, Dimension::ALL_DIMENSIONS );
233
234   // Create Layer to house the toolbar.
235   mToolbarLayer = Layer::New();
236   mToolbarLayer.SetResizePolicy( ResizePolicy::FIT_TO_CHILDREN, Dimension::ALL_DIMENSIONS );
237   mToolbarLayer.SetAnchorPoint( AnchorPoint::CENTER );
238   mToolbarLayer.SetParentOrigin( ParentOrigin::CENTER );
239
240   if( !mScrollView )
241   {
242     mScrollView = Toolkit::ScrollView::New();
243   }
244   SetUpScrollView();
245
246   // Toolbar must start with at least one option, adding further options with increase it's size
247   mTableOfButtons = Dali::Toolkit::TableView::New( 1, 1 );
248   mTableOfButtons.SetFitHeight( 0 );
249   mTableOfButtons.SetParentOrigin( ParentOrigin::CENTER_LEFT );
250   mTableOfButtons.SetAnchorPoint( AnchorPoint::CENTER_LEFT );
251
252   mScrollView.Add( mTableOfButtons );
253   mToolbarLayer.Add( mScrollView );
254
255   self.Add( mToolbarLayer );
256 }
257
258 void TextSelectionToolbar::SetUpScrollBar( bool enable )
259 {
260   if( enable )
261   {
262     if( ! mScrollBar )
263     {
264       mScrollBar = Toolkit::ScrollBar::New( Toolkit::ScrollBar::Horizontal );
265       mScrollBar.SetName( "Text popup scroll bar" );
266       mScrollBar.SetParentOrigin( ParentOrigin::BOTTOM_LEFT );
267       mScrollBar.SetAnchorPoint( AnchorPoint::TOP_LEFT );
268       mScrollBar.SetPosition( mScrollBarPadding.x, -mScrollBarPadding.y );
269       mScrollBar.SetResizePolicy( Dali::ResizePolicy::FIT_TO_CHILDREN, Dali::Dimension::WIDTH );
270       mScrollBar.SetOrientation( Quaternion( Radian( 1.5f * Math::PI ), Vector3::ZAXIS ) );
271       mScrollBar.GetPanGestureDetector().DetachAll();
272       mScrollView.Add( mScrollBar );
273     }
274   }
275   else
276   {
277     UnparentAndReset( mScrollBar );
278   }
279 }
280
281 void TextSelectionToolbar::OnScrollStarted( const Vector2& position )
282 {
283   mTableOfButtons.SetSensitive( false );
284 }
285
286 void TextSelectionToolbar::OnScrollCompleted( const Vector2& position )
287 {
288   mTableOfButtons.SetSensitive( true );
289 }
290
291 void TextSelectionToolbar::AddOption( Actor& option )
292 {
293   mTableOfButtons.AddChild( option, Toolkit::TableView::CellPosition( 0, mIndexInTable )  );
294   mTableOfButtons.SetFitWidth( mIndexInTable );
295   mIndexInTable++;
296 }
297
298 void TextSelectionToolbar::AddDivider( Actor& divider )
299 {
300   AddOption( divider );
301   mDividerIndexes.PushBack( mIndexInTable - 1u );
302 }
303
304 void TextSelectionToolbar::ResizeDividers( Size& size )
305 {
306   for( unsigned int i = 0; i < mDividerIndexes.Count(); ++i )
307   {
308     Actor divider = mTableOfButtons.GetChildAt( Toolkit::TableView::CellPosition( 0, mDividerIndexes[ i ] ) );
309     divider.SetSize( size );
310   }
311   RelayoutRequest();
312 }
313
314 void TextSelectionToolbar::RaiseAbove( Layer target )
315 {
316   mToolbarLayer.RaiseAbove( target );
317 }
318
319 void TextSelectionToolbar::ScrollTo( const Vector2& position )
320 {
321   mScrollView.ScrollTo( position, 0.f );
322 }
323
324 void TextSelectionToolbar::SetScrollBarPadding( const Vector2& padding )
325 {
326   mScrollBarPadding = padding;
327   if( mScrollBar )
328   {
329     mScrollBar.SetPosition( mScrollBarPadding.x, -mScrollBarPadding.y );
330   }
331
332   RelayoutRequest();
333 }
334
335 void TextSelectionToolbar::ConfigureScrollview( const Property::Map& properties )
336 {
337   // Set any properties specified for the label by iterating through all property key-value pairs.
338   for( unsigned int i = 0, mapCount = properties.Count(); i < mapCount; ++i )
339   {
340     const StringValuePair& propertyPair( properties.GetPair( i ) );
341
342     // Convert the property string to a property index.
343     Property::Index setPropertyIndex = mScrollView.GetPropertyIndex( propertyPair.first );
344     if( setPropertyIndex != Property::INVALID_INDEX )
345     {
346       // If the conversion worked, we have a valid property index,
347       // Set the property to the new value.
348       mScrollView.SetProperty( setPropertyIndex, propertyPair.second );
349     }
350   }
351
352   RelayoutRequest();
353 }
354
355 const Vector2& TextSelectionToolbar::GetScrollBarPadding() const
356 {
357   return mScrollBarPadding;
358 }
359
360 TextSelectionToolbar::TextSelectionToolbar()
361 : Control( ControlBehaviour( ControlBehaviour( CONTROL_BEHAVIOUR_DEFAULT ) ) ),
362   mMaxSize (),
363   mScrollBarPadding( DEFAULT_SCROLL_BAR_PADDING ),
364   mIndexInTable( 0 ),
365   mDividerIndexes()
366 {
367 }
368
369 TextSelectionToolbar::~TextSelectionToolbar()
370 {
371   mRulerX.Reset();
372 }
373
374 } // namespace Internal
375
376 } // namespace Toolkit
377
378 } // namespace Dali