[AT-SPI] Squashed implementation
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / internal / controls / text-controls / text-field-impl.cpp
1 /*
2  * Copyright (c) 2020 Samsung Electronics Co., Ltd.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *
16  */
17
18 // CLASS HEADER
19 #include <dali-toolkit/internal/controls/text-controls/text-field-impl.h>
20
21 // EXTERNAL INCLUDES
22 #include <cstring>
23 #include <dali/public-api/adaptor-framework/key.h>
24 #include <dali/public-api/common/dali-common.h>
25 #include <dali/devel-api/adaptor-framework/key-devel.h>
26 #include <dali/devel-api/adaptor-framework/window-devel.h>
27 #include <dali/devel-api/common/stage.h>
28 #include <dali/devel-api/object/property-helper-devel.h>
29 #include <dali/devel-api/actors/actor-devel.h>
30 #include <dali/public-api/object/type-registry-helper.h>
31 #include <dali/integration-api/debug.h>
32
33 // INTERNAL INCLUDES
34 #include <dali-toolkit/public-api/text/text-enumerations.h>
35 #include <dali-toolkit/public-api/visuals/color-visual-properties.h>
36 #include <dali-toolkit/devel-api/text/rendering-backend.h>
37 #include <dali-toolkit/devel-api/controls/control-depth-index-ranges.h>
38 #include <dali-toolkit/devel-api/focus-manager/keyinput-focus-manager.h>
39 #include <dali-toolkit/devel-api/controls/text-controls/text-field-devel.h>
40 #include <dali-toolkit/public-api/visuals/visual-properties.h>
41 #include <dali-toolkit/internal/text/text-enumerations-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-font-style.h>
45 #include <dali-toolkit/internal/text/text-view.h>
46 #include <dali-toolkit/internal/styling/style-manager-impl.h>
47 #include <dali-toolkit/devel-api/controls/control-devel.h>
48 #include <dali/integration-api/adaptor-framework/adaptor.h>
49
50 using namespace Dali::Toolkit::Text;
51
52 namespace Dali
53 {
54
55 namespace Toolkit
56 {
57
58 namespace Internal
59 {
60
61 namespace // unnamed namespace
62 {
63
64 #if defined(DEBUG_ENABLED)
65   Debug::Filter* gLogFilter = Debug::Filter::New(Debug::Concise, true, "LOG_TEXT_CONTROLS");
66 #endif
67
68   const unsigned int DEFAULT_RENDERING_BACKEND = Dali::Toolkit::DevelText::DEFAULT_RENDERING_BACKEND;
69 } // unnamed namespace
70
71 namespace
72 {
73 // Type registration
74 BaseHandle Create()
75 {
76   return Toolkit::TextField::New();
77 }
78
79 // Setup properties, signals and actions using the type-registry.
80 DALI_TYPE_REGISTRATION_BEGIN( Toolkit::TextField, Toolkit::Control, Create );
81
82 DALI_PROPERTY_REGISTRATION( Toolkit, TextField, "text",                                 STRING,    TEXT                                 )
83 DALI_PROPERTY_REGISTRATION( Toolkit, TextField, "placeholderText",                      STRING,    PLACEHOLDER_TEXT                     )
84 DALI_PROPERTY_REGISTRATION( Toolkit, TextField, "placeholderTextFocused",               STRING,    PLACEHOLDER_TEXT_FOCUSED             )
85 DALI_PROPERTY_REGISTRATION( Toolkit, TextField, "fontFamily",                           STRING,    FONT_FAMILY                          )
86 DALI_PROPERTY_REGISTRATION( Toolkit, TextField, "fontStyle",                            MAP,       FONT_STYLE                           )
87 DALI_PROPERTY_REGISTRATION( Toolkit, TextField, "pointSize",                            FLOAT,     POINT_SIZE                           )
88 DALI_PROPERTY_REGISTRATION( Toolkit, TextField, "maxLength",                            INTEGER,   MAX_LENGTH                           )
89 DALI_PROPERTY_REGISTRATION( Toolkit, TextField, "exceedPolicy",                         INTEGER,   EXCEED_POLICY                        )
90 DALI_PROPERTY_REGISTRATION( Toolkit, TextField, "horizontalAlignment",                  STRING,    HORIZONTAL_ALIGNMENT                 )
91 DALI_PROPERTY_REGISTRATION( Toolkit, TextField, "verticalAlignment",                    STRING,    VERTICAL_ALIGNMENT                   )
92 DALI_PROPERTY_REGISTRATION( Toolkit, TextField, "textColor",                            VECTOR4,   TEXT_COLOR                           )
93 DALI_PROPERTY_REGISTRATION( Toolkit, TextField, "placeholderTextColor",                 VECTOR4,   PLACEHOLDER_TEXT_COLOR               )
94 DALI_PROPERTY_REGISTRATION( Toolkit, TextField, "primaryCursorColor",                   VECTOR4,   PRIMARY_CURSOR_COLOR                 )
95 DALI_PROPERTY_REGISTRATION( Toolkit, TextField, "secondaryCursorColor",                 VECTOR4,   SECONDARY_CURSOR_COLOR               )
96 DALI_PROPERTY_REGISTRATION( Toolkit, TextField, "enableCursorBlink",                    BOOLEAN,   ENABLE_CURSOR_BLINK                  )
97 DALI_PROPERTY_REGISTRATION( Toolkit, TextField, "cursorBlinkInterval",                  FLOAT,     CURSOR_BLINK_INTERVAL                )
98 DALI_PROPERTY_REGISTRATION( Toolkit, TextField, "cursorBlinkDuration",                  FLOAT,     CURSOR_BLINK_DURATION                )
99 DALI_PROPERTY_REGISTRATION( Toolkit, TextField, "cursorWidth",                          INTEGER,   CURSOR_WIDTH                         )
100 DALI_PROPERTY_REGISTRATION( Toolkit, TextField, "grabHandleImage",                      STRING,    GRAB_HANDLE_IMAGE                    )
101 DALI_PROPERTY_REGISTRATION( Toolkit, TextField, "grabHandlePressedImage",               STRING,    GRAB_HANDLE_PRESSED_IMAGE            )
102 DALI_PROPERTY_REGISTRATION( Toolkit, TextField, "scrollThreshold",                      FLOAT,     SCROLL_THRESHOLD                     )
103 DALI_PROPERTY_REGISTRATION( Toolkit, TextField, "scrollSpeed",                          FLOAT,     SCROLL_SPEED                         )
104 DALI_PROPERTY_REGISTRATION( Toolkit, TextField, "selectionHandleImageLeft",             MAP,       SELECTION_HANDLE_IMAGE_LEFT          )
105 DALI_PROPERTY_REGISTRATION( Toolkit, TextField, "selectionHandleImageRight",            MAP,       SELECTION_HANDLE_IMAGE_RIGHT         )
106 DALI_PROPERTY_REGISTRATION( Toolkit, TextField, "selectionHandlePressedImageLeft",      MAP,       SELECTION_HANDLE_PRESSED_IMAGE_LEFT  )
107 DALI_PROPERTY_REGISTRATION( Toolkit, TextField, "selectionHandlePressedImageRight",     MAP,       SELECTION_HANDLE_PRESSED_IMAGE_RIGHT )
108 DALI_PROPERTY_REGISTRATION( Toolkit, TextField, "selectionHandleMarkerImageLeft",       MAP,       SELECTION_HANDLE_MARKER_IMAGE_LEFT   )
109 DALI_PROPERTY_REGISTRATION( Toolkit, TextField, "selectionHandleMarkerImageRight",      MAP,       SELECTION_HANDLE_MARKER_IMAGE_RIGHT  )
110 DALI_PROPERTY_REGISTRATION( Toolkit, TextField, "selectionHighlightColor",              VECTOR4,   SELECTION_HIGHLIGHT_COLOR            )
111 DALI_PROPERTY_REGISTRATION( Toolkit, TextField, "decorationBoundingBox",                RECTANGLE, DECORATION_BOUNDING_BOX              )
112 DALI_PROPERTY_REGISTRATION( Toolkit, TextField, "inputMethodSettings",                  MAP,       INPUT_METHOD_SETTINGS                )
113 DALI_PROPERTY_REGISTRATION( Toolkit, TextField, "inputColor",                           VECTOR4,   INPUT_COLOR                          )
114 DALI_PROPERTY_REGISTRATION( Toolkit, TextField, "enableMarkup",                         BOOLEAN,   ENABLE_MARKUP                        )
115 DALI_PROPERTY_REGISTRATION( Toolkit, TextField, "inputFontFamily",                      STRING,    INPUT_FONT_FAMILY                    )
116 DALI_PROPERTY_REGISTRATION( Toolkit, TextField, "inputFontStyle",                       MAP,       INPUT_FONT_STYLE                     )
117 DALI_PROPERTY_REGISTRATION( Toolkit, TextField, "inputPointSize",                       FLOAT,     INPUT_POINT_SIZE                     )
118 DALI_PROPERTY_REGISTRATION( Toolkit, TextField, "underline",                            MAP,       UNDERLINE                            )
119 DALI_PROPERTY_REGISTRATION( Toolkit, TextField, "inputUnderline",                       MAP,       INPUT_UNDERLINE                      )
120 DALI_PROPERTY_REGISTRATION( Toolkit, TextField, "shadow",                               MAP,       SHADOW                               )
121 DALI_PROPERTY_REGISTRATION( Toolkit, TextField, "inputShadow",                          MAP,       INPUT_SHADOW                         )
122 DALI_PROPERTY_REGISTRATION( Toolkit, TextField, "emboss",                               MAP,       EMBOSS                               )
123 DALI_PROPERTY_REGISTRATION( Toolkit, TextField, "inputEmboss",                          MAP,       INPUT_EMBOSS                         )
124 DALI_PROPERTY_REGISTRATION( Toolkit, TextField, "outline",                              MAP,       OUTLINE                              )
125 DALI_PROPERTY_REGISTRATION( Toolkit, TextField, "inputOutline",                         MAP,       INPUT_OUTLINE                        )
126 DALI_PROPERTY_REGISTRATION( Toolkit, TextField, "hiddenInputSettings",                  MAP,       HIDDEN_INPUT_SETTINGS                )
127 DALI_PROPERTY_REGISTRATION( Toolkit, TextField, "pixelSize",                            FLOAT,     PIXEL_SIZE                           )
128 DALI_PROPERTY_REGISTRATION( Toolkit, TextField, "enableSelection",                      BOOLEAN,   ENABLE_SELECTION                     )
129 DALI_PROPERTY_REGISTRATION( Toolkit, TextField, "placeholder",                          MAP,       PLACEHOLDER                          )
130 DALI_PROPERTY_REGISTRATION( Toolkit, TextField, "ellipsis",                             BOOLEAN,   ELLIPSIS                             )
131 DALI_DEVEL_PROPERTY_REGISTRATION( Toolkit, TextField, "enableShiftSelection",           BOOLEAN,   ENABLE_SHIFT_SELECTION               )
132 DALI_DEVEL_PROPERTY_REGISTRATION( Toolkit, TextField, "enableGrabHandle",               BOOLEAN,   ENABLE_GRAB_HANDLE                   )
133 DALI_DEVEL_PROPERTY_REGISTRATION( Toolkit, TextField, "matchSystemLanguageDirection",   BOOLEAN,   MATCH_SYSTEM_LANGUAGE_DIRECTION      )
134 DALI_DEVEL_PROPERTY_REGISTRATION( Toolkit, TextField, "enableGrabHandlePopup",          BOOLEAN,   ENABLE_GRAB_HANDLE_POPUP             )
135 DALI_DEVEL_PROPERTY_REGISTRATION( Toolkit, TextField, "textBackground",                 VECTOR4,   BACKGROUND                           )
136 DALI_DEVEL_PROPERTY_REGISTRATION_READ_ONLY( Toolkit, TextField, "selectedText",         STRING,    SELECTED_TEXT                        )
137 DALI_DEVEL_PROPERTY_REGISTRATION( Toolkit, TextField, "renderingBackend",               INTEGER,   RENDERING_BACKEND                    )
138 DALI_DEVEL_PROPERTY_REGISTRATION( Toolkit, TextField, "selectedTextStart",              INTEGER,   SELECTED_TEXT_START                  )
139 DALI_DEVEL_PROPERTY_REGISTRATION( Toolkit, TextField, "selectedTextEnd",                INTEGER,   SELECTED_TEXT_END                    )
140 DALI_DEVEL_PROPERTY_REGISTRATION( Toolkit, TextField, "enableEditing",                  BOOLEAN,   ENABLE_EDITING                       )
141
142 DALI_SIGNAL_REGISTRATION( Toolkit, TextField, "textChanged",        SIGNAL_TEXT_CHANGED )
143 DALI_SIGNAL_REGISTRATION( Toolkit, TextField, "maxLengthReached",   SIGNAL_MAX_LENGTH_REACHED )
144 DALI_SIGNAL_REGISTRATION( Toolkit, TextField, "inputStyleChanged",  SIGNAL_INPUT_STYLE_CHANGED )
145
146 DALI_TYPE_REGISTRATION_END()
147
148 const char * const IMAGE_MAP_FILENAME_STRING = "filename";
149
150 /// Retrieves a filename from a value that is a Property::Map
151 std::string GetImageFileNameFromPropertyValue( const Property::Value& value )
152 {
153   std::string filename;
154   const Property::Map* map = value.GetMap();
155   if( map )
156   {
157     const Property::Value* filenameValue = map->Find( IMAGE_MAP_FILENAME_STRING );
158     if( filenameValue )
159     {
160       filenameValue->Get( filename );
161     }
162   }
163   return filename;
164 }
165
166 } // namespace
167
168 Toolkit::TextField TextField::New()
169 {
170   // Create the implementation, temporarily owned by this handle on stack
171   IntrusivePtr< TextField > impl = new TextField();
172
173   // Pass ownership to CustomActor handle
174   Toolkit::TextField handle( *impl );
175
176   // Second-phase init of the implementation
177   // This can only be done after the CustomActor connection has been made...
178   impl->Initialize();
179
180   return handle;
181 }
182
183 void TextField::SetProperty( BaseObject* object, Property::Index index, const Property::Value& value )
184 {
185   Toolkit::TextField textField = Toolkit::TextField::DownCast( Dali::BaseHandle( object ) );
186
187   DALI_LOG_INFO( gLogFilter, Debug::Verbose, "TextField SetProperty\n");
188
189   if( textField )
190   {
191     TextField& impl( GetImpl( textField ) );
192     DALI_ASSERT_DEBUG( impl.mController && "No text contoller" );
193     DALI_ASSERT_DEBUG( impl.mDecorator && "No text decorator" );
194
195     switch( index )
196     {
197       case Toolkit::DevelTextField::Property::RENDERING_BACKEND:
198       {
199         int backend = value.Get< int >();
200         DALI_LOG_INFO( gLogFilter, Debug::Verbose, "TextField %p RENDERING_BACKEND %d\n", impl.mController.Get(), backend );
201
202 #ifndef ENABLE_VECTOR_BASED_TEXT_RENDERING
203         if( DevelText::RENDERING_VECTOR_BASED == backend )
204         {
205           backend = TextAbstraction::BITMAP_GLYPH; // Fallback to bitmap-based rendering
206         }
207 #endif
208         if( impl.mRenderingBackend != backend )
209         {
210           impl.mRenderingBackend = backend;
211           impl.mRenderer.Reset();
212
213           // When using the vector-based rendering, the size of the GLyphs are different
214           TextAbstraction::GlyphType glyphType = (DevelText::RENDERING_VECTOR_BASED == impl.mRenderingBackend) ? TextAbstraction::VECTOR_GLYPH : TextAbstraction::BITMAP_GLYPH;
215           impl.mController->SetGlyphType( glyphType );
216         }
217         break;
218       }
219       case Toolkit::TextField::Property::TEXT:
220       {
221         const std::string& text = value.Get< std::string >();
222         DALI_LOG_INFO( gLogFilter, Debug::General, "TextField %p TEXT %s\n", impl.mController.Get(), text.c_str() );
223
224         impl.mController->SetText( text );
225         break;
226       }
227       case Toolkit::TextField::Property::PLACEHOLDER_TEXT:
228       {
229         const std::string& text = value.Get< std::string >();
230         DALI_LOG_INFO( gLogFilter, Debug::General, "TextField %p PLACEHOLDER_TEXT %s\n", impl.mController.Get(), text.c_str() );
231
232         impl.mController->SetPlaceholderText( Controller::PLACEHOLDER_TYPE_INACTIVE, text );
233         break;
234       }
235       case Toolkit::TextField::Property::PLACEHOLDER_TEXT_FOCUSED:
236       {
237         const std::string& text = value.Get< std::string >();
238         DALI_LOG_INFO( gLogFilter, Debug::General, "TextField %p PLACEHOLDER_TEXT_FOCUSED %s\n", impl.mController.Get(), text.c_str() );
239
240         impl.mController->SetPlaceholderText( Controller::PLACEHOLDER_TYPE_ACTIVE, text );
241         break;
242       }
243       case Toolkit::TextField::Property::FONT_FAMILY:
244       {
245         const std::string& fontFamily = value.Get< std::string >();
246         DALI_LOG_INFO( gLogFilter, Debug::General, "TextField %p FONT_FAMILY %s\n", impl.mController.Get(), fontFamily.c_str() );
247         impl.mController->SetDefaultFontFamily( fontFamily );
248         break;
249       }
250       case Toolkit::TextField::Property::FONT_STYLE:
251       {
252         SetFontStyleProperty( impl.mController, value, Text::FontStyle::DEFAULT );
253         break;
254       }
255       case Toolkit::TextField::Property::POINT_SIZE:
256       {
257         const float pointSize = value.Get< float >();
258         DALI_LOG_INFO( gLogFilter, Debug::General, "TextField %p POINT_SIZE %f\n", impl.mController.Get(), pointSize );
259
260         if( !Equals( impl.mController->GetDefaultFontSize( Text::Controller::POINT_SIZE ), pointSize ) )
261         {
262           impl.mController->SetDefaultFontSize( pointSize, Text::Controller::POINT_SIZE );
263         }
264         break;
265       }
266       case Toolkit::TextField::Property::MAX_LENGTH:
267       {
268         const int max = value.Get< int >();
269         DALI_LOG_INFO( gLogFilter, Debug::General, "TextField %p MAX_LENGTH %d\n", impl.mController.Get(), max );
270
271         impl.mController->SetMaximumNumberOfCharacters( max );
272         break;
273       }
274       case Toolkit::TextField::Property::EXCEED_POLICY:
275       {
276         impl.mExceedPolicy = value.Get<int>();
277
278         if( Dali::Toolkit::TextField::EXCEED_POLICY_CLIP == impl.mExceedPolicy )
279         {
280           impl.EnableClipping();
281         }
282         else
283         {
284           UnparentAndReset( impl.mStencil );
285         }
286         impl.RequestTextRelayout();
287         break;
288       }
289       case Toolkit::TextField::Property::HORIZONTAL_ALIGNMENT:
290       {
291         Text::HorizontalAlignment::Type alignment( static_cast< Text::HorizontalAlignment::Type >( -1 ) ); // Set to invalid value to ensure a valid mode does get set
292         if( GetHorizontalAlignmentEnumeration( value, alignment ) )
293         {
294           DALI_LOG_INFO( gLogFilter, Debug::General, "TextField %p HORIZONTAL_ALIGNMENT %d\n", impl.mController.Get(), alignment );
295           impl.mController->SetHorizontalAlignment( alignment );
296         }
297         break;
298       }
299       case Toolkit::TextField::Property::VERTICAL_ALIGNMENT:
300       {
301         Toolkit::Text::VerticalAlignment::Type alignment( static_cast< Text::VerticalAlignment::Type >( -1 ) ); // Set to invalid value to ensure a valid mode does get set
302         if( GetVerticalAlignmentEnumeration( value, alignment ) )
303         {
304           impl.mController->SetVerticalAlignment( alignment );
305           DALI_LOG_INFO( gLogFilter, Debug::General, "TextField %p VERTICAL_ALIGNMENT %d\n", impl.mController.Get(), alignment );
306         }
307         break;
308       }
309       case Toolkit::TextField::Property::TEXT_COLOR:
310       {
311         const Vector4& textColor = value.Get< Vector4 >();
312         DALI_LOG_INFO( gLogFilter, Debug::General, "TextField %p TEXT_COLOR %f,%f,%f,%f\n", impl.mController.Get(), textColor.r, textColor.g, textColor.b, textColor.a );
313
314         if( impl.mController->GetDefaultColor() != textColor )
315         {
316           impl.mController->SetDefaultColor( textColor );
317           impl.mController->SetInputColor( textColor );
318           impl.mRenderer.Reset();
319         }
320         break;
321       }
322       case Toolkit::TextField::Property::PLACEHOLDER_TEXT_COLOR:
323       {
324         const Vector4& textColor = value.Get< Vector4 >();
325         DALI_LOG_INFO( gLogFilter, Debug::General, "TextField %p PLACEHOLDER_TEXT_COLOR %f,%f,%f,%f\n", impl.mController.Get(), textColor.r, textColor.g, textColor.b, textColor.a );
326
327         if( impl.mController->GetPlaceholderTextColor() != textColor )
328         {
329           impl.mController->SetPlaceholderTextColor( textColor );
330           impl.mRenderer.Reset();
331         }
332         break;
333       }
334       case Toolkit::TextField::Property::PRIMARY_CURSOR_COLOR:
335       {
336         const Vector4& color = value.Get< Vector4 >();
337         DALI_LOG_INFO( gLogFilter, Debug::General, "TextField %p PRIMARY_CURSOR_COLOR %f,%f,%f,%f\n", impl.mController.Get(), color.r, color.g, color.b, color.a );
338
339         impl.mDecorator->SetCursorColor( PRIMARY_CURSOR, color );
340         impl.RequestTextRelayout();
341         break;
342       }
343       case Toolkit::TextField::Property::SECONDARY_CURSOR_COLOR:
344       {
345         const Vector4& color = value.Get< Vector4 >();
346         DALI_LOG_INFO( gLogFilter, Debug::General, "TextField %p SECONDARY_CURSOR_COLOR %f,%f,%f,%f\n", impl.mController.Get(), color.r, color.g, color.b, color.a );
347
348         impl.mDecorator->SetCursorColor( SECONDARY_CURSOR, color );
349         impl.RequestTextRelayout();
350         break;
351       }
352       case Toolkit::TextField::Property::ENABLE_CURSOR_BLINK:
353       {
354         const bool enable = value.Get< bool >();
355         DALI_LOG_INFO( gLogFilter, Debug::Verbose, "TextField %p ENABLE_CURSOR_BLINK %d\n", impl.mController.Get(), enable );
356
357         impl.mController->SetEnableCursorBlink( enable );
358         impl.RequestTextRelayout();
359         break;
360       }
361       case Toolkit::TextField::Property::CURSOR_BLINK_INTERVAL:
362       {
363         const float interval = value.Get< float >();
364         DALI_LOG_INFO( gLogFilter, Debug::Verbose, "TextField %p CURSOR_BLINK_INTERVAL %f\n", impl.mController.Get(), interval );
365
366         impl.mDecorator->SetCursorBlinkInterval( interval );
367         break;
368       }
369       case Toolkit::TextField::Property::CURSOR_BLINK_DURATION:
370       {
371         const float duration = value.Get< float >();
372         DALI_LOG_INFO( gLogFilter, Debug::Verbose, "TextField %p CURSOR_BLINK_DURATION %f\n", impl.mController.Get(), duration );
373
374         impl.mDecorator->SetCursorBlinkDuration( duration );
375         break;
376       }
377       case Toolkit::TextField::Property::CURSOR_WIDTH:
378       {
379         const int width = value.Get< int >();
380         DALI_LOG_INFO( gLogFilter, Debug::Verbose, "TextField %p CURSOR_WIDTH %d\n", impl.mController.Get(), width );
381
382         impl.mDecorator->SetCursorWidth( width );
383         impl.mController->GetLayoutEngine().SetCursorWidth( width );
384         break;
385       }
386       case Toolkit::TextField::Property::GRAB_HANDLE_IMAGE:
387       {
388         const std::string imageFileName = value.Get< std::string >();
389         DALI_LOG_INFO( gLogFilter, Debug::Verbose, "TextField %p GRAB_HANDLE_IMAGE %s\n", impl.mController.Get(), imageFileName.c_str() );
390
391         if( imageFileName.size() )
392         {
393           impl.mDecorator->SetHandleImage( GRAB_HANDLE, HANDLE_IMAGE_RELEASED, imageFileName );
394           impl.RequestTextRelayout();
395         }
396         break;
397       }
398       case Toolkit::TextField::Property::GRAB_HANDLE_PRESSED_IMAGE:
399       {
400         const std::string imageFileName = value.Get< std::string >();
401         DALI_LOG_INFO( gLogFilter, Debug::Verbose, "TextField %p GRAB_HANDLE_PRESSED_IMAGE %s\n", impl.mController.Get(), imageFileName.c_str() );
402
403         if( imageFileName.size() )
404         {
405           impl.mDecorator->SetHandleImage( GRAB_HANDLE, HANDLE_IMAGE_PRESSED, imageFileName );
406           impl.RequestTextRelayout();
407         }
408         break;
409       }
410       case Toolkit::TextField::Property::SCROLL_THRESHOLD:
411       {
412         const float threshold = value.Get< float >();
413         DALI_LOG_INFO( gLogFilter, Debug::Verbose, "TextField %p SCROLL_THRESHOLD %f\n", impl.mController.Get(), threshold );
414
415         impl.mDecorator->SetScrollThreshold( threshold );
416         break;
417       }
418       case Toolkit::TextField::Property::SCROLL_SPEED:
419       {
420         const float speed = value.Get< float >();
421         DALI_LOG_INFO( gLogFilter, Debug::Verbose, "TextField %p SCROLL_SPEED %f\n", impl.mController.Get(), speed );
422
423         impl.mDecorator->SetScrollSpeed( speed );
424         break;
425       }
426       case Toolkit::TextField::Property::SELECTION_HANDLE_IMAGE_LEFT:
427       {
428         const std::string filename = GetImageFileNameFromPropertyValue( value );
429
430         if( filename.size() )
431         {
432           impl.mDecorator->SetHandleImage( LEFT_SELECTION_HANDLE, HANDLE_IMAGE_RELEASED, filename );
433           impl.RequestTextRelayout();
434         }
435         break;
436       }
437       case Toolkit::TextField::Property::SELECTION_HANDLE_IMAGE_RIGHT:
438       {
439         const std::string filename = GetImageFileNameFromPropertyValue( value );
440
441         if( filename.size() )
442         {
443           impl.mDecorator->SetHandleImage( RIGHT_SELECTION_HANDLE, HANDLE_IMAGE_RELEASED, filename );
444           impl.RequestTextRelayout();
445         }
446         break;
447       }
448       case Toolkit::TextField::Property::SELECTION_HANDLE_PRESSED_IMAGE_LEFT:
449       {
450         const std::string filename = GetImageFileNameFromPropertyValue( value );
451
452         if( filename.size() )
453         {
454           impl.mDecorator->SetHandleImage( LEFT_SELECTION_HANDLE, HANDLE_IMAGE_PRESSED, filename );
455           impl.RequestTextRelayout();
456         }
457         break;
458       }
459       case Toolkit::TextField::Property::SELECTION_HANDLE_PRESSED_IMAGE_RIGHT:
460       {
461         const std::string filename = GetImageFileNameFromPropertyValue( value );
462
463         if( filename.size() )
464         {
465           impl.mDecorator->SetHandleImage( RIGHT_SELECTION_HANDLE, HANDLE_IMAGE_PRESSED, filename );
466           impl.RequestTextRelayout();
467         }
468         break;
469       }
470       case Toolkit::TextField::Property::SELECTION_HANDLE_MARKER_IMAGE_LEFT:
471       {
472         const std::string filename = GetImageFileNameFromPropertyValue( value );
473
474         if( filename.size() )
475         {
476           impl.mDecorator->SetHandleImage( LEFT_SELECTION_HANDLE_MARKER, HANDLE_IMAGE_RELEASED, filename );
477           impl.RequestTextRelayout();
478         }
479         break;
480       }
481       case Toolkit::TextField::Property::SELECTION_HANDLE_MARKER_IMAGE_RIGHT:
482       {
483         const std::string filename = GetImageFileNameFromPropertyValue( value );
484
485         if( filename.size() )
486         {
487           impl.mDecorator->SetHandleImage( RIGHT_SELECTION_HANDLE_MARKER, HANDLE_IMAGE_RELEASED, filename );
488           impl.RequestTextRelayout();
489         }
490         break;
491       }
492       case Toolkit::TextField::Property::SELECTION_HIGHLIGHT_COLOR:
493       {
494         const Vector4 color = value.Get< Vector4 >();
495         DALI_LOG_INFO( gLogFilter, Debug::General, "TextField %p SELECTION_HIGHLIGHT_COLOR %f,%f,%f,%f\n", impl.mController.Get(), color.r, color.g, color.b, color.a );
496
497         impl.mDecorator->SetHighlightColor( color );
498         impl.RequestTextRelayout();
499         break;
500       }
501       case Toolkit::TextField::Property::DECORATION_BOUNDING_BOX:
502       {
503         const Rect<int> box = value.Get< Rect<int> >();
504         DALI_LOG_INFO( gLogFilter, Debug::General, "TextField %p DECORATION_BOUNDING_BOX %d,%d %dx%d\n", impl.mController.Get(), box.x, box.y, box.width, box.height );
505
506         impl.mDecorator->SetBoundingBox( box );
507         impl.RequestTextRelayout();
508         break;
509       }
510       case Toolkit::TextField::Property::INPUT_METHOD_SETTINGS:
511       {
512         const Property::Map* map = value.GetMap();
513         if (map)
514         {
515           impl.mInputMethodOptions.ApplyProperty( *map );
516         }
517         impl.mController->SetInputModePassword( impl.mInputMethodOptions.IsPassword() );
518
519         Toolkit::Control control = Toolkit::KeyInputFocusManager::Get().GetCurrentFocusControl();
520         if (control == textField)
521         {
522           impl.mInputMethodContext.ApplyOptions( impl.mInputMethodOptions );
523         }
524         break;
525       }
526       case Toolkit::TextField::Property::INPUT_COLOR:
527       {
528         const Vector4 inputColor = value.Get< Vector4 >();
529         DALI_LOG_INFO( gLogFilter, Debug::General, "TextField %p INPUT_COLOR %f,%f,%f,%f\n", impl.mController.Get(), inputColor.r, inputColor.g, inputColor.b, inputColor.a );
530
531         impl.mController->SetInputColor( inputColor );
532         break;
533       }
534       case Toolkit::TextField::Property::ENABLE_MARKUP:
535       {
536         const bool enableMarkup = value.Get<bool>();
537         DALI_LOG_INFO( gLogFilter, Debug::General, "TextField %p ENABLE_MARKUP %d\n", impl.mController.Get(), enableMarkup );
538
539         impl.mController->SetMarkupProcessorEnabled( enableMarkup );
540         break;
541       }
542       case Toolkit::TextField::Property::INPUT_FONT_FAMILY:
543       {
544         const std::string& fontFamily = value.Get< std::string >();
545         DALI_LOG_INFO( gLogFilter, Debug::General, "TextField %p INPUT_FONT_FAMILY %s\n", impl.mController.Get(), fontFamily.c_str() );
546         impl.mController->SetInputFontFamily( fontFamily );
547         break;
548       }
549       case Toolkit::TextField::Property::INPUT_FONT_STYLE:
550       {
551         SetFontStyleProperty( impl.mController, value, Text::FontStyle::INPUT );
552         break;
553       }
554       case Toolkit::TextField::Property::INPUT_POINT_SIZE:
555       {
556         const float pointSize = value.Get< float >();
557         DALI_LOG_INFO( gLogFilter, Debug::General, "TextField %p INPUT_POINT_SIZE %f\n", impl.mController.Get(), pointSize );
558         impl.mController->SetInputFontPointSize( pointSize );
559         break;
560       }
561       case Toolkit::TextField::Property::UNDERLINE:
562       {
563         const bool update = SetUnderlineProperties( impl.mController, value, Text::EffectStyle::DEFAULT );
564         if( update )
565         {
566           impl.mRenderer.Reset();
567         }
568         break;
569       }
570       case Toolkit::TextField::Property::INPUT_UNDERLINE:
571       {
572         const bool update = SetUnderlineProperties( impl.mController, value, Text::EffectStyle::INPUT );
573         if( update )
574         {
575           impl.mRenderer.Reset();
576         }
577         break;
578       }
579       case Toolkit::TextField::Property::SHADOW:
580       {
581         const bool update = SetShadowProperties( impl.mController, value, Text::EffectStyle::DEFAULT );
582         if( update )
583         {
584           impl.mRenderer.Reset();
585         }
586         break;
587       }
588       case Toolkit::TextField::Property::INPUT_SHADOW:
589       {
590         const bool update = SetShadowProperties( impl.mController, value, Text::EffectStyle::INPUT );
591         if( update )
592         {
593           impl.mRenderer.Reset();
594         }
595         break;
596       }
597       case Toolkit::TextField::Property::EMBOSS:
598       {
599         const bool update = SetEmbossProperties( impl.mController, value, Text::EffectStyle::DEFAULT );
600         if( update )
601         {
602           impl.mRenderer.Reset();
603         }
604         break;
605       }
606       case Toolkit::TextField::Property::INPUT_EMBOSS:
607       {
608         const bool update = SetEmbossProperties( impl.mController, value, Text::EffectStyle::INPUT );
609         if( update )
610         {
611           impl.mRenderer.Reset();
612         }
613         break;
614       }
615       case Toolkit::TextField::Property::OUTLINE:
616       {
617         const bool update = SetOutlineProperties( impl.mController, value, Text::EffectStyle::DEFAULT );
618         if( update )
619         {
620           impl.mRenderer.Reset();
621         }
622         break;
623       }
624       case Toolkit::TextField::Property::INPUT_OUTLINE:
625       {
626         const bool update = SetOutlineProperties( impl.mController, value, Text::EffectStyle::INPUT );
627         if( update )
628         {
629           impl.mRenderer.Reset();
630         }
631         break;
632       }
633       case Toolkit::TextField::Property::HIDDEN_INPUT_SETTINGS:
634       {
635         const Property::Map* map = value.GetMap();
636         if (map)
637         {
638           impl.mController->SetHiddenInputOption(*map);
639         }
640         break;
641       }
642       case Toolkit::TextField::Property::PIXEL_SIZE:
643       {
644         const float pixelSize = value.Get< float >();
645         DALI_LOG_INFO( gLogFilter, Debug::General, "TextField %p PIXEL_SIZE %f\n", impl.mController.Get(), pixelSize );
646
647         if( !Equals( impl.mController->GetDefaultFontSize( Text::Controller::PIXEL_SIZE ), pixelSize ) )
648         {
649           impl.mController->SetDefaultFontSize( pixelSize, Text::Controller::PIXEL_SIZE );
650         }
651         break;
652       }
653       case Toolkit::TextField::Property::ENABLE_SELECTION:
654       {
655         const bool enableSelection = value.Get< bool >();
656         DALI_LOG_INFO( gLogFilter, Debug::General, "TextField %p ENABLE_SELECTION %d\n", impl.mController.Get(), enableSelection );
657         impl.mController->SetSelectionEnabled( enableSelection );
658         break;
659       }
660       case Toolkit::TextField::Property::PLACEHOLDER:
661       {
662         const Property::Map* map = value.GetMap();
663         if( map )
664         {
665           impl.mController->SetPlaceholderProperty( *map );
666         }
667         break;
668       }
669       case Toolkit::TextField::Property::ELLIPSIS:
670       {
671         const bool ellipsis = value.Get<bool>();
672         DALI_LOG_INFO( gLogFilter, Debug::General, "TextField %p ELLIPSIS %d\n", impl.mController.Get(), ellipsis );
673
674         impl.mController->SetTextElideEnabled( ellipsis );
675         break;
676       }
677       case Toolkit::DevelTextField::Property::ENABLE_SHIFT_SELECTION:
678       {
679         const bool shiftSelection = value.Get<bool>();
680         DALI_LOG_INFO( gLogFilter, Debug::General, "TextField %p ENABLE_SHIFT_SELECTION %d\n", impl.mController.Get(), shiftSelection );
681
682         impl.mController->SetShiftSelectionEnabled( shiftSelection );
683         break;
684       }
685       case Toolkit::DevelTextField::Property::ENABLE_GRAB_HANDLE:
686       {
687         const bool grabHandleEnabled = value.Get<bool>();
688         DALI_LOG_INFO( gLogFilter, Debug::General, "TextField %p ENABLE_GRAB_HANDLE %d\n", impl.mController.Get(), grabHandleEnabled );
689
690         impl.mController->SetGrabHandleEnabled( grabHandleEnabled );
691         break;
692       }
693       case Toolkit::DevelTextField::Property::MATCH_SYSTEM_LANGUAGE_DIRECTION:
694       {
695         impl.mController->SetMatchSystemLanguageDirection(value.Get< bool >());
696         break;
697       }
698       case Toolkit::DevelTextField::Property::ENABLE_GRAB_HANDLE_POPUP:
699       {
700         const bool grabHandlePopupEnabled = value.Get<bool>();
701         DALI_LOG_INFO(gLogFilter, Debug::General, "TextField %p ENABLE_GRAB_HANDLE_POPUP %d\n", impl.mController.Get(), grabHandlePopupEnabled);
702
703         impl.mController->SetGrabHandlePopupEnabled(grabHandlePopupEnabled);
704         break;
705       }
706       case Toolkit::DevelTextField::Property::BACKGROUND:
707       {
708         const Vector4 backgroundColor = value.Get< Vector4 >();
709         DALI_LOG_INFO( gLogFilter, Debug::General, "TextField %p BACKGROUND %f,%f,%f,%f\n", impl.mController.Get(), backgroundColor.r, backgroundColor.g, backgroundColor.b, backgroundColor.a );
710
711         impl.mController->SetBackgroundEnabled( true );
712         impl.mController->SetBackgroundColor( backgroundColor );
713         break;
714       }
715       case Toolkit::DevelTextField::Property::SELECTED_TEXT_START:
716       {
717         uint32_t start = static_cast<uint32_t>(value.Get< int >());
718         DALI_LOG_INFO( gLogFilter, Debug::General, "TextField %p SELECTED_TEXT_START %d\n", impl.mController.Get(), start );
719         impl.SetTextSelectionRange( &start, nullptr );
720         break;
721       }
722       case Toolkit::DevelTextField::Property::SELECTED_TEXT_END:
723       {
724         uint32_t end = static_cast<uint32_t>(value.Get< int >());
725         DALI_LOG_INFO( gLogFilter, Debug::General, "TextField %p SELECTED_TEXT_END %d\n", impl.mController.Get(), end );
726         impl.SetTextSelectionRange( nullptr, &end );
727         break;
728       }
729       case Toolkit::DevelTextField::Property::ENABLE_EDITING:
730       {
731         const bool editable = value.Get< bool >();
732         DALI_LOG_INFO( gLogFilter, Debug::General, "TextField %p ENABLE_EDITING %d\n", impl.mController.Get(), editable );
733         impl.SetEditable( editable );
734         break;
735       }
736     } // switch
737   } // textfield
738 }
739
740 Property::Value TextField::GetProperty( BaseObject* object, Property::Index index )
741 {
742   Property::Value value;
743
744   Toolkit::TextField textField = Toolkit::TextField::DownCast( Dali::BaseHandle( object ) );
745
746   if( textField )
747   {
748     TextField& impl( GetImpl( textField ) );
749     DALI_ASSERT_DEBUG( impl.mController && "No text contoller" );
750     DALI_ASSERT_DEBUG( impl.mDecorator && "No text decorator" );
751
752     switch( index )
753     {
754       case Toolkit::DevelTextField::Property::RENDERING_BACKEND:
755       {
756         value = impl.mRenderingBackend;
757         break;
758       }
759       case Toolkit::TextField::Property::TEXT:
760       {
761         std::string text;
762         impl.mController->GetText( text );
763         DALI_LOG_INFO( gLogFilter, Debug::General, "TextField %p returning text: %s\n", impl.mController.Get(), text.c_str() );
764         value = text;
765         break;
766       }
767       case Toolkit::TextField::Property::PLACEHOLDER_TEXT:
768       {
769         std::string text;
770         impl.mController->GetPlaceholderText( Controller::PLACEHOLDER_TYPE_INACTIVE, text );
771         value = text;
772         break;
773       }
774       case Toolkit::TextField::Property::PLACEHOLDER_TEXT_FOCUSED:
775       {
776         std::string text;
777         impl.mController->GetPlaceholderText( Controller::PLACEHOLDER_TYPE_ACTIVE, text );
778         value = text;
779         break;
780       }
781       case Toolkit::TextField::Property::FONT_FAMILY:
782       {
783         value = impl.mController->GetDefaultFontFamily();
784         break;
785       }
786       case Toolkit::TextField::Property::FONT_STYLE:
787       {
788         GetFontStyleProperty( impl.mController, value, Text::FontStyle::DEFAULT );
789         break;
790       }
791       case Toolkit::TextField::Property::POINT_SIZE:
792       {
793         value = impl.mController->GetDefaultFontSize( Text::Controller::POINT_SIZE );
794         break;
795       }
796       case Toolkit::TextField::Property::MAX_LENGTH:
797       {
798         value = impl.mController->GetMaximumNumberOfCharacters();
799         break;
800       }
801       case Toolkit::TextField::Property::EXCEED_POLICY:
802       {
803         value = impl.mExceedPolicy;
804         break;
805       }
806       case Toolkit::TextField::Property::HORIZONTAL_ALIGNMENT:
807       {
808         const char* name = Text::GetHorizontalAlignmentString( impl.mController->GetHorizontalAlignment() );
809
810         if ( name )
811         {
812           value = std::string( name );
813         }
814         break;
815       }
816       case Toolkit::TextField::Property::VERTICAL_ALIGNMENT:
817       {
818         const char* name = Text::GetVerticalAlignmentString( impl.mController->GetVerticalAlignment() );
819
820         if( name )
821         {
822           value = std::string( name );
823         }
824         break;
825       }
826       case Toolkit::TextField::Property::TEXT_COLOR:
827       {
828         value = impl.mController->GetDefaultColor();
829         break;
830       }
831       case Toolkit::TextField::Property::PLACEHOLDER_TEXT_COLOR:
832       {
833         value = impl.mController->GetPlaceholderTextColor();
834         break;
835       }
836       case Toolkit::TextField::Property::PRIMARY_CURSOR_COLOR:
837       {
838         value = impl.mDecorator->GetColor( PRIMARY_CURSOR );
839         break;
840       }
841       case Toolkit::TextField::Property::SECONDARY_CURSOR_COLOR:
842       {
843         value = impl.mDecorator->GetColor( SECONDARY_CURSOR );
844         break;
845       }
846       case Toolkit::TextField::Property::ENABLE_CURSOR_BLINK:
847       {
848         value = impl.mController->GetEnableCursorBlink();
849         break;
850       }
851       case Toolkit::TextField::Property::CURSOR_BLINK_INTERVAL:
852       {
853         value = impl.mDecorator->GetCursorBlinkInterval();
854         break;
855       }
856       case Toolkit::TextField::Property::CURSOR_BLINK_DURATION:
857       {
858         value = impl.mDecorator->GetCursorBlinkDuration();
859         break;
860       }
861       case Toolkit::TextField::Property::CURSOR_WIDTH:
862       {
863         value = impl.mDecorator->GetCursorWidth();
864         break;
865       }
866       case Toolkit::TextField::Property::GRAB_HANDLE_IMAGE:
867       {
868         value = impl.mDecorator->GetHandleImage( GRAB_HANDLE, HANDLE_IMAGE_RELEASED );
869         break;
870       }
871       case Toolkit::TextField::Property::GRAB_HANDLE_PRESSED_IMAGE:
872       {
873         value = impl.mDecorator->GetHandleImage( GRAB_HANDLE, HANDLE_IMAGE_PRESSED );
874         break;
875       }
876       case Toolkit::TextField::Property::SCROLL_THRESHOLD:
877       {
878         value = impl.mDecorator->GetScrollThreshold();
879         break;
880       }
881       case Toolkit::TextField::Property::SCROLL_SPEED:
882       {
883         value = impl.mDecorator->GetScrollSpeed();
884         break;
885       }
886       case Toolkit::TextField::Property::SELECTION_HANDLE_IMAGE_LEFT:
887       {
888         impl.GetHandleImagePropertyValue( value, LEFT_SELECTION_HANDLE, HANDLE_IMAGE_RELEASED );
889         break;
890       }
891       case Toolkit::TextField::Property::SELECTION_HANDLE_IMAGE_RIGHT:
892       {
893         impl.GetHandleImagePropertyValue( value, RIGHT_SELECTION_HANDLE, HANDLE_IMAGE_RELEASED ) ;
894         break;
895       }
896       case Toolkit::TextField::Property::SELECTION_HANDLE_PRESSED_IMAGE_LEFT:
897       {
898         impl.GetHandleImagePropertyValue( value, LEFT_SELECTION_HANDLE, HANDLE_IMAGE_PRESSED );
899         break;
900       }
901       case Toolkit::TextField::Property::SELECTION_HANDLE_PRESSED_IMAGE_RIGHT:
902       {
903         impl.GetHandleImagePropertyValue( value, RIGHT_SELECTION_HANDLE, HANDLE_IMAGE_PRESSED );
904         break;
905       }
906       case Toolkit::TextField::Property::SELECTION_HANDLE_MARKER_IMAGE_LEFT:
907       {
908         impl.GetHandleImagePropertyValue( value, LEFT_SELECTION_HANDLE_MARKER, HANDLE_IMAGE_RELEASED );
909         break;
910       }
911       case Toolkit::TextField::Property::SELECTION_HANDLE_MARKER_IMAGE_RIGHT:
912       {
913         impl.GetHandleImagePropertyValue( value, RIGHT_SELECTION_HANDLE_MARKER, HANDLE_IMAGE_RELEASED );
914         break;
915       }
916       case Toolkit::TextField::Property::SELECTION_HIGHLIGHT_COLOR:
917       {
918         value = impl.mDecorator->GetHighlightColor();
919         break;
920       }
921       case Toolkit::TextField::Property::DECORATION_BOUNDING_BOX:
922       {
923         Rect<int> boundingBox;
924         impl.mDecorator->GetBoundingBox( boundingBox );
925         value = boundingBox;
926         break;
927       }
928       case Toolkit::TextField::Property::INPUT_METHOD_SETTINGS:
929       {
930         Property::Map map;
931         impl.mInputMethodOptions.RetrieveProperty( map );
932         value = map;
933         break;
934       }
935       case Toolkit::TextField::Property::INPUT_COLOR:
936       {
937         value = impl.mController->GetInputColor();
938         break;
939       }
940       case Toolkit::TextField::Property::ENABLE_MARKUP:
941       {
942         value = impl.mController->IsMarkupProcessorEnabled();
943         break;
944       }
945       case Toolkit::TextField::Property::INPUT_FONT_FAMILY:
946       {
947         value = impl.mController->GetInputFontFamily();
948         break;
949       }
950       case Toolkit::TextField::Property::INPUT_FONT_STYLE:
951       {
952         GetFontStyleProperty( impl.mController, value, Text::FontStyle::INPUT );
953         break;
954       }
955       case Toolkit::TextField::Property::INPUT_POINT_SIZE:
956       {
957         value = impl.mController->GetInputFontPointSize();
958         break;
959       }
960       case Toolkit::TextField::Property::UNDERLINE:
961       {
962         GetUnderlineProperties( impl.mController, value, Text::EffectStyle::DEFAULT );
963         break;
964       }
965       case Toolkit::TextField::Property::INPUT_UNDERLINE:
966       {
967         GetUnderlineProperties( impl.mController, value, Text::EffectStyle::INPUT );
968         break;
969       }
970       case Toolkit::TextField::Property::SHADOW:
971       {
972         GetShadowProperties( impl.mController, value, Text::EffectStyle::DEFAULT );
973         break;
974       }
975       case Toolkit::TextField::Property::INPUT_SHADOW:
976       {
977         GetShadowProperties( impl.mController, value, Text::EffectStyle::INPUT );
978         break;
979       }
980       case Toolkit::TextField::Property::EMBOSS:
981       {
982         GetEmbossProperties( impl.mController, value, Text::EffectStyle::DEFAULT );
983         break;
984       }
985       case Toolkit::TextField::Property::INPUT_EMBOSS:
986       {
987         GetEmbossProperties( impl.mController, value, Text::EffectStyle::INPUT );
988         break;
989       }
990       case Toolkit::TextField::Property::OUTLINE:
991       {
992         GetOutlineProperties( impl.mController, value, Text::EffectStyle::DEFAULT );
993         break;
994       }
995       case Toolkit::TextField::Property::INPUT_OUTLINE:
996       {
997         GetOutlineProperties( impl.mController, value, Text::EffectStyle::INPUT );
998         break;
999       }
1000       case Toolkit::TextField::Property::HIDDEN_INPUT_SETTINGS:
1001       {
1002         Property::Map map;
1003         impl.mController->GetHiddenInputOption(map);
1004         value = map;
1005         break;
1006       }
1007       case Toolkit::TextField::Property::PIXEL_SIZE:
1008       {
1009         value = impl.mController->GetDefaultFontSize( Text::Controller::PIXEL_SIZE );
1010         break;
1011       }
1012       case Toolkit::TextField::Property::ENABLE_SELECTION:
1013       {
1014         value = impl.mController->IsSelectionEnabled();
1015         break;
1016       }
1017       case Toolkit::TextField::Property::PLACEHOLDER:
1018       {
1019         Property::Map map;
1020         impl.mController->GetPlaceholderProperty( map );
1021         value = map;
1022         break;
1023       }
1024       case Toolkit::TextField::Property::ELLIPSIS:
1025       {
1026         value = impl.mController->IsTextElideEnabled();
1027         break;
1028       }
1029       case Toolkit::DevelTextField::Property::ENABLE_SHIFT_SELECTION:
1030       {
1031         value = impl.mController->IsShiftSelectionEnabled();
1032         break;
1033       }
1034       case Toolkit::DevelTextField::Property::ENABLE_GRAB_HANDLE:
1035       {
1036         value = impl.mController->IsGrabHandleEnabled();
1037         break;
1038       }
1039       case Toolkit::DevelTextField::Property::MATCH_SYSTEM_LANGUAGE_DIRECTION:
1040       {
1041         value = impl.mController->IsMatchSystemLanguageDirection();
1042         break;
1043       }
1044       case Toolkit::DevelTextField::Property::ENABLE_GRAB_HANDLE_POPUP:
1045       {
1046         value = impl.mController->IsGrabHandlePopupEnabled();
1047         break;
1048       }
1049       case Toolkit::DevelTextField::Property::BACKGROUND:
1050       {
1051         value = impl.mController->GetBackgroundColor();
1052         break;
1053       }
1054       case Toolkit::DevelTextField::Property::SELECTED_TEXT:
1055       {
1056         value = impl.mController->GetSelectedText( );
1057         break;
1058       }
1059       case Toolkit::DevelTextField::Property::SELECTED_TEXT_START:
1060       {
1061         Uint32Pair range = impl.GetTextSelectionRange( );
1062         value = static_cast<int>(range.first);
1063         break;
1064       }
1065       case Toolkit::DevelTextField::Property::SELECTED_TEXT_END:
1066       {
1067         Uint32Pair range = impl.GetTextSelectionRange( );
1068         value = static_cast<int>(range.second);
1069         break;
1070       }
1071       case Toolkit::DevelTextField::Property::ENABLE_EDITING:
1072       {
1073         value = impl.IsEditable();
1074         break;
1075       }
1076     } //switch
1077   }
1078
1079   return value;
1080 }
1081
1082 void TextField::SelectWholeText()
1083 {
1084   if( mController && mController->IsShowingRealText() )
1085   {
1086     mController->SelectWholeText();
1087     SetKeyInputFocus();
1088   }
1089 }
1090
1091 void TextField::SelectNone()
1092 {
1093   if( mController && mController->IsShowingRealText() )
1094   {
1095     mController->SelectNone();
1096   }
1097 }
1098
1099 string TextField::GetSelectedText() const
1100 {
1101   string selectedText = "";
1102   if( mController && mController->IsShowingRealText() )
1103   {
1104     selectedText = mController->GetSelectedText( );
1105   }
1106   return selectedText;
1107 }
1108
1109 void TextField::SetTextSelectionRange(const uint32_t *start, const uint32_t *end)
1110 {
1111   if( mController && mController->IsShowingRealText() )
1112   {
1113     mController->SetTextSelectionRange( start, end );
1114     SetKeyInputFocus();
1115   }
1116 }
1117
1118 Uint32Pair TextField::GetTextSelectionRange() const
1119 {
1120   Uint32Pair range;
1121   if( mController && mController->IsShowingRealText() )
1122   {
1123     range = mController->GetTextSelectionRange();
1124   }
1125   return range;
1126 }
1127
1128
1129 InputMethodContext TextField::GetInputMethodContext()
1130 {
1131   return mInputMethodContext;
1132 }
1133
1134 bool TextField::DoConnectSignal( BaseObject* object, ConnectionTrackerInterface* tracker, const std::string& signalName, FunctorDelegate* functor )
1135 {
1136   Dali::BaseHandle handle( object );
1137
1138   bool connected( true );
1139   Toolkit::TextField field = Toolkit::TextField::DownCast( handle );
1140
1141   if( 0 == strcmp( signalName.c_str(), SIGNAL_TEXT_CHANGED ) )
1142   {
1143     field.TextChangedSignal().Connect( tracker, functor );
1144   }
1145   else if( 0 == strcmp( signalName.c_str(), SIGNAL_MAX_LENGTH_REACHED ) )
1146   {
1147     field.MaxLengthReachedSignal().Connect( tracker, functor );
1148   }
1149   else if( 0 == strcmp( signalName.c_str(), SIGNAL_INPUT_STYLE_CHANGED ) )
1150   {
1151     field.InputStyleChangedSignal().Connect( tracker, functor );
1152   }
1153   else
1154   {
1155     // signalName does not match any signal
1156     connected = false;
1157   }
1158
1159   return connected;
1160 }
1161
1162 Toolkit::TextField::TextChangedSignalType& TextField::TextChangedSignal()
1163 {
1164   return mTextChangedSignal;
1165 }
1166
1167 Toolkit::TextField::MaxLengthReachedSignalType& TextField::MaxLengthReachedSignal()
1168 {
1169   return mMaxLengthReachedSignal;
1170 }
1171
1172 Toolkit::TextField::InputStyleChangedSignalType& TextField::InputStyleChangedSignal()
1173 {
1174   return mInputStyleChangedSignal;
1175 }
1176
1177 void TextField::OnInitialize()
1178 {
1179   Actor self = Self();
1180
1181   mController = Text::Controller::New( this, this ,this);
1182
1183   // When using the vector-based rendering, the size of the GLyphs are different
1184   TextAbstraction::GlyphType glyphType = (DevelText::RENDERING_VECTOR_BASED == mRenderingBackend) ? TextAbstraction::VECTOR_GLYPH : TextAbstraction::BITMAP_GLYPH;
1185   mController->SetGlyphType( glyphType );
1186
1187   mDecorator = Text::Decorator::New( *mController,
1188                                      *mController );
1189
1190   mInputMethodContext = InputMethodContext::New( self );
1191
1192   mController->GetLayoutEngine().SetLayout( Layout::Engine::SINGLE_LINE_BOX );
1193
1194   // Enables the text input.
1195   mController->EnableTextInput( mDecorator, mInputMethodContext );
1196
1197   // Enables the horizontal scrolling after the text input has been enabled.
1198   mController->SetHorizontalScrollEnabled( true );
1199
1200   // Disables the vertical scrolling.
1201   mController->SetVerticalScrollEnabled( false );
1202
1203   // Disable the smooth handle panning.
1204   mController->SetSmoothHandlePanEnabled( false );
1205
1206   mController->SetNoTextDoubleTapAction( Controller::NoTextTap::HIGHLIGHT );
1207   mController->SetNoTextLongPressAction( Controller::NoTextTap::HIGHLIGHT );
1208
1209   // Sets layoutDirection value
1210   Dali::Stage stage = Dali::Stage::GetCurrent();
1211   Dali::LayoutDirection::Type layoutDirection = static_cast<Dali::LayoutDirection::Type>( stage.GetRootLayer().GetProperty( Dali::Actor::Property::LAYOUT_DIRECTION ).Get<int>() );
1212   mController->SetLayoutDirection( layoutDirection );
1213
1214   // Forward input events to controller
1215   EnableGestureDetection( static_cast<GestureType::Value>( GestureType::TAP | GestureType::PAN | GestureType::LONG_PRESS ) );
1216   GetTapGestureDetector().SetMaximumTapsRequired( 2 );
1217
1218   self.TouchedSignal().Connect( this, &TextField::OnTouched );
1219
1220   // Set BoundingBox to stage size if not already set.
1221   Rect<int> boundingBox;
1222   mDecorator->GetBoundingBox( boundingBox );
1223
1224   if( boundingBox.IsEmpty() )
1225   {
1226     Vector2 stageSize = Dali::Stage::GetCurrent().GetSize();
1227     mDecorator->SetBoundingBox( Rect<int>( 0.0f, 0.0f, stageSize.width, stageSize.height ) );
1228   }
1229
1230   // Flip vertically the 'left' selection handle
1231   mDecorator->FlipHandleVertically( LEFT_SELECTION_HANDLE, true );
1232
1233   // Fill-parent area by default
1234   self.SetResizePolicy( ResizePolicy::FILL_TO_PARENT, Dimension::WIDTH );
1235   self.SetResizePolicy( ResizePolicy::FILL_TO_PARENT, Dimension::HEIGHT );
1236   self.OnSceneSignal().Connect( this, &TextField::OnSceneConnect );
1237
1238   DevelControl::SetInputMethodContext( *this, mInputMethodContext );
1239
1240   if( Dali::Toolkit::TextField::EXCEED_POLICY_CLIP == mExceedPolicy )
1241   {
1242     EnableClipping();
1243   }
1244 }
1245
1246 void TextField::OnStyleChange( Toolkit::StyleManager styleManager, StyleChange::Type change )
1247 {
1248   DALI_LOG_INFO( gLogFilter, Debug::Verbose, "TextField::OnStyleChange\n");
1249
1250   switch ( change )
1251   {
1252     case StyleChange::DEFAULT_FONT_CHANGE:
1253     {
1254       DALI_LOG_INFO( gLogFilter, Debug::Verbose, "TextField::OnStyleChange DEFAULT_FONT_CHANGE\n");
1255       const std::string& newFont = GetImpl( styleManager ).GetDefaultFontFamily();
1256       // Property system did not set the font so should update it.
1257       mController->UpdateAfterFontChange( newFont );
1258       RelayoutRequest();
1259       break;
1260     }
1261
1262     case StyleChange::DEFAULT_FONT_SIZE_CHANGE:
1263     {
1264       GetImpl( styleManager ).ApplyThemeStyle( Toolkit::Control( GetOwner() ) );
1265       RelayoutRequest();
1266       break;
1267     }
1268     case StyleChange::THEME_CHANGE:
1269     {
1270       // Nothing to do, let control base class handle this
1271       break;
1272     }
1273   }
1274
1275   // Up call to Control
1276   Control::OnStyleChange( styleManager, change );
1277 }
1278
1279 Vector3 TextField::GetNaturalSize()
1280 {
1281   Extents padding;
1282   padding = Self().GetProperty<Extents>( Toolkit::Control::Property::PADDING );
1283
1284   Vector3 naturalSize = mController->GetNaturalSize();
1285   naturalSize.width += ( padding.start + padding.end );
1286   naturalSize.height += ( padding.top + padding.bottom );
1287
1288   return naturalSize;
1289 }
1290
1291 float TextField::GetHeightForWidth( float width )
1292 {
1293   Extents padding;
1294   padding = Self().GetProperty<Extents>( Toolkit::Control::Property::PADDING );
1295   return mController->GetHeightForWidth( width ) + padding.top + padding.bottom;
1296 }
1297
1298 void TextField::OnRelayout( const Vector2& size, RelayoutContainer& container )
1299 {
1300   DALI_LOG_INFO( gLogFilter, Debug::Verbose, "TextField OnRelayout\n");
1301
1302   Actor self = Self();
1303
1304   Extents padding;
1305   padding = self.GetProperty<Extents>( Toolkit::Control::Property::PADDING );
1306
1307   Vector2 contentSize( size.x - ( padding.start + padding.end ), size.y - ( padding.top + padding.bottom ) );
1308
1309   // Support Right-To-Left of padding
1310   Dali::LayoutDirection::Type layoutDirection;
1311   if( mController->IsMatchSystemLanguageDirection() )
1312   {
1313     layoutDirection = static_cast<Dali::LayoutDirection::Type>( DevelWindow::Get( self ).GetRootLayer().GetProperty( Dali::Actor::Property::LAYOUT_DIRECTION ).Get<int>() );
1314   }
1315   else
1316   {
1317     layoutDirection = static_cast<Dali::LayoutDirection::Type>( self.GetProperty( Dali::Actor::Property::LAYOUT_DIRECTION ).Get<int>() );
1318   }
1319   if( Dali::LayoutDirection::RIGHT_TO_LEFT == layoutDirection )
1320   {
1321     std::swap( padding.start, padding.end );
1322   }
1323
1324   if( mStencil )
1325   {
1326     mStencil.SetProperty( Actor::Property::POSITION, Vector2( padding.start, padding.top ));
1327   }
1328   if( mActiveLayer )
1329   {
1330     mActiveLayer.SetProperty( Actor::Property::POSITION, Vector2( padding.start, padding.top ));
1331   }
1332
1333   const Text::Controller::UpdateTextType updateTextType = mController->Relayout( contentSize, layoutDirection );
1334
1335   if( ( Text::Controller::NONE_UPDATED != updateTextType ) ||
1336       !mRenderer )
1337   {
1338     DALI_LOG_INFO( gLogFilter, Debug::Verbose, "TextField::OnRelayout %p Displaying new contents\n", mController.Get() );
1339
1340     if( mDecorator &&
1341         ( Text::Controller::NONE_UPDATED != ( Text::Controller::DECORATOR_UPDATED & updateTextType ) ) )
1342     {
1343       mDecorator->Relayout( size );
1344     }
1345
1346     if( !mRenderer )
1347     {
1348       mRenderer = Backend::Get().NewRenderer( mRenderingBackend );
1349     }
1350
1351     RenderText( updateTextType );
1352
1353   }
1354
1355   // The text-field emits signals when the input style changes. These changes of style are
1356   // detected during the relayout process (size negotiation), i.e after the cursor has been moved. Signals
1357   // can't be emitted during the size negotiation as the callbacks may update the UI.
1358   // The text-field adds an idle callback to the adaptor to emit the signals after the size negotiation.
1359   if( !mController->IsInputStyleChangedSignalsQueueEmpty() )
1360   {
1361     if( Adaptor::IsAvailable() )
1362     {
1363       Adaptor& adaptor = Adaptor::Get();
1364
1365       if( NULL == mIdleCallback )
1366       {
1367         // @note: The callback manager takes the ownership of the callback object.
1368         mIdleCallback = MakeCallback( this, &TextField::OnIdleSignal );
1369         adaptor.AddIdle( mIdleCallback, false );
1370       }
1371     }
1372   }
1373 }
1374
1375 Text::ControllerPtr TextField::getController() { return mController; }
1376
1377 void TextField::RenderText( Text::Controller::UpdateTextType updateTextType )
1378 {
1379   Actor renderableActor;
1380
1381   if( Text::Controller::NONE_UPDATED != ( Text::Controller::MODEL_UPDATED & updateTextType ) )
1382   {
1383     if( mRenderer )
1384     {
1385       Dali::Toolkit::TextField handle = Dali::Toolkit::TextField( GetOwner() );
1386
1387       renderableActor = mRenderer->Render( mController->GetView(),
1388                                            handle,
1389                                            Property::INVALID_INDEX, // Animatable property not supported
1390                                            mAlignmentOffset,
1391                                            DepthIndex::CONTENT );
1392     }
1393
1394     if( renderableActor != mRenderableActor )
1395     {
1396       UnparentAndReset( mBackgroundActor );
1397       UnparentAndReset( mRenderableActor );
1398       mRenderableActor = renderableActor;
1399
1400       if ( mRenderableActor )
1401       {
1402         mBackgroundActor = mController->CreateBackgroundActor();
1403       }
1404     }
1405   }
1406
1407   if( mRenderableActor )
1408   {
1409     const Vector2& scrollOffset = mController->GetTextModel()->GetScrollPosition();
1410
1411     float renderableActorPositionX, renderableActorPositionY;
1412
1413     if( mStencil )
1414     {
1415       renderableActorPositionX = scrollOffset.x + mAlignmentOffset;
1416       renderableActorPositionY = scrollOffset.y;
1417     }
1418     else
1419     {
1420       Extents padding;
1421       padding = Self().GetProperty<Extents>( Toolkit::Control::Property::PADDING );
1422
1423       // Support Right-To-Left of padding
1424       Dali::LayoutDirection::Type layoutDirection = static_cast<Dali::LayoutDirection::Type>( Self().GetProperty( Dali::Actor::Property::LAYOUT_DIRECTION ).Get<int>() );
1425       if( Dali::LayoutDirection::RIGHT_TO_LEFT == layoutDirection )
1426       {
1427         std::swap( padding.start, padding.end );
1428       }
1429
1430       renderableActorPositionX = scrollOffset.x + mAlignmentOffset + padding.start;
1431       renderableActorPositionY = scrollOffset.y + padding.top;
1432     }
1433
1434     mRenderableActor.SetProperty( Actor::Property::POSITION, Vector2( renderableActorPositionX, renderableActorPositionY ));
1435
1436     // Make sure the actors are parented correctly with/without clipping
1437     Actor self = mStencil ? mStencil : Self();
1438
1439     Actor highlightActor;
1440
1441     for( std::vector<Actor>::iterator it = mClippingDecorationActors.begin(),
1442            endIt = mClippingDecorationActors.end();
1443          it != endIt;
1444          ++it )
1445     {
1446       self.Add( *it );
1447       it->LowerToBottom();
1448
1449       if ( it->GetProperty< std::string >( Dali::Actor::Property::NAME ) == "HighlightActor" )
1450       {
1451         highlightActor = *it;
1452       }
1453     }
1454     mClippingDecorationActors.clear();
1455
1456     self.Add( mRenderableActor );
1457
1458     if ( mBackgroundActor )
1459     {
1460       if ( mDecorator && mDecorator->IsHighlightVisible() )
1461       {
1462         self.Add( mBackgroundActor );
1463         mBackgroundActor.SetProperty( Actor::Property::POSITION, Vector2( renderableActorPositionX, renderableActorPositionY) ); // In text field's coords.
1464         mBackgroundActor.LowerBelow( highlightActor );
1465       }
1466       else
1467       {
1468         mRenderableActor.Add( mBackgroundActor );
1469         mBackgroundActor.SetProperty( Actor::Property::POSITION, Vector2( 0.0f, 0.0f ) ); // In renderable actor's coords.
1470         mBackgroundActor.LowerToBottom();
1471       }
1472     }
1473   }
1474 }
1475
1476 void TextField::OnKeyInputFocusGained()
1477 {
1478   DALI_LOG_INFO( gLogFilter, Debug::Verbose, "TextField::OnKeyInputFocusGained %p\n", mController.Get() );
1479   if ( mInputMethodContext && IsEditable() )
1480   {
1481     mInputMethodContext.ApplyOptions( mInputMethodOptions );
1482
1483     mInputMethodContext.StatusChangedSignal().Connect( this, &TextField::KeyboardStatusChanged );
1484
1485     mInputMethodContext.EventReceivedSignal().Connect( this, &TextField::OnInputMethodContextEvent );
1486
1487     // Notify that the text editing start.
1488     mInputMethodContext.Activate();
1489
1490     // When window gain lost focus, the inputMethodContext is deactivated. Thus when window gain focus again, the inputMethodContext must be activated.
1491     mInputMethodContext.SetRestoreAfterFocusLost( true );
1492   }
1493   ClipboardEventNotifier notifier( ClipboardEventNotifier::Get() );
1494
1495   if ( notifier )
1496   {
1497     notifier.ContentSelectedSignal().Connect( this, &TextField::OnClipboardTextSelected );
1498   }
1499
1500   mController->KeyboardFocusGainEvent(); // Called in the case of no virtual keyboard to trigger this event
1501
1502   EmitKeyInputFocusSignal( true ); // Calls back into the Control hence done last.
1503 }
1504
1505 void TextField::OnKeyInputFocusLost()
1506 {
1507   DALI_LOG_INFO( gLogFilter, Debug::Verbose, "TextField:OnKeyInputFocusLost %p\n", mController.Get() );
1508   if ( mInputMethodContext )
1509   {
1510     mInputMethodContext.StatusChangedSignal().Disconnect( this, &TextField::KeyboardStatusChanged );
1511     // The text editing is finished. Therefore the inputMethodContext don't have restore activation.
1512     mInputMethodContext.SetRestoreAfterFocusLost( false );
1513
1514     // Notify that the text editing finish.
1515     mInputMethodContext.Deactivate();
1516
1517     mInputMethodContext.EventReceivedSignal().Disconnect( this, &TextField::OnInputMethodContextEvent );
1518   }
1519   ClipboardEventNotifier notifier( ClipboardEventNotifier::Get() );
1520
1521   if ( notifier )
1522   {
1523     notifier.ContentSelectedSignal().Disconnect( this, &TextField::OnClipboardTextSelected );
1524   }
1525
1526   mController->KeyboardFocusLostEvent();
1527
1528   EmitKeyInputFocusSignal( false ); // Calls back into the Control hence done last.
1529 }
1530
1531 void TextField::OnTap( const TapGesture& gesture )
1532 {
1533   DALI_LOG_INFO( gLogFilter, Debug::Verbose, "TextField::OnTap %p\n", mController.Get() );
1534   if ( mInputMethodContext && IsEditable() )
1535   {
1536     mInputMethodContext.Activate();
1537   }
1538   // Deliver the tap before the focus event to controller; this allows us to detect when focus is gained due to tap-gestures
1539   Extents padding;
1540   padding = Self().GetProperty<Extents>( Toolkit::Control::Property::PADDING );
1541   const Vector2& localPoint = gesture.GetLocalPoint();
1542   mController->TapEvent( gesture.GetNumberOfTaps(), localPoint.x - padding.start, localPoint.y - padding.top );
1543
1544   SetKeyInputFocus();
1545 }
1546
1547 void TextField::OnPan( const PanGesture& gesture )
1548 {
1549   mController->PanEvent( gesture.GetState(), gesture.GetDisplacement() );
1550 }
1551
1552 void TextField::OnLongPress( const LongPressGesture& gesture )
1553 {
1554   if ( mInputMethodContext && IsEditable() )
1555   {
1556     mInputMethodContext.Activate();
1557   }
1558   Extents padding;
1559   padding = Self().GetProperty<Extents>( Toolkit::Control::Property::PADDING );
1560   const Vector2& localPoint = gesture.GetLocalPoint();
1561   mController->LongPressEvent( gesture.GetState(), localPoint.x - padding.start, localPoint.y - padding.top );
1562
1563   SetKeyInputFocus();
1564 }
1565
1566 bool TextField::OnKeyEvent( const KeyEvent& event )
1567 {
1568   DALI_LOG_INFO( gLogFilter, Debug::Verbose, "TextField::OnKeyEvent %p keyCode %d\n", mController.Get(), event.GetKeyCode() );
1569
1570   if( Dali::DALI_KEY_ESCAPE == event.GetKeyCode() && mController->ShouldClearFocusOnEscape() )
1571   {
1572     // Make sure ClearKeyInputFocus when only key is up
1573     if( event.GetState() == KeyEvent::UP )
1574     {
1575       ClearKeyInputFocus();
1576     }
1577
1578     return true;
1579   }
1580   else if( Dali::DevelKey::DALI_KEY_RETURN == event.GetKeyCode() )
1581   {
1582     // Do nothing when enter is comming.
1583     return false;
1584   }
1585
1586   return mController->KeyEvent( event );
1587 }
1588
1589 void TextField::RequestTextRelayout()
1590 {
1591   RelayoutRequest();
1592 }
1593
1594 bool TextField::IsEditable() const
1595 {
1596   return mController->IsEditable();
1597 }
1598
1599 void TextField::SetEditable( bool editable )
1600 {
1601   mController->SetEditable(editable);
1602   if ( mInputMethodContext && !editable )
1603   {
1604     mInputMethodContext.Deactivate();
1605   }
1606 }
1607
1608 void TextField::TextInserted( unsigned int position, unsigned int length, const std::string &content )
1609 {
1610   if( Accessibility::IsUp() )
1611   {
1612     Control::Impl::GetAccessibilityObject( Self() )->EmitTextInserted( position, length, content );
1613   }
1614 }
1615
1616 void TextField::TextDeleted( unsigned int position, unsigned int length, const std::string &content )
1617 {
1618   if( Accessibility::IsUp() )
1619   {
1620     Control::Impl::GetAccessibilityObject( Self() )->EmitTextDeleted( position, length, content );
1621   }
1622 }
1623
1624 void TextField::CaretMoved( unsigned int position )
1625 {
1626   if( Accessibility::IsUp() )
1627   {
1628     Control::Impl::GetAccessibilityObject( Self() )->EmitTextCaretMoved( position );
1629   }
1630 }
1631
1632 void TextField::TextChanged()
1633 {
1634   Dali::Toolkit::TextField handle( GetOwner() );
1635   mTextChangedSignal.Emit( handle );
1636 }
1637
1638 void TextField::MaxLengthReached()
1639 {
1640   Dali::Toolkit::TextField handle( GetOwner() );
1641   mMaxLengthReachedSignal.Emit( handle );
1642 }
1643
1644 void TextField::InputStyleChanged( Text::InputStyle::Mask inputStyleMask )
1645 {
1646   Dali::Toolkit::TextField handle( GetOwner() );
1647
1648   Toolkit::TextField::InputStyle::Mask fieldInputStyleMask = Toolkit::TextField::InputStyle::NONE;
1649
1650   if( InputStyle::NONE != static_cast<InputStyle::Mask>( inputStyleMask & InputStyle::INPUT_COLOR ) )
1651   {
1652     fieldInputStyleMask = static_cast<Toolkit::TextField::InputStyle::Mask>( fieldInputStyleMask | Toolkit::TextField::InputStyle::COLOR );
1653   }
1654   if( InputStyle::NONE != static_cast<InputStyle::Mask>( inputStyleMask & InputStyle::INPUT_FONT_FAMILY ) )
1655   {
1656     fieldInputStyleMask = static_cast<Toolkit::TextField::InputStyle::Mask>( fieldInputStyleMask | Toolkit::TextField::InputStyle::FONT_FAMILY );
1657   }
1658   if( InputStyle::NONE != static_cast<InputStyle::Mask>( inputStyleMask & InputStyle::INPUT_POINT_SIZE ) )
1659   {
1660     fieldInputStyleMask = static_cast<Toolkit::TextField::InputStyle::Mask>( fieldInputStyleMask | Toolkit::TextField::InputStyle::POINT_SIZE );
1661   }
1662   if( InputStyle::NONE != static_cast<InputStyle::Mask>( inputStyleMask & InputStyle::INPUT_FONT_WEIGHT ) )
1663   {
1664     fieldInputStyleMask = static_cast<Toolkit::TextField::InputStyle::Mask>( fieldInputStyleMask | Toolkit::TextField::InputStyle::FONT_STYLE );
1665   }
1666   if( InputStyle::NONE != static_cast<InputStyle::Mask>( inputStyleMask & InputStyle::INPUT_FONT_WIDTH ) )
1667   {
1668     fieldInputStyleMask = static_cast<Toolkit::TextField::InputStyle::Mask>( fieldInputStyleMask | Toolkit::TextField::InputStyle::FONT_STYLE );
1669   }
1670   if( InputStyle::NONE != static_cast<InputStyle::Mask>( inputStyleMask & InputStyle::INPUT_FONT_SLANT ) )
1671   {
1672     fieldInputStyleMask = static_cast<Toolkit::TextField::InputStyle::Mask>( fieldInputStyleMask | Toolkit::TextField::InputStyle::FONT_STYLE );
1673   }
1674   if( InputStyle::NONE != static_cast<InputStyle::Mask>( inputStyleMask & InputStyle::INPUT_UNDERLINE ) )
1675   {
1676     fieldInputStyleMask = static_cast<Toolkit::TextField::InputStyle::Mask>( fieldInputStyleMask | Toolkit::TextField::InputStyle::UNDERLINE );
1677   }
1678   if( InputStyle::NONE != static_cast<InputStyle::Mask>( inputStyleMask & InputStyle::INPUT_SHADOW ) )
1679   {
1680     fieldInputStyleMask = static_cast<Toolkit::TextField::InputStyle::Mask>( fieldInputStyleMask | Toolkit::TextField::InputStyle::SHADOW );
1681   }
1682   if( InputStyle::NONE != static_cast<InputStyle::Mask>( inputStyleMask & InputStyle::INPUT_EMBOSS ) )
1683   {
1684     fieldInputStyleMask = static_cast<Toolkit::TextField::InputStyle::Mask>( fieldInputStyleMask | Toolkit::TextField::InputStyle::EMBOSS );
1685   }
1686   if( InputStyle::NONE != static_cast<InputStyle::Mask>( inputStyleMask & InputStyle::INPUT_OUTLINE ) )
1687   {
1688     fieldInputStyleMask = static_cast<Toolkit::TextField::InputStyle::Mask>( fieldInputStyleMask | Toolkit::TextField::InputStyle::OUTLINE );
1689   }
1690
1691   mInputStyleChangedSignal.Emit( handle, fieldInputStyleMask );
1692 }
1693
1694 void TextField::AddDecoration( Actor& actor, bool needsClipping )
1695 {
1696   if( actor )
1697   {
1698     if( needsClipping )
1699     {
1700       mClippingDecorationActors.push_back( actor );
1701     }
1702     else
1703     {
1704       actor.SetProperty( Actor::Property::PARENT_ORIGIN, ParentOrigin::TOP_LEFT );
1705       actor.SetProperty( Actor::Property::ANCHOR_POINT, AnchorPoint::TOP_LEFT );
1706       Self().Add( actor );
1707       mActiveLayer = actor;
1708     }
1709   }
1710 }
1711
1712 void TextField::OnSceneConnect( Dali::Actor actor )
1713 {
1714   if ( mHasBeenStaged )
1715   {
1716     RenderText( static_cast<Text::Controller::UpdateTextType>( Text::Controller::MODEL_UPDATED | Text::Controller::DECORATOR_UPDATED ) );
1717   }
1718   else
1719   {
1720     mHasBeenStaged = true;
1721   }
1722 }
1723
1724 InputMethodContext::CallbackData TextField::OnInputMethodContextEvent( Dali::InputMethodContext& inputMethodContext, const InputMethodContext::EventData& inputMethodContextEvent )
1725 {
1726   DALI_LOG_INFO( gLogFilter, Debug::Verbose, "TextField::OnInputMethodContextEvent %p eventName %d\n", mController.Get(), inputMethodContextEvent.eventName );
1727   return mController->OnInputMethodContextEvent( inputMethodContext, inputMethodContextEvent );
1728 }
1729
1730 void TextField::GetHandleImagePropertyValue(  Property::Value& value, Text::HandleType handleType, Text::HandleImageType handleImageType )
1731 {
1732   if( mDecorator )
1733   {
1734     Property::Map map;
1735     map[ IMAGE_MAP_FILENAME_STRING ] = mDecorator->GetHandleImage( handleType, handleImageType );
1736     value = map;
1737   }
1738 }
1739
1740 void TextField::EnableClipping()
1741 {
1742   if( !mStencil )
1743   {
1744     // Creates an extra control to be used as stencil buffer.
1745     mStencil = Control::New();
1746     mStencil.SetProperty( Actor::Property::ANCHOR_POINT, AnchorPoint::TOP_LEFT );
1747     mStencil.SetProperty( Actor::Property::PARENT_ORIGIN, ParentOrigin::TOP_LEFT );
1748
1749     // Creates a background visual. Even if the color is transparent it updates the stencil.
1750     mStencil.SetProperty( Toolkit::Control::Property::BACKGROUND,
1751                           Property::Map().Add( Toolkit::Visual::Property::TYPE, Toolkit::Visual::COLOR ).
1752                           Add( ColorVisual::Property::MIX_COLOR, Color::TRANSPARENT ) );
1753
1754     // Enable the clipping property.
1755     mStencil.SetProperty( Actor::Property::CLIPPING_MODE, ClippingMode::CLIP_TO_BOUNDING_BOX );
1756     mStencil.SetResizePolicy( ResizePolicy::FILL_TO_PARENT, Dimension::ALL_DIMENSIONS );
1757
1758     Self().Add( mStencil );
1759   }
1760 }
1761
1762 void TextField::OnClipboardTextSelected( ClipboardEventNotifier& clipboard )
1763 {
1764   mController->PasteClipboardItemEvent();
1765 }
1766
1767 void TextField::KeyboardStatusChanged(bool keyboardShown)
1768 {
1769   DALI_LOG_INFO( gLogFilter, Debug::Verbose, "TextField::KeyboardStatusChanged %p keyboardShown %d\n", mController.Get(), keyboardShown );
1770
1771   // Just hide the grab handle when keyboard is hidden.
1772   if (!keyboardShown )
1773   {
1774     mController->KeyboardFocusLostEvent();
1775   }
1776   else
1777   {
1778     mController->KeyboardFocusGainEvent(); // Initially called by OnKeyInputFocusGained
1779   }
1780 }
1781
1782 void TextField::OnSceneConnection( int depth )
1783 {
1784   // Sets the depth to the visuals inside the text's decorator.
1785   mDecorator->SetTextDepth( depth );
1786
1787   // The depth of the text renderer is set in the RenderText() called from OnRelayout().
1788
1789   // Call the Control::OnSceneConnection() to set the depth of the background.
1790   Control::OnSceneConnection( depth );
1791 }
1792
1793 bool TextField::OnTouched( Actor actor, const TouchEvent& touch )
1794 {
1795   return false;
1796 }
1797
1798 void TextField::OnIdleSignal()
1799 {
1800   // Emits the change of input style signals.
1801   mController->ProcessInputStyleChangedSignals();
1802
1803   // Set the pointer to null as the callback manager deletes the callback after execute it.
1804   mIdleCallback = NULL;
1805 }
1806
1807 TextField::TextField()
1808 : Control( ControlBehaviour( CONTROL_BEHAVIOUR_DEFAULT ) ),
1809   mIdleCallback( NULL ),
1810   mAlignmentOffset( 0.f ),
1811   mRenderingBackend( DEFAULT_RENDERING_BACKEND ),
1812   mExceedPolicy( Dali::Toolkit::TextField::EXCEED_POLICY_CLIP ),
1813   mHasBeenStaged( false )
1814 {
1815   DevelControl::SetAccessibilityConstructor( Self(), []( Dali::Actor actor ) {
1816     return std::unique_ptr< Dali::Accessibility::Accessible >(
1817         new AccessibleImpl( actor, Dali::Accessibility::Role::ENTRY ) );
1818   } );
1819 }
1820
1821 TextField::~TextField()
1822 {
1823   UnparentAndReset( mStencil );
1824
1825   if( ( NULL != mIdleCallback ) && Adaptor::IsAvailable() )
1826   {
1827     Adaptor::Get().RemoveIdle( mIdleCallback );
1828   }
1829 }
1830
1831 std::string TextField::AccessibleImpl::GetName()
1832 {
1833   auto slf = Toolkit::TextField::DownCast( self );
1834   return slf.GetProperty( Toolkit::TextField::Property::TEXT ).Get< std::string >();
1835 }
1836
1837 std::string TextField::AccessibleImpl::GetText( size_t startOffset,
1838                                                 size_t endOffset )
1839 {
1840   if( endOffset <= startOffset )
1841     return {};
1842
1843   auto slf = Toolkit::TextField::DownCast( self );
1844   auto txt =
1845       slf.GetProperty( Toolkit::TextField::Property::TEXT ).Get< std::string >();
1846
1847   if( startOffset > txt.size() || endOffset > txt.size() )
1848     return {};
1849
1850   return txt.substr( startOffset, endOffset - startOffset );
1851 }
1852
1853 size_t TextField::AccessibleImpl::GetCharacterCount()
1854 {
1855   auto slf = Toolkit::TextField::DownCast( self );
1856   auto txt =
1857       slf.GetProperty( Toolkit::TextField::Property::TEXT ).Get< std::string >();
1858
1859   return txt.size();
1860 }
1861
1862 size_t TextField::AccessibleImpl::GetCaretOffset()
1863 {
1864   auto slf = Toolkit::TextField::DownCast( self );
1865   return Dali::Toolkit::GetImpl( slf ).getController()->GetCursorPosition();
1866 }
1867
1868 bool TextField::AccessibleImpl::SetCaretOffset(size_t offset)
1869 {
1870   auto slf = Toolkit::TextField::DownCast( self );
1871   auto txt = slf.GetProperty( Toolkit::TextField::Property::TEXT ).Get< std::string >();
1872   if (offset > txt.size())
1873     return false;
1874
1875   auto& slfImpl = Dali::Toolkit::GetImpl( slf );
1876   slfImpl.getController()->ResetCursorPosition( offset );
1877   slfImpl.RequestTextRelayout();
1878   return true;
1879 }
1880
1881 Dali::Accessibility::Range TextField::AccessibleImpl::GetTextAtOffset(
1882     size_t offset, Dali::Accessibility::TextBoundary boundary )
1883 {
1884   auto slf = Toolkit::TextField::DownCast( self );
1885   auto txt = slf.GetProperty( Toolkit::TextField::Property::TEXT ).Get< std::string >();
1886   auto txt_size = txt.size();
1887
1888   auto range = Dali::Accessibility::Range{};
1889
1890   switch(boundary)
1891   {
1892     case Dali::Accessibility::TextBoundary::CHARACTER:
1893       {
1894         if (offset < txt_size)
1895         {
1896           range.content = txt[offset];
1897           range.startOffset = offset;
1898           range.endOffset = offset + 1;
1899         }
1900       }
1901       break;
1902     case Dali::Accessibility::TextBoundary::WORD:
1903     case Dali::Accessibility::TextBoundary::LINE:
1904       {
1905         auto txt_c_string = txt.c_str();
1906         auto breaks = std::vector< char >( txt_size, 0 );
1907         if(boundary == Dali::Accessibility::TextBoundary::WORD)
1908           Accessibility::Accessible::FindWordSeparationsUtf8((const utf8_t *) txt_c_string, txt_size, "", breaks.data());
1909         else
1910           Accessibility::Accessible::FindLineSeparationsUtf8((const utf8_t *) txt_c_string, txt_size, "", breaks.data());
1911         auto index = 0u;
1912         auto counter = 0u;
1913         while( index < txt_size && counter <= offset )
1914         {
1915           auto start = index;
1916           if(breaks[index])
1917           {
1918             while(breaks[index])
1919               index++;
1920             counter++;
1921           }
1922           else
1923           {
1924             if (boundary == Dali::Accessibility::TextBoundary::WORD)
1925               index++;
1926             if (boundary == Dali::Accessibility::TextBoundary::LINE)
1927               counter++;
1928           }
1929           if ((counter - 1) == offset)
1930           {
1931             range.content = txt.substr(start, index - start + 1);
1932             range.startOffset = start;
1933             range.endOffset = index + 1;
1934           }
1935           if (boundary == Dali::Accessibility::TextBoundary::LINE)
1936               index++;
1937         }
1938       }
1939       break;
1940     case Dali::Accessibility::TextBoundary::SENTENCE:
1941       {
1942         /* not supported by efl */
1943       }
1944       break;
1945     case Dali::Accessibility::TextBoundary::PARAGRAPH:
1946       {
1947         /* Paragraph is not supported by libunibreak library */
1948       }
1949       break;
1950     default:
1951       break;
1952   }
1953
1954   return range;
1955 }
1956
1957 Dali::Accessibility::Range
1958 TextField::AccessibleImpl::GetSelection( size_t selectionNum )
1959 {
1960   // Since DALi supports only one selection indexes higher than 0 are ignored
1961   if( selectionNum > 0 )
1962     return {};
1963
1964   auto slf = Toolkit::TextField::DownCast( self );
1965   auto ctrl = Dali::Toolkit::GetImpl( slf ).getController();
1966   std::string ret;
1967   ctrl->RetrieveSelection( ret );
1968   auto r = ctrl->GetSelectionIndexes();
1969
1970   return { static_cast<size_t>(r.first), static_cast<size_t>(r.second), ret };
1971 }
1972
1973 bool TextField::AccessibleImpl::RemoveSelection( size_t selectionNum )
1974 {
1975   // Since DALi supports only one selection indexes higher than 0 are ignored
1976   if( selectionNum > 0 )
1977     return false;
1978
1979   auto slf = Toolkit::TextField::DownCast( self );
1980   Dali::Toolkit::GetImpl( slf ).getController()->SetSelection( 0, 0 );
1981   return true;
1982 }
1983
1984 bool TextField::AccessibleImpl::SetSelection( size_t selectionNum,
1985                                               size_t startOffset,
1986                                               size_t endOffset )
1987 {
1988   // Since DALi supports only one selection indexes higher than 0 are ignored
1989   if( selectionNum > 0 )
1990     return false;
1991
1992   auto slf = Toolkit::TextField::DownCast( self );
1993   Dali::Toolkit::GetImpl( slf ).getController()->SetSelection( startOffset,
1994                                                                endOffset );
1995   return true;
1996 }
1997
1998 bool TextField::AccessibleImpl::CopyText( size_t startPosition,
1999                                            size_t endPosition )
2000 {
2001   if( endPosition <= startPosition )
2002     return false;
2003
2004   auto slf = Toolkit::TextField::DownCast( self );
2005   auto txt = slf.GetProperty( Toolkit::TextField::Property::TEXT ).Get<std::string>();
2006   Dali::Toolkit::GetImpl( slf ).getController()->CopyStringToClipboard( txt.substr(startPosition, endPosition - startPosition) );
2007
2008   return true;
2009 }
2010
2011 bool TextField::AccessibleImpl::CutText( size_t startPosition,
2012                                           size_t endPosition )
2013 {
2014   if( endPosition <= startPosition )
2015     return false;
2016
2017   auto slf = Toolkit::TextField::DownCast( self );
2018   auto txt = slf.GetProperty( Toolkit::TextField::Property::TEXT ).Get<std::string>();
2019   Dali::Toolkit::GetImpl( slf ).getController()->CopyStringToClipboard( txt.substr(startPosition, endPosition - startPosition) );
2020
2021   slf.SetProperty( Toolkit::TextField::Property::TEXT,
2022                    txt.substr( 0, startPosition ) + txt.substr( endPosition - startPosition, txt.size()));
2023
2024   return true;
2025 }
2026
2027 Dali::Accessibility::States TextField::AccessibleImpl::CalculateStates()
2028 {
2029   auto states = Control::Impl::AccessibleImpl::CalculateStates();
2030   using namespace Dali::Accessibility;
2031   states[State::EDITABLE] = true;
2032   return states;
2033 }
2034
2035 } // namespace Internal
2036
2037 } // namespace Toolkit
2038
2039 } // namespace Dali