[AT-SPI] Fix role setting
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / internal / controls / text-controls / text-selection-popup-impl.cpp
1 /*
2  * Copyright (c) 2020 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-popup-impl.h>
20
21 // EXTERNAL INCLUDES
22 #if defined(__GLIBC__)
23 #include <libintl.h>
24 #endif
25 #include <string.h>
26 #include <cfloat>
27 #include <dali/public-api/animation/animation.h>
28 #include <dali/public-api/math/vector2.h>
29 #include <dali/public-api/math/vector4.h>
30 #include <dali/public-api/object/property-map.h>
31 #include <dali/public-api/object/type-registry-helper.h>
32 #include <dali/integration-api/debug.h>
33
34 // INTERNAL INCLUDES
35 #include <dali-toolkit/public-api/controls/text-controls/text-label.h>
36 #include <dali-toolkit/devel-api/controls/control-depth-index-ranges.h>
37 #include <dali-toolkit/devel-api/controls/control-devel.h>
38 #include <dali-toolkit/devel-api/controls/buttons/button-devel.h>
39 #include <dali-toolkit/devel-api/controls/text-controls/text-selection-popup-callback-interface.h>
40 #include <dali-toolkit/public-api/visuals/color-visual-properties.h>
41 #include <dali-toolkit/public-api/visuals/text-visual-properties.h>
42 #include <dali-toolkit/public-api/visuals/visual-properties.h>
43 #include <dali-toolkit/internal/helpers/color-conversion.h>
44 #include <dali-toolkit/devel-api/visual-factory/visual-factory.h>
45 #include <dali-toolkit/internal/controls/control/control-data-impl.h>
46
47 namespace Dali
48 {
49
50 namespace Toolkit
51 {
52
53 namespace Internal
54 {
55
56 namespace
57 {
58 #if defined(__GLIBC__)
59 #define GET_LOCALE_TEXT(string) dgettext("dali-toolkit", string)
60 #endif
61
62 const std::string TEXT_SELECTION_POPUP_BUTTON_STYLE_NAME( "TextSelectionPopupButton" );
63 const Dali::Vector4 DEFAULT_OPTION_PRESSED_COLOR( Dali::Vector4( 0.24f, 0.72f, 0.8f, 1.0f ) );
64
65 #if defined(DEBUG_ENABLED)
66   Debug::Filter* gLogFilter = Debug::Filter::New(Debug::NoLogging, true, "LOG_TEXT_CONTROLS");
67 #endif
68
69 #ifdef DGETTEXT_ENABLED
70
71 #define POPUP_CUT_STRING GET_LOCALE_TEXT("IDS_COM_BODY_CUT")
72 #define POPUP_COPY_STRING GET_LOCALE_TEXT("IDS_COM_BODY_COPY")
73 #define POPUP_PASTE_STRING GET_LOCALE_TEXT("IDS_COM_BODY_PASTE")
74 #define POPUP_SELECT_STRING GET_LOCALE_TEXT("IDS_COM_SK_SELECT")
75 #define POPUP_SELECT_ALL_STRING GET_LOCALE_TEXT("IDS_COM_BODY_SELECT_ALL")
76 #define POPUP_CLIPBOARD_STRING GET_LOCALE_TEXT("IDS_COM_BODY_CLIPBOARD")
77
78 #else
79
80 #define POPUP_CUT_STRING  "Cut"
81 #define POPUP_COPY_STRING  "Copy"
82 #define POPUP_PASTE_STRING  "Paste"
83 #define POPUP_SELECT_STRING  "Select"
84 #define POPUP_SELECT_ALL_STRING  "Select All"
85 #define POPUP_CLIPBOARD_STRING  "Clipboard"
86
87 #endif
88
89 const char* const OPTION_SELECT_WORD = "option-select_word";                       // "Select Word" popup option.
90 const char* const OPTION_SELECT_ALL("option-select_all");                          // "Select All" popup option.
91 const char* const OPTION_CUT("optionCut");                                        // "Cut" popup option.
92 const char* const OPTION_COPY("optionCopy");                                      // "Copy" popup option.
93 const char* const OPTION_PASTE("optionPaste");                                    // "Paste" popup option.
94 const char* const OPTION_CLIPBOARD("optionClipboard");                            // "Clipboard" popup option.
95
96 const std::string IDS_LTR( "IDS_LTR" );
97 const std::string RTL_DIRECTION( "RTL" );
98
99 BaseHandle Create()
100 {
101   return Toolkit::TextSelectionPopup::New( NULL );
102 }
103
104 // Setup properties, signals and actions using the type-registry.
105
106 DALI_TYPE_REGISTRATION_BEGIN( Toolkit::TextSelectionPopup, Toolkit::Control, Create );
107
108 DALI_PROPERTY_REGISTRATION( Toolkit, TextSelectionPopup, "popupMaxSize", VECTOR2,   POPUP_MAX_SIZE )
109 DALI_PROPERTY_REGISTRATION( Toolkit, TextSelectionPopup, "popupMinSize", VECTOR2,   POPUP_MIN_SIZE )
110 DALI_PROPERTY_REGISTRATION( Toolkit, TextSelectionPopup, "optionMaxSize", VECTOR2,   OPTION_MAX_SIZE )
111 DALI_PROPERTY_REGISTRATION( Toolkit, TextSelectionPopup, "optionMinSize", VECTOR2,   OPTION_MIN_SIZE )
112 DALI_PROPERTY_REGISTRATION( Toolkit, TextSelectionPopup, "optionDividerSize", VECTOR2,   OPTION_DIVIDER_SIZE )
113 DALI_PROPERTY_REGISTRATION( Toolkit, TextSelectionPopup, "popupClipboardButtonImage", STRING, POPUP_CLIPBOARD_BUTTON_ICON_IMAGE )
114 DALI_PROPERTY_REGISTRATION( Toolkit, TextSelectionPopup, "popupCutButtonImage", STRING, POPUP_CUT_BUTTON_ICON_IMAGE )
115 DALI_PROPERTY_REGISTRATION( Toolkit, TextSelectionPopup, "popupCopyButtonImage", STRING, POPUP_COPY_BUTTON_ICON_IMAGE )
116 DALI_PROPERTY_REGISTRATION( Toolkit, TextSelectionPopup, "popupPasteButtonImage", STRING, POPUP_PASTE_BUTTON_ICON_IMAGE )
117 DALI_PROPERTY_REGISTRATION( Toolkit, TextSelectionPopup, "popupSelectButtonImage", STRING, POPUP_SELECT_BUTTON_ICON_IMAGE )
118 DALI_PROPERTY_REGISTRATION( Toolkit, TextSelectionPopup, "popupSelectAllButtonImage", STRING, POPUP_SELECT_ALL_BUTTON_ICON_IMAGE )
119 DALI_PROPERTY_REGISTRATION( Toolkit, TextSelectionPopup, "popupDividerColor", VECTOR4, POPUP_DIVIDER_COLOR )
120 DALI_PROPERTY_REGISTRATION( Toolkit, TextSelectionPopup, "popupIconColor", VECTOR4, POPUP_ICON_COLOR )
121 DALI_PROPERTY_REGISTRATION( Toolkit, TextSelectionPopup, "popupPressedColor", VECTOR4, POPUP_PRESSED_COLOR )
122 DALI_PROPERTY_REGISTRATION( Toolkit, TextSelectionPopup, "popupPressedImage", STRING, POPUP_PRESSED_IMAGE )
123 DALI_PROPERTY_REGISTRATION( Toolkit, TextSelectionPopup, "popupFadeInDuration", FLOAT, POPUP_FADE_IN_DURATION )
124 DALI_PROPERTY_REGISTRATION( Toolkit, TextSelectionPopup, "popupFadeOutDuration", FLOAT, POPUP_FADE_OUT_DURATION )
125 DALI_PROPERTY_REGISTRATION( Toolkit, TextSelectionPopup, "backgroundBorder", MAP, BACKGROUND_BORDER )
126
127 DALI_TYPE_REGISTRATION_END()
128
129 } // namespace
130
131
132 Dali::Toolkit::TextSelectionPopup TextSelectionPopup::New( TextSelectionPopupCallbackInterface* callbackInterface )
133 {
134   DALI_LOG_INFO( gLogFilter, Debug::Verbose, "TextSelectionPopup::New\n" );
135
136    // Create the implementation, temporarily owned by this handle on stack
137   IntrusivePtr< TextSelectionPopup > impl = new TextSelectionPopup( callbackInterface );
138
139   // Pass ownership to CustomActor handle
140   Dali::Toolkit::TextSelectionPopup handle( *impl );
141
142   // Second-phase init of the implementation
143   // This can only be done after the CustomActor connection has been made...
144   impl->Initialize();
145
146   return handle;
147 }
148
149 void TextSelectionPopup::SetProperty( BaseObject* object, Property::Index index, const Property::Value& value )
150 {
151   Toolkit::TextSelectionPopup selectionPopup = Toolkit::TextSelectionPopup::DownCast( Dali::BaseHandle( object ) );
152
153   if( selectionPopup )
154   {
155     TextSelectionPopup& impl( GetImpl( selectionPopup ) );
156
157     switch( index )
158     {
159       case Toolkit::TextSelectionPopup::Property::POPUP_MAX_SIZE:
160       {
161        impl.SetDimensionToCustomise( POPUP_MAXIMUM_SIZE, value.Get< Vector2 >() );
162        break;
163       }
164       case Toolkit::TextSelectionPopup::Property::OPTION_MAX_SIZE:
165       {
166         impl.SetDimensionToCustomise( OPTION_MAXIMUM_SIZE, value.Get< Vector2 >() );
167         break;
168       }
169       case Toolkit::TextSelectionPopup::Property::OPTION_MIN_SIZE:
170       {
171         impl.SetDimensionToCustomise( OPTION_MINIMUM_SIZE, value.Get< Vector2>() );
172         break;
173       }
174       case Toolkit::TextSelectionPopup::Property::OPTION_DIVIDER_SIZE:
175       {
176         impl.SetDimensionToCustomise( OPTION_DIVIDER_SIZE, value.Get< Vector2>() );
177         break;
178       }
179       case Toolkit::TextSelectionPopup::Property::POPUP_CLIPBOARD_BUTTON_ICON_IMAGE:
180       {
181         impl.SetButtonImage( Toolkit::TextSelectionPopup::CLIPBOARD, value.Get< std::string >() );
182         break;
183       }
184       case Toolkit::TextSelectionPopup::Property::POPUP_CUT_BUTTON_ICON_IMAGE:
185       {
186         impl.SetButtonImage( Toolkit::TextSelectionPopup::CUT, value.Get< std::string >() );
187         break;
188       }
189       case Toolkit::TextSelectionPopup::Property::POPUP_COPY_BUTTON_ICON_IMAGE:
190       {
191         impl.SetButtonImage( Toolkit::TextSelectionPopup::COPY, value.Get< std::string >() );
192         break;
193       }
194       case Toolkit::TextSelectionPopup::Property::POPUP_PASTE_BUTTON_ICON_IMAGE:
195       {
196         impl.SetButtonImage( Toolkit::TextSelectionPopup::PASTE, value.Get< std::string >() );
197         break;
198       }
199       case Toolkit::TextSelectionPopup::Property::POPUP_SELECT_BUTTON_ICON_IMAGE:
200       {
201         impl.SetButtonImage( Toolkit::TextSelectionPopup::SELECT, value.Get< std::string >() );
202         break;
203       }
204       case Toolkit::TextSelectionPopup::Property::POPUP_SELECT_ALL_BUTTON_ICON_IMAGE:
205       {
206         impl.SetButtonImage( Toolkit::TextSelectionPopup::SELECT_ALL, value.Get< std::string >() );
207         break;
208       }
209       case Toolkit::TextSelectionPopup::Property::POPUP_DIVIDER_COLOR:
210       {
211         impl.mDividerColor = value.Get< Vector4 >();
212         break;
213       }
214       case Toolkit::TextSelectionPopup::Property::POPUP_ICON_COLOR:
215       {
216         impl.mIconColor = value.Get< Vector4 >();
217         break;
218       }
219       case Toolkit::TextSelectionPopup::Property::POPUP_PRESSED_COLOR:
220       {
221         impl.mPressedColor = value.Get< Vector4 >();
222         break;
223       }
224       case Toolkit::TextSelectionPopup::Property::POPUP_PRESSED_IMAGE:
225       {
226         impl.SetPressedImage( value.Get< std::string >() );
227         break;
228       }
229       case Toolkit::TextSelectionPopup::Property::POPUP_FADE_IN_DURATION:
230       {
231         impl.mFadeInDuration = value.Get < float >();
232         break;
233       }
234       case Toolkit::TextSelectionPopup::Property::POPUP_FADE_OUT_DURATION:
235       {
236         impl.mFadeOutDuration = value.Get < float >();
237         break;
238       }
239       case Toolkit::TextSelectionPopup::Property::BACKGROUND_BORDER:
240       {
241         Property::Map map = value.Get<Property::Map>();
242         impl.CreateBackgroundBorder( map );
243         break;
244       }
245     } // switch
246   } // TextSelectionPopup
247 }
248
249 Property::Value TextSelectionPopup::GetProperty( BaseObject* object, Property::Index index )
250 {
251   Property::Value value;
252
253   Toolkit::TextSelectionPopup selectionPopup = Toolkit::TextSelectionPopup::DownCast( Dali::BaseHandle( object ) );
254
255   if( selectionPopup )
256   {
257     TextSelectionPopup& impl( GetImpl( selectionPopup ) );
258
259     switch( index )
260     {
261       case Toolkit::TextSelectionPopup::Property::POPUP_MAX_SIZE:
262       {
263         value = impl.GetDimensionToCustomise( POPUP_MAXIMUM_SIZE );
264         break;
265       }
266       case Toolkit::TextSelectionPopup::Property::OPTION_MAX_SIZE:
267       {
268         value = impl.GetDimensionToCustomise( OPTION_MAXIMUM_SIZE );
269         break;
270       }
271       case Toolkit::TextSelectionPopup::Property::OPTION_MIN_SIZE:
272       {
273         value = impl.GetDimensionToCustomise( OPTION_MINIMUM_SIZE );
274         break;
275       }
276       case Toolkit::TextSelectionPopup::Property::OPTION_DIVIDER_SIZE:
277       {
278         value = impl.GetDimensionToCustomise( OPTION_DIVIDER_SIZE );
279         break;
280       }
281       case Toolkit::TextSelectionPopup::Property::POPUP_CLIPBOARD_BUTTON_ICON_IMAGE:
282       {
283         value = impl.GetButtonImage( Toolkit::TextSelectionPopup::CLIPBOARD );
284         break;
285       }
286       case Toolkit::TextSelectionPopup::Property::POPUP_CUT_BUTTON_ICON_IMAGE:
287       {
288         value = impl.GetButtonImage( Toolkit::TextSelectionPopup::CUT );
289         break;
290       }
291       case Toolkit::TextSelectionPopup::Property::POPUP_COPY_BUTTON_ICON_IMAGE:
292       {
293         value = impl.GetButtonImage( Toolkit::TextSelectionPopup::COPY );
294         break;
295       }
296       case Toolkit::TextSelectionPopup::Property::POPUP_PASTE_BUTTON_ICON_IMAGE:
297       {
298         value = impl.GetButtonImage( Toolkit::TextSelectionPopup::PASTE );
299         break;
300       }
301       case Toolkit::TextSelectionPopup::Property::POPUP_SELECT_BUTTON_ICON_IMAGE:
302       {
303         value = impl.GetButtonImage( Toolkit::TextSelectionPopup::SELECT );
304         break;
305       }
306       case Toolkit::TextSelectionPopup::Property::POPUP_SELECT_ALL_BUTTON_ICON_IMAGE:
307       {
308         value = impl.GetButtonImage( Toolkit::TextSelectionPopup::SELECT_ALL );
309         break;
310       }
311       case Toolkit::TextSelectionPopup::Property::POPUP_PRESSED_IMAGE:
312       {
313         value = impl.GetPressedImage();
314         break;
315       }
316       case Toolkit::TextSelectionPopup::Property::POPUP_FADE_IN_DURATION:
317       {
318         value = impl.mFadeInDuration;
319         break;
320       }
321       case Toolkit::TextSelectionPopup::Property::POPUP_FADE_OUT_DURATION:
322       {
323         value = impl.mFadeOutDuration;
324         break;
325       }
326       case Toolkit::TextSelectionPopup::Property::BACKGROUND_BORDER:
327       {
328         Property::Map map;
329         Toolkit::Visual::Base visual = DevelControl::GetVisual( impl, Toolkit::TextSelectionPopup::Property::BACKGROUND_BORDER );
330         if( visual )
331         {
332           visual.CreatePropertyMap( map );
333         }
334         value = map;
335         break;
336       }
337     } // switch
338   }
339   return value;
340 }
341
342 void TextSelectionPopup::EnableButtons( Toolkit::TextSelectionPopup::Buttons buttonsToEnable )
343 {
344   mEnabledButtons = buttonsToEnable;
345   mButtonsChanged = true;
346 }
347
348 void TextSelectionPopup::RaiseAbove( Actor target )
349 {
350   if( mToolbar )
351   {
352     mToolbar.RaiseAbove( target );
353   }
354 }
355
356 void TextSelectionPopup::ShowPopup()
357 {
358   if( ( !mPopupShowing || mButtonsChanged ) &&
359       ( Toolkit::TextSelectionPopup::NONE != mEnabledButtons ) )
360   {
361     Actor self = Self();
362     AddPopupOptionsToToolbar( mShowIcons, mShowCaptions );
363
364     Animation animation = Animation::New( mFadeInDuration );
365     animation.AnimateTo( Property(self, Actor::Property::COLOR_ALPHA), 1.0f  );
366     animation.Play();
367     mPopupShowing = true;
368   }
369 }
370
371 void TextSelectionPopup::HidePopup()
372 {
373   if ( mPopupShowing )
374   {
375     mPopupShowing = false;
376     Actor self = Self();
377     Animation animation = Animation::New( mFadeOutDuration );
378     animation.AnimateTo( Property(self, Actor::Property::COLOR_ALPHA), 0.0f  );
379     animation.FinishedSignal().Connect( this, &TextSelectionPopup::HideAnimationFinished );
380     animation.Play();
381   }
382 }
383
384 void TextSelectionPopup::OnInitialize()
385 {
386   DALI_LOG_INFO( gLogFilter, Debug::General, "TextSelectionPopup::OnInitialize\n" );
387   Actor self = Self();
388   self.SetResizePolicy( ResizePolicy::FIT_TO_CHILDREN, Dimension::ALL_DIMENSIONS );
389   self.SetProperty( Actor::Property::COLOR_ALPHA, 0.0f );
390
391   DevelControl::SetAccessibilityConstructor( Self(), []( Dali::Actor actor ) {
392     return std::unique_ptr< Dali::Accessibility::Accessible >(
393       new Control::Impl::AccessibleImpl( actor, Dali::Accessibility::Role::DIALOG, true ) );
394   } );
395 }
396
397 void TextSelectionPopup::HideAnimationFinished( Animation& animation )
398 {
399   Actor self = Self();
400   if ( !mPopupShowing ) // During the Hide/Fade animation there could be a call to Show the Popup again, mPopupShowing will be true in this case.
401   {
402     DALI_LOG_INFO( gLogFilter, Debug::General, "TextSelectionPopup::HideAnimationFinished\n" );
403     UnparentAndReset( mToolbar );
404   }
405 }
406
407 bool TextSelectionPopup::OnCutButtonPressed( Toolkit::Button button )
408 {
409   if( mCallbackInterface )
410   {
411     mCallbackInterface->TextPopupButtonTouched( Toolkit::TextSelectionPopup::CUT );
412   }
413
414   return true;
415 }
416
417 bool TextSelectionPopup::OnCopyButtonPressed( Toolkit::Button button )
418 {
419   if( mCallbackInterface )
420   {
421     mCallbackInterface->TextPopupButtonTouched( Dali::Toolkit::TextSelectionPopup::COPY );
422   }
423
424   return true;
425 }
426
427 bool TextSelectionPopup::OnPasteButtonPressed( Toolkit::Button button )
428 {
429   if( mCallbackInterface )
430   {
431     mCallbackInterface->TextPopupButtonTouched( Dali::Toolkit::TextSelectionPopup::PASTE );
432   }
433
434   return true;
435 }
436
437 bool TextSelectionPopup::OnSelectButtonPressed( Toolkit::Button button )
438 {
439   if( mCallbackInterface )
440   {
441     mCallbackInterface->TextPopupButtonTouched( Dali::Toolkit::TextSelectionPopup::SELECT );
442   }
443
444   return true;
445 }
446
447 bool TextSelectionPopup::OnSelectAllButtonPressed( Toolkit::Button button )
448 {
449   if( mCallbackInterface )
450   {
451     mCallbackInterface->TextPopupButtonTouched( Dali::Toolkit::TextSelectionPopup::SELECT_ALL );
452   }
453
454   return true;
455 }
456
457 bool TextSelectionPopup::OnClipboardButtonPressed( Toolkit::Button button )
458 {
459   if( mCallbackInterface )
460   {
461     mCallbackInterface->TextPopupButtonTouched( Dali::Toolkit::TextSelectionPopup::CLIPBOARD );
462   }
463
464   return true;
465 }
466
467 void TextSelectionPopup::SetDimensionToCustomise( const PopupCustomisations& settingToCustomise, const Size& dimension )
468 {
469   switch( settingToCustomise )
470   {
471     case POPUP_MAXIMUM_SIZE :
472     {
473       mPopupMaxSize = dimension;
474       if ( mToolbar )
475       {
476         mToolbar.SetProperty( Toolkit::TextSelectionToolbar::Property::MAX_SIZE, dimension );
477       }
478       break;
479     }
480     case OPTION_MAXIMUM_SIZE :
481     {
482       mOptionMaxSize = dimension;
483       // Option max size not currently currently supported
484       break;
485     }
486     case OPTION_MINIMUM_SIZE :
487     {
488       mOptionMinSize = dimension;
489       // Option min size not currently currently supported
490       break;
491     }
492     case OPTION_DIVIDER_SIZE :
493     {
494       mOptionDividerSize = dimension;
495       if ( mToolbar )
496       {
497         // Resize Dividers not currently supported
498       }
499       break;
500     }
501   } // switch
502 }
503
504 Size TextSelectionPopup::GetDimensionToCustomise( const PopupCustomisations& settingToCustomise ) const
505 {
506   switch( settingToCustomise )
507   {
508     case POPUP_MAXIMUM_SIZE :
509     {
510       if ( mToolbar )
511       {
512         return mToolbar.GetProperty( Toolkit::TextSelectionToolbar::Property::MAX_SIZE ).Get< Vector2 >();
513       }
514       else
515       {
516         return mPopupMaxSize;
517       }
518     }
519     case OPTION_MAXIMUM_SIZE :
520     {
521       return mOptionMaxSize;
522     }
523     case OPTION_MINIMUM_SIZE :
524     {
525       return mOptionMinSize;
526     }
527     case OPTION_DIVIDER_SIZE :
528     {
529       return mOptionDividerSize;
530     }
531   } // switch
532
533   return Size::ZERO;
534 }
535
536 void TextSelectionPopup::SetButtonImage( Toolkit::TextSelectionPopup::Buttons button, const std::string& image )
537 {
538    switch ( button )
539    {
540      case Toolkit::TextSelectionPopup::CLIPBOARD:
541      {
542        mClipboardIconImage  = image;
543        break;
544      }
545      case Toolkit::TextSelectionPopup::CUT :
546      {
547        mCutIconImage = image;
548        break;
549      }
550      case Toolkit::TextSelectionPopup::COPY :
551      {
552        mCopyIconImage = image;
553        break;
554      }
555      case Toolkit::TextSelectionPopup::PASTE :
556      {
557        mPasteIconImage = image;
558        break;
559      }
560      case Toolkit::TextSelectionPopup::SELECT :
561      {
562        mSelectIconImage = image;
563        break;
564      }
565      case Toolkit::TextSelectionPopup::SELECT_ALL :
566      {
567        mSelectAllIconImage = image;
568        break;
569      }
570      default :
571      {
572        DALI_ASSERT_DEBUG( "TextSelectionPopup SetPopupImage Unknown Button" );
573      }
574    } // switch
575 }
576
577 const std::string& TextSelectionPopup::GetButtonImage( Toolkit::TextSelectionPopup::Buttons button ) const
578 {
579   switch ( button )
580   {
581     case Toolkit::TextSelectionPopup::CLIPBOARD:
582     {
583       return mClipboardIconImage;
584       break;
585     }
586     case Toolkit::TextSelectionPopup::CUT:
587     {
588       return mCutIconImage;
589       break;
590     }
591     case Toolkit::TextSelectionPopup::COPY:
592     {
593       return mCopyIconImage;
594       break;
595     }
596     case Toolkit::TextSelectionPopup::PASTE:
597     {
598       return mPasteIconImage;
599       break;
600     }
601     case Toolkit::TextSelectionPopup::SELECT:
602     {
603       return mSelectIconImage;
604       break;
605     }
606     case Toolkit::TextSelectionPopup::SELECT_ALL:
607     {
608       return mSelectAllIconImage;
609       break;
610     }
611     case Toolkit::TextSelectionPopup::NONE:
612     {
613       break;
614     }
615   } // switch
616
617   DALI_ASSERT_DEBUG( "TextSelectionPopup GetPopupImage Unknown Button" );
618   static std::string empty;
619   return empty;
620 }
621
622 void TextSelectionPopup::SetPressedImage( const std::string& filename )
623 {
624   mPressedImage = filename;
625 }
626
627 std::string TextSelectionPopup::GetPressedImage() const
628 {
629   return mPressedImage;
630 }
631
632  void TextSelectionPopup::CreateOrderedListOfPopupOptions()
633  {
634    mOrderListOfButtons.clear();
635    mOrderListOfButtons.reserve( 8u );
636
637    // Create button for each possible option using Option priority
638    mOrderListOfButtons.push_back( ButtonRequirement( Toolkit::TextSelectionPopup::CUT, mCutOptionPriority, OPTION_CUT, POPUP_CUT_STRING , 0 != ( mEnabledButtons & Toolkit::TextSelectionPopup::CUT)  ) );
639    mOrderListOfButtons.push_back( ButtonRequirement( Toolkit::TextSelectionPopup::COPY, mCopyOptionPriority, OPTION_COPY, POPUP_COPY_STRING, 0 != ( mEnabledButtons & Toolkit::TextSelectionPopup::COPY)  ) );
640    mOrderListOfButtons.push_back( ButtonRequirement( Toolkit::TextSelectionPopup::PASTE, mPasteOptionPriority, OPTION_PASTE, POPUP_PASTE_STRING, 0 != ( mEnabledButtons & Toolkit::TextSelectionPopup::PASTE)  ) );
641    mOrderListOfButtons.push_back( ButtonRequirement( Toolkit::TextSelectionPopup::SELECT, mSelectOptionPriority, OPTION_SELECT_WORD, POPUP_SELECT_STRING, 0 != ( mEnabledButtons & Toolkit::TextSelectionPopup::SELECT)  ) );
642    mOrderListOfButtons.push_back( ButtonRequirement( Toolkit::TextSelectionPopup::SELECT_ALL, mSelectAllOptionPriority, OPTION_SELECT_ALL, POPUP_SELECT_ALL_STRING, 0 != ( mEnabledButtons & Toolkit::TextSelectionPopup::SELECT_ALL)  ) );
643    mOrderListOfButtons.push_back( ButtonRequirement( Toolkit::TextSelectionPopup::CLIPBOARD, mClipboardOptionPriority, OPTION_CLIPBOARD, POPUP_CLIPBOARD_STRING, 0 != ( mEnabledButtons & Toolkit::TextSelectionPopup::CLIPBOARD)  ) );
644
645    // Sort the buttons according their priorities.
646    std::sort( mOrderListOfButtons.begin(), mOrderListOfButtons.end(), TextSelectionPopup::ButtonPriorityCompare() );
647  }
648
649  void TextSelectionPopup::AddOption( const ButtonRequirement& button, bool showDivider, bool showIcons, bool showCaption  )
650  {
651    // 1. Create a option.
652    DALI_LOG_INFO( gLogFilter, Debug::General, "TextSelectionPopup::AddOption\n" );
653
654    Toolkit::PushButton option = Toolkit::PushButton::New();
655    option.SetProperty( Dali::Actor::Property::NAME, button.name );
656    option.SetResizePolicy( ResizePolicy::USE_NATURAL_SIZE, Dimension::ALL_DIMENSIONS );
657
658    switch( button.id )
659    {
660      case Toolkit::TextSelectionPopup::CUT:
661      {
662        option.ClickedSignal().Connect( this, &TextSelectionPopup::OnCutButtonPressed );
663        break;
664      }
665      case Toolkit::TextSelectionPopup::COPY:
666      {
667        option.ClickedSignal().Connect( this, &TextSelectionPopup::OnCopyButtonPressed );
668        break;
669      }
670      case Toolkit::TextSelectionPopup::PASTE:
671      {
672        option.ClickedSignal().Connect( this, &TextSelectionPopup::OnPasteButtonPressed );
673        break;
674      }
675      case Toolkit::TextSelectionPopup::SELECT:
676      {
677        option.ClickedSignal().Connect( this, &TextSelectionPopup::OnSelectButtonPressed );
678        break;
679      }
680      case Toolkit::TextSelectionPopup::SELECT_ALL:
681      {
682        option.ClickedSignal().Connect( this, &TextSelectionPopup::OnSelectAllButtonPressed );
683        break;
684      }
685      case Toolkit::TextSelectionPopup::CLIPBOARD:
686      {
687        option.ClickedSignal().Connect( this, &TextSelectionPopup::OnClipboardButtonPressed );
688        break;
689      }
690      case Toolkit::TextSelectionPopup::NONE:
691      {
692        // Nothing to do:
693        break;
694      }
695    }
696
697    // 2. Set the options contents.
698    if( showCaption )
699    {
700      // PushButton layout properties.
701      option.SetProperty( Toolkit::PushButton::Property::LABEL_PADDING, Vector4( 24.0f, 24.0f, 14.0f, 14.0f ) );
702
703      // Label properties.
704      Property::Map buttonLabelProperties;
705      buttonLabelProperties.Insert( Toolkit::TextVisual::Property::TEXT, button.caption );
706      option.SetProperty( Toolkit::Button::Property::LABEL, buttonLabelProperties );
707    }
708    if( showIcons )
709    {
710      option.SetProperty( Toolkit::PushButton::Property::ICON_PADDING, Vector4( 10.0f, 10.0f, 10.0f, 10.0f ) );
711      option.SetProperty( Toolkit::DevelButton::Property::LABEL_RELATIVE_ALIGNMENT, "BOTTOM" );
712
713      // TODO: This is temporarily disabled until the text-selection-popup image API is changed to strings.
714      //option.SetProperty(  Toolkit::Button::Property::SELECTED_VISUAL, button.icon );
715      //option.SetProperty(  Toolkit::Button::Property::UNSELECTED_VISUAL, button.icon );
716    }
717
718    // 3. Set the normal option image (blank / Transparent).
719    option.SetProperty( Toolkit::Button::Property::UNSELECTED_BACKGROUND_VISUAL, "" );
720
721    // 4. Set the pressed option image.
722    Property::Value selectedBackgroundValue( mPressedImage );
723    if( mPressedImage.empty() )
724    {
725      // The image can be blank, the color can be used in that case.
726      selectedBackgroundValue = Property::Value{ { Toolkit::Visual::Property::TYPE, Toolkit::Visual::COLOR  },
727                                                 { Toolkit::ColorVisual::Property::MIX_COLOR, mPressedColor } };
728    }
729    option.SetProperty( Toolkit::Button::Property::SELECTED_BACKGROUND_VISUAL, selectedBackgroundValue );
730    option.SetProperty( Toolkit::Control::Property::STYLE_NAME, TEXT_SELECTION_POPUP_BUTTON_STYLE_NAME );
731
732    // 5 Add option to tool bar
733    mToolbar.AddOption( option );
734
735    // 6. Add the divider
736    if( showDivider )
737    {
738      const Size size( mOptionDividerSize.width, 0.0f ); // Height FILL_TO_PARENT
739
740      Toolkit::Control divider = Toolkit::Control::New();
741 #ifdef DECORATOR_DEBUG
742      divider.SetProperty( Dali::Actor::Property::NAME,"Text's popup divider");
743 #endif
744      divider.SetProperty( Actor::Property::SIZE, size );
745      divider.SetResizePolicy( ResizePolicy::FILL_TO_PARENT, Dimension::HEIGHT );
746      divider.SetBackgroundColor( mDividerColor  );
747      mToolbar.AddDivider( divider );
748    }
749  }
750
751  std::size_t TextSelectionPopup::GetNumberOfEnabledOptions() const
752  {
753    std::size_t numberOfOptions = 0u;
754    for( std::vector<ButtonRequirement>::const_iterator it = mOrderListOfButtons.begin(), endIt = mOrderListOfButtons.end(); ( it != endIt ); ++it )
755    {
756      const ButtonRequirement& button( *it );
757      if( button.enabled )
758      {
759        ++numberOfOptions;
760      }
761    }
762
763    return numberOfOptions;
764  }
765
766  void TextSelectionPopup::AddPopupOptionsToToolbar( bool showIcons, bool showCaptions )
767  {
768    DALI_LOG_INFO( gLogFilter, Debug::General, "TextSelectionPopup::AddPopupOptionsToToolbar\n" );
769
770    CreateOrderedListOfPopupOptions();
771
772    mButtonsChanged = false;
773    UnparentAndReset( mToolbar);
774
775    if( !mToolbar )
776    {
777      Actor self = Self();
778      mToolbar = Toolkit::TextSelectionToolbar::New();
779      if ( mPopupMaxSize != Vector2::ZERO ) // If PopupMaxSize property set then apply to Toolbar. Toolbar currently is not retriving this from json
780      {
781        mToolbar.SetProperty( Toolkit::TextSelectionToolbar::Property::MAX_SIZE, mPopupMaxSize );
782      }
783      mToolbar.SetProperty( Actor::Property::PARENT_ORIGIN, ParentOrigin::CENTER );
784 #ifdef DECORATOR_DEBUG
785      mToolbar.SetProperty( Dali::Actor::Property::NAME,"TextSelectionToolbar");
786 #endif
787      self.Add( mToolbar );
788    }
789
790    // Whether to mirror the list of buttons (for right to left languages)
791    bool mirror = false;
792 #if defined(__GLIBC__)
793    char* idsLtr = GET_LOCALE_TEXT( IDS_LTR.c_str() );
794    if( NULL != idsLtr )
795    {
796      mirror = ( 0 == strcmp( idsLtr, RTL_DIRECTION.c_str() ) );
797
798      if( mirror )
799      {
800        std::reverse( mOrderListOfButtons.begin(), mOrderListOfButtons.end() );
801      }
802    }
803 #endif
804
805    // Iterate list of buttons and add active ones to Toolbar
806    std::size_t numberOfOptionsRequired =  GetNumberOfEnabledOptions();
807    std::size_t numberOfOptionsAdded = 0u;
808    for( std::vector<ButtonRequirement>::const_iterator it = mOrderListOfButtons.begin(), endIt = mOrderListOfButtons.end(); ( it != endIt ); ++it )
809    {
810      const ButtonRequirement& button( *it );
811      if ( button.enabled )
812      {
813        numberOfOptionsAdded++;
814        AddOption(  button, ( numberOfOptionsAdded < numberOfOptionsRequired ) , showIcons, showCaptions );
815      }
816    }
817
818    if( mirror )
819    {
820      mToolbar.ScrollTo( Vector2( mPopupMaxSize.x, 0.f ) );
821    }
822  }
823
824 void TextSelectionPopup::CreateBackgroundBorder( Property::Map& propertyMap )
825 {
826   // Removes previous image if necessary
827   DevelControl::UnregisterVisual( *this, Toolkit::TextSelectionPopup::Property::BACKGROUND_BORDER );
828
829   if( ! propertyMap.Empty() )
830   {
831     Toolkit::Visual::Base visual = Toolkit::VisualFactory::Get().CreateVisual( propertyMap );
832
833     if( visual )
834     {
835       DevelControl::RegisterVisual( *this, Toolkit::TextSelectionPopup::Property::BACKGROUND_BORDER, visual, DepthIndex::CONTENT );
836     }
837   }
838 }
839
840 TextSelectionPopup::TextSelectionPopup( TextSelectionPopupCallbackInterface* callbackInterface )
841 : Control( ControlBehaviour( CONTROL_BEHAVIOUR_DEFAULT ) ),
842   mToolbar(),
843   mPopupMaxSize(),
844   mOptionMaxSize(),
845   mOptionMinSize(),
846   mOptionDividerSize(),
847   mEnabledButtons( Toolkit::TextSelectionPopup::NONE ),
848   mCallbackInterface( callbackInterface ),
849   mPressedColor( DEFAULT_OPTION_PRESSED_COLOR ),
850   mDividerColor( Color::WHITE ),
851   mIconColor( Color::WHITE ),
852   mSelectOptionPriority( 1 ),
853   mSelectAllOptionPriority ( 2 ),
854   mCutOptionPriority ( 4 ),
855   mCopyOptionPriority ( 3 ),
856   mPasteOptionPriority ( 5 ),
857   mClipboardOptionPriority( 6 ),
858   mFadeInDuration(0.0f),
859   mFadeOutDuration(0.0f),
860   mShowIcons( false ),
861   mShowCaptions( true ),
862   mPopupShowing( false ),
863   mButtonsChanged( false )
864 {
865 }
866
867 TextSelectionPopup::~TextSelectionPopup()
868 {
869 }
870
871
872 } // namespace Internal
873
874 } // namespace Toolkit
875
876 } // namespace Dali