[dali_2.1.7] Merge branch 'devel/master'
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / internal / controls / text-controls / text-editor-impl.cpp
1 /*
2  * Copyright (c) 2022 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-editor-impl.h>
20
21 // EXTERNAL INCLUDES
22 #include <dali/devel-api/actors/actor-devel.h>
23 #include <dali/devel-api/common/stage.h>
24 #include <dali/devel-api/object/property-helper-devel.h>
25 #include <dali/integration-api/adaptor-framework/adaptor.h>
26 #include <dali/integration-api/debug.h>
27 #include <dali/public-api/actors/layer.h>
28 #include <dali/public-api/adaptor-framework/key.h>
29 #include <dali/public-api/common/dali-common.h>
30 #include <dali/public-api/object/type-registry-helper.h>
31 #include <cstring>
32 #include <limits>
33
34 // INTERNAL INCLUDES
35 #include <dali-toolkit/devel-api/controls/control-devel.h>
36 #include <dali-toolkit/devel-api/focus-manager/keyinput-focus-manager.h>
37 #include <dali-toolkit/devel-api/text/rendering-backend.h>
38 #include <dali-toolkit/internal/controls/control/control-data-impl.h>
39 #include <dali-toolkit/internal/controls/text-controls/common-text-utils.h>
40 #include <dali-toolkit/internal/controls/text-controls/text-editor-property-handler.h>
41 #include <dali-toolkit/internal/styling/style-manager-impl.h>
42 #include <dali-toolkit/internal/text/rendering/text-backend.h>
43 #include <dali-toolkit/internal/text/text-effects-style.h>
44 #include <dali-toolkit/internal/text/text-enumerations-impl.h>
45 #include <dali-toolkit/internal/text/text-font-style.h>
46 #include <dali-toolkit/internal/text/text-view.h>
47 #include <dali-toolkit/public-api/text/text-enumerations.h>
48 #include <dali-toolkit/public-api/visuals/color-visual-properties.h>
49 #include <dali-toolkit/public-api/visuals/visual-properties.h>
50
51 using namespace Dali::Toolkit::Text;
52
53 #if defined(DEBUG_ENABLED)
54 Debug::Filter* gTextEditorLogFilter = Debug::Filter::New(Debug::Concise, true, "LOG_TEXT_CONTROLS");
55 #endif
56
57 namespace Dali
58 {
59 namespace Toolkit
60 {
61 namespace Internal
62 {
63 namespace // unnamed namespace
64 {
65 const unsigned int DEFAULT_RENDERING_BACKEND = Dali::Toolkit::DevelText::DEFAULT_RENDERING_BACKEND;
66 const float        DEFAULT_SCROLL_SPEED      = 1200.f; ///< The default scroll speed for the text editor in pixels/second.
67 } // unnamed namespace
68
69 namespace
70 {
71 const char* const SCROLL_BAR_POSITION("sourcePosition");
72 const char* const SCROLL_BAR_POSITION_MIN("sourcePositionMin");
73 const char* const SCROLL_BAR_POSITION_MAX("sourcePositionMax");
74 const char* const SCROLL_BAR_CONTENT_SIZE("sourceContentSize");
75
76 // Type registration
77 BaseHandle Create()
78 {
79   return Toolkit::TextEditor::New();
80 }
81
82 // clang-format off
83 // Setup properties, signals and actions using the type-registry.
84 DALI_TYPE_REGISTRATION_BEGIN(Toolkit::TextEditor, Toolkit::Control, Create);
85
86 DALI_PROPERTY_REGISTRATION(Toolkit,                 TextEditor, "text",                                 STRING,    TEXT                                )
87 DALI_PROPERTY_REGISTRATION(Toolkit,                 TextEditor, "textColor",                            VECTOR4,   TEXT_COLOR                          )
88 DALI_PROPERTY_REGISTRATION(Toolkit,                 TextEditor, "fontFamily",                           STRING,    FONT_FAMILY                         )
89 DALI_PROPERTY_REGISTRATION(Toolkit,                 TextEditor, "fontStyle",                            MAP,       FONT_STYLE                          )
90 DALI_PROPERTY_REGISTRATION(Toolkit,                 TextEditor, "pointSize",                            FLOAT,     POINT_SIZE                          )
91 DALI_PROPERTY_REGISTRATION(Toolkit,                 TextEditor, "horizontalAlignment",                  STRING,    HORIZONTAL_ALIGNMENT                )
92 DALI_PROPERTY_REGISTRATION(Toolkit,                 TextEditor, "scrollThreshold",                      FLOAT,     SCROLL_THRESHOLD                    )
93 DALI_PROPERTY_REGISTRATION(Toolkit,                 TextEditor, "scrollSpeed",                          FLOAT,     SCROLL_SPEED                        )
94 DALI_PROPERTY_REGISTRATION(Toolkit,                 TextEditor, "primaryCursorColor",                   VECTOR4,   PRIMARY_CURSOR_COLOR                )
95 DALI_PROPERTY_REGISTRATION(Toolkit,                 TextEditor, "secondaryCursorColor",                 VECTOR4,   SECONDARY_CURSOR_COLOR              )
96 DALI_PROPERTY_REGISTRATION(Toolkit,                 TextEditor, "enableCursorBlink",                    BOOLEAN,   ENABLE_CURSOR_BLINK                 )
97 DALI_PROPERTY_REGISTRATION(Toolkit,                 TextEditor, "cursorBlinkInterval",                  FLOAT,     CURSOR_BLINK_INTERVAL               )
98 DALI_PROPERTY_REGISTRATION(Toolkit,                 TextEditor, "cursorBlinkDuration",                  FLOAT,     CURSOR_BLINK_DURATION               )
99 DALI_PROPERTY_REGISTRATION(Toolkit,                 TextEditor, "cursorWidth",                          INTEGER,   CURSOR_WIDTH                        )
100 DALI_PROPERTY_REGISTRATION(Toolkit,                 TextEditor, "grabHandleImage",                      STRING,    GRAB_HANDLE_IMAGE                   )
101 DALI_PROPERTY_REGISTRATION(Toolkit,                 TextEditor, "grabHandlePressedImage",               STRING,    GRAB_HANDLE_PRESSED_IMAGE           )
102 DALI_PROPERTY_REGISTRATION(Toolkit,                 TextEditor, "selectionHandleImageLeft",             MAP,       SELECTION_HANDLE_IMAGE_LEFT         )
103 DALI_PROPERTY_REGISTRATION(Toolkit,                 TextEditor, "selectionHandleImageRight",            MAP,       SELECTION_HANDLE_IMAGE_RIGHT        )
104 DALI_PROPERTY_REGISTRATION(Toolkit,                 TextEditor, "selectionHandlePressedImageLeft",      MAP,       SELECTION_HANDLE_PRESSED_IMAGE_LEFT )
105 DALI_PROPERTY_REGISTRATION(Toolkit,                 TextEditor, "selectionHandlePressedImageRight",     MAP,       SELECTION_HANDLE_PRESSED_IMAGE_RIGHT)
106 DALI_PROPERTY_REGISTRATION(Toolkit,                 TextEditor, "selectionHandleMarkerImageLeft",       MAP,       SELECTION_HANDLE_MARKER_IMAGE_LEFT  )
107 DALI_PROPERTY_REGISTRATION(Toolkit,                 TextEditor, "selectionHandleMarkerImageRight",      MAP,       SELECTION_HANDLE_MARKER_IMAGE_RIGHT )
108 DALI_PROPERTY_REGISTRATION(Toolkit,                 TextEditor, "selectionHighlightColor",              VECTOR4,   SELECTION_HIGHLIGHT_COLOR           )
109 DALI_PROPERTY_REGISTRATION(Toolkit,                 TextEditor, "decorationBoundingBox",                RECTANGLE, DECORATION_BOUNDING_BOX             )
110 DALI_PROPERTY_REGISTRATION(Toolkit,                 TextEditor, "enableMarkup",                         BOOLEAN,   ENABLE_MARKUP                       )
111 DALI_PROPERTY_REGISTRATION(Toolkit,                 TextEditor, "inputColor",                           VECTOR4,   INPUT_COLOR                         )
112 DALI_PROPERTY_REGISTRATION(Toolkit,                 TextEditor, "inputFontFamily",                      STRING,    INPUT_FONT_FAMILY                   )
113 DALI_PROPERTY_REGISTRATION(Toolkit,                 TextEditor, "inputFontStyle",                       MAP,       INPUT_FONT_STYLE                    )
114 DALI_PROPERTY_REGISTRATION(Toolkit,                 TextEditor, "inputPointSize",                       FLOAT,     INPUT_POINT_SIZE                    )
115 DALI_PROPERTY_REGISTRATION(Toolkit,                 TextEditor, "lineSpacing",                          FLOAT,     LINE_SPACING                        )
116 DALI_PROPERTY_REGISTRATION(Toolkit,                 TextEditor, "inputLineSpacing",                     FLOAT,     INPUT_LINE_SPACING                  )
117 DALI_PROPERTY_REGISTRATION(Toolkit,                 TextEditor, "underline",                            MAP,       UNDERLINE                           )
118 DALI_PROPERTY_REGISTRATION(Toolkit,                 TextEditor, "inputUnderline",                       MAP,       INPUT_UNDERLINE                     )
119 DALI_PROPERTY_REGISTRATION(Toolkit,                 TextEditor, "shadow",                               MAP,       SHADOW                              )
120 DALI_PROPERTY_REGISTRATION(Toolkit,                 TextEditor, "inputShadow",                          MAP,       INPUT_SHADOW                        )
121 DALI_PROPERTY_REGISTRATION(Toolkit,                 TextEditor, "emboss",                               MAP,       EMBOSS                              )
122 DALI_PROPERTY_REGISTRATION(Toolkit,                 TextEditor, "inputEmboss",                          MAP,       INPUT_EMBOSS                        )
123 DALI_PROPERTY_REGISTRATION(Toolkit,                 TextEditor, "outline",                              MAP,       OUTLINE                             )
124 DALI_PROPERTY_REGISTRATION(Toolkit,                 TextEditor, "inputOutline",                         MAP,       INPUT_OUTLINE                       )
125 DALI_PROPERTY_REGISTRATION(Toolkit,                 TextEditor, "smoothScroll",                         BOOLEAN,   SMOOTH_SCROLL                       )
126 DALI_PROPERTY_REGISTRATION(Toolkit,                 TextEditor, "smoothScrollDuration",                 FLOAT,     SMOOTH_SCROLL_DURATION              )
127 DALI_PROPERTY_REGISTRATION(Toolkit,                 TextEditor, "enableScrollBar",                      BOOLEAN,   ENABLE_SCROLL_BAR                   )
128 DALI_PROPERTY_REGISTRATION(Toolkit,                 TextEditor, "scrollBarShowDuration",                FLOAT,     SCROLL_BAR_SHOW_DURATION            )
129 DALI_PROPERTY_REGISTRATION(Toolkit,                 TextEditor, "scrollBarFadeDuration",                FLOAT,     SCROLL_BAR_FADE_DURATION            )
130 DALI_PROPERTY_REGISTRATION(Toolkit,                 TextEditor, "pixelSize",                            FLOAT,     PIXEL_SIZE                          )
131 DALI_PROPERTY_REGISTRATION_READ_ONLY(Toolkit,       TextEditor, "lineCount",                            INTEGER,   LINE_COUNT                          )
132 DALI_PROPERTY_REGISTRATION(Toolkit,                 TextEditor, "enableSelection",                      BOOLEAN,   ENABLE_SELECTION                    )
133 DALI_PROPERTY_REGISTRATION(Toolkit,                 TextEditor, "placeholder",                          MAP,       PLACEHOLDER                         )
134 DALI_PROPERTY_REGISTRATION(Toolkit,                 TextEditor, "lineWrapMode",                         INTEGER,   LINE_WRAP_MODE                      )
135 DALI_DEVEL_PROPERTY_REGISTRATION(Toolkit,           TextEditor, "placeholderText",                      STRING,    PLACEHOLDER_TEXT                    )
136 DALI_DEVEL_PROPERTY_REGISTRATION(Toolkit,           TextEditor, "placeholderTextColor",                 VECTOR4,   PLACEHOLDER_TEXT_COLOR              )
137 DALI_DEVEL_PROPERTY_REGISTRATION(Toolkit,           TextEditor, "enableShiftSelection",                 BOOLEAN,   ENABLE_SHIFT_SELECTION              )
138 DALI_DEVEL_PROPERTY_REGISTRATION(Toolkit,           TextEditor, "enableGrabHandle",                     BOOLEAN,   ENABLE_GRAB_HANDLE                  )
139 DALI_DEVEL_PROPERTY_REGISTRATION(Toolkit,           TextEditor, "matchSystemLanguageDirection",         BOOLEAN,   MATCH_SYSTEM_LANGUAGE_DIRECTION     )
140 DALI_DEVEL_PROPERTY_REGISTRATION(Toolkit,           TextEditor, "renderingBackend",                     INTEGER,   RENDERING_BACKEND                   )
141 DALI_DEVEL_PROPERTY_REGISTRATION(Toolkit,           TextEditor, "maxLength",                            INTEGER,   MAX_LENGTH                          )
142 DALI_DEVEL_PROPERTY_REGISTRATION(Toolkit,           TextEditor, "selectedTextStart",                    INTEGER,   SELECTED_TEXT_START                 )
143 DALI_DEVEL_PROPERTY_REGISTRATION(Toolkit,           TextEditor, "selectedTextEnd",                      INTEGER,   SELECTED_TEXT_END                   )
144 DALI_DEVEL_PROPERTY_REGISTRATION(Toolkit,           TextEditor, "horizontalScrollPosition",             FLOAT,     HORIZONTAL_SCROLL_POSITION          )
145 DALI_DEVEL_PROPERTY_REGISTRATION(Toolkit,           TextEditor, "verticalScrollPosition",               INTEGER,   VERTICAL_SCROLL_POSITION            )
146 DALI_DEVEL_PROPERTY_REGISTRATION(Toolkit,           TextEditor, "enableEditing",                        BOOLEAN,   ENABLE_EDITING                      )
147 DALI_DEVEL_PROPERTY_REGISTRATION_READ_ONLY(Toolkit, TextEditor, "selectedText",                         STRING,    SELECTED_TEXT                       )
148 DALI_DEVEL_PROPERTY_REGISTRATION(Toolkit,           TextEditor, "fontSizeScale",                        FLOAT,     FONT_SIZE_SCALE                     )
149 DALI_DEVEL_PROPERTY_REGISTRATION(Toolkit,           TextEditor, "enableFontSizeScale",                  BOOLEAN,   ENABLE_FONT_SIZE_SCALE              )
150 DALI_DEVEL_PROPERTY_REGISTRATION(Toolkit,           TextEditor, "primaryCursorPosition",                INTEGER,   PRIMARY_CURSOR_POSITION             )
151 DALI_DEVEL_PROPERTY_REGISTRATION(Toolkit,           TextEditor, "grabHandleColor",                      VECTOR4,   GRAB_HANDLE_COLOR                   )
152 DALI_DEVEL_PROPERTY_REGISTRATION(Toolkit,           TextEditor, "enableGrabHandlePopup",                BOOLEAN,   ENABLE_GRAB_HANDLE_POPUP            )
153 DALI_DEVEL_PROPERTY_REGISTRATION(Toolkit,           TextEditor, "inputMethodSettings",                  MAP,       INPUT_METHOD_SETTINGS               )
154 DALI_DEVEL_PROPERTY_REGISTRATION(Toolkit,           TextEditor, "inputFilter",                          MAP,       INPUT_FILTER                        )
155 DALI_DEVEL_PROPERTY_REGISTRATION(Toolkit,           TextEditor, "ellipsis",                             BOOLEAN,   ELLIPSIS                            )
156 DALI_DEVEL_PROPERTY_REGISTRATION(Toolkit,           TextEditor, "ellipsisPosition",                     INTEGER,   ELLIPSIS_POSITION                   )
157 DALI_DEVEL_PROPERTY_REGISTRATION(Toolkit,           TextEditor, "minLineSize",                          FLOAT,     MIN_LINE_SIZE                       )
158 DALI_DEVEL_PROPERTY_REGISTRATION(Toolkit,           TextEditor, "strikethrough",                        MAP,       STRIKETHROUGH                       )
159 DALI_DEVEL_PROPERTY_REGISTRATION(Toolkit,           TextEditor, "inputStrikethrough",                   MAP,       INPUT_STRIKETHROUGH                 )
160 DALI_DEVEL_PROPERTY_REGISTRATION(Toolkit,           TextEditor, "characterSpacing",                     FLOAT,     CHARACTER_SPACING                   )
161
162 DALI_SIGNAL_REGISTRATION(Toolkit, TextEditor, "textChanged",           SIGNAL_TEXT_CHANGED           )
163 DALI_SIGNAL_REGISTRATION(Toolkit, TextEditor, "inputStyleChanged",     SIGNAL_INPUT_STYLE_CHANGED    )
164 DALI_SIGNAL_REGISTRATION(Toolkit, TextEditor, "maxLengthReached",      SIGNAL_MAX_LENGTH_REACHED     )
165 DALI_SIGNAL_REGISTRATION(Toolkit, TextEditor, "anchorClicked",         SIGNAL_ANCHOR_CLICKED         )
166 DALI_SIGNAL_REGISTRATION(Toolkit, TextEditor, "inputFiltered",         SIGNAL_INPUT_FILTERED         )
167 DALI_SIGNAL_REGISTRATION(Toolkit, TextEditor, "cursorPositionChanged", SIGNAL_CURSOR_POSITION_CHANGED)
168 DALI_SIGNAL_REGISTRATION(Toolkit, TextEditor, "selectionChanged",      SIGNAL_SELECTION_CHANGED      )
169 DALI_SIGNAL_REGISTRATION(Toolkit, TextEditor, "selectionCleared",      SIGNAL_SELECTION_CLEARED      )
170 DALI_SIGNAL_REGISTRATION(Toolkit, TextEditor, "selectionStarted",      SIGNAL_SELECTION_STARTED      )
171
172 DALI_TYPE_REGISTRATION_END()
173 // clang-format on
174
175 Toolkit::TextEditor::InputStyle::Mask ConvertInputStyle(Text::InputStyle::Mask inputStyleMask)
176 {
177   Toolkit::TextEditor::InputStyle::Mask editorInputStyleMask = Toolkit::TextEditor::InputStyle::NONE;
178
179   if(InputStyle::NONE != static_cast<InputStyle::Mask>(inputStyleMask & InputStyle::INPUT_COLOR))
180   {
181     editorInputStyleMask = static_cast<Toolkit::TextEditor::InputStyle::Mask>(editorInputStyleMask | Toolkit::TextEditor::InputStyle::COLOR);
182   }
183   if(InputStyle::NONE != static_cast<InputStyle::Mask>(inputStyleMask & InputStyle::INPUT_FONT_FAMILY))
184   {
185     editorInputStyleMask = static_cast<Toolkit::TextEditor::InputStyle::Mask>(editorInputStyleMask | Toolkit::TextEditor::InputStyle::FONT_FAMILY);
186   }
187   if(InputStyle::NONE != static_cast<InputStyle::Mask>(inputStyleMask & InputStyle::INPUT_POINT_SIZE))
188   {
189     editorInputStyleMask = static_cast<Toolkit::TextEditor::InputStyle::Mask>(editorInputStyleMask | Toolkit::TextEditor::InputStyle::POINT_SIZE);
190   }
191   if(InputStyle::NONE != static_cast<InputStyle::Mask>(inputStyleMask & InputStyle::INPUT_FONT_WEIGHT))
192   {
193     editorInputStyleMask = static_cast<Toolkit::TextEditor::InputStyle::Mask>(editorInputStyleMask | Toolkit::TextEditor::InputStyle::FONT_STYLE);
194   }
195   if(InputStyle::NONE != static_cast<InputStyle::Mask>(inputStyleMask & InputStyle::INPUT_FONT_WIDTH))
196   {
197     editorInputStyleMask = static_cast<Toolkit::TextEditor::InputStyle::Mask>(editorInputStyleMask | Toolkit::TextEditor::InputStyle::FONT_STYLE);
198   }
199   if(InputStyle::NONE != static_cast<InputStyle::Mask>(inputStyleMask & InputStyle::INPUT_FONT_SLANT))
200   {
201     editorInputStyleMask = static_cast<Toolkit::TextEditor::InputStyle::Mask>(editorInputStyleMask | Toolkit::TextEditor::InputStyle::FONT_STYLE);
202   }
203   if(InputStyle::NONE != static_cast<InputStyle::Mask>(inputStyleMask & InputStyle::INPUT_LINE_SPACING))
204   {
205     editorInputStyleMask = static_cast<Toolkit::TextEditor::InputStyle::Mask>(editorInputStyleMask | Toolkit::TextEditor::InputStyle::LINE_SPACING);
206   }
207   if(InputStyle::NONE != static_cast<InputStyle::Mask>(inputStyleMask & InputStyle::INPUT_UNDERLINE))
208   {
209     editorInputStyleMask = static_cast<Toolkit::TextEditor::InputStyle::Mask>(editorInputStyleMask | Toolkit::TextEditor::InputStyle::UNDERLINE);
210   }
211   if(InputStyle::NONE != static_cast<InputStyle::Mask>(inputStyleMask & InputStyle::INPUT_SHADOW))
212   {
213     editorInputStyleMask = static_cast<Toolkit::TextEditor::InputStyle::Mask>(editorInputStyleMask | Toolkit::TextEditor::InputStyle::SHADOW);
214   }
215   if(InputStyle::NONE != static_cast<InputStyle::Mask>(inputStyleMask & InputStyle::INPUT_EMBOSS))
216   {
217     editorInputStyleMask = static_cast<Toolkit::TextEditor::InputStyle::Mask>(editorInputStyleMask | Toolkit::TextEditor::InputStyle::EMBOSS);
218   }
219   if(InputStyle::NONE != static_cast<InputStyle::Mask>(inputStyleMask & InputStyle::INPUT_OUTLINE))
220   {
221     editorInputStyleMask = static_cast<Toolkit::TextEditor::InputStyle::Mask>(editorInputStyleMask | Toolkit::TextEditor::InputStyle::OUTLINE);
222   }
223   if(InputStyle::NONE != static_cast<InputStyle::Mask>(inputStyleMask & InputStyle::INPUT_STRIKETHROUGH))
224   {
225     editorInputStyleMask = static_cast<Toolkit::TextEditor::InputStyle::Mask>(editorInputStyleMask | Toolkit::TextEditor::InputStyle::STRIKETHROUGH);
226   }
227
228   return editorInputStyleMask;
229 }
230
231 } // namespace
232
233 Toolkit::TextEditor TextEditor::New()
234 {
235   // Create the implementation, temporarily owned by this handle on stack
236   IntrusivePtr<TextEditor> impl = new TextEditor();
237
238   // Pass ownership to CustomActor handle
239   Toolkit::TextEditor handle(*impl);
240
241   // Second-phase init of the implementation
242   // This can only be done after the CustomActor connection has been made...
243   impl->Initialize();
244
245   return handle;
246 }
247
248 void TextEditor::SetProperty(BaseObject* object, Property::Index index, const Property::Value& value)
249 {
250   Toolkit::TextEditor textEditor = Toolkit::TextEditor::DownCast(Dali::BaseHandle(object));
251
252   DALI_LOG_INFO(gTextEditorLogFilter, Debug::Verbose, "TextEditor SetProperty\n");
253
254   if(textEditor)
255   {
256     PropertyHandler::SetProperty(textEditor, index, value);
257   }
258 }
259
260 Property::Value TextEditor::GetProperty(BaseObject* object, Property::Index index)
261 {
262   Property::Value value;
263
264   Toolkit::TextEditor textEditor = Toolkit::TextEditor::DownCast(Dali::BaseHandle(object));
265
266   if(textEditor)
267   {
268     value = PropertyHandler::GetProperty(textEditor, index);
269   }
270   return value;
271 }
272
273 void TextEditor::SelectWholeText()
274 {
275   if(mController && mController->IsShowingRealText())
276   {
277     mController->SelectWholeText();
278     SetKeyInputFocus();
279   }
280 }
281
282 void TextEditor::SelectNone()
283 {
284   if(mController && mController->IsShowingRealText())
285   {
286     mController->SelectNone();
287   }
288 }
289
290 void TextEditor::SelectText(const uint32_t start, const uint32_t end)
291 {
292   if(mController && mController->IsShowingRealText())
293   {
294     mController->SelectText(start, end);
295     SetKeyInputFocus();
296   }
297 }
298
299 string TextEditor::CopyText()
300 {
301   string copiedText = "";
302   if(mController && mController->IsShowingRealText())
303   {
304     copiedText = mController->CopyText();
305   }
306   return copiedText;
307 }
308
309 string TextEditor::CutText()
310 {
311   string cutText = "";
312   if(mController && mController->IsShowingRealText())
313   {
314     cutText = mController->CutText();
315   }
316   return cutText;
317 }
318
319 void TextEditor::PasteText()
320 {
321   if(mController)
322   {
323     SetKeyInputFocus(); //Giving focus to the editor that was passed to the PasteText in case the passed editor (current editor) doesn't have focus.
324     mController->PasteText();
325   }
326 }
327
328 void TextEditor::ScrollBy(Vector2 scroll)
329 {
330   if(mController && mController->IsShowingRealText())
331   {
332     mController->ScrollBy(scroll);
333   }
334 }
335
336 float TextEditor::GetHorizontalScrollPosition()
337 {
338   if(mController && mController->IsShowingRealText())
339   {
340     return mController->GetHorizontalScrollPosition();
341   }
342   return 0;
343 }
344
345 float TextEditor::GetVerticalScrollPosition()
346 {
347   if(mController && mController->IsShowingRealText())
348   {
349     return mController->GetVerticalScrollPosition();
350   }
351   return 0;
352 }
353
354 Vector<Vector2> TextEditor::GetTextSize(const uint32_t startIndex, const uint32_t endIndex) const
355 {
356   return mController->GetTextSize(startIndex, endIndex);
357 }
358
359 Vector<Vector2> TextEditor::GetTextPosition(const uint32_t startIndex, const uint32_t endIndex) const
360 {
361   return mController->GetTextPosition(startIndex, endIndex);
362 }
363
364 string TextEditor::GetSelectedText() const
365 {
366   string selectedText = "";
367   if(mController && mController->IsShowingRealText())
368   {
369     selectedText = mController->GetSelectedText();
370   }
371   return selectedText;
372 }
373
374 InputMethodContext TextEditor::GetInputMethodContext()
375 {
376   return mInputMethodContext;
377 }
378
379 DevelTextEditor::MaxLengthReachedSignalType& TextEditor::MaxLengthReachedSignal()
380 {
381   return mMaxLengthReachedSignal;
382 }
383
384 DevelTextEditor::AnchorClickedSignalType& TextEditor::AnchorClickedSignal()
385 {
386   return mAnchorClickedSignal;
387 }
388
389 DevelTextEditor::CursorPositionChangedSignalType& TextEditor::CursorPositionChangedSignal()
390 {
391   return mCursorPositionChangedSignal;
392 }
393
394 DevelTextEditor::InputFilteredSignalType& TextEditor::InputFilteredSignal()
395 {
396   return mInputFilteredSignal;
397 }
398
399 DevelTextEditor::SelectionChangedSignalType& TextEditor::SelectionChangedSignal()
400 {
401   return mSelectionChangedSignal;
402 }
403
404 DevelTextEditor::SelectionClearedSignalType& TextEditor::SelectionClearedSignal()
405 {
406   return mSelectionClearedSignal;
407 }
408
409 DevelTextEditor::SelectionStartedSignalType& TextEditor::SelectionStartedSignal()
410 {
411   return mSelectionStartedSignal;
412 }
413
414 Text::ControllerPtr TextEditor::GetTextController()
415 {
416   return mController;
417 }
418
419 bool TextEditor::DoConnectSignal(BaseObject* object, ConnectionTrackerInterface* tracker, const std::string& signalName, FunctorDelegate* functor)
420 {
421   Dali::BaseHandle handle(object);
422
423   bool                connected(true);
424   Toolkit::TextEditor editor = Toolkit::TextEditor::DownCast(handle);
425
426   if(0 == strcmp(signalName.c_str(), SIGNAL_TEXT_CHANGED))
427   {
428     editor.TextChangedSignal().Connect(tracker, functor);
429   }
430   else if(0 == strcmp(signalName.c_str(), SIGNAL_INPUT_STYLE_CHANGED))
431   {
432     editor.InputStyleChangedSignal().Connect(tracker, functor);
433   }
434   else if(0 == strcmp(signalName.c_str(), SIGNAL_MAX_LENGTH_REACHED))
435   {
436     if(editor)
437     {
438       Internal::TextEditor& editorImpl(GetImpl(editor));
439       editorImpl.MaxLengthReachedSignal().Connect(tracker, functor);
440     }
441   }
442   else if(0 == strcmp(signalName.c_str(), SIGNAL_ANCHOR_CLICKED))
443   {
444     if(editor)
445     {
446       Internal::TextEditor& editorImpl(GetImpl(editor));
447       editorImpl.AnchorClickedSignal().Connect(tracker, functor);
448     }
449   }
450   else if(0 == strcmp(signalName.c_str(), SIGNAL_CURSOR_POSITION_CHANGED))
451   {
452     if(editor)
453     {
454       Internal::TextEditor& editorImpl(GetImpl(editor));
455       editorImpl.CursorPositionChangedSignal().Connect(tracker, functor);
456     }
457   }
458   else if(0 == strcmp(signalName.c_str(), SIGNAL_INPUT_FILTERED))
459   {
460     if(editor)
461     {
462       Internal::TextEditor& editorImpl(GetImpl(editor));
463       editorImpl.InputFilteredSignal().Connect(tracker, functor);
464     }
465   }
466   else if(0 == strcmp(signalName.c_str(), SIGNAL_SELECTION_CHANGED))
467   {
468     if(editor)
469     {
470       Internal::TextEditor& editorImpl(GetImpl(editor));
471       editorImpl.SelectionChangedSignal().Connect(tracker, functor);
472     }
473   }
474   else if(0 == strcmp(signalName.c_str(), SIGNAL_SELECTION_CLEARED))
475   {
476     if(editor)
477     {
478       Internal::TextEditor& editorImpl(GetImpl(editor));
479       editorImpl.SelectionClearedSignal().Connect(tracker, functor);
480     }
481   }
482   else if(0 == strcmp(signalName.c_str(), SIGNAL_SELECTION_STARTED))
483   {
484     if(editor)
485     {
486       Internal::TextEditor& editorImpl(GetImpl(editor));
487       editorImpl.SelectionStartedSignal().Connect(tracker, functor);
488     }
489   }
490   else
491   {
492     // signalName does not match any signal
493     connected = false;
494   }
495
496   return connected;
497 }
498
499 Toolkit::TextEditor::TextChangedSignalType& TextEditor::TextChangedSignal()
500 {
501   return mTextChangedSignal;
502 }
503
504 Toolkit::TextEditor::InputStyleChangedSignalType& TextEditor::InputStyleChangedSignal()
505 {
506   return mInputStyleChangedSignal;
507 }
508
509 Toolkit::TextEditor::ScrollStateChangedSignalType& TextEditor::ScrollStateChangedSignal()
510 {
511   return mScrollStateChangedSignal;
512 }
513
514 void TextEditor::OnAccessibilityStatusChanged()
515 {
516   CommonTextUtils::SynchronizeTextAnchorsInParent(Self(), mController, mAnchorActors);
517 }
518
519 void TextEditor::OnInitialize()
520 {
521   Actor self = Self();
522
523   mController = Text::Controller::New(this, this, this, this);
524
525   mDecorator = Text::Decorator::New(*mController,
526                                     *mController);
527
528   mInputMethodContext = InputMethodContext::New(self);
529
530   mController->GetLayoutEngine().SetLayout(Layout::Engine::MULTI_LINE_BOX);
531
532   // Enables the text input.
533   mController->EnableTextInput(mDecorator, mInputMethodContext);
534
535   // Enables the vertical scrolling after the text input has been enabled.
536   mController->SetVerticalScrollEnabled(true);
537
538   // Disables the horizontal scrolling.
539   mController->SetHorizontalScrollEnabled(false);
540
541   // Sets the maximum number of characters.
542   mController->SetMaximumNumberOfCharacters(std::numeric_limits<Length>::max());
543
544   // Enable the smooth handle panning.
545   mController->SetSmoothHandlePanEnabled(true);
546
547   mController->SetNoTextDoubleTapAction(Controller::NoTextTap::HIGHLIGHT);
548   mController->SetNoTextLongPressAction(Controller::NoTextTap::HIGHLIGHT);
549
550   // Sets layoutDirection value
551   Dali::Stage                 stage           = Dali::Stage::GetCurrent();
552   Dali::LayoutDirection::Type layoutDirection = static_cast<Dali::LayoutDirection::Type>(stage.GetRootLayer().GetProperty(Dali::Actor::Property::LAYOUT_DIRECTION).Get<int>());
553   mController->SetLayoutDirection(layoutDirection);
554
555   self.LayoutDirectionChangedSignal().Connect(this, &TextEditor::OnLayoutDirectionChanged);
556
557   // Forward input events to controller
558   EnableGestureDetection(static_cast<GestureType::Value>(GestureType::TAP | GestureType::PAN | GestureType::LONG_PRESS));
559   GetTapGestureDetector().SetMaximumTapsRequired(2);
560   GetTapGestureDetector().ReceiveAllTapEvents(true);
561
562   self.TouchedSignal().Connect(this, &TextEditor::OnTouched);
563
564   // Set BoundingBox to stage size if not already set.
565   Rect<int> boundingBox;
566   mDecorator->GetBoundingBox(boundingBox);
567
568   if(boundingBox.IsEmpty())
569   {
570     Vector2 stageSize = Dali::Stage::GetCurrent().GetSize();
571     mDecorator->SetBoundingBox(Rect<int>(0.0f, 0.0f, stageSize.width, stageSize.height));
572   }
573
574   // Whether to flip the selection handles as soon as they cross.
575   mDecorator->FlipSelectionHandlesOnCrossEnabled(true);
576
577   // Set the default scroll speed.
578   mDecorator->SetScrollSpeed(DEFAULT_SCROLL_SPEED);
579
580   // Fill-parent area by default
581   self.SetResizePolicy(ResizePolicy::FILL_TO_PARENT, Dimension::WIDTH);
582   self.SetResizePolicy(ResizePolicy::FILL_TO_PARENT, Dimension::HEIGHT);
583   self.OnSceneSignal().Connect(this, &TextEditor::OnSceneConnect);
584
585   //Enable highightability
586   self.SetProperty(Toolkit::DevelControl::Property::ACCESSIBILITY_HIGHLIGHTABLE, true);
587
588   DevelControl::SetInputMethodContext(*this, mInputMethodContext);
589
590   // Creates an extra control to be used as stencil buffer.
591   mStencil = Control::New();
592   mStencil.SetProperty(Actor::Property::ANCHOR_POINT, AnchorPoint::TOP_LEFT);
593   mStencil.SetProperty(Actor::Property::PARENT_ORIGIN, ParentOrigin::TOP_LEFT);
594
595   // Creates a background visual. Even if the color is transparent it updates the stencil.
596   mStencil.SetProperty(Toolkit::Control::Property::BACKGROUND,
597                        Property::Map().Add(Toolkit::Visual::Property::TYPE, Toolkit::Visual::COLOR).Add(ColorVisual::Property::MIX_COLOR, Color::TRANSPARENT));
598
599   // Enable the clipping property.
600   mStencil.SetProperty(Actor::Property::CLIPPING_MODE, ClippingMode::CLIP_TO_BOUNDING_BOX);
601   mStencil.SetResizePolicy(ResizePolicy::FILL_TO_PARENT, Dimension::ALL_DIMENSIONS);
602
603   self.Add(mStencil);
604
605   DevelControl::SetAccessibilityConstructor(self, [](Dali::Actor actor) {
606     return std::unique_ptr<Dali::Accessibility::Accessible>(
607       new AccessibleImpl(actor, Dali::Accessibility::Role::ENTRY));
608   });
609
610   Accessibility::Bridge::EnabledSignal().Connect(this, &TextEditor::OnAccessibilityStatusChanged);
611   Accessibility::Bridge::DisabledSignal().Connect(this, &TextEditor::OnAccessibilityStatusChanged);
612 }
613
614 void TextEditor::OnStyleChange(Toolkit::StyleManager styleManager, StyleChange::Type change)
615 {
616   DALI_LOG_INFO(gTextEditorLogFilter, Debug::Verbose, "TextEditor::OnStyleChange\n");
617
618   switch(change)
619   {
620     case StyleChange::DEFAULT_FONT_CHANGE:
621     {
622       DALI_LOG_INFO(gTextEditorLogFilter, Debug::Verbose, "TextEditor::OnStyleChange DEFAULT_FONT_CHANGE\n");
623       const std::string& newFont = GetImpl(styleManager).GetDefaultFontFamily();
624       // Property system did not set the font so should update it.
625       mController->UpdateAfterFontChange(newFont);
626       RelayoutRequest();
627       break;
628     }
629
630     case StyleChange::DEFAULT_FONT_SIZE_CHANGE:
631     {
632       GetImpl(styleManager).ApplyThemeStyle(Toolkit::Control(GetOwner()));
633       RelayoutRequest();
634       break;
635     }
636     case StyleChange::THEME_CHANGE:
637     {
638       // Nothing to do, let control base class handle this
639       break;
640     }
641   }
642
643   // Up call to Control
644   Control::OnStyleChange(styleManager, change);
645 }
646
647 Vector3 TextEditor::GetNaturalSize()
648 {
649   Extents padding;
650   padding = Self().GetProperty<Extents>(Toolkit::Control::Property::PADDING);
651
652   Vector3 naturalSize = mController->GetNaturalSize();
653   naturalSize.width += (padding.start + padding.end);
654   naturalSize.height += (padding.top + padding.bottom);
655
656   return naturalSize;
657 }
658
659 float TextEditor::GetHeightForWidth(float width)
660 {
661   Extents padding;
662   padding = Self().GetProperty<Extents>(Toolkit::Control::Property::PADDING);
663   return mController->GetHeightForWidth(width) + padding.top + padding.bottom;
664 }
665
666 void TextEditor::ResizeActor(Actor& actor, const Vector2& size)
667 {
668   if(actor.GetProperty<Vector3>(Dali::Actor::Property::SIZE).GetVectorXY() != size)
669   {
670     actor.SetProperty(Actor::Property::SIZE, size);
671   }
672 }
673
674 void TextEditor::OnRelayout(const Vector2& size, RelayoutContainer& container)
675 {
676   DALI_LOG_INFO(gTextEditorLogFilter, Debug::Verbose, "TextEditor OnRelayout\n");
677
678   Actor self = Self();
679
680   Extents padding;
681   padding = self.GetProperty<Extents>(Toolkit::Control::Property::PADDING);
682
683   Vector2 contentSize(size.x - (padding.start + padding.end), size.y - (padding.top + padding.bottom));
684
685   // Support Right-To-Left of padding
686   Dali::LayoutDirection::Type layoutDirection = mController->GetLayoutDirection(self);
687
688   if(Dali::LayoutDirection::RIGHT_TO_LEFT == layoutDirection)
689   {
690     std::swap(padding.start, padding.end);
691   }
692
693   if(mStencil)
694   {
695     mStencil.SetProperty(Actor::Property::POSITION, Vector2(padding.start, padding.top));
696     ResizeActor(mStencil, contentSize);
697   }
698   if(mActiveLayer)
699   {
700     mActiveLayer.SetProperty(Actor::Property::POSITION, Vector2(padding.start, padding.top));
701     ResizeActor(mActiveLayer, contentSize);
702   }
703
704   // If there is text changed, callback is called.
705   if(mTextChanged)
706   {
707     EmitTextChangedSignal();
708   }
709
710   const Text::Controller::UpdateTextType updateTextType = mController->Relayout(contentSize, layoutDirection);
711
712   if((Text::Controller::NONE_UPDATED != updateTextType) ||
713      !mRenderer)
714   {
715     DALI_LOG_INFO(gTextEditorLogFilter, Debug::Verbose, "TextEditor::OnRelayout %p Displaying new contents\n", mController.Get());
716
717     if(mDecorator &&
718        (Text::Controller::NONE_UPDATED != (Text::Controller::DECORATOR_UPDATED & updateTextType)))
719     {
720       mDecorator->Relayout(contentSize);
721     }
722
723     if(!mRenderer)
724     {
725       mRenderer = Backend::Get().NewRenderer(mRenderingBackend);
726     }
727
728     RenderText(updateTextType);
729   }
730
731   if(mCursorPositionChanged)
732   {
733     EmitCursorPositionChangedSignal();
734   }
735
736   if(mSelectionStarted)
737   {
738     EmitSelectionStartedSignal();
739   }
740
741   if(mSelectionChanged)
742   {
743     EmitSelectionChangedSignal();
744   }
745
746   if(mSelectionCleared)
747   {
748     EmitSelectionClearedSignal();
749   }
750
751   // The text-editor emits signals when the input style changes. These changes of style are
752   // detected during the relayout process (size negotiation), i.e after the cursor has been moved. Signals
753   // can't be emitted during the size negotiation as the callbacks may update the UI.
754   // The text-editor adds an idle callback to the adaptor to emit the signals after the size negotiation.
755   if(!mController->IsInputStyleChangedSignalsQueueEmpty())
756   {
757     if(Adaptor::IsAvailable())
758     {
759       Adaptor& adaptor = Adaptor::Get();
760
761       if(NULL == mIdleCallback)
762       {
763         // @note: The callback manager takes the ownership of the callback object.
764         mIdleCallback = MakeCallback(this, &TextEditor::OnIdleSignal);
765         adaptor.AddIdle(mIdleCallback, false);
766       }
767     }
768   }
769 }
770
771 void TextEditor::RenderText(Text::Controller::UpdateTextType updateTextType)
772 {
773   CommonTextUtils::RenderText(Self(), mRenderer, mController, mDecorator, mAlignmentOffset, mRenderableActor, mBackgroundActor, mStencil, mClippingDecorationActors, mAnchorActors, updateTextType);
774   if(mRenderableActor)
775   {
776     ApplyScrollPosition();
777   }
778   UpdateScrollBar();
779 }
780
781 void TextEditor::OnKeyInputFocusGained()
782 {
783   DALI_LOG_INFO(gTextEditorLogFilter, Debug::Verbose, "TextEditor::OnKeyInputFocusGained %p\n", mController.Get());
784   if(mInputMethodContext && IsEditable())
785   {
786     // All input panel properties, such as layout, return key type, and input hint, should be set before input panel activates (or shows).
787     mInputMethodContext.ApplyOptions(mInputMethodOptions);
788     mInputMethodContext.NotifyTextInputMultiLine(true);
789
790     mInputMethodContext.StatusChangedSignal().Connect(this, &TextEditor::KeyboardStatusChanged);
791
792     mInputMethodContext.EventReceivedSignal().Connect(this, &TextEditor::OnInputMethodContextEvent);
793
794     // Notify that the text editing start.
795     mInputMethodContext.Activate();
796
797     // When window gain lost focus, the InputMethodContext is deactivated. Thus when window gain focus again, the InputMethodContext must be activated.
798     mInputMethodContext.SetRestoreAfterFocusLost(true);
799   }
800   ClipboardEventNotifier notifier(ClipboardEventNotifier::Get());
801
802   if(notifier)
803   {
804     notifier.ContentSelectedSignal().Connect(this, &TextEditor::OnClipboardTextSelected);
805   }
806
807   mController->KeyboardFocusGainEvent(); // Called in the case of no virtual keyboard to trigger this event
808
809   EmitKeyInputFocusSignal(true); // Calls back into the Control hence done last.
810 }
811
812 void TextEditor::OnKeyInputFocusLost()
813 {
814   DALI_LOG_INFO(gTextEditorLogFilter, Debug::Verbose, "TextEditor:OnKeyInputFocusLost %p\n", mController.Get());
815   if(mInputMethodContext)
816   {
817     mInputMethodContext.StatusChangedSignal().Disconnect(this, &TextEditor::KeyboardStatusChanged);
818
819     // The text editing is finished. Therefore the InputMethodContext don't have restore activation.
820     mInputMethodContext.SetRestoreAfterFocusLost(false);
821
822     // Notify that the text editing finish.
823     mInputMethodContext.Deactivate();
824
825     mInputMethodContext.EventReceivedSignal().Disconnect(this, &TextEditor::OnInputMethodContextEvent);
826   }
827   ClipboardEventNotifier notifier(ClipboardEventNotifier::Get());
828
829   if(notifier)
830   {
831     notifier.ContentSelectedSignal().Disconnect(this, &TextEditor::OnClipboardTextSelected);
832   }
833
834   mController->KeyboardFocusLostEvent();
835
836   EmitKeyInputFocusSignal(false); // Calls back into the Control hence done last.
837 }
838
839 bool TextEditor::OnAccessibilityActivated()
840 {
841   SetKeyInputFocus();
842   return true;
843 }
844
845 void TextEditor::OnTap(const TapGesture& gesture)
846 {
847   DALI_LOG_INFO(gTextEditorLogFilter, Debug::Verbose, "TextEditor::OnTap %p\n", mController.Get());
848   if(mInputMethodContext && IsEditable())
849   {
850     mInputMethodContext.Activate();
851   }
852   // Deliver the tap before the focus event to controller; this allows us to detect when focus is gained due to tap-gestures
853   Extents padding;
854   padding                   = Self().GetProperty<Extents>(Toolkit::Control::Property::PADDING);
855   const Vector2& localPoint = gesture.GetLocalPoint();
856   mController->TapEvent(gesture.GetNumberOfTaps(), localPoint.x - padding.start, localPoint.y - padding.top);
857   mController->AnchorEvent(localPoint.x - padding.start, localPoint.y - padding.top);
858
859   SetKeyInputFocus();
860 }
861
862 void TextEditor::OnPan(const PanGesture& gesture)
863 {
864   mController->PanEvent(gesture.GetState(), gesture.GetDisplacement());
865 }
866
867 void TextEditor::OnLongPress(const LongPressGesture& gesture)
868 {
869   if(mInputMethodContext && IsEditable())
870   {
871     mInputMethodContext.Activate();
872   }
873   Extents padding;
874   padding                   = Self().GetProperty<Extents>(Toolkit::Control::Property::PADDING);
875   const Vector2& localPoint = gesture.GetLocalPoint();
876   mController->LongPressEvent(gesture.GetState(), localPoint.x - padding.start, localPoint.y - padding.top);
877
878   SetKeyInputFocus();
879 }
880
881 bool TextEditor::OnKeyEvent(const KeyEvent& event)
882 {
883   DALI_LOG_INFO(gTextEditorLogFilter, Debug::Verbose, "TextEditor::OnKeyEvent %p keyCode %d\n", mController.Get(), event.GetKeyCode());
884
885   if(Dali::DALI_KEY_ESCAPE == event.GetKeyCode() && mController->ShouldClearFocusOnEscape())
886   {
887     // Make sure ClearKeyInputFocus when only key is up
888     if(event.GetState() == KeyEvent::UP)
889     {
890       ClearKeyInputFocus();
891     }
892
893     return true;
894   }
895
896   return mController->KeyEvent(event);
897 }
898
899 void TextEditor::RequestTextRelayout()
900 {
901   RelayoutRequest();
902 }
903
904 void TextEditor::TextInserted(unsigned int position, unsigned int length, const std::string& content)
905 {
906   if(Accessibility::IsUp())
907   {
908     Control::Impl::GetAccessibilityObject(Self())->EmitTextInserted(position, length, content);
909   }
910 }
911
912 void TextEditor::TextDeleted(unsigned int position, unsigned int length, const std::string& content)
913 {
914   if(Accessibility::IsUp())
915   {
916     Control::Impl::GetAccessibilityObject(Self())->EmitTextDeleted(position, length, content);
917   }
918 }
919
920 void TextEditor::CursorPositionChanged(unsigned int oldPosition, unsigned int newPosition)
921 {
922   if(Accessibility::IsUp())
923   {
924     Control::Impl::GetAccessibilityObject(Self())->EmitTextCursorMoved(newPosition);
925   }
926
927   if((oldPosition != newPosition) && !mCursorPositionChanged)
928   {
929     mCursorPositionChanged = true;
930     mOldPosition           = oldPosition;
931   }
932 }
933
934 void TextEditor::TextChanged(bool immediate)
935 {
936   if(immediate) // Emits TextChangedSignal immediately
937   {
938     EmitTextChangedSignal();
939   }
940   else
941   {
942     mTextChanged = true;
943   }
944 }
945
946 void TextEditor::EmitTextChangedSignal()
947 {
948   Dali::Toolkit::TextEditor handle(GetOwner());
949   mTextChangedSignal.Emit(handle);
950   mTextChanged = false;
951 }
952
953 void TextEditor::MaxLengthReached()
954 {
955   Dali::Toolkit::TextEditor handle(GetOwner());
956   mMaxLengthReachedSignal.Emit(handle);
957 }
958
959 void TextEditor::InputStyleChanged(Text::InputStyle::Mask inputStyleMask)
960 {
961   Dali::Toolkit::TextEditor handle(GetOwner());
962   mInputStyleChangedSignal.Emit(handle, ConvertInputStyle(inputStyleMask));
963 }
964
965 void TextEditor::AnchorClicked(const std::string& href)
966 {
967   Dali::Toolkit::TextEditor handle(GetOwner());
968   mAnchorClickedSignal.Emit(handle, href.c_str(), href.length());
969 }
970
971 void TextEditor::EmitCursorPositionChangedSignal()
972 {
973   Dali::Toolkit::TextEditor handle(GetOwner());
974   mCursorPositionChanged = false;
975   mCursorPositionChangedSignal.Emit(handle, mOldPosition);
976 }
977
978 void TextEditor::InputFiltered(Toolkit::InputFilter::Property::Type type)
979 {
980   Dali::Toolkit::TextEditor handle(GetOwner());
981   mInputFilteredSignal.Emit(handle, type);
982 }
983
984 void TextEditor::EmitSelectionChangedSignal()
985 {
986   Dali::Toolkit::TextEditor handle(GetOwner());
987   mSelectionChangedSignal.Emit(handle, mOldSelectionStart, mOldSelectionEnd);
988   mSelectionChanged = false;
989 }
990
991 void TextEditor::EmitSelectionClearedSignal()
992 {
993   Dali::Toolkit::TextEditor handle(GetOwner());
994   mSelectionClearedSignal.Emit(handle);
995   mSelectionCleared = false;
996 }
997
998 void TextEditor::EmitSelectionStartedSignal()
999 {
1000   Dali::Toolkit::TextEditor handle(GetOwner());
1001   mSelectionStartedSignal.Emit(handle);
1002   mSelectionStarted = false;
1003 }
1004
1005 void TextEditor::SelectionChanged(uint32_t oldStart, uint32_t oldEnd, uint32_t newStart, uint32_t newEnd)
1006 {
1007   if(((oldStart != newStart) || (oldEnd != newEnd)) && !mSelectionChanged)
1008   {
1009     if(newStart == newEnd)
1010     {
1011       mSelectionCleared = true;
1012     }
1013     else
1014     {
1015       if(oldStart == oldEnd)
1016       {
1017         mSelectionStarted = true;
1018       }
1019     }
1020
1021     mSelectionChanged  = true;
1022     mOldSelectionStart = oldStart;
1023     mOldSelectionEnd   = oldEnd;
1024
1025     if(mOldSelectionStart > mOldSelectionEnd)
1026     {
1027       //swap
1028       uint32_t temp      = mOldSelectionStart;
1029       mOldSelectionStart = mOldSelectionEnd;
1030       mOldSelectionEnd   = temp;
1031     }
1032   }
1033 }
1034
1035 void TextEditor::AddDecoration(Actor& actor, bool needsClipping)
1036 {
1037   if(actor)
1038   {
1039     if(needsClipping)
1040     {
1041       mClippingDecorationActors.push_back(actor);
1042     }
1043     else
1044     {
1045       actor.SetProperty(Actor::Property::PARENT_ORIGIN, ParentOrigin::TOP_LEFT);
1046       actor.SetProperty(Actor::Property::ANCHOR_POINT, AnchorPoint::TOP_LEFT);
1047       Self().Add(actor);
1048       mActiveLayer = actor;
1049     }
1050   }
1051 }
1052
1053 void TextEditor::SetTextSelectionRange(const uint32_t* start, const uint32_t* end)
1054 {
1055   if(mController && mController->IsShowingRealText())
1056   {
1057     mController->SetTextSelectionRange(start, end);
1058     SetKeyInputFocus();
1059   }
1060 }
1061
1062 Uint32Pair TextEditor::GetTextSelectionRange() const
1063 {
1064   Uint32Pair range(0, 0);
1065   if(mController && mController->IsShowingRealText())
1066   {
1067     range = mController->GetTextSelectionRange();
1068   }
1069   return range;
1070 }
1071
1072 void TextEditor::GetControlBackgroundColor(Vector4& color) const
1073 {
1074   Property::Value propValue = Self().GetProperty(Toolkit::Control::Property::BACKGROUND);
1075   Property::Map*  resultMap = propValue.GetMap();
1076
1077   Property::Value* colorValue = nullptr;
1078   if(resultMap && (colorValue = resultMap->Find(ColorVisual::Property::MIX_COLOR)))
1079   {
1080     colorValue->Get(color);
1081   }
1082 }
1083
1084 void TextEditor::UpdateScrollBar()
1085 {
1086   using namespace Dali;
1087
1088   float scrollPosition;
1089   float controlSize;
1090   float layoutSize;
1091   bool  latestScrolled;
1092
1093   if(!mScrollBarEnabled)
1094   {
1095     return;
1096   }
1097   latestScrolled = mController->GetTextScrollInfo(scrollPosition, controlSize, layoutSize);
1098   if(!latestScrolled || controlSize > layoutSize)
1099   {
1100     return;
1101   }
1102
1103   CustomActor self = Self();
1104   if(!mScrollBar)
1105   {
1106     mScrollBar = Toolkit::ScrollBar::New(Toolkit::ScrollBar::VERTICAL);
1107     mScrollBar.SetIndicatorHeightPolicy(Toolkit::ScrollBar::VARIABLE);
1108     mScrollBar.SetProperty(Actor::Property::PARENT_ORIGIN, ParentOrigin::TOP_RIGHT);
1109     mScrollBar.SetProperty(Actor::Property::ANCHOR_POINT, AnchorPoint::TOP_RIGHT);
1110     mScrollBar.SetResizePolicy(ResizePolicy::FILL_TO_PARENT, Dimension::HEIGHT);
1111     mScrollBar.SetResizePolicy(ResizePolicy::FIT_TO_CHILDREN, Dimension::WIDTH);
1112
1113     // Register the scroll position property
1114     Property::Index propertyScrollPosition = self.RegisterProperty(SCROLL_BAR_POSITION, scrollPosition);
1115     // Register the minimum scroll position property
1116     Property::Index propertyMinScrollPosition = self.RegisterProperty(SCROLL_BAR_POSITION_MIN, 0.0f);
1117     // Register the maximum scroll position property
1118     Property::Index propertyMaxScrollPosition = self.RegisterProperty(SCROLL_BAR_POSITION_MAX, (layoutSize - controlSize));
1119     // Register the scroll content size property
1120     Property::Index propertyScrollContentSize = self.RegisterProperty(SCROLL_BAR_CONTENT_SIZE, layoutSize);
1121
1122     mScrollBar.SetScrollPropertySource(self, propertyScrollPosition, propertyMinScrollPosition, propertyMaxScrollPosition, propertyScrollContentSize);
1123
1124     // Set style name of ScrollBar for styling
1125     mScrollBar.SetStyleName("TextEditorScrollBar");
1126     Toolkit::Control scrollIndicator = Toolkit::Control::DownCast(mScrollBar.GetScrollIndicator());
1127     if(scrollIndicator)
1128     {
1129       // Set style name of ScrollBarIndicator for styling
1130       scrollIndicator.SetStyleName("TextEditorScrollBarIndicator");
1131     }
1132
1133     self.Add(mScrollBar);
1134   }
1135   else
1136   {
1137     Property::Index propertyScrollPosition    = self.GetPropertyIndex(SCROLL_BAR_POSITION);
1138     Property::Index propertyMaxScrollPosition = self.GetPropertyIndex(SCROLL_BAR_POSITION_MAX);
1139     Property::Index propertyScrollContentSize = self.GetPropertyIndex(SCROLL_BAR_CONTENT_SIZE);
1140
1141     self.SetProperty(propertyScrollPosition, scrollPosition);
1142     self.SetProperty(propertyMaxScrollPosition, (layoutSize - controlSize));
1143     self.SetProperty(propertyScrollContentSize, layoutSize);
1144   }
1145
1146   // If scrolling is not started, start scrolling and emit ScrollStateChangedSignal
1147   if(!mScrollStarted)
1148   {
1149     mScrollStarted = true;
1150     Dali::Toolkit::TextEditor handle(GetOwner());
1151     mScrollStateChangedSignal.Emit(handle, Toolkit::TextEditor::Scroll::STARTED);
1152   }
1153
1154   Actor indicator = mScrollBar.GetScrollIndicator();
1155   if(mAnimation)
1156   {
1157     mAnimation.Stop(); // Cancel any animation
1158   }
1159   else
1160   {
1161     mAnimation = Animation::New(mAnimationPeriod.durationSeconds);
1162   }
1163   indicator.SetProperty(Actor::Property::OPACITY, 1.0f);
1164   mAnimation.AnimateTo(Property(indicator, Actor::Property::COLOR_ALPHA), 0.0f, AlphaFunction::EASE_IN, mAnimationPeriod);
1165   mAnimation.Play();
1166   mAnimation.FinishedSignal().Connect(this, &TextEditor::OnScrollIndicatorAnimationFinished);
1167 }
1168
1169 void TextEditor::OnScrollIndicatorAnimationFinished(Animation& animation)
1170 {
1171   // If animation is successfully ended, then emit ScrollStateChangedSignal
1172   if(animation.GetCurrentProgress() == 0.0f)
1173   {
1174     mScrollStarted = false;
1175     Dali::Toolkit::TextEditor handle(GetOwner());
1176     mScrollStateChangedSignal.Emit(handle, Toolkit::TextEditor::Scroll::FINISHED);
1177   }
1178 }
1179
1180 void TextEditor::OnSceneConnect(Dali::Actor actor)
1181 {
1182   if(mHasBeenStaged)
1183   {
1184     RenderText(static_cast<Text::Controller::UpdateTextType>(Text::Controller::MODEL_UPDATED | Text::Controller::DECORATOR_UPDATED));
1185   }
1186   else
1187   {
1188     mHasBeenStaged = true;
1189   }
1190 }
1191
1192 InputMethodContext::CallbackData TextEditor::OnInputMethodContextEvent(Dali::InputMethodContext& inputMethodContext, const InputMethodContext::EventData& inputMethodContextEvent)
1193 {
1194   DALI_LOG_INFO(gTextEditorLogFilter, Debug::Verbose, "TextEditor::OnInputMethodContextEvent %p eventName %d\n", mController.Get(), inputMethodContextEvent.eventName);
1195   return mController->OnInputMethodContextEvent(inputMethodContext, inputMethodContextEvent);
1196 }
1197
1198 void TextEditor::GetHandleImagePropertyValue(Property::Value& value, Text::HandleType handleType, Text::HandleImageType handleImageType)
1199 {
1200   if(mDecorator)
1201   {
1202     Property::Map map;
1203     map[TextEditor::PropertyHandler::IMAGE_MAP_FILENAME_STRING] = mDecorator->GetHandleImage(handleType, handleImageType);
1204
1205     value = map;
1206   }
1207 }
1208
1209 void TextEditor::OnClipboardTextSelected(ClipboardEventNotifier& clipboard)
1210 {
1211   mController->PasteClipboardItemEvent();
1212 }
1213
1214 void TextEditor::KeyboardStatusChanged(bool keyboardShown)
1215 {
1216   DALI_LOG_INFO(gTextEditorLogFilter, Debug::Verbose, "TextEditor::KeyboardStatusChanged %p keyboardShown %d\n", mController.Get(), keyboardShown);
1217
1218   // Just hide the grab handle when keyboard is hidden.
1219   if(!keyboardShown)
1220   {
1221     mController->KeyboardFocusLostEvent();
1222   }
1223   else
1224   {
1225     mController->KeyboardFocusGainEvent(); // Initially called by OnKeyInputFocusGained
1226   }
1227 }
1228
1229 void TextEditor::OnSceneConnection(int depth)
1230 {
1231   // Sets the depth to the visuals inside the text's decorator.
1232   mDecorator->SetTextDepth(depth);
1233
1234   // The depth of the text renderer is set in the RenderText() called from OnRelayout().
1235
1236   // Call the Control::OnSceneConnection() to set the depth of the background.
1237   Control::OnSceneConnection(depth);
1238 }
1239
1240 bool TextEditor::OnTouched(Actor actor, const TouchEvent& touch)
1241 {
1242   return false;
1243 }
1244
1245 void TextEditor::OnIdleSignal()
1246 {
1247   // Emits the change of input style signals.
1248   mController->ProcessInputStyleChangedSignals();
1249
1250   // Set the pointer to null as the callback manager deletes the callback after execute it.
1251   mIdleCallback = NULL;
1252 }
1253
1254 void TextEditor::ApplyScrollPosition()
1255 {
1256   const Vector2& scrollOffset = mController->GetTextModel()->GetScrollPosition();
1257   float          scrollAmount = 0.0f;
1258
1259   if(mScrollAnimationEnabled)
1260   {
1261     scrollAmount = mController->GetScrollAmountByUserInput();
1262   }
1263   if(mTextVerticalScroller)
1264   {
1265     mTextVerticalScroller->CheckStartAnimation(mRenderableActor, scrollOffset.x + mAlignmentOffset, scrollOffset.y - scrollAmount, scrollAmount);
1266   }
1267   else if(Equals(scrollAmount, 0.0f, Math::MACHINE_EPSILON_1))
1268   {
1269     mRenderableActor.SetProperty(Actor::Property::POSITION, Vector2(scrollOffset.x + mAlignmentOffset, scrollOffset.y - scrollAmount));
1270   }
1271   else
1272   {
1273     mTextVerticalScroller = Text::TextVerticalScroller::New();
1274     if(!Equals(mScrollAnimationDuration, 0.0f, Math::MACHINE_EPSILON_1))
1275     {
1276       mTextVerticalScroller->SetDuration(mScrollAnimationDuration);
1277     }
1278     mTextVerticalScroller->CheckStartAnimation(mRenderableActor, scrollOffset.x + mAlignmentOffset, scrollOffset.y - scrollAmount, scrollAmount);
1279   }
1280 }
1281
1282 bool TextEditor::IsEditable() const
1283 {
1284   return mController->IsEditable();
1285 }
1286
1287 void TextEditor::SetEditable(bool editable)
1288 {
1289   mController->SetEditable(editable);
1290   if(mInputMethodContext && !editable)
1291   {
1292     mInputMethodContext.Deactivate();
1293   }
1294 }
1295
1296 void TextEditor::OnLayoutDirectionChanged(Actor actor, LayoutDirection::Type type)
1297 {
1298   mController->ChangedLayoutDirection();
1299 }
1300
1301 TextEditor::TextEditor()
1302 : Control(ControlBehaviour(CONTROL_BEHAVIOUR_DEFAULT)),
1303   mAnimationPeriod(0.0f, 0.0f),
1304   mIdleCallback(NULL),
1305   mAlignmentOffset(0.f),
1306   mScrollAnimationDuration(0.f),
1307   mLineSpacing(0.f),
1308   mRenderingBackend(DEFAULT_RENDERING_BACKEND),
1309   mHasBeenStaged(false),
1310   mScrollAnimationEnabled(false),
1311   mScrollBarEnabled(false),
1312   mScrollStarted(false),
1313   mTextChanged(false),
1314   mCursorPositionChanged(false),
1315   mSelectionChanged(false),
1316   mSelectionCleared(false),
1317   mOldPosition(0u),
1318   mOldSelectionStart(0u),
1319   mOldSelectionEnd(0u),
1320   mSelectionStarted(false)
1321 {
1322 }
1323
1324 TextEditor::~TextEditor()
1325 {
1326   UnparentAndReset(mStencil);
1327
1328   if((NULL != mIdleCallback) && Adaptor::IsAvailable())
1329   {
1330     // Removes the callback from the callback manager in case the text-editor is destroyed before the callback is executed.
1331     Adaptor::Get().RemoveIdle(mIdleCallback);
1332   }
1333 }
1334
1335 std::string TextEditor::AccessibleImpl::GetName() const
1336 {
1337   auto self = Toolkit::TextEditor::DownCast(Self());
1338   return self.GetProperty(Toolkit::TextEditor::Property::TEXT).Get<std::string>();
1339 }
1340
1341 std::string TextEditor::AccessibleImpl::GetText(size_t startOffset, size_t endOffset) const
1342 {
1343   if(endOffset <= startOffset)
1344   {
1345     return {};
1346   }
1347
1348   auto self = Toolkit::TextEditor::DownCast(Self());
1349   auto text = self.GetProperty(Toolkit::TextEditor::Property::TEXT).Get<std::string>();
1350
1351   if(startOffset > text.size() || endOffset > text.size())
1352   {
1353     return {};
1354   }
1355
1356   return text.substr(startOffset, endOffset - startOffset);
1357 }
1358
1359 size_t TextEditor::AccessibleImpl::GetCharacterCount() const
1360 {
1361   auto self = Toolkit::TextEditor::DownCast(Self());
1362   auto text = self.GetProperty(Toolkit::TextEditor::Property::TEXT).Get<std::string>();
1363
1364   return text.size();
1365 }
1366
1367 size_t TextEditor::AccessibleImpl::GetCursorOffset() const
1368 {
1369   auto slf = Toolkit::TextEditor::DownCast(Self());
1370   return Dali::Toolkit::GetImpl(slf).GetTextController()->GetCursorPosition();
1371 }
1372
1373 bool TextEditor::AccessibleImpl::SetCursorOffset(size_t offset)
1374 {
1375   auto slf = Toolkit::TextEditor::DownCast(Self());
1376   auto txt = slf.GetProperty(Toolkit::TextEditor::Property::TEXT).Get<std::string>();
1377   if(offset > txt.size())
1378   {
1379     return false;
1380   }
1381
1382   auto& slfImpl = Dali::Toolkit::GetImpl(slf);
1383   slfImpl.GetTextController()->ResetCursorPosition(offset);
1384   slfImpl.RequestTextRelayout();
1385
1386   return true;
1387 }
1388
1389 Dali::Accessibility::Range TextEditor::AccessibleImpl::GetTextAtOffset(size_t offset, Dali::Accessibility::TextBoundary boundary) const
1390 {
1391   auto self     = Toolkit::TextEditor::DownCast(Self());
1392   auto text     = self.GetProperty(Toolkit::TextEditor::Property::TEXT).Get<std::string>();
1393   auto textSize = text.size();
1394
1395   auto range = Dali::Accessibility::Range{};
1396
1397   switch(boundary)
1398   {
1399     case Dali::Accessibility::TextBoundary::CHARACTER:
1400     {
1401       if(offset < textSize)
1402       {
1403         range.content     = text[offset];
1404         range.startOffset = offset;
1405         range.endOffset   = offset + 1;
1406       }
1407       break;
1408     }
1409     case Dali::Accessibility::TextBoundary::WORD:
1410     case Dali::Accessibility::TextBoundary::LINE:
1411     {
1412       auto textString = text.c_str();
1413       auto breaks     = std::vector<char>(textSize, 0);
1414
1415       if(boundary == Dali::Accessibility::TextBoundary::WORD)
1416       {
1417         Accessibility::Accessible::FindWordSeparationsUtf8(reinterpret_cast<const utf8_t*>(textString), textSize, "", breaks.data());
1418       }
1419       else
1420       {
1421         Accessibility::Accessible::FindLineSeparationsUtf8(reinterpret_cast<const utf8_t*>(textString), textSize, "", breaks.data());
1422       }
1423
1424       auto index   = 0u;
1425       auto counter = 0u;
1426       while(index < textSize && counter <= offset)
1427       {
1428         auto start = index;
1429         if(breaks[index])
1430         {
1431           while(breaks[index])
1432           {
1433             index++;
1434           }
1435           counter++;
1436         }
1437         else
1438         {
1439           if(boundary == Dali::Accessibility::TextBoundary::WORD)
1440           {
1441             index++;
1442           }
1443           if(boundary == Dali::Accessibility::TextBoundary::LINE)
1444           {
1445             counter++;
1446           }
1447         }
1448
1449         if((counter > 0) && ((counter - 1) == offset))
1450         {
1451           range.content     = text.substr(start, index - start + 1);
1452           range.startOffset = start;
1453           range.endOffset   = index + 1;
1454         }
1455
1456         if(boundary == Dali::Accessibility::TextBoundary::LINE)
1457         {
1458           index++;
1459         }
1460       }
1461       break;
1462     }
1463     case Dali::Accessibility::TextBoundary::SENTENCE:
1464     {
1465       /* not supported by default */
1466       break;
1467     }
1468     case Dali::Accessibility::TextBoundary::PARAGRAPH:
1469     {
1470       /* Paragraph is not supported by libunibreak library */
1471       break;
1472     }
1473     default:
1474       break;
1475   }
1476
1477   return range;
1478 }
1479
1480 Dali::Accessibility::Range TextEditor::AccessibleImpl::GetRangeOfSelection(size_t selectionIndex) const
1481 {
1482   // Since DALi supports only one selection indexes higher than 0 are ignored
1483   if(selectionIndex > 0)
1484   {
1485     return {};
1486   }
1487
1488   auto        self       = Toolkit::TextEditor::DownCast(Self());
1489   auto        controller = Dali::Toolkit::GetImpl(self).GetTextController();
1490   std::string value{};
1491   controller->RetrieveSelection(value);
1492   auto indices = controller->GetSelectionIndexes();
1493
1494   return {static_cast<size_t>(indices.first), static_cast<size_t>(indices.second), value};
1495 }
1496
1497 bool TextEditor::AccessibleImpl::RemoveSelection(size_t selectionIndex)
1498 {
1499   // Since DALi supports only one selection indexes higher than 0 are ignored
1500   if(selectionIndex > 0)
1501   {
1502     return false;
1503   }
1504
1505   auto self = Toolkit::TextEditor::DownCast(Self());
1506   Dali::Toolkit::GetImpl(self).GetTextController()->SetSelection(0, 0);
1507   return true;
1508 }
1509
1510 bool TextEditor::AccessibleImpl::SetRangeOfSelection(size_t selectionIndex, size_t startOffset, size_t endOffset)
1511 {
1512   // Since DALi supports only one selection indexes higher than 0 are ignored
1513   if(selectionIndex > 0)
1514   {
1515     return false;
1516   }
1517
1518   auto self = Toolkit::TextEditor::DownCast(Self());
1519   Dali::Toolkit::GetImpl(self).GetTextController()->SetSelection(startOffset, endOffset);
1520   return true;
1521 }
1522
1523 bool TextEditor::AccessibleImpl::CopyText(size_t startPosition, size_t endPosition)
1524 {
1525   if(endPosition <= startPosition)
1526   {
1527     return false;
1528   }
1529
1530   auto self = Toolkit::TextEditor::DownCast(Self());
1531   auto text = self.GetProperty(Toolkit::TextEditor::Property::TEXT).Get<std::string>();
1532   Dali::Toolkit::GetImpl(self).GetTextController()->CopyStringToClipboard(text.substr(startPosition, endPosition - startPosition));
1533
1534   return true;
1535 }
1536
1537 bool TextEditor::AccessibleImpl::CutText(size_t startPosition, size_t endPosition)
1538 {
1539   if(endPosition <= startPosition)
1540   {
1541     return false;
1542   }
1543
1544   auto self = Toolkit::TextEditor::DownCast(Self());
1545   auto text = self.GetProperty(Toolkit::TextEditor::Property::TEXT).Get<std::string>();
1546   Dali::Toolkit::GetImpl(self).GetTextController()->CopyStringToClipboard(text.substr(startPosition, endPosition - startPosition));
1547
1548   self.SetProperty(Toolkit::TextEditor::Property::TEXT, text.substr(0, startPosition) + text.substr(endPosition));
1549
1550   return true;
1551 }
1552
1553 bool TextEditor::AccessibleImpl::DeleteText(size_t startPosition, size_t endPosition)
1554 {
1555   if(endPosition <= startPosition)
1556   {
1557     return false;
1558   }
1559
1560   auto self = Toolkit::TextEditor::DownCast(Self());
1561   auto text = self.GetProperty(Toolkit::TextEditor::Property::TEXT).Get<std::string>();
1562
1563   self.SetProperty(Toolkit::TextEditor::Property::TEXT, text.substr(0, startPosition) + text.substr(endPosition));
1564
1565   return true;
1566 }
1567
1568 Dali::Accessibility::States TextEditor::AccessibleImpl::CalculateStates()
1569 {
1570   using namespace Dali::Accessibility;
1571
1572   auto states              = DevelControl::ControlAccessible::CalculateStates();
1573   states[State::EDITABLE]  = true;
1574   states[State::FOCUSABLE] = true;
1575
1576   Toolkit::Control focusControl = Toolkit::KeyInputFocusManager::Get().GetCurrentFocusControl();
1577   if(Self() == focusControl)
1578   {
1579     states[State::FOCUSED] = true;
1580   }
1581
1582   return states;
1583 }
1584
1585 bool TextEditor::AccessibleImpl::InsertText(size_t startPosition, std::string text)
1586 {
1587   auto self         = Toolkit::TextEditor::DownCast(Self());
1588   auto insertedText = self.GetProperty(Toolkit::TextEditor::Property::TEXT).Get<std::string>();
1589
1590   insertedText.insert(startPosition, text);
1591
1592   self.SetProperty(Toolkit::TextEditor::Property::TEXT, std::move(insertedText));
1593
1594   return true;
1595 }
1596
1597 bool TextEditor::AccessibleImpl::SetTextContents(std::string newContents)
1598 {
1599   auto self = Toolkit::TextEditor::DownCast(Self());
1600   self.SetProperty(Toolkit::TextEditor::Property::TEXT, std::move(newContents));
1601   return true;
1602 }
1603
1604 int32_t TextEditor::AccessibleImpl::GetLinkCount() const
1605 {
1606   auto self = Toolkit::TextEditor::DownCast(Self());
1607   return Dali::Toolkit::GetImpl(self).mAnchorActors.size();
1608 }
1609
1610 Accessibility::Hyperlink* TextEditor::AccessibleImpl::GetLink(int32_t linkIndex) const
1611 {
1612   if(linkIndex < 0 || linkIndex >= GetLinkCount())
1613   {
1614     return nullptr;
1615   }
1616   auto self        = Toolkit::TextEditor::DownCast(Self());
1617   auto anchorActor = Dali::Toolkit::GetImpl(self).mAnchorActors[linkIndex];
1618   return dynamic_cast<Accessibility::Hyperlink*>(Dali::Accessibility::Accessible::Get(anchorActor));
1619 }
1620
1621 int32_t TextEditor::AccessibleImpl::GetLinkIndex(int32_t characterOffset) const
1622 {
1623   auto self       = Toolkit::TextEditor::DownCast(Self());
1624   auto controller = Dali::Toolkit::GetImpl(self).GetTextController();
1625   return controller->GetAnchorIndex(static_cast<size_t>(characterOffset));
1626 }
1627
1628 } // namespace Internal
1629
1630 } // namespace Toolkit
1631
1632 } // namespace Dali