[AT-SPI] Fix role setting
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / internal / controls / text-controls / text-label-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-label-impl.h>
20
21 // EXTERNAL INCLUDES
22 #include <dali/public-api/common/dali-common.h>
23 #include <dali/public-api/object/type-registry-helper.h>
24 #include <dali/devel-api/common/stage.h>
25 #include <dali/devel-api/object/property-helper-devel.h>
26 #include <dali/devel-api/adaptor-framework/image-loading.h>
27 #include <dali/devel-api/adaptor-framework/window-devel.h>
28 #include <dali/integration-api/debug.h>
29
30 // INTERNAL INCLUDES
31 #include <dali-toolkit/public-api/text/text-enumerations.h>
32 #include <dali-toolkit/devel-api/text/rendering-backend.h>
33 #include <dali-toolkit/devel-api/controls/control-depth-index-ranges.h>
34 #include <dali-toolkit/internal/text/property-string-parser.h>
35 #include <dali-toolkit/internal/text/rendering/text-backend.h>
36 #include <dali-toolkit/internal/text/text-effects-style.h>
37 #include <dali-toolkit/internal/text/text-font-style.h>
38 #include <dali-toolkit/internal/text/text-view.h>
39 #include <dali-toolkit/internal/text/text-definitions.h>
40 #include <dali-toolkit/internal/styling/style-manager-impl.h>
41
42 #include <dali-toolkit/public-api/align-enumerations.h>
43 #include <dali-toolkit/internal/text/text-enumerations-impl.h>
44 #include <dali-toolkit/devel-api/controls/control-devel.h>
45 #include <dali-toolkit/devel-api/visual-factory/visual-base.h>
46 #include <dali-toolkit/public-api/visuals/text-visual-properties.h>
47 #include <dali-toolkit/public-api/visuals/visual-properties.h>
48 #include <dali-toolkit/devel-api/visual-factory/visual-factory.h>
49
50 #include <dali-toolkit/devel-api/controls/text-controls/text-label-devel.h>
51
52 using namespace Dali::Toolkit::Text;
53
54 namespace Dali
55 {
56
57 namespace Toolkit
58 {
59
60 namespace Internal
61 {
62
63 namespace
64 {
65 const unsigned int DEFAULT_RENDERING_BACKEND = Dali::Toolkit::DevelText::DEFAULT_RENDERING_BACKEND;
66
67 /**
68  * @brief How the text visual should be aligned vertically inside the control.
69  *
70  * 0.0f aligns the text to the top, 0.5f aligns the text to the center, 1.0f aligns the text to the bottom.
71  * The alignment depends on the alignment value of the text label (Use Text::VerticalAlignment enumerations).
72  */
73 const float VERTICAL_ALIGNMENT_TABLE[ Text::VerticalAlignment::BOTTOM + 1 ] =
74 {
75   0.0f,  // VerticalAlignment::TOP
76   0.5f,  // VerticalAlignment::CENTER
77   1.0f   // VerticalAlignment::BOTTOM
78 };
79
80 const std::string TEXT_FIT_ENABLE_KEY( "enable" );
81 const std::string TEXT_FIT_MIN_SIZE_KEY( "minSize" );
82 const std::string TEXT_FIT_MAX_SIZE_KEY( "maxSize" );
83 const std::string TEXT_FIT_STEP_SIZE_KEY( "stepSize" );
84 const std::string TEXT_FIT_FONT_SIZE_TYPE_KEY( "fontSizeType" );
85
86 #if defined ( DEBUG_ENABLED )
87 Debug::Filter* gLogFilter = Debug::Filter::New(Debug::NoLogging, true, "LOG_TEXT_CONTROLS");
88 #endif
89
90 const Scripting::StringEnum AUTO_SCROLL_STOP_MODE_TABLE[] =
91 {
92   { "IMMEDIATE", Toolkit::TextLabel::AutoScrollStopMode::IMMEDIATE },
93   { "FINISH_LOOP",  Toolkit::TextLabel::AutoScrollStopMode::FINISH_LOOP  },
94 };
95 const unsigned int AUTO_SCROLL_STOP_MODE_TABLE_COUNT = sizeof( AUTO_SCROLL_STOP_MODE_TABLE ) / sizeof( AUTO_SCROLL_STOP_MODE_TABLE[0] );
96
97 // Type registration
98 BaseHandle Create()
99 {
100   return Toolkit::TextLabel::New();
101 }
102
103 // Setup properties, signals and actions using the type-registry.
104 DALI_TYPE_REGISTRATION_BEGIN( Toolkit::TextLabel, Toolkit::Control, Create );
105
106 DALI_PROPERTY_REGISTRATION( Toolkit,           TextLabel, "text",                      STRING,  TEXT                       )
107 DALI_PROPERTY_REGISTRATION( Toolkit,           TextLabel, "fontFamily",                STRING,  FONT_FAMILY                )
108 DALI_PROPERTY_REGISTRATION( Toolkit,           TextLabel, "fontStyle",                 MAP,     FONT_STYLE                 )
109 DALI_PROPERTY_REGISTRATION( Toolkit,           TextLabel, "pointSize",                 FLOAT,   POINT_SIZE                 )
110 DALI_PROPERTY_REGISTRATION( Toolkit,           TextLabel, "multiLine",                 BOOLEAN, MULTI_LINE                 )
111 DALI_PROPERTY_REGISTRATION( Toolkit,           TextLabel, "horizontalAlignment",       STRING,  HORIZONTAL_ALIGNMENT       )
112 DALI_PROPERTY_REGISTRATION( Toolkit,           TextLabel, "verticalAlignment",         STRING,  VERTICAL_ALIGNMENT         )
113 DALI_PROPERTY_REGISTRATION( Toolkit,           TextLabel, "enableMarkup",              BOOLEAN, ENABLE_MARKUP              )
114 DALI_PROPERTY_REGISTRATION( Toolkit,           TextLabel, "enableAutoScroll",          BOOLEAN, ENABLE_AUTO_SCROLL         )
115 DALI_PROPERTY_REGISTRATION( Toolkit,           TextLabel, "autoScrollSpeed",           INTEGER, AUTO_SCROLL_SPEED          )
116 DALI_PROPERTY_REGISTRATION( Toolkit,           TextLabel, "autoScrollLoopCount",       INTEGER, AUTO_SCROLL_LOOP_COUNT     )
117 DALI_PROPERTY_REGISTRATION( Toolkit,           TextLabel, "autoScrollGap",             FLOAT,   AUTO_SCROLL_GAP            )
118 DALI_PROPERTY_REGISTRATION( Toolkit,           TextLabel, "lineSpacing",               FLOAT,   LINE_SPACING               )
119 DALI_PROPERTY_REGISTRATION( Toolkit,           TextLabel, "underline",                 MAP,     UNDERLINE                  )
120 DALI_PROPERTY_REGISTRATION( Toolkit,           TextLabel, "shadow",                    MAP,     SHADOW                     )
121 DALI_PROPERTY_REGISTRATION( Toolkit,           TextLabel, "emboss",                    MAP,     EMBOSS                     )
122 DALI_PROPERTY_REGISTRATION( Toolkit,           TextLabel, "outline",                   MAP,     OUTLINE                    )
123 DALI_PROPERTY_REGISTRATION( Toolkit,           TextLabel, "pixelSize",                 FLOAT,   PIXEL_SIZE                 )
124 DALI_PROPERTY_REGISTRATION( Toolkit,           TextLabel, "ellipsis",                  BOOLEAN, ELLIPSIS                   )
125 DALI_PROPERTY_REGISTRATION( Toolkit,           TextLabel, "autoScrollLoopDelay",       FLOAT,   AUTO_SCROLL_LOOP_DELAY     )
126 DALI_PROPERTY_REGISTRATION( Toolkit,           TextLabel, "autoScrollStopMode",        STRING,  AUTO_SCROLL_STOP_MODE      )
127 DALI_PROPERTY_REGISTRATION_READ_ONLY( Toolkit, TextLabel, "lineCount",                 INTEGER, LINE_COUNT                 )
128 DALI_PROPERTY_REGISTRATION( Toolkit,           TextLabel, "lineWrapMode",              INTEGER, LINE_WRAP_MODE             )
129 DALI_DEVEL_PROPERTY_REGISTRATION_READ_ONLY( Toolkit, TextLabel, "textDirection",       INTEGER, TEXT_DIRECTION             )
130 DALI_DEVEL_PROPERTY_REGISTRATION( Toolkit,     TextLabel, "verticalLineAlignment",     INTEGER, VERTICAL_LINE_ALIGNMENT    )
131 DALI_DEVEL_PROPERTY_REGISTRATION( Toolkit,     TextLabel, "textBackground",            MAP,     BACKGROUND                 )
132 DALI_DEVEL_PROPERTY_REGISTRATION( Toolkit,     TextLabel, "ignoreSpacesAfterText",     BOOLEAN, IGNORE_SPACES_AFTER_TEXT   )
133 DALI_DEVEL_PROPERTY_REGISTRATION( Toolkit,     TextLabel, "matchSystemLanguageDirection", BOOLEAN, MATCH_SYSTEM_LANGUAGE_DIRECTION )
134 DALI_DEVEL_PROPERTY_REGISTRATION( Toolkit,     TextLabel, "textFit",                   MAP,     TEXT_FIT                   )
135 DALI_DEVEL_PROPERTY_REGISTRATION( Toolkit,     TextLabel, "minLineSize",               FLOAT,   MIN_LINE_SIZE              )
136 DALI_DEVEL_PROPERTY_REGISTRATION( Toolkit,     TextLabel, "renderingBackend",          INTEGER, RENDERING_BACKEND          )
137 DALI_ANIMATABLE_PROPERTY_REGISTRATION_WITH_DEFAULT( Toolkit, TextLabel, "textColor",      Color::BLACK,     TEXT_COLOR     )
138 DALI_ANIMATABLE_PROPERTY_COMPONENT_REGISTRATION( Toolkit,    TextLabel, "textColorRed",   TEXT_COLOR_RED,   TEXT_COLOR, 0  )
139 DALI_ANIMATABLE_PROPERTY_COMPONENT_REGISTRATION( Toolkit,    TextLabel, "textColorGreen", TEXT_COLOR_GREEN, TEXT_COLOR, 1  )
140 DALI_ANIMATABLE_PROPERTY_COMPONENT_REGISTRATION( Toolkit,    TextLabel, "textColorBlue",  TEXT_COLOR_BLUE,  TEXT_COLOR, 2  )
141 DALI_ANIMATABLE_PROPERTY_COMPONENT_REGISTRATION( Toolkit,    TextLabel, "textColorAlpha", TEXT_COLOR_ALPHA, TEXT_COLOR, 3  )
142 DALI_TYPE_REGISTRATION_END()
143
144 /// Parses the property map for the TEXT_FIT property
145 void ParseTextFitProperty(Text::ControllerPtr& controller, const Property::Map* propertiesMap)
146 {
147   if ( propertiesMap && !propertiesMap->Empty() )
148   {
149     bool enabled = false;
150     float minSize = 0.f;
151     float maxSize = 0.f;
152     float stepSize = 0.f;
153     bool isMinSizeSet = false, isMaxSizeSet = false, isStepSizeSet = false;
154     Controller::FontSizeType type = Controller::FontSizeType::POINT_SIZE;
155
156     const unsigned int numberOfItems = propertiesMap->Count();
157
158     // Parses and applies
159     for( unsigned int index = 0u; index < numberOfItems; ++index )
160     {
161       const KeyValuePair& valueGet = propertiesMap->GetKeyValue( index );
162
163       if( ( Controller::TextFitInfo::Property::TEXT_FIT_ENABLE == valueGet.first.indexKey ) || ( TEXT_FIT_ENABLE_KEY == valueGet.first.stringKey ) )
164       {
165         /// Enable key.
166         enabled = valueGet.second.Get< bool >();
167       }
168       else if( ( Controller::TextFitInfo::Property::TEXT_FIT_MIN_SIZE == valueGet.first.indexKey ) || ( TEXT_FIT_MIN_SIZE_KEY == valueGet.first.stringKey ) )
169       {
170         /// min size.
171         minSize = valueGet.second.Get< float >();
172         isMinSizeSet = true;
173       }
174       else if( ( Controller::TextFitInfo::Property::TEXT_FIT_MAX_SIZE == valueGet.first.indexKey ) || ( TEXT_FIT_MAX_SIZE_KEY == valueGet.first.stringKey ) )
175       {
176         /// max size.
177         maxSize = valueGet.second.Get< float >();
178         isMaxSizeSet = true;
179       }
180       else if( ( Controller::TextFitInfo::Property::TEXT_FIT_STEP_SIZE == valueGet.first.indexKey ) || ( TEXT_FIT_STEP_SIZE_KEY == valueGet.first.stringKey ) )
181       {
182         /// step size.
183         stepSize = valueGet.second.Get< float >();
184         isStepSizeSet = true;
185       }
186       else if( ( Controller::TextFitInfo::Property::TEXT_FIT_FONT_SIZE_TYPE == valueGet.first.indexKey ) || ( TEXT_FIT_FONT_SIZE_TYPE_KEY == valueGet.first.stringKey ) )
187       {
188         if( "pixelSize" == valueGet.second.Get< std::string >() )
189         {
190           type = Controller::FontSizeType::PIXEL_SIZE;
191         }
192       }
193     }
194
195     controller->SetTextFitEnabled( enabled );
196     if( isMinSizeSet )
197     {
198       controller->SetTextFitMinSize( minSize, type );
199     }
200     if( isMaxSizeSet )
201     {
202       controller->SetTextFitMaxSize( maxSize, type );
203     }
204     if( isStepSizeSet )
205     {
206       controller->SetTextFitStepSize( stepSize, type );
207     }
208   }
209 }
210
211 } // namespace
212
213 Toolkit::TextLabel TextLabel::New()
214 {
215   // Create the implementation, temporarily owned by this handle on stack
216   IntrusivePtr< TextLabel > impl = new TextLabel();
217
218   // Pass ownership to CustomActor handle
219   Toolkit::TextLabel handle( *impl );
220
221   // Second-phase init of the implementation
222   // This can only be done after the CustomActor connection has been made...
223   impl->Initialize();
224
225   return handle;
226 }
227
228 void TextLabel::SetProperty( BaseObject* object, Property::Index index, const Property::Value& value )
229 {
230   Toolkit::TextLabel label = Toolkit::TextLabel::DownCast( Dali::BaseHandle( object ) );
231
232   if( label )
233   {
234     TextLabel& impl( GetImpl( label ) );
235     DALI_ASSERT_ALWAYS( impl.mController && "No text contoller" );
236
237     switch( index )
238     {
239       case Toolkit::DevelTextLabel::Property::RENDERING_BACKEND:
240       {
241         int backend = value.Get< int >();
242
243 #ifndef ENABLE_VECTOR_BASED_TEXT_RENDERING
244         if( DevelText::RENDERING_VECTOR_BASED == backend )
245         {
246           backend = TextAbstraction::BITMAP_GLYPH; // Fallback to bitmap-based rendering
247         }
248 #endif
249         if( impl.mRenderingBackend != backend )
250         {
251           impl.mRenderingBackend = backend;
252           impl.mTextUpdateNeeded = true;
253
254           // When using the vector-based rendering, the size of the GLyphs are different
255           TextAbstraction::GlyphType glyphType = (DevelText::RENDERING_VECTOR_BASED == impl.mRenderingBackend) ? TextAbstraction::VECTOR_GLYPH : TextAbstraction::BITMAP_GLYPH;
256           impl.mController->SetGlyphType( glyphType );
257         }
258         break;
259       }
260       case Toolkit::TextLabel::Property::TEXT:
261       {
262         impl.mController->SetText( value.Get< std::string >() );
263         break;
264       }
265       case Toolkit::TextLabel::Property::FONT_FAMILY:
266       {
267         const std::string& fontFamily = value.Get< std::string >();
268
269         DALI_LOG_INFO( gLogFilter, Debug::Verbose, "TextLabel::SetProperty Property::FONT_FAMILY newFont(%s)\n", fontFamily.c_str() );
270         impl.mController->SetDefaultFontFamily( fontFamily );
271         break;
272       }
273       case Toolkit::TextLabel::Property::FONT_STYLE:
274       {
275         SetFontStyleProperty( impl.mController, value, Text::FontStyle::DEFAULT );
276         break;
277       }
278       case Toolkit::TextLabel::Property::POINT_SIZE:
279       {
280         const float pointSize = value.Get< float >();
281
282         if( !Equals( impl.mController->GetDefaultFontSize( Text::Controller::POINT_SIZE ), pointSize ) )
283         {
284           impl.mController->SetDefaultFontSize( pointSize, Text::Controller::POINT_SIZE );
285         }
286         break;
287       }
288       case Toolkit::TextLabel::Property::MULTI_LINE:
289       {
290         impl.mController->SetMultiLineEnabled( value.Get< bool >() );
291         break;
292       }
293       case Toolkit::TextLabel::Property::HORIZONTAL_ALIGNMENT:
294       {
295         Text::HorizontalAlignment::Type alignment( static_cast< Text::HorizontalAlignment::Type >( -1 ) ); // Set to invalid value to ensure a valid mode does get set
296         if( Text::GetHorizontalAlignmentEnumeration( value, alignment ) )
297         {
298           impl.mController->SetHorizontalAlignment( alignment );
299         }
300         break;
301       }
302       case Toolkit::TextLabel::Property::VERTICAL_ALIGNMENT:
303       {
304         Toolkit::Text::VerticalAlignment::Type alignment( static_cast< Text::VerticalAlignment::Type >( -1 ) ); // Set to invalid value to ensure a valid mode does get set
305         if( Text::GetVerticalAlignmentEnumeration( value, alignment ) )
306         {
307           impl.mController->SetVerticalAlignment( alignment );
308         }
309         break;
310       }
311       case Toolkit::TextLabel::Property::ENABLE_MARKUP:
312       {
313         const bool enableMarkup = value.Get<bool>();
314         impl.mController->SetMarkupProcessorEnabled( enableMarkup );
315         break;
316       }
317       case Toolkit::TextLabel::Property::ENABLE_AUTO_SCROLL:
318       {
319         const bool enableAutoScroll = value.Get<bool>();
320         // If request to auto scroll is the same as current state then do nothing.
321         if ( enableAutoScroll != impl.mController->IsAutoScrollEnabled() )
322         {
323            // If request is disable (false) and auto scrolling is enabled then need to stop it
324            if ( enableAutoScroll == false )
325            {
326              if( impl.mTextScroller )
327              {
328                impl.mTextScroller->StopScrolling();
329              }
330            }
331            // If request is enable (true) then start autoscroll as not already running
332            else
333            {
334              impl.mController->SetAutoScrollEnabled( enableAutoScroll );
335            }
336         }
337         break;
338       }
339       case Toolkit::TextLabel::Property::AUTO_SCROLL_STOP_MODE:
340       {
341         Text::TextScrollerPtr textScroller = impl.GetTextScroller();
342         Toolkit::TextLabel::AutoScrollStopMode::Type stopMode = textScroller->GetStopMode();
343         if( Scripting::GetEnumerationProperty< Toolkit::TextLabel::AutoScrollStopMode::Type >( value,
344                                                                                                AUTO_SCROLL_STOP_MODE_TABLE,
345                                                                                                AUTO_SCROLL_STOP_MODE_TABLE_COUNT,
346                                                                                                stopMode ) )
347         {
348           textScroller->SetStopMode( stopMode );
349         }
350         break;
351       }
352       case Toolkit::TextLabel::Property::AUTO_SCROLL_SPEED:
353       {
354         impl.GetTextScroller()->SetSpeed( value.Get<int>() );
355         break;
356       }
357       case Toolkit::TextLabel::Property::AUTO_SCROLL_LOOP_COUNT:
358       {
359         impl.GetTextScroller()->SetLoopCount( value.Get<int>() );
360         break;
361       }
362       case Toolkit::TextLabel::Property::AUTO_SCROLL_LOOP_DELAY:
363       {
364         impl.GetTextScroller()->SetLoopDelay( value.Get<float>() );
365         break;
366       }
367       case Toolkit::TextLabel::Property::AUTO_SCROLL_GAP:
368       {
369         impl.GetTextScroller()->SetGap( value.Get<float>() );
370         break;
371       }
372       case Toolkit::TextLabel::Property::LINE_SPACING:
373       {
374         const float lineSpacing = value.Get<float>();
375         impl.mTextUpdateNeeded = impl.mController->SetDefaultLineSpacing( lineSpacing ) || impl.mTextUpdateNeeded;
376         break;
377       }
378       case Toolkit::TextLabel::Property::UNDERLINE:
379       {
380         impl.mTextUpdateNeeded = SetUnderlineProperties( impl.mController, value, Text::EffectStyle::DEFAULT ) || impl.mTextUpdateNeeded;
381         break;
382       }
383       case Toolkit::TextLabel::Property::SHADOW:
384       {
385         impl.mTextUpdateNeeded = SetShadowProperties( impl.mController, value, Text::EffectStyle::DEFAULT ) || impl.mTextUpdateNeeded;
386         break;
387       }
388       case Toolkit::TextLabel::Property::EMBOSS:
389       {
390         impl.mTextUpdateNeeded = SetEmbossProperties( impl.mController, value, Text::EffectStyle::DEFAULT ) || impl.mTextUpdateNeeded;
391         break;
392       }
393       case Toolkit::TextLabel::Property::OUTLINE:
394       {
395         impl.mTextUpdateNeeded = SetOutlineProperties( impl.mController, value, Text::EffectStyle::DEFAULT ) || impl.mTextUpdateNeeded;
396         break;
397       }
398       case Toolkit::TextLabel::Property::PIXEL_SIZE:
399       {
400         const float pixelSize = value.Get< float >();
401         DALI_LOG_INFO( gLogFilter, Debug::General, "TextLabel %p PIXEL_SIZE %f\n", impl.mController.Get(), pixelSize );
402
403         if( !Equals( impl.mController->GetDefaultFontSize( Text::Controller::PIXEL_SIZE ), pixelSize ) )
404         {
405           impl.mController->SetDefaultFontSize( pixelSize, Text::Controller::PIXEL_SIZE );
406         }
407         break;
408       }
409       case Toolkit::TextLabel::Property::ELLIPSIS:
410       {
411         const bool ellipsis = value.Get<bool>();
412         DALI_LOG_INFO( gLogFilter, Debug::General, "TextLabel %p ELLIPSIS %d\n", impl.mController.Get(), ellipsis );
413
414         impl.mController->SetTextElideEnabled( ellipsis );
415         break;
416       }
417       case Toolkit::TextLabel::Property::LINE_WRAP_MODE:
418       {
419         Text::LineWrap::Mode lineWrapMode( static_cast< Text::LineWrap::Mode >( -1 ) ); // Set to invalid value to ensure a valid mode does get set
420         if( GetLineWrapModeEnumeration( value, lineWrapMode ) )
421         {
422           DALI_LOG_INFO( gLogFilter, Debug::General, "TextLabel %p LineWrap::MODE %d\n", impl.mController.Get(), lineWrapMode );
423           impl.mController->SetLineWrapMode( lineWrapMode );
424         }
425         break;
426       }
427       case Toolkit::DevelTextLabel::Property::VERTICAL_LINE_ALIGNMENT:
428       {
429         if( impl.mController->GetTextModel() )
430         {
431           DevelText::VerticalLineAlignment::Type alignment = static_cast<DevelText::VerticalLineAlignment::Type>( value.Get<int>() );
432
433           impl.mController->SetVerticalLineAlignment( alignment );
434
435           // Property doesn't affect the layout, only Visual must be updated
436           TextVisual::EnableRendererUpdate( impl.mVisual );
437
438           // No need to trigger full re-layout. Instead call UpdateRenderer() directly
439           TextVisual::UpdateRenderer( impl.mVisual );
440         }
441         break;
442       }
443       case Toolkit::DevelTextLabel::Property::BACKGROUND:
444       {
445         impl.mTextUpdateNeeded = SetBackgroundProperties( impl.mController, value, Text::EffectStyle::DEFAULT ) || impl.mTextUpdateNeeded;
446         break;
447       }
448       case Toolkit::DevelTextLabel::Property::IGNORE_SPACES_AFTER_TEXT:
449       {
450         impl.mController->SetIgnoreSpacesAfterText(value.Get< bool >());
451         break;
452       }
453       case Toolkit::DevelTextLabel::Property::MATCH_SYSTEM_LANGUAGE_DIRECTION:
454       {
455         impl.mController->SetMatchSystemLanguageDirection(value.Get< bool >());
456         break;
457       }
458       case Toolkit::DevelTextLabel::Property::TEXT_FIT:
459       {
460         ParseTextFitProperty(impl.mController, value.GetMap());
461         break;
462       }
463       case Toolkit::DevelTextLabel::Property::MIN_LINE_SIZE:
464       {
465         const float lineSize = value.Get<float>();
466         impl.mTextUpdateNeeded = impl.mController->SetDefaultLineSize( lineSize ) || impl.mTextUpdateNeeded;
467         break;
468       }
469     }
470
471     // Request relayout when text update is needed. It's necessary to call it
472     // as changing the property not via UI interaction brings no effect if only
473     // the mTextUpdateNeeded is changed.
474     if( impl.mTextUpdateNeeded )
475     {
476       // need to request relayout as size of text may have changed
477       impl.RequestTextRelayout();
478     }
479   }
480 }
481
482 Text::ControllerPtr TextLabel::getController() { return mController; }
483
484 Property::Value TextLabel::GetProperty( BaseObject* object, Property::Index index )
485 {
486   Property::Value value;
487
488   Toolkit::TextLabel label = Toolkit::TextLabel::DownCast( Dali::BaseHandle( object ) );
489
490   if( label )
491   {
492     TextLabel& impl( GetImpl( label ) );
493     DALI_ASSERT_DEBUG( impl.mController && "No text contoller" );
494
495     switch( index )
496     {
497       case Toolkit::DevelTextLabel::Property::RENDERING_BACKEND:
498       {
499         value = impl.mRenderingBackend;
500         break;
501       }
502       case Toolkit::TextLabel::Property::TEXT:
503       {
504         std::string text;
505         impl.mController->GetText( text );
506         value = text;
507         break;
508       }
509       case Toolkit::TextLabel::Property::FONT_FAMILY:
510       {
511         value = impl.mController->GetDefaultFontFamily();
512         break;
513       }
514       case Toolkit::TextLabel::Property::FONT_STYLE:
515       {
516         GetFontStyleProperty( impl.mController, value, Text::FontStyle::DEFAULT );
517         break;
518       }
519       case Toolkit::TextLabel::Property::POINT_SIZE:
520       {
521         value = impl.mController->GetDefaultFontSize( Text::Controller::POINT_SIZE );
522         break;
523       }
524       case Toolkit::TextLabel::Property::MULTI_LINE:
525       {
526         value = impl.mController->IsMultiLineEnabled();
527         break;
528       }
529       case Toolkit::TextLabel::Property::HORIZONTAL_ALIGNMENT:
530       {
531         const char* name = Text::GetHorizontalAlignmentString( impl.mController->GetHorizontalAlignment() );
532
533         if ( name )
534         {
535           value = std::string( name );
536         }
537         break;
538       }
539       case Toolkit::TextLabel::Property::VERTICAL_ALIGNMENT:
540       {
541         const char* name = Text::GetVerticalAlignmentString( impl.mController->GetVerticalAlignment() );
542         if( name )
543         {
544           value = std::string( name );
545         }
546         break;
547       }
548       case Toolkit::TextLabel::Property::ENABLE_MARKUP:
549       {
550         value = impl.mController->IsMarkupProcessorEnabled();
551         break;
552       }
553       case Toolkit::TextLabel::Property::ENABLE_AUTO_SCROLL:
554       {
555         value = impl.mController->IsAutoScrollEnabled();
556         break;
557       }
558       case Toolkit::TextLabel::Property::AUTO_SCROLL_STOP_MODE:
559       {
560         if( impl.mTextScroller )
561         {
562           const char* mode = Scripting::GetEnumerationName< Toolkit::TextLabel::AutoScrollStopMode::Type >( impl.mTextScroller->GetStopMode(),
563                                                                                                                  AUTO_SCROLL_STOP_MODE_TABLE,
564                                                                                                                  AUTO_SCROLL_STOP_MODE_TABLE_COUNT );
565           if( mode )
566           {
567             value = std::string( mode );
568           }
569         }
570         break;
571       }
572       case Toolkit::TextLabel::Property::AUTO_SCROLL_SPEED:
573       {
574         if ( impl.mTextScroller )
575         {
576           value = impl.mTextScroller->GetSpeed();
577         }
578         break;
579       }
580       case Toolkit::TextLabel::Property::AUTO_SCROLL_LOOP_COUNT:
581       {
582         if ( impl.mTextScroller )
583         {
584           value = impl.mTextScroller->GetLoopCount();
585         }
586         break;
587       }
588       case Toolkit::TextLabel::Property::AUTO_SCROLL_LOOP_DELAY:
589       {
590         if ( impl.mTextScroller )
591         {
592           value = impl.mTextScroller->GetLoopDelay();
593         }
594         break;
595       }
596       case Toolkit::TextLabel::Property::AUTO_SCROLL_GAP:
597       {
598         if ( impl.mTextScroller )
599         {
600           value = impl.mTextScroller->GetGap();
601         }
602         break;
603       }
604       case Toolkit::TextLabel::Property::LINE_SPACING:
605       {
606         value = impl.mController->GetDefaultLineSpacing();
607         break;
608       }
609       case Toolkit::TextLabel::Property::UNDERLINE:
610       {
611         GetUnderlineProperties( impl.mController, value, Text::EffectStyle::DEFAULT );
612         break;
613       }
614       case Toolkit::TextLabel::Property::SHADOW:
615       {
616         GetShadowProperties( impl.mController, value, Text::EffectStyle::DEFAULT );
617         break;
618       }
619       case Toolkit::TextLabel::Property::EMBOSS:
620       {
621         GetEmbossProperties( impl.mController, value, Text::EffectStyle::DEFAULT );
622         break;
623       }
624       case Toolkit::TextLabel::Property::OUTLINE:
625       {
626         GetOutlineProperties( impl.mController, value, Text::EffectStyle::DEFAULT );
627         break;
628       }
629       case Toolkit::TextLabel::Property::PIXEL_SIZE:
630       {
631         value = impl.mController->GetDefaultFontSize( Text::Controller::PIXEL_SIZE );
632         break;
633       }
634       case Toolkit::TextLabel::Property::ELLIPSIS:
635       {
636         value = impl.mController->IsTextElideEnabled();
637         break;
638       }
639       case Toolkit::TextLabel::Property::LINE_WRAP_MODE:
640       {
641         value = impl.mController->GetLineWrapMode();
642         break;
643       }
644       case Toolkit::TextLabel::Property::LINE_COUNT:
645       {
646         float width = label.GetProperty( Actor::Property::SIZE_WIDTH ).Get<float>();
647         value = impl.mController->GetLineCount( width );
648         break;
649       }
650       case Toolkit::DevelTextLabel::Property::TEXT_DIRECTION:
651       {
652         value = impl.mController->GetTextDirection();
653         break;
654       }
655       case Toolkit::DevelTextLabel::Property::VERTICAL_LINE_ALIGNMENT:
656       {
657         value = impl.mController->GetVerticalLineAlignment();
658         break;
659       }
660       case Toolkit::DevelTextLabel::Property::BACKGROUND:
661       {
662         GetBackgroundProperties( impl.mController, value, Text::EffectStyle::DEFAULT );
663         break;
664       }
665       case Toolkit::DevelTextLabel::Property::IGNORE_SPACES_AFTER_TEXT:
666       {
667         value = impl.mController->IsIgnoreSpacesAfterText();
668         break;
669       }
670       case Toolkit::DevelTextLabel::Property::MATCH_SYSTEM_LANGUAGE_DIRECTION:
671       {
672         value = impl.mController->IsMatchSystemLanguageDirection();
673         break;
674       }
675       case Toolkit::DevelTextLabel::Property::TEXT_FIT:
676       {
677         const bool enabled = impl.mController->IsTextFitEnabled();
678         const float minSize = impl.mController->GetTextFitMinSize();
679         const float maxSize = impl.mController->GetTextFitMaxSize();
680         const float stepSize = impl.mController->GetTextFitStepSize();
681
682         Property::Map map;
683         map.Insert( TEXT_FIT_ENABLE_KEY, enabled );
684         map.Insert( TEXT_FIT_MIN_SIZE_KEY, minSize );
685         map.Insert( TEXT_FIT_MAX_SIZE_KEY, maxSize );
686         map.Insert( TEXT_FIT_STEP_SIZE_KEY, stepSize );
687         map.Insert( TEXT_FIT_FONT_SIZE_TYPE_KEY, "pointSize" );
688
689         value = map;
690         break;
691       }
692       case Toolkit::DevelTextLabel::Property::MIN_LINE_SIZE:
693       {
694         value = impl.mController->GetDefaultLineSize();
695         break;
696       }
697     }
698   }
699
700   return value;
701 }
702
703 void TextLabel::OnInitialize()
704 {
705   Actor self = Self();
706
707   Property::Map propertyMap;
708   propertyMap.Add( Toolkit::Visual::Property::TYPE, Toolkit::Visual::TEXT );
709
710   mVisual =  Toolkit::VisualFactory::Get().CreateVisual( propertyMap );
711   DevelControl::RegisterVisual( *this, Toolkit::TextLabel::Property::TEXT, mVisual  );
712
713   TextVisual::SetAnimatableTextColorProperty( mVisual, Toolkit::TextLabel::Property::TEXT_COLOR );
714
715   mController = TextVisual::GetController(mVisual);
716   DALI_ASSERT_DEBUG( mController && "Invalid Text Controller")
717
718   mController->SetControlInterface(this);
719
720   // Use height-for-width negotiation by default
721   self.SetResizePolicy( ResizePolicy::FILL_TO_PARENT, Dimension::WIDTH );
722   self.SetResizePolicy( ResizePolicy::DIMENSION_DEPENDENCY, Dimension::HEIGHT );
723
724   // Enable the text ellipsis.
725   mController->SetTextElideEnabled( true );   // If false then text larger than control will overflow
726
727   // Sets layoutDirection value
728   Dali::Stage stage = Dali::Stage::GetCurrent();
729   Dali::LayoutDirection::Type layoutDirection = static_cast<Dali::LayoutDirection::Type>( stage.GetRootLayer().GetProperty( Dali::Actor::Property::LAYOUT_DIRECTION ).Get<int>() );
730   mController->SetLayoutDirection( layoutDirection );
731
732   Layout::Engine& engine = mController->GetLayoutEngine();
733   engine.SetCursorWidth( 0u ); // Do not layout space for the cursor.
734
735   DevelControl::SetAccessibilityConstructor( self, []( Dali::Actor actor ) {
736     return std::unique_ptr< Dali::Accessibility::Accessible >(
737       new AccessibleImpl( actor, Dali::Accessibility::Role::LABEL ) );
738   } );
739 }
740
741 void TextLabel::OnStyleChange( Toolkit::StyleManager styleManager, StyleChange::Type change )
742 {
743   DALI_LOG_INFO( gLogFilter, Debug::Verbose, "TextLabel::OnStyleChange\n");
744
745   switch ( change )
746   {
747     case StyleChange::DEFAULT_FONT_CHANGE:
748     {
749       // Property system did not set the font so should update it.
750       const std::string& newFont = GetImpl( styleManager ).GetDefaultFontFamily();
751       DALI_LOG_INFO( gLogFilter, Debug::General, "TextLabel::OnStyleChange StyleChange::DEFAULT_FONT_CHANGE newFont(%s)\n", newFont.c_str() );
752       mController->UpdateAfterFontChange( newFont );
753       RelayoutRequest();
754       break;
755     }
756     case StyleChange::DEFAULT_FONT_SIZE_CHANGE:
757     {
758       GetImpl( styleManager ).ApplyThemeStyle( Toolkit::Control( GetOwner() ) );
759       RelayoutRequest();
760       break;
761     }
762     case StyleChange::THEME_CHANGE:
763     {
764       // Nothing to do, let control base class handle this
765       break;
766     }
767   }
768
769   // Up call to Control
770   Control::OnStyleChange( styleManager, change );
771 }
772
773 Vector3 TextLabel::GetNaturalSize()
774 {
775   Extents padding;
776   padding = Self().GetProperty<Extents>( Toolkit::Control::Property::PADDING );
777
778   Vector3 naturalSize = mController->GetNaturalSize();
779   naturalSize.width += ( padding.start + padding.end );
780   naturalSize.height += ( padding.top + padding.bottom );
781
782   return naturalSize;
783 }
784
785 float TextLabel::GetHeightForWidth( float width )
786 {
787   Extents padding;
788   padding = Self().GetProperty<Extents>( Toolkit::Control::Property::PADDING );
789
790   return mController->GetHeightForWidth( width ) + padding.top + padding.bottom;
791 }
792
793 void TextLabel::OnPropertySet( Property::Index index, const Property::Value& propertyValue )
794 {
795   DALI_LOG_INFO( gLogFilter, Debug::Verbose, "TextLabel::OnPropertySet index[%d]\n", index );
796
797   switch ( index )
798   {
799     case Toolkit::TextLabel::Property::TEXT_COLOR:
800     {
801       const Vector4& textColor = propertyValue.Get< Vector4 >();
802       if( mController->GetDefaultColor() != textColor )
803       {
804          mController->SetDefaultColor( textColor );
805          mTextUpdateNeeded = true;
806       }
807       break;
808     }
809     default:
810     {
811       Control::OnPropertySet( index, propertyValue ); // up call to control for non-handled properties
812       break;
813     }
814   }
815 }
816
817 void TextLabel::OnRelayout( const Vector2& size, RelayoutContainer& container )
818 {
819   DALI_LOG_INFO( gLogFilter, Debug::General, "TextLabel::OnRelayout\n" );
820
821   Extents padding;
822   padding = Self().GetProperty<Extents>( Toolkit::Control::Property::PADDING );
823
824   Vector2 contentSize( size.x - ( padding.start + padding.end ), size.y - ( padding.top + padding.bottom ) );
825
826   if( mController->IsTextFitEnabled() )
827   {
828     mController->FitPointSizeforLayout( contentSize );
829     mController->SetTextFitContentSize( contentSize );
830   }
831
832   // Support Right-To-Left
833   Dali::LayoutDirection::Type layoutDirection;
834   if( mController->IsMatchSystemLanguageDirection() )
835   {
836     layoutDirection = static_cast<Dali::LayoutDirection::Type>( DevelWindow::Get( Self() ).GetRootLayer().GetProperty( Dali::Actor::Property::LAYOUT_DIRECTION ).Get<int>() );
837   }
838   else
839   {
840     layoutDirection = static_cast<Dali::LayoutDirection::Type>( Self().GetProperty( Dali::Actor::Property::LAYOUT_DIRECTION ).Get<int>() );
841   }
842   const Text::Controller::UpdateTextType updateTextType = mController->Relayout( contentSize, layoutDirection );
843
844   if( ( Text::Controller::NONE_UPDATED != ( Text::Controller::MODEL_UPDATED & updateTextType ) )
845      || mTextUpdateNeeded )
846   {
847     DALI_LOG_INFO( gLogFilter, Debug::General, "TextLabel::OnRelayout IsAutoScrollEnabled[%s] [%p]\n", ( mController->IsAutoScrollEnabled())?"true":"false", this );
848
849     // Update the visual
850     TextVisual::EnableRendererUpdate( mVisual );
851
852     // Support Right-To-Left of padding
853     if( Dali::LayoutDirection::RIGHT_TO_LEFT == layoutDirection )
854     {
855       std::swap( padding.start, padding.end );
856     }
857
858     // Calculate the size of the visual that can fit the text
859     Size layoutSize = mController->GetTextModel()->GetLayoutSize();
860     layoutSize.x = contentSize.x;
861
862     const Vector2& shadowOffset = mController->GetTextModel()->GetShadowOffset();
863     if ( shadowOffset.y > Math::MACHINE_EPSILON_1 )
864     {
865       layoutSize.y += shadowOffset.y;
866     }
867
868     float outlineWidth = mController->GetTextModel()->GetOutlineWidth();
869     layoutSize.y += outlineWidth * 2.0f;
870     layoutSize.y = std::min( layoutSize.y, contentSize.y );
871
872     // Calculate the offset for vertical alignment only, as the layout engine will do the horizontal alignment.
873     Vector2 alignmentOffset;
874     alignmentOffset.x = 0.0f;
875     alignmentOffset.y = ( contentSize.y - layoutSize.y ) * VERTICAL_ALIGNMENT_TABLE[mController->GetVerticalAlignment()];
876
877     Property::Map visualTransform;
878     visualTransform.Add( Toolkit::Visual::Transform::Property::SIZE, layoutSize )
879                    .Add( Toolkit::Visual::Transform::Property::SIZE_POLICY, Vector2( Toolkit::Visual::Transform::Policy::ABSOLUTE, Toolkit::Visual::Transform::Policy::ABSOLUTE ) )
880                    .Add( Toolkit::Visual::Transform::Property::OFFSET, Vector2( padding.start, padding.top ) + alignmentOffset )
881                    .Add( Toolkit::Visual::Transform::Property::OFFSET_POLICY, Vector2( Toolkit::Visual::Transform::Policy::ABSOLUTE, Toolkit::Visual::Transform::Policy::ABSOLUTE ) )
882                    .Add( Toolkit::Visual::Transform::Property::ORIGIN, Toolkit::Align::TOP_BEGIN )
883                    .Add( Toolkit::Visual::Transform::Property::ANCHOR_POINT, Toolkit::Align::TOP_BEGIN );
884     mVisual.SetTransformAndSize( visualTransform, size );
885
886     if ( mController->IsAutoScrollEnabled() )
887     {
888       SetUpAutoScrolling();
889     }
890
891     mTextUpdateNeeded = false;
892   }
893 }
894
895 void TextLabel::RequestTextRelayout()
896 {
897   RelayoutRequest();
898   // Signal that a Relayout may be needed
899 }
900
901 void TextLabel::SetUpAutoScrolling()
902 {
903   const Size& controlSize = mController->GetView().GetControlSize();
904   const Size textNaturalSize = GetNaturalSize().GetVectorXY(); // As relayout of text may not be done at this point natural size is used to get size. Single line scrolling only.
905   const Text::CharacterDirection direction = mController->GetAutoScrollDirection();
906
907   DALI_LOG_INFO( gLogFilter, Debug::General, "TextLabel::SetUpAutoScrolling textNaturalSize[%f,%f] controlSize[%f,%f]\n",
908                  textNaturalSize.x,textNaturalSize.y , controlSize.x,controlSize.y );
909
910   if ( !mTextScroller )
911   {
912     DALI_LOG_INFO( gLogFilter, Debug::General, "TextLabel::SetUpAutoScrolling Creating default TextScoller\n" );
913
914     // If speed, loopCount or gap not set via property system then will need to create a TextScroller with defaults
915     mTextScroller = Text::TextScroller::New( *this );
916   }
917
918   // Calculate the actual gap before scrolling wraps.
919   int textPadding = std::max( controlSize.x - textNaturalSize.x, 0.0f );
920   float wrapGap = std::max( mTextScroller->GetGap(), textPadding );
921   Vector2 textureSize = textNaturalSize + Vector2(wrapGap, 0.0f); // Add the gap as a part of the texture
922
923   // Create a texture of the text for scrolling
924   Size verifiedSize = textureSize;
925   const int maxTextureSize = Dali::GetMaxTextureSize();
926
927   //if the texture size width exceed maxTextureSize, modify the visual model size and enabled the ellipsis
928   bool actualellipsis = mController->IsTextElideEnabled();
929   if( verifiedSize.width > maxTextureSize )
930   {
931     verifiedSize.width = maxTextureSize;
932     if( textNaturalSize.width > maxTextureSize )
933     {
934       mController->SetTextElideEnabled( true );
935     }
936     GetHeightForWidth( maxTextureSize );
937     wrapGap = std::max( maxTextureSize - textNaturalSize.width, 0.0f );
938   }
939
940   Text::TypesetterPtr typesetter = Text::Typesetter::New( mController->GetTextModel() );
941
942   PixelData data = typesetter->Render( verifiedSize, mController->GetTextDirection(), Text::Typesetter::RENDER_TEXT_AND_STYLES, true, Pixel::RGBA8888 ); // ignore the horizontal alignment
943   Texture texture = Texture::New( Dali::TextureType::TEXTURE_2D,
944                                   data.GetPixelFormat(),
945                                   data.GetWidth(),
946                                   data.GetHeight() );
947   texture.Upload( data );
948
949   TextureSet textureSet = TextureSet::New();
950   textureSet.SetTexture( 0u, texture );
951
952   // Filter mode needs to be set to linear to produce better quality while scaling.
953   Sampler sampler = Sampler::New();
954   sampler.SetFilterMode( FilterMode::LINEAR, FilterMode::LINEAR );
955   sampler.SetWrapMode( Dali::WrapMode::DEFAULT, Dali::WrapMode::REPEAT, Dali::WrapMode::DEFAULT ); // Wrap the texture in the x direction
956   textureSet.SetSampler( 0u, sampler );
957
958   // Set parameters for scrolling
959   Renderer renderer = static_cast<Internal::Visual::Base&>( GetImplementation( mVisual ) ).GetRenderer();
960   mTextScroller->SetParameters( Self(), renderer, textureSet, controlSize, verifiedSize, wrapGap, direction, mController->GetHorizontalAlignment(), mController->GetVerticalAlignment() );
961   mController->SetTextElideEnabled( actualellipsis );
962 }
963
964 void TextLabel::ScrollingFinished()
965 {
966   // Pure Virtual from TextScroller Interface
967   DALI_LOG_INFO( gLogFilter, Debug::General, "TextLabel::ScrollingFinished\n");
968   mController->SetAutoScrollEnabled( false );
969   RequestTextRelayout();
970 }
971
972 TextLabel::TextLabel()
973 : Control( ControlBehaviour( CONTROL_BEHAVIOUR_DEFAULT ) ),
974   mRenderingBackend( DEFAULT_RENDERING_BACKEND ),
975   mTextUpdateNeeded( false )
976 {
977 }
978
979 TextLabel::~TextLabel()
980 {
981 }
982
983 std::string TextLabel::AccessibleImpl::GetNameRaw()
984 {
985   auto slf = Toolkit::TextLabel::DownCast( self );
986   return slf.GetProperty( Toolkit::TextLabel::Property::TEXT ).Get< std::string >();
987 }
988
989 std::string TextLabel::AccessibleImpl::GetText( size_t startOffset,
990                                                 size_t endOffset )
991 {
992   if( endOffset <= startOffset )
993     return {};
994
995   auto slf = Toolkit::TextLabel::DownCast( self );
996   auto txt =
997       slf.GetProperty( Toolkit::TextLabel::Property::TEXT ).Get< std::string >();
998
999   if( startOffset > txt.size() || endOffset > txt.size() )
1000     return {};
1001
1002   return txt.substr( startOffset, endOffset - startOffset );
1003 }
1004
1005 size_t TextLabel::AccessibleImpl::GetCharacterCount()
1006 {
1007   auto slf = Toolkit::TextLabel::DownCast( self );
1008   auto txt =
1009       slf.GetProperty( Toolkit::TextLabel::Property::TEXT ).Get< std::string >();
1010
1011   return txt.size();
1012 }
1013
1014 size_t TextLabel::AccessibleImpl::GetCaretOffset()
1015 {
1016     return {};
1017 }
1018
1019 bool TextLabel::AccessibleImpl::SetCaretOffset(size_t offset)
1020 {
1021     return {};
1022 }
1023
1024 Dali::Accessibility::Range TextLabel::AccessibleImpl::GetTextAtOffset(
1025     size_t offset, Dali::Accessibility::TextBoundary boundary )
1026 {
1027   auto slf = Toolkit::TextLabel::DownCast( self );
1028   auto txt = slf.GetProperty( Toolkit::TextLabel::Property::TEXT ).Get< std::string >();
1029   auto txt_size = txt.size();
1030
1031   auto range = Dali::Accessibility::Range{};
1032
1033   switch(boundary)
1034   {
1035     case Dali::Accessibility::TextBoundary::CHARACTER:
1036       {
1037         if (offset < txt_size)
1038         {
1039           range.content = txt[offset];
1040           range.startOffset = offset;
1041           range.endOffset = offset + 1;
1042         }
1043       }
1044       break;
1045     case Dali::Accessibility::TextBoundary::WORD:
1046     case Dali::Accessibility::TextBoundary::LINE:
1047       {
1048         auto txt_c_string = txt.c_str();
1049         auto breaks = std::vector< char >( txt_size, 0 );
1050         if(boundary == Dali::Accessibility::TextBoundary::WORD)
1051           Accessibility::Accessible::FindWordSeparationsUtf8((const utf8_t *) txt_c_string, txt_size, "", breaks.data());
1052         else
1053           Accessibility::Accessible::FindLineSeparationsUtf8((const utf8_t *) txt_c_string, txt_size, "", breaks.data());
1054         auto index = 0u;
1055         auto counter = 0u;
1056         while( index < txt_size && counter <= offset )
1057         {
1058           auto start = index;
1059           if(breaks[index])
1060           {
1061             while(breaks[index])
1062               index++;
1063             counter++;
1064           }
1065           else
1066           {
1067             if (boundary == Dali::Accessibility::TextBoundary::WORD)
1068               index++;
1069             if (boundary == Dali::Accessibility::TextBoundary::LINE)
1070               counter++;
1071           }
1072           if ((counter - 1) == offset)
1073           {
1074             range.content = txt.substr(start, index - start + 1);
1075             range.startOffset = start;
1076             range.endOffset = index + 1;
1077           }
1078           if (boundary == Dali::Accessibility::TextBoundary::LINE)
1079               index++;
1080         }
1081       }
1082       break;
1083     case Dali::Accessibility::TextBoundary::SENTENCE:
1084       {
1085         /* not supported by efl */
1086       }
1087       break;
1088     case Dali::Accessibility::TextBoundary::PARAGRAPH:
1089       {
1090         /* Paragraph is not supported by libunibreak library */
1091       }
1092       break;
1093     default:
1094       break;
1095   }
1096
1097   return range;
1098 }
1099
1100 Dali::Accessibility::Range
1101 TextLabel::AccessibleImpl::GetSelection( size_t selectionNum )
1102 {
1103   // Since DALi supports only one selection indexes higher than 0 are ignored
1104   if( selectionNum > 0 )
1105     return {};
1106
1107   auto slf = Toolkit::TextLabel::DownCast( self );
1108   auto ctrl = Dali::Toolkit::GetImpl( slf ).getController();
1109   std::string ret;
1110   ctrl->RetrieveSelection( ret );
1111   auto r = ctrl->GetSelectionIndexes();
1112
1113   return { static_cast<size_t>(r.first), static_cast<size_t>(r.second), ret };
1114 }
1115
1116 bool TextLabel::AccessibleImpl::RemoveSelection( size_t selectionNum )
1117 {
1118   // Since DALi supports only one selection indexes higher than 0 are ignored
1119   if( selectionNum > 0 )
1120     return false;
1121
1122   auto slf = Toolkit::TextLabel::DownCast( self );
1123   Dali::Toolkit::GetImpl( slf ).getController()->SetSelection( 0, 0 );
1124   return true;
1125 }
1126
1127 bool TextLabel::AccessibleImpl::SetSelection( size_t selectionNum,
1128                                               size_t startOffset,
1129                                               size_t endOffset )
1130 {
1131   // Since DALi supports only one selection indexes higher than 0 are ignored
1132   if( selectionNum > 0 )
1133     return false;
1134
1135   auto slf = Toolkit::TextLabel::DownCast( self );
1136   Dali::Toolkit::GetImpl( slf ).getController()->SetSelection( startOffset,
1137                                                                endOffset );
1138   return true;
1139 }
1140
1141 } // namespace Internal
1142
1143 } // namespace Toolkit
1144
1145 } // namespace Dali