[dali_2.3.2] Merge branch 'devel/master'
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / internal / controls / text-controls / text-field-impl.cpp
1 /*
2  * Copyright (c) 2023 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-field-impl.h>
20
21 // EXTERNAL INCLUDES
22 #include <dali/devel-api/actors/actor-devel.h>
23 #include <dali/devel-api/adaptor-framework/key-devel.h>
24 #include <dali/devel-api/common/stage.h>
25 #include <dali/devel-api/object/property-helper-devel.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
33 // INTERNAL INCLUDES
34 #include <dali-toolkit/devel-api/controls/control-devel.h>
35 #include <dali-toolkit/devel-api/controls/text-controls/text-field-devel.h>
36 #include <dali-toolkit/devel-api/text/rendering-backend.h>
37 #include <dali-toolkit/internal/controls/text-controls/common-text-utils.h>
38 #include <dali-toolkit/internal/controls/text-controls/text-field-property-handler.h>
39 #include <dali-toolkit/internal/focus-manager/keyboard-focus-manager-impl.h>
40 #include <dali-toolkit/internal/styling/style-manager-impl.h>
41 #include <dali-toolkit/internal/text/rendering/text-backend.h>
42 #include <dali-toolkit/internal/text/text-effects-style.h>
43 #include <dali-toolkit/internal/text/text-enumerations-impl.h>
44 #include <dali-toolkit/internal/text/text-font-style.h>
45 #include <dali-toolkit/internal/text/text-view.h>
46 #include <dali-toolkit/public-api/text/text-enumerations.h>
47 #include <dali-toolkit/public-api/visuals/color-visual-properties.h>
48 #include <dali-toolkit/public-api/visuals/visual-properties.h>
49 #include <dali/integration-api/adaptor-framework/adaptor.h>
50
51 using namespace Dali::Toolkit::Text;
52
53 #if defined(DEBUG_ENABLED)
54 Debug::Filter* gTextFieldLogFilter = 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 char*        KEY_RETURN_NAME           = "Return";
67 } // unnamed namespace
68
69 namespace
70 {
71 // Type registration
72 BaseHandle Create()
73 {
74   return Toolkit::TextField::New();
75 }
76
77 // clang-format off
78 // Setup properties, signals and actions using the type-registry.
79 DALI_TYPE_REGISTRATION_BEGIN( Toolkit::TextField, Toolkit::Control, Create );
80
81 DALI_PROPERTY_REGISTRATION(Toolkit,                 TextField, "text",                             STRING,    TEXT                                )
82 DALI_PROPERTY_REGISTRATION(Toolkit,                 TextField, "placeholderText",                  STRING,    PLACEHOLDER_TEXT                    )
83 DALI_PROPERTY_REGISTRATION(Toolkit,                 TextField, "placeholderTextFocused",           STRING,    PLACEHOLDER_TEXT_FOCUSED            )
84 DALI_PROPERTY_REGISTRATION(Toolkit,                 TextField, "fontFamily",                       STRING,    FONT_FAMILY                         )
85 DALI_PROPERTY_REGISTRATION(Toolkit,                 TextField, "fontStyle",                        MAP,       FONT_STYLE                          )
86 DALI_PROPERTY_REGISTRATION(Toolkit,                 TextField, "pointSize",                        FLOAT,     POINT_SIZE                          )
87 DALI_PROPERTY_REGISTRATION(Toolkit,                 TextField, "maxLength",                        INTEGER,   MAX_LENGTH                          )
88 DALI_PROPERTY_REGISTRATION(Toolkit,                 TextField, "exceedPolicy",                     INTEGER,   EXCEED_POLICY                       )
89 DALI_PROPERTY_REGISTRATION(Toolkit,                 TextField, "horizontalAlignment",              STRING,    HORIZONTAL_ALIGNMENT                )
90 DALI_PROPERTY_REGISTRATION(Toolkit,                 TextField, "verticalAlignment",                STRING,    VERTICAL_ALIGNMENT                  )
91 DALI_PROPERTY_REGISTRATION(Toolkit,                 TextField, "textColor",                        VECTOR4,   TEXT_COLOR                          )
92 DALI_PROPERTY_REGISTRATION(Toolkit,                 TextField, "placeholderTextColor",             VECTOR4,   PLACEHOLDER_TEXT_COLOR              )
93 DALI_PROPERTY_REGISTRATION(Toolkit,                 TextField, "primaryCursorColor",               VECTOR4,   PRIMARY_CURSOR_COLOR                )
94 DALI_PROPERTY_REGISTRATION(Toolkit,                 TextField, "secondaryCursorColor",             VECTOR4,   SECONDARY_CURSOR_COLOR              )
95 DALI_PROPERTY_REGISTRATION(Toolkit,                 TextField, "enableCursorBlink",                BOOLEAN,   ENABLE_CURSOR_BLINK                 )
96 DALI_PROPERTY_REGISTRATION(Toolkit,                 TextField, "cursorBlinkInterval",              FLOAT,     CURSOR_BLINK_INTERVAL               )
97 DALI_PROPERTY_REGISTRATION(Toolkit,                 TextField, "cursorBlinkDuration",              FLOAT,     CURSOR_BLINK_DURATION               )
98 DALI_PROPERTY_REGISTRATION(Toolkit,                 TextField, "cursorWidth",                      INTEGER,   CURSOR_WIDTH                        )
99 DALI_PROPERTY_REGISTRATION(Toolkit,                 TextField, "grabHandleImage",                  STRING,    GRAB_HANDLE_IMAGE                   )
100 DALI_PROPERTY_REGISTRATION(Toolkit,                 TextField, "grabHandlePressedImage",           STRING,    GRAB_HANDLE_PRESSED_IMAGE           )
101 DALI_PROPERTY_REGISTRATION(Toolkit,                 TextField, "scrollThreshold",                  FLOAT,     SCROLL_THRESHOLD                    )
102 DALI_PROPERTY_REGISTRATION(Toolkit,                 TextField, "scrollSpeed",                      FLOAT,     SCROLL_SPEED                        )
103 DALI_PROPERTY_REGISTRATION(Toolkit,                 TextField, "selectionHandleImageLeft",         MAP,       SELECTION_HANDLE_IMAGE_LEFT         )
104 DALI_PROPERTY_REGISTRATION(Toolkit,                 TextField, "selectionHandleImageRight",        MAP,       SELECTION_HANDLE_IMAGE_RIGHT        )
105 DALI_PROPERTY_REGISTRATION(Toolkit,                 TextField, "selectionHandlePressedImageLeft",  MAP,       SELECTION_HANDLE_PRESSED_IMAGE_LEFT )
106 DALI_PROPERTY_REGISTRATION(Toolkit,                 TextField, "selectionHandlePressedImageRight", MAP,       SELECTION_HANDLE_PRESSED_IMAGE_RIGHT)
107 DALI_PROPERTY_REGISTRATION(Toolkit,                 TextField, "selectionHandleMarkerImageLeft",   MAP,       SELECTION_HANDLE_MARKER_IMAGE_LEFT  )
108 DALI_PROPERTY_REGISTRATION(Toolkit,                 TextField, "selectionHandleMarkerImageRight",  MAP,       SELECTION_HANDLE_MARKER_IMAGE_RIGHT )
109 DALI_PROPERTY_REGISTRATION(Toolkit,                 TextField, "selectionHighlightColor",          VECTOR4,   SELECTION_HIGHLIGHT_COLOR           )
110 DALI_PROPERTY_REGISTRATION(Toolkit,                 TextField, "decorationBoundingBox",            RECTANGLE, DECORATION_BOUNDING_BOX             )
111 DALI_PROPERTY_REGISTRATION(Toolkit,                 TextField, "inputMethodSettings",              MAP,       INPUT_METHOD_SETTINGS               )
112 DALI_PROPERTY_REGISTRATION(Toolkit,                 TextField, "inputColor",                       VECTOR4,   INPUT_COLOR                         )
113 DALI_PROPERTY_REGISTRATION(Toolkit,                 TextField, "enableMarkup",                     BOOLEAN,   ENABLE_MARKUP                       )
114 DALI_PROPERTY_REGISTRATION(Toolkit,                 TextField, "inputFontFamily",                  STRING,    INPUT_FONT_FAMILY                   )
115 DALI_PROPERTY_REGISTRATION(Toolkit,                 TextField, "inputFontStyle",                   MAP,       INPUT_FONT_STYLE                    )
116 DALI_PROPERTY_REGISTRATION(Toolkit,                 TextField, "inputPointSize",                   FLOAT,     INPUT_POINT_SIZE                    )
117 DALI_PROPERTY_REGISTRATION(Toolkit,                 TextField, "underline",                        MAP,       UNDERLINE                           )
118 DALI_PROPERTY_REGISTRATION(Toolkit,                 TextField, "inputUnderline",                   MAP,       INPUT_UNDERLINE                     )
119 DALI_PROPERTY_REGISTRATION(Toolkit,                 TextField, "shadow",                           MAP,       SHADOW                              )
120 DALI_PROPERTY_REGISTRATION(Toolkit,                 TextField, "inputShadow",                      MAP,       INPUT_SHADOW                        )
121 DALI_PROPERTY_REGISTRATION(Toolkit,                 TextField, "emboss",                           MAP,       EMBOSS                              )
122 DALI_PROPERTY_REGISTRATION(Toolkit,                 TextField, "inputEmboss",                      MAP,       INPUT_EMBOSS                        )
123 DALI_PROPERTY_REGISTRATION(Toolkit,                 TextField, "outline",                          MAP,       OUTLINE                             )
124 DALI_PROPERTY_REGISTRATION(Toolkit,                 TextField, "inputOutline",                     MAP,       INPUT_OUTLINE                       )
125 DALI_PROPERTY_REGISTRATION(Toolkit,                 TextField, "hiddenInputSettings",              MAP,       HIDDEN_INPUT_SETTINGS               )
126 DALI_PROPERTY_REGISTRATION(Toolkit,                 TextField, "pixelSize",                        FLOAT,     PIXEL_SIZE                          )
127 DALI_PROPERTY_REGISTRATION(Toolkit,                 TextField, "enableSelection",                  BOOLEAN,   ENABLE_SELECTION                    )
128 DALI_PROPERTY_REGISTRATION(Toolkit,                 TextField, "placeholder",                      MAP,       PLACEHOLDER                         )
129 DALI_PROPERTY_REGISTRATION(Toolkit,                 TextField, "ellipsis",                         BOOLEAN,   ELLIPSIS                            )
130 DALI_DEVEL_PROPERTY_REGISTRATION(Toolkit,           TextField, "enableShiftSelection",             BOOLEAN,   ENABLE_SHIFT_SELECTION              )
131 DALI_DEVEL_PROPERTY_REGISTRATION(Toolkit,           TextField, "enableGrabHandle",                 BOOLEAN,   ENABLE_GRAB_HANDLE                  )
132 DALI_DEVEL_PROPERTY_REGISTRATION(Toolkit,           TextField, "matchSystemLanguageDirection",     BOOLEAN,   MATCH_SYSTEM_LANGUAGE_DIRECTION     )
133 DALI_DEVEL_PROPERTY_REGISTRATION(Toolkit,           TextField, "enableGrabHandlePopup",            BOOLEAN,   ENABLE_GRAB_HANDLE_POPUP            )
134 DALI_DEVEL_PROPERTY_REGISTRATION(Toolkit,           TextField, "textBackground",                   VECTOR4,   BACKGROUND                          )
135 DALI_DEVEL_PROPERTY_REGISTRATION_READ_ONLY(Toolkit, TextField, "selectedText",                     STRING,    SELECTED_TEXT                       )
136 DALI_DEVEL_PROPERTY_REGISTRATION(Toolkit,           TextField, "renderingBackend",                 INTEGER,   RENDERING_BACKEND                   )
137 DALI_DEVEL_PROPERTY_REGISTRATION(Toolkit,           TextField, "selectedTextStart",                INTEGER,   SELECTED_TEXT_START                 )
138 DALI_DEVEL_PROPERTY_REGISTRATION(Toolkit,           TextField, "selectedTextEnd",                  INTEGER,   SELECTED_TEXT_END                   )
139 DALI_DEVEL_PROPERTY_REGISTRATION(Toolkit,           TextField, "enableEditing",                    BOOLEAN,   ENABLE_EDITING                      )
140 DALI_DEVEL_PROPERTY_REGISTRATION(Toolkit,           TextField, "fontSizeScale",                    FLOAT,     FONT_SIZE_SCALE                     )
141 DALI_DEVEL_PROPERTY_REGISTRATION(Toolkit,           TextField, "enableFontSizeScale",              BOOLEAN,   ENABLE_FONT_SIZE_SCALE              )
142 DALI_DEVEL_PROPERTY_REGISTRATION(Toolkit,           TextField, "primaryCursorPosition",            INTEGER,   PRIMARY_CURSOR_POSITION             )
143 DALI_DEVEL_PROPERTY_REGISTRATION(Toolkit,           TextField, "grabHandleColor",                  VECTOR4,   GRAB_HANDLE_COLOR                   )
144 DALI_DEVEL_PROPERTY_REGISTRATION(Toolkit,           TextField, "inputFilter",                      MAP,       INPUT_FILTER                        )
145 DALI_DEVEL_PROPERTY_REGISTRATION(Toolkit,           TextField, "ellipsisPosition",                 INTEGER,   ELLIPSIS_POSITION                   )
146 DALI_DEVEL_PROPERTY_REGISTRATION(Toolkit,           TextField, "strikethrough",                    MAP,       STRIKETHROUGH                       )
147 DALI_DEVEL_PROPERTY_REGISTRATION(Toolkit,           TextField, "inputStrikethrough",               MAP,       INPUT_STRIKETHROUGH                 )
148 DALI_DEVEL_PROPERTY_REGISTRATION(Toolkit,           TextField, "characterSpacing",                 FLOAT,     CHARACTER_SPACING                   )
149 DALI_DEVEL_PROPERTY_REGISTRATION(Toolkit,           TextField, "selectionPopupStyle",              MAP,       SELECTION_POPUP_STYLE               )
150
151 DALI_SIGNAL_REGISTRATION(Toolkit, TextField, "textChanged",           SIGNAL_TEXT_CHANGED           )
152 DALI_SIGNAL_REGISTRATION(Toolkit, TextField, "maxLengthReached",      SIGNAL_MAX_LENGTH_REACHED     )
153 DALI_SIGNAL_REGISTRATION(Toolkit, TextField, "inputStyleChanged",     SIGNAL_INPUT_STYLE_CHANGED    )
154 DALI_SIGNAL_REGISTRATION(Toolkit, TextField, "anchorClicked",         SIGNAL_ANCHOR_CLICKED         )
155 DALI_SIGNAL_REGISTRATION(Toolkit, TextField, "inputFiltered",         SIGNAL_INPUT_FILTERED         )
156 DALI_SIGNAL_REGISTRATION(Toolkit, TextField, "cursorPositionChanged", SIGNAL_CURSOR_POSITION_CHANGED)
157 DALI_SIGNAL_REGISTRATION(Toolkit, TextField, "selectionChanged",      SIGNAL_SELECTION_CHANGED      )
158 DALI_SIGNAL_REGISTRATION(Toolkit, TextField, "selectionCleared",      SIGNAL_SELECTION_CLEARED      )
159 DALI_SIGNAL_REGISTRATION(Toolkit, TextField, "selectionStarted",      SIGNAL_SELECTION_STARTED      )
160
161 DALI_TYPE_REGISTRATION_END()
162 // clang-format on
163
164 Toolkit::TextField::InputStyle::Mask ConvertInputStyle(Text::InputStyle::Mask inputStyleMask)
165 {
166   Toolkit::TextField::InputStyle::Mask fieldInputStyleMask = Toolkit::TextField::InputStyle::NONE;
167
168   if(InputStyle::NONE != static_cast<InputStyle::Mask>(inputStyleMask & InputStyle::INPUT_COLOR))
169   {
170     fieldInputStyleMask = static_cast<Toolkit::TextField::InputStyle::Mask>(fieldInputStyleMask | Toolkit::TextField::InputStyle::COLOR);
171   }
172   if(InputStyle::NONE != static_cast<InputStyle::Mask>(inputStyleMask & InputStyle::INPUT_FONT_FAMILY))
173   {
174     fieldInputStyleMask = static_cast<Toolkit::TextField::InputStyle::Mask>(fieldInputStyleMask | Toolkit::TextField::InputStyle::FONT_FAMILY);
175   }
176   if(InputStyle::NONE != static_cast<InputStyle::Mask>(inputStyleMask & InputStyle::INPUT_POINT_SIZE))
177   {
178     fieldInputStyleMask = static_cast<Toolkit::TextField::InputStyle::Mask>(fieldInputStyleMask | Toolkit::TextField::InputStyle::POINT_SIZE);
179   }
180   if(InputStyle::NONE != static_cast<InputStyle::Mask>(inputStyleMask & InputStyle::INPUT_FONT_WEIGHT))
181   {
182     fieldInputStyleMask = static_cast<Toolkit::TextField::InputStyle::Mask>(fieldInputStyleMask | Toolkit::TextField::InputStyle::FONT_STYLE);
183   }
184   if(InputStyle::NONE != static_cast<InputStyle::Mask>(inputStyleMask & InputStyle::INPUT_FONT_WIDTH))
185   {
186     fieldInputStyleMask = static_cast<Toolkit::TextField::InputStyle::Mask>(fieldInputStyleMask | Toolkit::TextField::InputStyle::FONT_STYLE);
187   }
188   if(InputStyle::NONE != static_cast<InputStyle::Mask>(inputStyleMask & InputStyle::INPUT_FONT_SLANT))
189   {
190     fieldInputStyleMask = static_cast<Toolkit::TextField::InputStyle::Mask>(fieldInputStyleMask | Toolkit::TextField::InputStyle::FONT_STYLE);
191   }
192   if(InputStyle::NONE != static_cast<InputStyle::Mask>(inputStyleMask & InputStyle::INPUT_UNDERLINE))
193   {
194     fieldInputStyleMask = static_cast<Toolkit::TextField::InputStyle::Mask>(fieldInputStyleMask | Toolkit::TextField::InputStyle::UNDERLINE);
195   }
196   if(InputStyle::NONE != static_cast<InputStyle::Mask>(inputStyleMask & InputStyle::INPUT_SHADOW))
197   {
198     fieldInputStyleMask = static_cast<Toolkit::TextField::InputStyle::Mask>(fieldInputStyleMask | Toolkit::TextField::InputStyle::SHADOW);
199   }
200   if(InputStyle::NONE != static_cast<InputStyle::Mask>(inputStyleMask & InputStyle::INPUT_EMBOSS))
201   {
202     fieldInputStyleMask = static_cast<Toolkit::TextField::InputStyle::Mask>(fieldInputStyleMask | Toolkit::TextField::InputStyle::EMBOSS);
203   }
204   if(InputStyle::NONE != static_cast<InputStyle::Mask>(inputStyleMask & InputStyle::INPUT_OUTLINE))
205   {
206     fieldInputStyleMask = static_cast<Toolkit::TextField::InputStyle::Mask>(fieldInputStyleMask | Toolkit::TextField::InputStyle::OUTLINE);
207   }
208   return fieldInputStyleMask;
209 }
210
211 } // namespace
212
213 Toolkit::TextField TextField::New(ControlBehaviour additionalBehaviour)
214 {
215   // Create the implementation, temporarily owned by this handle on stack
216   IntrusivePtr<TextField> impl = new TextField(additionalBehaviour);
217
218   // Pass ownership to CustomActor handle
219   Toolkit::TextField 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 TextField::SetProperty(BaseObject* object, Property::Index index, const Property::Value& value)
229 {
230   Toolkit::TextField textField = Toolkit::TextField::DownCast(Dali::BaseHandle(object));
231
232   DALI_LOG_INFO(gTextFieldLogFilter, Debug::Verbose, "TextField SetProperty\n");
233
234   if(textField)
235   {
236     PropertyHandler::SetProperty(textField, index, value);
237   }
238 }
239
240 Property::Value TextField::GetProperty(BaseObject* object, Property::Index index)
241 {
242   Property::Value value;
243
244   Toolkit::TextField textField = Toolkit::TextField::DownCast(Dali::BaseHandle(object));
245
246   if(textField)
247   {
248     value = PropertyHandler::GetProperty(textField, index);
249   }
250
251   return value;
252 }
253
254 void TextField::SelectWholeText()
255 {
256   if(mController && mController->IsShowingRealText())
257   {
258     mController->SelectWholeText();
259     SetKeyInputFocus();
260   }
261 }
262
263 void TextField::SelectNone()
264 {
265   if(mController && mController->IsShowingRealText())
266   {
267     mController->SelectNone();
268   }
269 }
270
271 void TextField::SelectText(const uint32_t start, const uint32_t end)
272 {
273   if(mController && mController->IsShowingRealText())
274   {
275     mController->SelectText(start, end);
276     SetKeyInputFocus();
277   }
278 }
279
280 string TextField::GetSelectedText() const
281 {
282   string selectedText = "";
283   if(mController && mController->IsShowingRealText())
284   {
285     selectedText = mController->GetSelectedText();
286   }
287   return selectedText;
288 }
289
290 void TextField::SetTextSelectionRange(const uint32_t* start, const uint32_t* end)
291 {
292   if(mController && mController->IsShowingRealText())
293   {
294     mController->SetTextSelectionRange(start, end);
295     SetKeyInputFocus();
296   }
297 }
298
299 Uint32Pair TextField::GetTextSelectionRange() const
300 {
301   Uint32Pair range;
302   if(mController && mController->IsShowingRealText())
303   {
304     range = mController->GetTextSelectionRange();
305   }
306   return range;
307 }
308
309 string TextField::CopyText()
310 {
311   string copiedText = "";
312   if(mController && mController->IsShowingRealText())
313   {
314     copiedText = mController->CopyText();
315   }
316   return copiedText;
317 }
318
319 string TextField::CutText()
320 {
321   string cutText = "";
322   if(mController && mController->IsShowingRealText())
323   {
324     cutText = mController->CutText();
325   }
326   return cutText;
327 }
328
329 void TextField::PasteText()
330 {
331   if(mController)
332   {
333     SetKeyInputFocus(); //Giving focus to the field that was passed to the PasteText in case the passed field (current field) doesn't have focus.
334     mController->PasteText();
335   }
336 }
337
338 InputMethodContext TextField::GetInputMethodContext()
339 {
340   return mInputMethodContext;
341 }
342
343 bool TextField::DoConnectSignal(BaseObject* object, ConnectionTrackerInterface* tracker, const std::string& signalName, FunctorDelegate* functor)
344 {
345   Dali::BaseHandle handle(object);
346
347   bool               connected(true);
348   Toolkit::TextField field = Toolkit::TextField::DownCast(handle);
349
350   if(0 == strcmp(signalName.c_str(), SIGNAL_TEXT_CHANGED))
351   {
352     field.TextChangedSignal().Connect(tracker, functor);
353   }
354   else if(0 == strcmp(signalName.c_str(), SIGNAL_MAX_LENGTH_REACHED))
355   {
356     field.MaxLengthReachedSignal().Connect(tracker, functor);
357   }
358   else if(0 == strcmp(signalName.c_str(), SIGNAL_INPUT_STYLE_CHANGED))
359   {
360     field.InputStyleChangedSignal().Connect(tracker, functor);
361   }
362   else if(0 == strcmp(signalName.c_str(), SIGNAL_ANCHOR_CLICKED))
363   {
364     if(field)
365     {
366       Internal::TextField& fieldImpl(GetImpl(field));
367       fieldImpl.AnchorClickedSignal().Connect(tracker, functor);
368     }
369   }
370   else if(0 == strcmp(signalName.c_str(), SIGNAL_CURSOR_POSITION_CHANGED))
371   {
372     if(field)
373     {
374       Internal::TextField& fieldImpl(GetImpl(field));
375       fieldImpl.CursorPositionChangedSignal().Connect(tracker, functor);
376     }
377   }
378   else if(0 == strcmp(signalName.c_str(), SIGNAL_INPUT_FILTERED))
379   {
380     if(field)
381     {
382       Internal::TextField& fieldImpl(GetImpl(field));
383       fieldImpl.InputFilteredSignal().Connect(tracker, functor);
384     }
385   }
386   else if(0 == strcmp(signalName.c_str(), SIGNAL_SELECTION_CHANGED))
387   {
388     if(field)
389     {
390       Internal::TextField& fieldImpl(GetImpl(field));
391       fieldImpl.SelectionChangedSignal().Connect(tracker, functor);
392     }
393   }
394   else if(0 == strcmp(signalName.c_str(), SIGNAL_SELECTION_CLEARED))
395   {
396     if(field)
397     {
398       Internal::TextField& fieldImpl(GetImpl(field));
399       fieldImpl.SelectionClearedSignal().Connect(tracker, functor);
400     }
401   }
402   else if(0 == strcmp(signalName.c_str(), SIGNAL_SELECTION_STARTED))
403   {
404     if(field)
405     {
406       Internal::TextField& fieldImpl(GetImpl(field));
407       fieldImpl.SelectionStartedSignal().Connect(tracker, functor);
408     }
409   }
410   else
411   {
412     // signalName does not match any signal
413     connected = false;
414   }
415
416   return connected;
417 }
418
419 Toolkit::TextField::TextChangedSignalType& TextField::TextChangedSignal()
420 {
421   return mTextChangedSignal;
422 }
423
424 Toolkit::TextField::MaxLengthReachedSignalType& TextField::MaxLengthReachedSignal()
425 {
426   return mMaxLengthReachedSignal;
427 }
428
429 Toolkit::TextField::InputStyleChangedSignalType& TextField::InputStyleChangedSignal()
430 {
431   return mInputStyleChangedSignal;
432 }
433
434 DevelTextField::AnchorClickedSignalType& TextField::AnchorClickedSignal()
435 {
436   return mAnchorClickedSignal;
437 }
438
439 DevelTextField::CursorPositionChangedSignalType& TextField::CursorPositionChangedSignal()
440 {
441   return mCursorPositionChangedSignal;
442 }
443
444 DevelTextField::InputFilteredSignalType& TextField::InputFilteredSignal()
445 {
446   return mInputFilteredSignal;
447 }
448
449 DevelTextField::SelectionChangedSignalType& TextField::SelectionChangedSignal()
450 {
451   return mSelectionChangedSignal;
452 }
453
454 DevelTextField::SelectionClearedSignalType& TextField::SelectionClearedSignal()
455 {
456   return mSelectionClearedSignal;
457 }
458
459 DevelTextField::SelectionStartedSignalType& TextField::SelectionStartedSignal()
460 {
461   return mSelectionStartedSignal;
462 }
463
464 void TextField::OnAccessibilityStatusChanged()
465 {
466   CommonTextUtils::SynchronizeTextAnchorsInParent(Self(), mController, mAnchorActors);
467 }
468
469 void TextField::OnInitialize()
470 {
471   Actor self = Self();
472
473   mController = Text::Controller::New(this, this, this, this);
474
475   // When using the vector-based rendering, the size of the GLyphs are different
476   TextAbstraction::GlyphType glyphType = (DevelText::RENDERING_VECTOR_BASED == mRenderingBackend) ? TextAbstraction::VECTOR_GLYPH : TextAbstraction::BITMAP_GLYPH;
477   mController->SetGlyphType(glyphType);
478
479   mDecorator = Text::Decorator::New(*mController,
480                                     *mController);
481
482   mInputMethodContext = InputMethodContext::New(self);
483
484   mController->GetLayoutEngine().SetLayout(Layout::Engine::SINGLE_LINE_BOX);
485
486   // Enables the text input.
487   mController->EnableTextInput(mDecorator, mInputMethodContext);
488
489   // Enables the horizontal scrolling after the text input has been enabled.
490   mController->SetHorizontalScrollEnabled(true);
491
492   // Disables the vertical scrolling.
493   mController->SetVerticalScrollEnabled(false);
494
495   // Disable the smooth handle panning.
496   mController->SetSmoothHandlePanEnabled(false);
497
498   mController->SetNoTextDoubleTapAction(Controller::NoTextTap::HIGHLIGHT);
499   mController->SetNoTextLongPressAction(Controller::NoTextTap::HIGHLIGHT);
500
501   // Sets layoutDirection value
502   Dali::Stage                 stage           = Dali::Stage::GetCurrent();
503   Dali::LayoutDirection::Type layoutDirection = static_cast<Dali::LayoutDirection::Type>(stage.GetRootLayer().GetProperty(Dali::Actor::Property::LAYOUT_DIRECTION).Get<int>());
504   mController->SetLayoutDirection(layoutDirection);
505
506   self.LayoutDirectionChangedSignal().Connect(this, &TextField::OnLayoutDirectionChanged);
507
508   // Forward input events to controller
509   EnableGestureDetection(static_cast<GestureType::Value>(GestureType::TAP | GestureType::PAN | GestureType::LONG_PRESS));
510   GetTapGestureDetector().SetMaximumTapsRequired(2);
511   GetTapGestureDetector().ReceiveAllTapEvents(true);
512
513   self.TouchedSignal().Connect(this, &TextField::OnTouched);
514
515   // Set BoundingBox to stage size if not already set.
516   Rect<int> boundingBox;
517   mDecorator->GetBoundingBox(boundingBox);
518
519   if(boundingBox.IsEmpty())
520   {
521     Vector2 stageSize = Dali::Stage::GetCurrent().GetSize();
522     mDecorator->SetBoundingBox(Rect<int>(0.0f, 0.0f, stageSize.width, stageSize.height));
523   }
524
525   // Flip vertically the 'left' selection handle
526   mDecorator->FlipHandleVertically(LEFT_SELECTION_HANDLE, true);
527
528   // Fill-parent area by default
529   self.SetResizePolicy(ResizePolicy::FILL_TO_PARENT, Dimension::WIDTH);
530   self.SetResizePolicy(ResizePolicy::FILL_TO_PARENT, Dimension::HEIGHT);
531   self.OnSceneSignal().Connect(this, &TextField::OnSceneConnect);
532
533   DevelControl::SetInputMethodContext(*this, mInputMethodContext);
534
535   if(Dali::Toolkit::TextField::EXCEED_POLICY_CLIP == mExceedPolicy)
536   {
537     EnableClipping();
538   }
539
540   // Accessibility
541   self.SetProperty(DevelControl::Property::ACCESSIBILITY_ROLE, Dali::Accessibility::Role::ENTRY);
542   self.SetProperty(DevelControl::Property::ACCESSIBILITY_HIGHLIGHTABLE, true);
543
544   Accessibility::Bridge::EnabledSignal().Connect(this, &TextField::OnAccessibilityStatusChanged);
545   Accessibility::Bridge::DisabledSignal().Connect(this, &TextField::OnAccessibilityStatusChanged);
546 }
547
548 DevelControl::ControlAccessible* TextField::CreateAccessibleObject()
549 {
550   return new TextFieldAccessible(Self());
551 }
552
553 void TextField::OnStyleChange(Toolkit::StyleManager styleManager, StyleChange::Type change)
554 {
555   DALI_LOG_INFO(gTextFieldLogFilter, Debug::Verbose, "TextField::OnStyleChange\n");
556
557   switch(change)
558   {
559     case StyleChange::DEFAULT_FONT_CHANGE:
560     {
561       DALI_LOG_INFO(gTextFieldLogFilter, Debug::Verbose, "TextField::OnStyleChange DEFAULT_FONT_CHANGE\n");
562       const std::string& newFont = GetImpl(styleManager).GetDefaultFontFamily();
563       // Property system did not set the font so should update it.
564       mController->UpdateAfterFontChange(newFont);
565       RelayoutRequest();
566       break;
567     }
568
569     case StyleChange::DEFAULT_FONT_SIZE_CHANGE:
570     {
571       GetImpl(styleManager).ApplyThemeStyle(Toolkit::Control(GetOwner()));
572       RelayoutRequest();
573       break;
574     }
575     case StyleChange::THEME_CHANGE:
576     {
577       // Nothing to do, let control base class handle this
578       break;
579     }
580   }
581
582   // Up call to Control
583   Control::OnStyleChange(styleManager, change);
584 }
585
586 Vector3 TextField::GetNaturalSize()
587 {
588   Extents padding;
589   padding = Self().GetProperty<Extents>(Toolkit::Control::Property::PADDING);
590
591   Vector3 naturalSize = mController->GetNaturalSize();
592   naturalSize.width += (padding.start + padding.end);
593   naturalSize.height += (padding.top + padding.bottom);
594
595   return naturalSize;
596 }
597
598 float TextField::GetHeightForWidth(float width)
599 {
600   Extents padding;
601   padding = Self().GetProperty<Extents>(Toolkit::Control::Property::PADDING);
602   return mController->GetHeightForWidth(width) + padding.top + padding.bottom;
603 }
604
605 void TextField::ResizeActor(Actor& actor, const Vector2& size)
606 {
607   if(actor.GetProperty<Vector3>(Dali::Actor::Property::SIZE).GetVectorXY() != size)
608   {
609     actor.SetProperty(Actor::Property::SIZE, size);
610   }
611 }
612
613 void TextField::OnPropertySet(Property::Index index, const Property::Value& propertyValue)
614 {
615   DALI_LOG_INFO(gTextFieldLogFilter, Debug::Verbose, "TextField::OnPropertySet index[%d]\n", index);
616
617   switch(index)
618   {
619     case DevelActor::Property::USER_INTERACTION_ENABLED:
620     {
621       const bool enabled = propertyValue.Get<bool>();
622       mController->SetUserInteractionEnabled(enabled);
623       if(mStencil)
624       {
625         float opacity = enabled ? 1.0f : mController->GetDisabledColorOpacity();
626         mStencil.SetProperty(Actor::Property::OPACITY, opacity);
627       }
628       break;
629     }
630     default:
631     {
632       Control::OnPropertySet(index, propertyValue); // up call to control for non-handled properties
633       break;
634     }
635   }
636 }
637
638 void TextField::OnRelayout(const Vector2& size, RelayoutContainer& container)
639 {
640   DALI_LOG_INFO(gTextFieldLogFilter, Debug::Verbose, "TextField OnRelayout\n");
641
642   Actor self = Self();
643
644   Extents padding;
645   padding = self.GetProperty<Extents>(Toolkit::Control::Property::PADDING);
646
647   Vector2 contentSize(size.x - (padding.start + padding.end), size.y - (padding.top + padding.bottom));
648
649   // Support Right-To-Left of padding
650   Dali::LayoutDirection::Type layoutDirection = mController->GetLayoutDirection(self);
651
652   if(Dali::LayoutDirection::RIGHT_TO_LEFT == layoutDirection)
653   {
654     std::swap(padding.start, padding.end);
655   }
656
657   if(mStencil)
658   {
659     mStencil.SetProperty(Actor::Property::POSITION, Vector2(padding.start, padding.top));
660     ResizeActor(mStencil, contentSize);
661   }
662   if(mActiveLayer)
663   {
664     mActiveLayer.SetProperty(Actor::Property::POSITION, Vector2(padding.start, padding.top));
665     ResizeActor(mActiveLayer, contentSize);
666   }
667   if(mCursorLayer)
668   {
669     mCursorLayer.SetProperty(Actor::Property::POSITION, Vector2(padding.start, padding.top));
670     ResizeActor(mCursorLayer, contentSize);
671   }
672
673   // If there is text changed, callback is called.
674   if(mTextChanged)
675   {
676     EmitTextChangedSignal();
677   }
678
679   const Text::Controller::UpdateTextType updateTextType = mController->Relayout(contentSize, layoutDirection);
680
681   if((Text::Controller::NONE_UPDATED != updateTextType) ||
682      !mRenderer)
683   {
684     DALI_LOG_INFO(gTextFieldLogFilter, Debug::Verbose, "TextField::OnRelayout %p Displaying new contents\n", mController.Get());
685
686     if(mDecorator &&
687        (Text::Controller::NONE_UPDATED != (Text::Controller::DECORATOR_UPDATED & updateTextType)))
688     {
689       mDecorator->Relayout(contentSize);
690     }
691
692     if(!mRenderer)
693     {
694       mRenderer = Backend::Get().NewRenderer(mRenderingBackend);
695     }
696
697     RenderText(updateTextType);
698   }
699
700   if(mCursorPositionChanged)
701   {
702     EmitCursorPositionChangedSignal();
703   }
704
705   if(mSelectionStarted)
706   {
707     EmitSelectionStartedSignal();
708   }
709
710   if(mSelectionChanged)
711   {
712     EmitSelectionChangedSignal();
713   }
714
715   if(mSelectionCleared)
716   {
717     EmitSelectionClearedSignal();
718   }
719
720   // The text-field emits signals when the input style changes. These changes of style are
721   // detected during the relayout process (size negotiation), i.e after the cursor has been moved. Signals
722   // can't be emitted during the size negotiation as the callbacks may update the UI.
723   // The text-field adds an idle callback to the adaptor to emit the signals after the size negotiation.
724   if(!mController->IsInputStyleChangedSignalsQueueEmpty())
725   {
726     if(Adaptor::IsAvailable())
727     {
728       Adaptor& adaptor = Adaptor::Get();
729
730       if(NULL == mIdleCallback)
731       {
732         // @note: The callback manager takes the ownership of the callback object.
733         mIdleCallback = MakeCallback(this, &TextField::OnIdleSignal);
734         adaptor.AddIdle(mIdleCallback, false);
735       }
736     }
737   }
738 }
739
740 Text::ControllerPtr TextField::GetTextController()
741 {
742   return mController;
743 }
744
745 void TextField::RenderText(Text::Controller::UpdateTextType updateTextType)
746 {
747   CommonTextUtils::RenderText(Self(), mRenderer, mController, mDecorator, mAlignmentOffset, mRenderableActor, mBackgroundActor, mCursorLayer, mStencil, mClippingDecorationActors, mAnchorActors, updateTextType);
748 }
749
750 void TextField::OnKeyInputFocusGained()
751 {
752   DALI_LOG_INFO(gTextFieldLogFilter, Debug::Verbose, "TextField::OnKeyInputFocusGained %p\n", mController.Get());
753   if(mInputMethodContext && IsEditable())
754   {
755     // All input panel properties, such as layout, return key type, and input hint, should be set before input panel activates (or shows).
756     mInputMethodContext.ApplyOptions(mInputMethodOptions);
757     mInputMethodContext.NotifyTextInputMultiLine(false);
758
759     mInputMethodContext.StatusChangedSignal().Connect(this, &TextField::KeyboardStatusChanged);
760
761     mInputMethodContext.EventReceivedSignal().Connect(this, &TextField::OnInputMethodContextEvent);
762
763     // Notify that the text editing start.
764     mInputMethodContext.Activate();
765
766     // When window gain lost focus, the inputMethodContext is deactivated. Thus when window gain focus again, the inputMethodContext must be activated.
767     mInputMethodContext.SetRestoreAfterFocusLost(true);
768   }
769
770   if(IsEditable() && mController->IsUserInteractionEnabled())
771   {
772     mController->KeyboardFocusGainEvent(); // Called in the case of no virtual keyboard to trigger this event
773   }
774
775   EmitKeyInputFocusSignal(true); // Calls back into the Control hence done last.
776 }
777
778 void TextField::OnKeyInputFocusLost()
779 {
780   DALI_LOG_INFO(gTextFieldLogFilter, Debug::Verbose, "TextField:OnKeyInputFocusLost %p\n", mController.Get());
781   if(mInputMethodContext)
782   {
783     mInputMethodContext.StatusChangedSignal().Disconnect(this, &TextField::KeyboardStatusChanged);
784     // The text editing is finished. Therefore the inputMethodContext don't have restore activation.
785     mInputMethodContext.SetRestoreAfterFocusLost(false);
786
787     // Notify that the text editing finish.
788     mInputMethodContext.Deactivate();
789
790     mInputMethodContext.EventReceivedSignal().Disconnect(this, &TextField::OnInputMethodContextEvent);
791   }
792
793   mController->KeyboardFocusLostEvent();
794
795   EmitKeyInputFocusSignal(false); // Calls back into the Control hence done last.
796 }
797
798 bool TextField::OnAccessibilityActivated()
799 {
800   SetKeyInputFocus();
801   return true;
802 }
803
804 void TextField::OnTap(const TapGesture& gesture)
805 {
806   DALI_LOG_INFO(gTextFieldLogFilter, Debug::Verbose, "TextField::OnTap %p\n", mController.Get());
807
808   // Deliver the tap before the focus event to controller; this allows us to detect when focus is gained due to tap-gestures
809   Extents padding;
810   padding                   = Self().GetProperty<Extents>(Toolkit::Control::Property::PADDING);
811   const Vector2& localPoint = gesture.GetLocalPoint();
812   mController->TapEvent(gesture.GetNumberOfTaps(), localPoint.x - padding.start, localPoint.y - padding.top);
813   mController->AnchorEvent(localPoint.x - padding.start, localPoint.y - padding.top);
814
815   Dali::Toolkit::KeyboardFocusManager keyboardFocusManager = Dali::Toolkit::KeyboardFocusManager::Get();
816   if(keyboardFocusManager)
817   {
818     keyboardFocusManager.SetCurrentFocusActor(Self());
819   }
820   SetKeyInputFocus();
821 }
822
823 void TextField::OnPan(const PanGesture& gesture)
824 {
825   mController->PanEvent(gesture.GetState(), gesture.GetDisplacement());
826   if(gesture.GetState() == GestureState::STARTED && !mController->IsScrollable(gesture.GetDisplacement()))
827   {
828     Dali::DevelActor::SetNeedGesturePropagation(Self(), true);
829   }
830 }
831
832 void TextField::OnLongPress(const LongPressGesture& gesture)
833 {
834   if(mInputMethodContext && IsEditable())
835   {
836     mInputMethodContext.Activate();
837   }
838   Extents padding;
839   padding                   = Self().GetProperty<Extents>(Toolkit::Control::Property::PADDING);
840   const Vector2& localPoint = gesture.GetLocalPoint();
841   mController->LongPressEvent(gesture.GetState(), localPoint.x - padding.start, localPoint.y - padding.top);
842
843   SetKeyInputFocus();
844 }
845
846 bool TextField::OnKeyEvent(const KeyEvent& event)
847 {
848   DALI_LOG_INFO(gTextFieldLogFilter, Debug::Verbose, "TextField::OnKeyEvent %p keyCode %d\n", mController.Get(), event.GetKeyCode());
849
850   if(Dali::DALI_KEY_ESCAPE == event.GetKeyCode() && mController->ShouldClearFocusOnEscape())
851   {
852     // Make sure ClearKeyInputFocus when only key is up
853     if(event.GetState() == KeyEvent::UP)
854     {
855       Dali::Toolkit::KeyboardFocusManager keyboardFocusManager = Dali::Toolkit::KeyboardFocusManager::Get();
856       if(keyboardFocusManager)
857       {
858         keyboardFocusManager.ClearFocus();
859       }
860       ClearKeyInputFocus();
861     }
862
863     return true;
864   }
865   else if(Dali::DevelKey::DALI_KEY_RETURN == event.GetKeyCode() && KEY_RETURN_NAME == event.GetKeyName())
866   {
867     // Do nothing when enter is comming.
868     return false;
869   }
870
871   return mController->KeyEvent(event);
872 }
873
874 void TextField::RequestTextRelayout()
875 {
876   RelayoutRequest();
877 }
878
879 bool TextField::IsEditable() const
880 {
881   return mController->IsEditable();
882 }
883
884 void TextField::SetEditable(bool editable)
885 {
886   mController->SetEditable(editable);
887   if(mInputMethodContext && !editable)
888   {
889     mInputMethodContext.Deactivate();
890   }
891 }
892
893 void TextField::TextInserted(unsigned int position, unsigned int length, const std::string& content)
894 {
895   auto accessible = GetAccessibleObject();
896   if(DALI_LIKELY(accessible))
897   {
898     accessible->EmitTextInserted(position, length, content);
899   }
900 }
901
902 void TextField::TextDeleted(unsigned int position, unsigned int length, const std::string& content)
903 {
904   auto accessible = GetAccessibleObject();
905   if(DALI_LIKELY(accessible))
906   {
907     accessible->EmitTextDeleted(position, length, content);
908   }
909 }
910
911 void TextField::CursorPositionChanged(unsigned int oldPosition, unsigned int newPosition)
912 {
913   auto accessible = GetAccessibleObject();
914   if(DALI_LIKELY(accessible))
915   {
916     accessible->EmitTextCursorMoved(newPosition);
917   }
918
919   if((oldPosition != newPosition) && !mCursorPositionChanged)
920   {
921     mCursorPositionChanged = true;
922     mOldPosition           = oldPosition;
923   }
924 }
925
926 void TextField::TextChanged(bool immediate)
927 {
928   if(immediate) // Emits TextChangedSignal immediately
929   {
930     EmitTextChangedSignal();
931   }
932   else
933   {
934     mTextChanged = true;
935   }
936 }
937
938 void TextField::EmitTextChangedSignal()
939 {
940   Dali::Toolkit::TextField handle(GetOwner());
941   mTextChangedSignal.Emit(handle);
942   mTextChanged = false;
943 }
944
945 void TextField::MaxLengthReached()
946 {
947   Dali::Toolkit::TextField handle(GetOwner());
948   mMaxLengthReachedSignal.Emit(handle);
949 }
950
951 void TextField::InputStyleChanged(Text::InputStyle::Mask inputStyleMask)
952 {
953   Dali::Toolkit::TextField handle(GetOwner());
954   mInputStyleChangedSignal.Emit(handle, ConvertInputStyle(inputStyleMask));
955 }
956
957 void TextField::AnchorClicked(const std::string& href)
958 {
959   Dali::Toolkit::TextField handle(GetOwner());
960   mAnchorClickedSignal.Emit(handle, href.c_str(), href.length());
961 }
962
963 void TextField::EmitCursorPositionChangedSignal()
964 {
965   Dali::Toolkit::TextField handle(GetOwner());
966   mCursorPositionChangedSignal.Emit(handle, mOldPosition);
967   mCursorPositionChanged = false;
968 }
969
970 void TextField::InputFiltered(Toolkit::InputFilter::Property::Type type)
971 {
972   Dali::Toolkit::TextField handle(GetOwner());
973   mInputFilteredSignal.Emit(handle, type);
974 }
975
976 void TextField::EmitSelectionChangedSignal()
977 {
978   Dali::Toolkit::TextField handle(GetOwner());
979   mSelectionChangedSignal.Emit(handle, mOldSelectionStart, mOldSelectionEnd);
980   mSelectionChanged = false;
981 }
982
983 void TextField::EmitSelectionClearedSignal()
984 {
985   Dali::Toolkit::TextField handle(GetOwner());
986   mSelectionClearedSignal.Emit(handle);
987   mSelectionCleared = false;
988 }
989
990 void TextField::EmitSelectionStartedSignal()
991 {
992   Dali::Toolkit::TextField handle(GetOwner());
993   mSelectionStartedSignal.Emit(handle);
994   mSelectionStarted = false;
995 }
996
997 void TextField::SelectionChanged(uint32_t oldStart, uint32_t oldEnd, uint32_t newStart, uint32_t newEnd)
998 {
999   if(((oldStart != newStart) || (oldEnd != newEnd)) && !mSelectionChanged)
1000   {
1001     if(newStart == newEnd)
1002     {
1003       mSelectionCleared = true;
1004     }
1005     else
1006     {
1007       if(oldStart == oldEnd)
1008       {
1009         mSelectionStarted = true;
1010       }
1011     }
1012
1013     mSelectionChanged  = true;
1014     mOldSelectionStart = oldStart;
1015     mOldSelectionEnd   = oldEnd;
1016
1017     if(mOldSelectionStart > mOldSelectionEnd)
1018     {
1019       //swap
1020       uint32_t temp      = mOldSelectionStart;
1021       mOldSelectionStart = mOldSelectionEnd;
1022       mOldSelectionEnd   = temp;
1023     }
1024   }
1025 }
1026
1027 void TextField::AddDecoration(Actor& actor, DecorationType type, bool needsClipping)
1028 {
1029   if(actor)
1030   {
1031     if(needsClipping)
1032     {
1033       mClippingDecorationActors.push_back(actor);
1034     }
1035
1036     // If the actor is a layer type, add it.
1037     if(type == DecorationType::ACTIVE_LAYER)
1038     {
1039       AddLayer(mActiveLayer, actor);
1040     }
1041     else if(type == DecorationType::CURSOR_LAYER)
1042     {
1043       AddLayer(mCursorLayer, actor);
1044     }
1045   }
1046 }
1047
1048 void TextField::AddLayer(Actor& layer, Actor& actor)
1049 {
1050   actor.SetProperty(Actor::Property::PARENT_ORIGIN, ParentOrigin::TOP_LEFT);
1051   actor.SetProperty(Actor::Property::ANCHOR_POINT, AnchorPoint::TOP_LEFT);
1052   Self().Add(actor);
1053   layer = actor;
1054 }
1055
1056 void TextField::GetControlBackgroundColor(Vector4& color) const
1057 {
1058   Property::Value propValue = Self().GetProperty(Toolkit::Control::Property::BACKGROUND);
1059   Property::Map*  resultMap = propValue.GetMap();
1060
1061   Property::Value* colorValue = nullptr;
1062   if(resultMap && (colorValue = resultMap->Find(ColorVisual::Property::MIX_COLOR)))
1063   {
1064     colorValue->Get(color);
1065   }
1066 }
1067
1068 void TextField::OnSceneConnect(Dali::Actor actor)
1069 {
1070   if(mHasBeenStaged)
1071   {
1072     RenderText(static_cast<Text::Controller::UpdateTextType>(Text::Controller::MODEL_UPDATED | Text::Controller::DECORATOR_UPDATED));
1073   }
1074   else
1075   {
1076     mHasBeenStaged = true;
1077   }
1078 }
1079
1080 InputMethodContext::CallbackData TextField::OnInputMethodContextEvent(Dali::InputMethodContext& inputMethodContext, const InputMethodContext::EventData& inputMethodContextEvent)
1081 {
1082   DALI_LOG_INFO(gTextFieldLogFilter, Debug::Verbose, "TextField::OnInputMethodContextEvent %p eventName %d\n", mController.Get(), inputMethodContextEvent.eventName);
1083   return mController->OnInputMethodContextEvent(inputMethodContext, inputMethodContextEvent);
1084 }
1085
1086 void TextField::GetHandleImagePropertyValue(Property::Value& value, Text::HandleType handleType, Text::HandleImageType handleImageType)
1087 {
1088   if(mDecorator)
1089   {
1090     Property::Map map;
1091     map[PropertyHandler::IMAGE_MAP_FILENAME_STRING] = mDecorator->GetHandleImage(handleType, handleImageType);
1092
1093     value = map;
1094   }
1095 }
1096
1097 void TextField::EnableClipping()
1098 {
1099   if(!mStencil)
1100   {
1101     // Creates an extra control to be used as stencil buffer.
1102     mStencil = Control::New();
1103     mStencil.SetProperty(Actor::Property::ANCHOR_POINT, AnchorPoint::TOP_LEFT);
1104     mStencil.SetProperty(Actor::Property::PARENT_ORIGIN, ParentOrigin::TOP_LEFT);
1105     mStencil.SetProperty(Toolkit::DevelControl::Property::ACCESSIBILITY_HIDDEN, true);
1106
1107     // Creates a background visual. Even if the color is transparent it updates the stencil.
1108     mStencil.SetProperty(Toolkit::Control::Property::BACKGROUND,
1109                          Property::Map().Add(Toolkit::Visual::Property::TYPE, Toolkit::Visual::COLOR).Add(ColorVisual::Property::MIX_COLOR, Color::TRANSPARENT));
1110
1111     // Enable the clipping property.
1112     mStencil.SetProperty(Actor::Property::CLIPPING_MODE, ClippingMode::CLIP_TO_BOUNDING_BOX);
1113     mStencil.SetResizePolicy(ResizePolicy::FILL_TO_PARENT, Dimension::ALL_DIMENSIONS);
1114
1115     Self().Add(mStencil);
1116   }
1117 }
1118
1119 void TextField::KeyboardStatusChanged(bool keyboardShown)
1120 {
1121   DALI_LOG_INFO(gTextFieldLogFilter, Debug::Verbose, "TextField::KeyboardStatusChanged %p keyboardShown %d\n", mController.Get(), keyboardShown);
1122
1123   // Just hide the grab handle when keyboard is hidden.
1124   if(!keyboardShown)
1125   {
1126     mController->KeyboardFocusLostEvent();
1127   }
1128   else
1129   {
1130     mController->KeyboardFocusGainEvent(); // Initially called by OnKeyInputFocusGained
1131   }
1132 }
1133
1134 void TextField::OnSceneConnection(int depth)
1135 {
1136   // Sets the depth to the visuals inside the text's decorator.
1137   mDecorator->SetTextDepth(depth);
1138
1139   // The depth of the text renderer is set in the RenderText() called from OnRelayout().
1140
1141   // Call the Control::OnSceneConnection() to set the depth of the background.
1142   Control::OnSceneConnection(depth);
1143 }
1144
1145 bool TextField::OnTouched(Actor actor, const TouchEvent& touch)
1146 {
1147   return false;
1148 }
1149
1150 void TextField::OnLayoutDirectionChanged(Actor actor, LayoutDirection::Type type)
1151 {
1152   mController->ChangedLayoutDirection();
1153 }
1154
1155 void TextField::OnIdleSignal()
1156 {
1157   // Emits the change of input style signals.
1158   mController->ProcessInputStyleChangedSignals();
1159
1160   // Set the pointer to null as the callback manager deletes the callback after execute it.
1161   mIdleCallback = NULL;
1162 }
1163
1164 TextField::TextField(ControlBehaviour additionalBehaviour)
1165 : Control(ControlBehaviour(CONTROL_BEHAVIOUR_DEFAULT | additionalBehaviour)),
1166   mIdleCallback(NULL),
1167   mAlignmentOffset(0.f),
1168   mRenderingBackend(DEFAULT_RENDERING_BACKEND),
1169   mExceedPolicy(Dali::Toolkit::TextField::EXCEED_POLICY_CLIP),
1170   mHasBeenStaged(false),
1171   mTextChanged(false),
1172   mCursorPositionChanged(false),
1173   mSelectionChanged(false),
1174   mSelectionCleared(false),
1175   mOldPosition(0u),
1176   mOldSelectionStart(0u),
1177   mOldSelectionEnd(0u),
1178   mSelectionStarted(false)
1179 {
1180 }
1181
1182 TextField::~TextField()
1183 {
1184   UnparentAndReset(mStencil);
1185
1186   if((NULL != mIdleCallback) && Adaptor::IsAvailable())
1187   {
1188     Adaptor::Get().RemoveIdle(mIdleCallback);
1189   }
1190 }
1191
1192 Vector<Vector2> TextField::GetTextSize(const uint32_t startIndex, const uint32_t endIndex) const
1193 {
1194   return mController->GetTextSize(startIndex, endIndex);
1195 }
1196
1197 Vector<Vector2> TextField::GetTextPosition(const uint32_t startIndex, const uint32_t endIndex) const
1198 {
1199   return mController->GetTextPosition(startIndex, endIndex);
1200 }
1201
1202 Rect<float> TextField::GetLineBoundingRectangle(const uint32_t lineIndex) const
1203 {
1204   return mController->GetLineBoundingRectangle(lineIndex);
1205 }
1206
1207 Rect<float> TextField::GetCharacterBoundingRectangle(const uint32_t charIndex) const
1208 {
1209   return mController->GetCharacterBoundingRectangle(charIndex);
1210 }
1211
1212 int TextField::GetCharacterIndexAtPosition(float visualX, float visualY) const
1213 {
1214   return mController->GetCharacterIndexAtPosition(visualX, visualY);
1215 }
1216
1217 Rect<> TextField::GetTextBoundingRectangle(uint32_t startIndex, uint32_t endIndex) const
1218 {
1219   return mController->GetTextBoundingRectangle(startIndex, endIndex);
1220 }
1221
1222 void TextField::SetSpannedText(const Text::Spanned& spannedText)
1223 {
1224   mController->SetSpannedText(spannedText);
1225 }
1226
1227 std::string TextField::TextFieldAccessible::GetName() const
1228 {
1229   if(IsHiddenInput())
1230   {
1231     return {};
1232   }
1233
1234   return GetWholeText();
1235 }
1236
1237 const std::vector<Toolkit::TextAnchor>& TextField::TextFieldAccessible::GetTextAnchors() const
1238 {
1239   auto self = Toolkit::TextField::DownCast(Self());
1240
1241   return Toolkit::GetImpl(self).mAnchorActors;
1242 }
1243
1244 Toolkit::Text::ControllerPtr TextField::TextFieldAccessible::GetTextController() const
1245 {
1246   auto self = Toolkit::TextField::DownCast(Self());
1247
1248   return Toolkit::GetImpl(self).GetTextController();
1249 }
1250
1251 std::uint32_t TextField::TextFieldAccessible::GetSubstituteCharacter() const
1252 {
1253   auto self                = Toolkit::TextField::DownCast(Self());
1254   auto hiddenInputSettings = self.GetProperty<Property::Map>(Toolkit::TextField::Property::HIDDEN_INPUT_SETTINGS);
1255   auto substChar           = hiddenInputSettings.Find(Toolkit::HiddenInput::Property::SUBSTITUTE_CHARACTER);
1256
1257   if(substChar)
1258   {
1259     return static_cast<std::uint32_t>(substChar->Get<int>());
1260   }
1261
1262   return TextControlAccessible::GetSubstituteCharacter();
1263 }
1264
1265 bool TextField::TextFieldAccessible::IsHiddenInput() const
1266 {
1267   auto self                = Toolkit::TextField::DownCast(Self());
1268   auto hiddenInputSettings = self.GetProperty<Property::Map>(Toolkit::TextField::Property::HIDDEN_INPUT_SETTINGS);
1269   auto mode                = hiddenInputSettings.Find(Toolkit::HiddenInput::Property::MODE);
1270
1271   return (mode && (mode->Get<int>() != Toolkit::HiddenInput::Mode::HIDE_NONE));
1272 }
1273
1274 void TextField::TextFieldAccessible::RequestTextRelayout()
1275 {
1276   auto  self     = Toolkit::TextField::DownCast(Self());
1277   auto& selfImpl = Toolkit::GetImpl(self);
1278
1279   selfImpl.RequestTextRelayout();
1280 }
1281
1282 } // namespace Internal
1283
1284 } // namespace Toolkit
1285
1286 } // namespace Dali