[4.0] Add ENABLE_SHIFT_SELECTION property
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / internal / text / text-controller.cpp
1 /*
2  * Copyright (c) 2017 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/text/text-controller.h>
20
21 // EXTERNAL INCLUDES
22 #include <limits>
23 #include <memory.h>
24 #include <dali/public-api/adaptor-framework/key.h>
25 #include <dali/integration-api/debug.h>
26 #include <dali/devel-api/adaptor-framework/clipboard-event-notifier.h>
27 #include <dali/devel-api/text-abstraction/font-client.h>
28 #include <dali/devel-api/adaptor-framework/key-devel.h>
29
30 // INTERNAL INCLUDES
31 #include <dali-toolkit/public-api/controls/text-controls/placeholder-properties.h>
32 #include <dali-toolkit/internal/text/bidirectional-support.h>
33 #include <dali-toolkit/internal/text/character-set-conversion.h>
34 #include <dali-toolkit/internal/text/layouts/layout-parameters.h>
35 #include <dali-toolkit/internal/text/markup-processor.h>
36 #include <dali-toolkit/internal/text/multi-language-support.h>
37 #include <dali-toolkit/internal/text/text-controller-impl.h>
38 #include <dali-toolkit/internal/text/text-editable-control-interface.h>
39 #include <dali-toolkit/internal/text/text-font-style.h>
40
41 namespace
42 {
43
44 #if defined(DEBUG_ENABLED)
45   Debug::Filter* gLogFilter = Debug::Filter::New(Debug::NoLogging, true, "LOG_TEXT_CONTROLS");
46 #endif
47
48 const int MAX_NUMBER_OF_CHARACTERS = 200000;
49
50 const float MAX_FLOAT = std::numeric_limits<float>::max();
51
52 const std::string EMPTY_STRING("");
53
54 const std::string KEY_C_NAME = "c";
55 const std::string KEY_V_NAME = "v";
56 const std::string KEY_X_NAME = "x";
57
58 const char * const PLACEHOLDER_TEXT = "text";
59 const char * const PLACEHOLDER_TEXT_FOCUSED = "textFocused";
60 const char * const PLACEHOLDER_COLOR = "color";
61 const char * const PLACEHOLDER_FONT_FAMILY = "fontFamily";
62 const char * const PLACEHOLDER_FONT_STYLE = "fontStyle";
63 const char * const PLACEHOLDER_POINT_SIZE = "pointSize";
64 const char * const PLACEHOLDER_PIXEL_SIZE = "pixelSize";
65 const char * const PLACEHOLDER_ELLIPSIS = "ellipsis";
66
67 float ConvertToEven( float value )
68 {
69   int intValue(static_cast<int>( value ));
70   return static_cast<float>(intValue % 2 == 0) ? intValue : (intValue + 1);
71 }
72
73 } // namespace
74
75 namespace Dali
76 {
77
78 namespace Toolkit
79 {
80
81 namespace Text
82 {
83
84 /**
85  * @brief Adds a new font description run for the selected text.
86  *
87  * The new font parameters are added after the call to this method.
88  *
89  * @param[in] eventData The event data pointer.
90  * @param[in] logicalModel The logical model where to add the new font description run.
91  * @param[out] startOfSelectedText Index to the first selected character.
92  * @param[out] lengthOfSelectedText Number of selected characters.
93  */
94 FontDescriptionRun& UpdateSelectionFontStyleRun( EventData* eventData,
95                                                  LogicalModelPtr logicalModel,
96                                                  CharacterIndex& startOfSelectedText,
97                                                  Length& lengthOfSelectedText )
98 {
99   const bool handlesCrossed = eventData->mLeftSelectionPosition > eventData->mRightSelectionPosition;
100
101   // Get start and end position of selection
102   startOfSelectedText = handlesCrossed ? eventData->mRightSelectionPosition : eventData->mLeftSelectionPosition;
103   lengthOfSelectedText = ( handlesCrossed ? eventData->mLeftSelectionPosition : eventData->mRightSelectionPosition ) - startOfSelectedText;
104
105   // Add the font run.
106   const VectorBase::SizeType numberOfRuns = logicalModel->mFontDescriptionRuns.Count();
107   logicalModel->mFontDescriptionRuns.Resize( numberOfRuns + 1u );
108
109   FontDescriptionRun& fontDescriptionRun = *( logicalModel->mFontDescriptionRuns.Begin() + numberOfRuns );
110
111   fontDescriptionRun.characterRun.characterIndex = startOfSelectedText;
112   fontDescriptionRun.characterRun.numberOfCharacters = lengthOfSelectedText;
113
114   // Recalculate the selection highlight as the metrics may have changed.
115   eventData->mUpdateLeftSelectionPosition = true;
116   eventData->mUpdateRightSelectionPosition = true;
117   eventData->mUpdateHighlightBox = true;
118
119   return fontDescriptionRun;
120 }
121
122 // public : Constructor.
123
124 ControllerPtr Controller::New()
125 {
126   return ControllerPtr( new Controller() );
127 }
128
129 ControllerPtr Controller::New( ControlInterface* controlInterface )
130 {
131   return ControllerPtr( new Controller( controlInterface ) );
132 }
133
134 ControllerPtr Controller::New( ControlInterface* controlInterface,
135                                EditableControlInterface* editableControlInterface )
136 {
137   return ControllerPtr( new Controller( controlInterface,
138                                         editableControlInterface ) );
139 }
140
141 // public : Configure the text controller.
142
143 void Controller::EnableTextInput( DecoratorPtr decorator )
144 {
145   if( !decorator )
146   {
147     delete mImpl->mEventData;
148     mImpl->mEventData = NULL;
149
150     // Nothing else to do.
151     return;
152   }
153
154   if( NULL == mImpl->mEventData )
155   {
156     mImpl->mEventData = new EventData( decorator );
157   }
158 }
159
160 void Controller::SetGlyphType( TextAbstraction::GlyphType glyphType )
161 {
162   // Metrics for bitmap & vector based glyphs are different
163   mImpl->mMetrics->SetGlyphType( glyphType );
164
165   // Clear the font-specific data
166   ClearFontData();
167
168   mImpl->RequestRelayout();
169 }
170
171 void Controller::SetMarkupProcessorEnabled( bool enable )
172 {
173   mImpl->mMarkupProcessorEnabled = enable;
174   if( enable )
175   {
176     //If Text was already set, call the SetText again for enabling markup
177     std::string text;
178     GetText( text );
179     SetText( text );
180   }
181 }
182
183 bool Controller::IsMarkupProcessorEnabled() const
184 {
185   return mImpl->mMarkupProcessorEnabled;
186 }
187
188 void Controller::SetAutoScrollEnabled( bool enable )
189 {
190   DALI_LOG_INFO( gLogFilter, Debug::General, "Controller::SetAutoScrollEnabled[%s] SingleBox[%s]-> [%p]\n", (enable)?"true":"false", ( mImpl->mLayoutEngine.GetLayout() == Layout::Engine::SINGLE_LINE_BOX)?"true":"false", this );
191
192   if( mImpl->mLayoutEngine.GetLayout() == Layout::Engine::SINGLE_LINE_BOX )
193   {
194     if( enable )
195     {
196       DALI_LOG_INFO( gLogFilter, Debug::General, "Controller::SetAutoScrollEnabled for SINGLE_LINE_BOX\n" );
197       mImpl->mOperationsPending = static_cast<OperationsMask>( mImpl->mOperationsPending |
198                                                                LAYOUT                    |
199                                                                ALIGN                     |
200                                                                UPDATE_LAYOUT_SIZE        |
201                                                                UPDATE_DIRECTION          |
202                                                                REORDER );
203
204     }
205     else
206     {
207       DALI_LOG_INFO( gLogFilter, Debug::General, "Controller::SetAutoScrollEnabled Disabling autoscroll\n");
208       mImpl->mOperationsPending = static_cast<OperationsMask>( mImpl->mOperationsPending |
209                                                                LAYOUT                    |
210                                                                ALIGN                     |
211                                                                UPDATE_LAYOUT_SIZE        |
212                                                                REORDER );
213     }
214
215     mImpl->mIsAutoScrollEnabled = enable;
216     mImpl->RequestRelayout();
217   }
218   else
219   {
220     DALI_LOG_WARNING( "Attempted AutoScrolling on a non SINGLE_LINE_BOX, request ignored\n" );
221     mImpl->mIsAutoScrollEnabled = false;
222   }
223 }
224
225 bool Controller::IsAutoScrollEnabled() const
226 {
227   DALI_LOG_INFO( gLogFilter, Debug::Verbose, "Controller::IsAutoScrollEnabled[%s]\n", mImpl->mIsAutoScrollEnabled?"true":"false" );
228
229   return mImpl->mIsAutoScrollEnabled;
230 }
231
232 CharacterDirection Controller::GetAutoScrollDirection() const
233 {
234   return mImpl->mAutoScrollDirectionRTL;
235 }
236
237 float Controller::GetAutoScrollLineAlignment() const
238 {
239   float offset = 0.f;
240
241   if( mImpl->mModel->mVisualModel &&
242       ( 0u != mImpl->mModel->mVisualModel->mLines.Count() ) )
243   {
244     offset = ( *mImpl->mModel->mVisualModel->mLines.Begin() ).alignmentOffset;
245   }
246
247   return offset;
248 }
249
250 void Controller::SetHorizontalScrollEnabled( bool enable )
251 {
252   if( ( NULL != mImpl->mEventData ) &&
253       mImpl->mEventData->mDecorator )
254   {
255     mImpl->mEventData->mDecorator->SetHorizontalScrollEnabled( enable );
256   }
257 }
258 bool Controller::IsHorizontalScrollEnabled() const
259 {
260   if( ( NULL != mImpl->mEventData ) &&
261       mImpl->mEventData->mDecorator )
262   {
263     return mImpl->mEventData->mDecorator->IsHorizontalScrollEnabled();
264   }
265
266   return false;
267 }
268
269 void Controller::SetVerticalScrollEnabled( bool enable )
270 {
271   if( ( NULL != mImpl->mEventData ) &&
272       mImpl->mEventData->mDecorator )
273   {
274     if( mImpl->mEventData->mDecorator )
275     {
276       mImpl->mEventData->mDecorator->SetVerticalScrollEnabled( enable );
277     }
278   }
279 }
280
281 bool Controller::IsVerticalScrollEnabled() const
282 {
283   if( ( NULL != mImpl->mEventData ) &&
284       mImpl->mEventData->mDecorator )
285   {
286     return mImpl->mEventData->mDecorator->IsVerticalScrollEnabled();
287   }
288
289   return false;
290 }
291
292 void Controller::SetSmoothHandlePanEnabled( bool enable )
293 {
294   if( ( NULL != mImpl->mEventData ) &&
295       mImpl->mEventData->mDecorator )
296   {
297     mImpl->mEventData->mDecorator->SetSmoothHandlePanEnabled( enable );
298   }
299 }
300
301 bool Controller::IsSmoothHandlePanEnabled() const
302 {
303   if( ( NULL != mImpl->mEventData ) &&
304       mImpl->mEventData->mDecorator )
305   {
306     return mImpl->mEventData->mDecorator->IsSmoothHandlePanEnabled();
307   }
308
309   return false;
310 }
311
312 void Controller::SetMaximumNumberOfCharacters( Length maxCharacters )
313 {
314   mImpl->mMaximumNumberOfCharacters = maxCharacters;
315 }
316
317 int Controller::GetMaximumNumberOfCharacters()
318 {
319   return mImpl->mMaximumNumberOfCharacters;
320 }
321
322 void Controller::SetEnableCursorBlink( bool enable )
323 {
324   DALI_ASSERT_DEBUG( NULL != mImpl->mEventData && "TextInput disabled" );
325
326   if( NULL != mImpl->mEventData )
327   {
328     mImpl->mEventData->mCursorBlinkEnabled = enable;
329
330     if( !enable &&
331         mImpl->mEventData->mDecorator )
332     {
333       mImpl->mEventData->mDecorator->StopCursorBlink();
334     }
335   }
336 }
337
338 bool Controller::GetEnableCursorBlink() const
339 {
340   if( NULL != mImpl->mEventData )
341   {
342     return mImpl->mEventData->mCursorBlinkEnabled;
343   }
344
345   return false;
346 }
347
348 void Controller::SetMultiLineEnabled( bool enable )
349 {
350   const Layout::Engine::Type layout = enable ? Layout::Engine::MULTI_LINE_BOX : Layout::Engine::SINGLE_LINE_BOX;
351
352   if( layout != mImpl->mLayoutEngine.GetLayout() )
353   {
354     // Set the layout type.
355     mImpl->mLayoutEngine.SetLayout( layout );
356
357     // Set the flags to redo the layout operations
358     const OperationsMask layoutOperations =  static_cast<OperationsMask>( LAYOUT             |
359                                                                           UPDATE_LAYOUT_SIZE |
360                                                                           ALIGN              |
361                                                                           REORDER );
362
363     mImpl->mTextUpdateInfo.mFullRelayoutNeeded = true;
364     mImpl->mOperationsPending = static_cast<OperationsMask>( mImpl->mOperationsPending | layoutOperations );
365
366     mImpl->RequestRelayout();
367   }
368 }
369
370 bool Controller::IsMultiLineEnabled() const
371 {
372   return Layout::Engine::MULTI_LINE_BOX == mImpl->mLayoutEngine.GetLayout();
373 }
374
375 void Controller::SetHorizontalAlignment( Text::HorizontalAlignment::Type alignment )
376 {
377   if( alignment != mImpl->mModel->mHorizontalAlignment )
378   {
379     // Set the alignment.
380     mImpl->mModel->mHorizontalAlignment = alignment;
381
382     // Set the flag to redo the alignment operation.
383     mImpl->mOperationsPending = static_cast<OperationsMask>( mImpl->mOperationsPending | ALIGN );
384
385     mImpl->RequestRelayout();
386   }
387 }
388
389 Text::HorizontalAlignment::Type Controller::GetHorizontalAlignment() const
390 {
391   return mImpl->mModel->mHorizontalAlignment;
392 }
393
394 void Controller::SetVerticalAlignment( VerticalAlignment::Type alignment )
395 {
396   if( alignment != mImpl->mModel->mVerticalAlignment )
397   {
398     // Set the alignment.
399     mImpl->mModel->mVerticalAlignment = alignment;
400
401     mImpl->mOperationsPending = static_cast<OperationsMask>( mImpl->mOperationsPending | ALIGN );
402
403     mImpl->RequestRelayout();
404   }
405 }
406
407 VerticalAlignment::Type Controller::GetVerticalAlignment() const
408 {
409   return mImpl->mModel->mVerticalAlignment;
410 }
411
412 void Controller::SetLineWrapMode( Text::LineWrap::Mode lineWrapMode )
413 {
414   if( lineWrapMode != mImpl->mModel->mLineWrapMode )
415   {
416     // Set the text wrap mode.
417     mImpl->mModel->mLineWrapMode = lineWrapMode;
418
419
420     // Update Text layout for applying wrap mode
421     mImpl->mOperationsPending = static_cast<OperationsMask>( mImpl->mOperationsPending |
422                                                              ALIGN                     |
423                                                              LAYOUT                    |
424                                                              UPDATE_LAYOUT_SIZE        |
425                                                              REORDER                   );
426     mImpl->mTextUpdateInfo.mCharacterIndex = 0u;
427     mImpl->mTextUpdateInfo.mNumberOfCharactersToRemove = mImpl->mTextUpdateInfo.mPreviousNumberOfCharacters;
428     mImpl->mTextUpdateInfo.mNumberOfCharactersToAdd = mImpl->mModel->mLogicalModel->mText.Count();
429
430     // Request relayout
431     mImpl->RequestRelayout();
432   }
433 }
434
435 Text::LineWrap::Mode Controller::GetLineWrapMode() const
436 {
437   return mImpl->mModel->mLineWrapMode;
438 }
439
440 void Controller::SetTextElideEnabled( bool enabled )
441 {
442   mImpl->mModel->mElideEnabled = enabled;
443 }
444
445 bool Controller::IsTextElideEnabled() const
446 {
447   return mImpl->mModel->mElideEnabled;
448 }
449
450 void Controller::SetPlaceholderTextElideEnabled( bool enabled )
451 {
452   mImpl->mEventData->mIsPlaceholderElideEnabled = enabled;
453   mImpl->mEventData->mPlaceholderEllipsisFlag = true;
454
455   // Update placeholder if there is no text
456   if( mImpl->IsShowingPlaceholderText() ||
457       ( 0u == mImpl->mModel->mLogicalModel->mText.Count() ) )
458   {
459     ShowPlaceholderText();
460   }
461 }
462
463 bool Controller::IsPlaceholderTextElideEnabled() const
464 {
465   return mImpl->mEventData->mIsPlaceholderElideEnabled;
466 }
467
468 void Controller::SetSelectionEnabled( bool enabled )
469 {
470   mImpl->mEventData->mSelectionEnabled = enabled;
471 }
472
473 bool Controller::IsSelectionEnabled() const
474 {
475   return mImpl->mEventData->mSelectionEnabled;
476 }
477
478 void Controller::SetShiftSelectionEnabled( bool enabled )
479 {
480   mImpl->mEventData->mShiftSelectionFlag = enabled;
481 }
482
483 bool Controller::IsShiftSelectionEnabled() const
484 {
485   return mImpl->mEventData->mShiftSelectionFlag;
486 }
487
488 // public : Update
489
490 void Controller::SetText( const std::string& text )
491 {
492   DALI_LOG_INFO( gLogFilter, Debug::Verbose, "Controller::SetText\n" );
493
494   // Reset keyboard as text changed
495   mImpl->ResetImfManager();
496
497   // Remove the previously set text and style.
498   ResetText();
499
500   // Remove the style.
501   ClearStyleData();
502
503   CharacterIndex lastCursorIndex = 0u;
504
505   if( NULL != mImpl->mEventData )
506   {
507     // If popup shown then hide it by switching to Editing state
508     if( ( EventData::SELECTING == mImpl->mEventData->mState )          ||
509         ( EventData::EDITING_WITH_POPUP == mImpl->mEventData->mState ) ||
510         ( EventData::EDITING_WITH_GRAB_HANDLE == mImpl->mEventData->mState ) ||
511         ( EventData::EDITING_WITH_PASTE_POPUP == mImpl->mEventData->mState ) )
512     {
513       mImpl->ChangeState( EventData::EDITING );
514     }
515   }
516
517   if( !text.empty() )
518   {
519     mImpl->mModel->mVisualModel->SetTextColor( mImpl->mTextColor );
520
521     MarkupProcessData markupProcessData( mImpl->mModel->mLogicalModel->mColorRuns,
522                                          mImpl->mModel->mLogicalModel->mFontDescriptionRuns );
523
524     Length textSize = 0u;
525     const uint8_t* utf8 = NULL;
526     if( mImpl->mMarkupProcessorEnabled )
527     {
528       ProcessMarkupString( text, markupProcessData );
529       textSize = markupProcessData.markupProcessedText.size();
530
531       // This is a bit horrible but std::string returns a (signed) char*
532       utf8 = reinterpret_cast<const uint8_t*>( markupProcessData.markupProcessedText.c_str() );
533     }
534     else
535     {
536       textSize = text.size();
537
538       // This is a bit horrible but std::string returns a (signed) char*
539       utf8 = reinterpret_cast<const uint8_t*>( text.c_str() );
540     }
541
542     //  Convert text into UTF-32
543     Vector<Character>& utf32Characters = mImpl->mModel->mLogicalModel->mText;
544     utf32Characters.Resize( textSize );
545
546     // Transform a text array encoded in utf8 into an array encoded in utf32.
547     // It returns the actual number of characters.
548     Length characterCount = Utf8ToUtf32( utf8, textSize, utf32Characters.Begin() );
549     utf32Characters.Resize( characterCount );
550
551     DALI_ASSERT_DEBUG( textSize >= characterCount && "Invalid UTF32 conversion length" );
552     DALI_LOG_INFO( gLogFilter, Debug::Verbose, "Controller::SetText %p UTF8 size %d, UTF32 size %d\n", this, textSize, mImpl->mModel->mLogicalModel->mText.Count() );
553
554     // The characters to be added.
555     mImpl->mTextUpdateInfo.mNumberOfCharactersToAdd = mImpl->mModel->mLogicalModel->mText.Count();
556
557     // To reset the cursor position
558     lastCursorIndex = characterCount;
559
560     // Update the rest of the model during size negotiation
561     mImpl->QueueModifyEvent( ModifyEvent::TEXT_REPLACED );
562
563     // The natural size needs to be re-calculated.
564     mImpl->mRecalculateNaturalSize = true;
565
566     // Apply modifications to the model
567     mImpl->mOperationsPending = ALL_OPERATIONS;
568   }
569   else
570   {
571     ShowPlaceholderText();
572   }
573
574   // Resets the cursor position.
575   ResetCursorPosition( lastCursorIndex );
576
577   // Scrolls the text to make the cursor visible.
578   ResetScrollPosition();
579
580   mImpl->RequestRelayout();
581
582   if( NULL != mImpl->mEventData )
583   {
584     // Cancel previously queued events
585     mImpl->mEventData->mEventQueue.clear();
586   }
587
588   // Do this last since it provides callbacks into application code.
589   if( NULL != mImpl->mEditableControlInterface )
590   {
591     mImpl->mEditableControlInterface->TextChanged();
592   }
593 }
594
595 void Controller::GetText( std::string& text ) const
596 {
597   if( !mImpl->IsShowingPlaceholderText() )
598   {
599     // Retrieves the text string.
600     mImpl->GetText( 0u, text );
601   }
602   else
603   {
604     DALI_LOG_INFO( gLogFilter, Debug::Verbose, "Controller::GetText %p empty (but showing placeholder)\n", this );
605   }
606 }
607
608 void Controller::SetPlaceholderText( PlaceholderType type, const std::string& text )
609 {
610   if( NULL != mImpl->mEventData )
611   {
612     if( PLACEHOLDER_TYPE_INACTIVE == type )
613     {
614       mImpl->mEventData->mPlaceholderTextInactive = text;
615     }
616     else
617     {
618       mImpl->mEventData->mPlaceholderTextActive = text;
619     }
620
621     // Update placeholder if there is no text
622     if( mImpl->IsShowingPlaceholderText() ||
623         ( 0u == mImpl->mModel->mLogicalModel->mText.Count() ) )
624     {
625       ShowPlaceholderText();
626     }
627   }
628 }
629
630 void Controller::GetPlaceholderText( PlaceholderType type, std::string& text ) const
631 {
632   if( NULL != mImpl->mEventData )
633   {
634     if( PLACEHOLDER_TYPE_INACTIVE == type )
635     {
636       text = mImpl->mEventData->mPlaceholderTextInactive;
637     }
638     else
639     {
640       text = mImpl->mEventData->mPlaceholderTextActive;
641     }
642   }
643 }
644
645 void Controller::UpdateAfterFontChange( const std::string& newDefaultFont )
646 {
647   DALI_LOG_INFO( gLogFilter, Debug::Verbose, "Controller::UpdateAfterFontChange\n");
648
649   if( !mImpl->mFontDefaults->familyDefined ) // If user defined font then should not update when system font changes
650   {
651     DALI_LOG_INFO( gLogFilter, Debug::Concise, "Controller::UpdateAfterFontChange newDefaultFont(%s)\n", newDefaultFont.c_str() );
652     mImpl->mFontDefaults->mFontDescription.family = newDefaultFont;
653
654     ClearFontData();
655
656     mImpl->RequestRelayout();
657   }
658 }
659
660 // public : Default style & Input style
661
662 void Controller::SetDefaultFontFamily( const std::string& defaultFontFamily )
663 {
664   if( NULL == mImpl->mFontDefaults )
665   {
666     mImpl->mFontDefaults = new FontDefaults();
667   }
668
669   mImpl->mFontDefaults->mFontDescription.family = defaultFontFamily;
670   DALI_LOG_INFO( gLogFilter, Debug::General, "Controller::SetDefaultFontFamily %s\n", defaultFontFamily.c_str());
671   mImpl->mFontDefaults->familyDefined = !defaultFontFamily.empty();
672
673   // Clear the font-specific data
674   ClearFontData();
675
676   mImpl->RequestRelayout();
677 }
678
679 const std::string& Controller::GetDefaultFontFamily() const
680 {
681   if( NULL != mImpl->mFontDefaults )
682   {
683     return mImpl->mFontDefaults->mFontDescription.family;
684   }
685
686   return EMPTY_STRING;
687 }
688
689 void Controller::SetPlaceholderFontFamily( const std::string& placeholderTextFontFamily )
690 {
691   if( NULL != mImpl->mEventData )
692   {
693     if( NULL == mImpl->mEventData->mPlaceholderFont )
694     {
695       mImpl->mEventData->mPlaceholderFont = new FontDefaults();
696     }
697
698     mImpl->mEventData->mPlaceholderFont->mFontDescription.family = placeholderTextFontFamily;
699     DALI_LOG_INFO( gLogFilter, Debug::General, "Controller::SetPlaceholderFontFamily %s\n", placeholderTextFontFamily.c_str());
700     mImpl->mEventData->mPlaceholderFont->familyDefined = !placeholderTextFontFamily.empty();
701
702     mImpl->RequestRelayout();
703   }
704 }
705
706 const std::string& Controller::GetPlaceholderFontFamily() const
707 {
708   if( ( NULL != mImpl->mEventData ) && ( NULL != mImpl->mEventData->mPlaceholderFont ) )
709   {
710     return mImpl->mEventData->mPlaceholderFont->mFontDescription.family;
711   }
712
713   return EMPTY_STRING;
714 }
715
716 void Controller::SetDefaultFontWeight( FontWeight weight )
717 {
718   if( NULL == mImpl->mFontDefaults )
719   {
720     mImpl->mFontDefaults = new FontDefaults();
721   }
722
723   mImpl->mFontDefaults->mFontDescription.weight = weight;
724   mImpl->mFontDefaults->weightDefined = true;
725
726   // Clear the font-specific data
727   ClearFontData();
728
729   mImpl->RequestRelayout();
730 }
731
732 bool Controller::IsDefaultFontWeightDefined() const
733 {
734   if( NULL != mImpl->mFontDefaults )
735   {
736     return mImpl->mFontDefaults->weightDefined;
737   }
738
739   return false;
740 }
741
742 FontWeight Controller::GetDefaultFontWeight() const
743 {
744   if( NULL != mImpl->mFontDefaults )
745   {
746     return mImpl->mFontDefaults->mFontDescription.weight;
747   }
748
749   return TextAbstraction::FontWeight::NORMAL;
750 }
751
752 void Controller::SetPlaceholderTextFontWeight( FontWeight weight )
753 {
754   if( NULL != mImpl->mEventData )
755   {
756     if( NULL == mImpl->mEventData->mPlaceholderFont )
757     {
758       mImpl->mEventData->mPlaceholderFont = new FontDefaults();
759     }
760
761     mImpl->mEventData->mPlaceholderFont->mFontDescription.weight = weight;
762     mImpl->mEventData->mPlaceholderFont->weightDefined = true;
763
764     mImpl->RequestRelayout();
765   }
766 }
767
768 bool Controller::IsPlaceholderTextFontWeightDefined() const
769 {
770   if( ( NULL != mImpl->mEventData ) && ( NULL != mImpl->mEventData->mPlaceholderFont ) )
771   {
772     return mImpl->mEventData->mPlaceholderFont->weightDefined;
773   }
774   return false;
775 }
776
777 FontWeight Controller::GetPlaceholderTextFontWeight() const
778 {
779   if( ( NULL != mImpl->mEventData ) && ( NULL != mImpl->mEventData->mPlaceholderFont ) )
780   {
781     return mImpl->mEventData->mPlaceholderFont->mFontDescription.weight;
782   }
783
784   return TextAbstraction::FontWeight::NORMAL;
785 }
786
787 void Controller::SetDefaultFontWidth( FontWidth width )
788 {
789   if( NULL == mImpl->mFontDefaults )
790   {
791     mImpl->mFontDefaults = new FontDefaults();
792   }
793
794   mImpl->mFontDefaults->mFontDescription.width = width;
795   mImpl->mFontDefaults->widthDefined = true;
796
797   // Clear the font-specific data
798   ClearFontData();
799
800   mImpl->RequestRelayout();
801 }
802
803 bool Controller::IsDefaultFontWidthDefined() const
804 {
805   if( NULL != mImpl->mFontDefaults )
806   {
807     return mImpl->mFontDefaults->widthDefined;
808   }
809
810   return false;
811 }
812
813 FontWidth Controller::GetDefaultFontWidth() const
814 {
815   if( NULL != mImpl->mFontDefaults )
816   {
817     return mImpl->mFontDefaults->mFontDescription.width;
818   }
819
820   return TextAbstraction::FontWidth::NORMAL;
821 }
822
823 void Controller::SetPlaceholderTextFontWidth( FontWidth width )
824 {
825   if( NULL != mImpl->mEventData )
826   {
827     if( NULL == mImpl->mEventData->mPlaceholderFont )
828     {
829       mImpl->mEventData->mPlaceholderFont = new FontDefaults();
830     }
831
832     mImpl->mEventData->mPlaceholderFont->mFontDescription.width = width;
833     mImpl->mEventData->mPlaceholderFont->widthDefined = true;
834
835     mImpl->RequestRelayout();
836   }
837 }
838
839 bool Controller::IsPlaceholderTextFontWidthDefined() const
840 {
841   if( ( NULL != mImpl->mEventData ) && ( NULL != mImpl->mEventData->mPlaceholderFont ) )
842   {
843     return mImpl->mEventData->mPlaceholderFont->widthDefined;
844   }
845   return false;
846 }
847
848 FontWidth Controller::GetPlaceholderTextFontWidth() const
849 {
850   if( ( NULL != mImpl->mEventData ) && ( NULL != mImpl->mEventData->mPlaceholderFont ) )
851   {
852     return mImpl->mEventData->mPlaceholderFont->mFontDescription.width;
853   }
854
855   return TextAbstraction::FontWidth::NORMAL;
856 }
857
858 void Controller::SetDefaultFontSlant( FontSlant slant )
859 {
860   if( NULL == mImpl->mFontDefaults )
861   {
862     mImpl->mFontDefaults = new FontDefaults();
863   }
864
865   mImpl->mFontDefaults->mFontDescription.slant = slant;
866   mImpl->mFontDefaults->slantDefined = true;
867
868   // Clear the font-specific data
869   ClearFontData();
870
871   mImpl->RequestRelayout();
872 }
873
874 bool Controller::IsDefaultFontSlantDefined() const
875 {
876   if( NULL != mImpl->mFontDefaults )
877   {
878     return mImpl->mFontDefaults->slantDefined;
879   }
880   return false;
881 }
882
883 FontSlant Controller::GetDefaultFontSlant() const
884 {
885   if( NULL != mImpl->mFontDefaults )
886   {
887     return mImpl->mFontDefaults->mFontDescription.slant;
888   }
889
890   return TextAbstraction::FontSlant::NORMAL;
891 }
892
893 void Controller::SetPlaceholderTextFontSlant( FontSlant slant )
894 {
895   if( NULL != mImpl->mEventData )
896   {
897     if( NULL == mImpl->mEventData->mPlaceholderFont )
898     {
899       mImpl->mEventData->mPlaceholderFont = new FontDefaults();
900     }
901
902     mImpl->mEventData->mPlaceholderFont->mFontDescription.slant = slant;
903     mImpl->mEventData->mPlaceholderFont->slantDefined = true;
904
905     mImpl->RequestRelayout();
906   }
907 }
908
909 bool Controller::IsPlaceholderTextFontSlantDefined() const
910 {
911   if( ( NULL != mImpl->mEventData ) && ( NULL != mImpl->mEventData->mPlaceholderFont ) )
912   {
913     return mImpl->mEventData->mPlaceholderFont->slantDefined;
914   }
915   return false;
916 }
917
918 FontSlant Controller::GetPlaceholderTextFontSlant() const
919 {
920   if( ( NULL != mImpl->mEventData ) && ( NULL != mImpl->mEventData->mPlaceholderFont ) )
921   {
922     return mImpl->mEventData->mPlaceholderFont->mFontDescription.slant;
923   }
924
925   return TextAbstraction::FontSlant::NORMAL;
926 }
927
928 void Controller::SetDefaultFontSize( float fontSize, FontSizeType type )
929 {
930   if( NULL == mImpl->mFontDefaults )
931   {
932     mImpl->mFontDefaults = new FontDefaults();
933   }
934
935   switch( type )
936   {
937     case POINT_SIZE:
938     {
939       mImpl->mFontDefaults->mDefaultPointSize = fontSize;
940       mImpl->mFontDefaults->sizeDefined = true;
941       break;
942     }
943     case PIXEL_SIZE:
944     {
945       // Point size = Pixel size * 72.f / DPI
946       unsigned int horizontalDpi = 0u;
947       unsigned int verticalDpi = 0u;
948       TextAbstraction::FontClient fontClient = TextAbstraction::FontClient::Get();
949       fontClient.GetDpi( horizontalDpi, verticalDpi );
950
951       mImpl->mFontDefaults->mDefaultPointSize = ( fontSize * 72.f ) / static_cast< float >( horizontalDpi );
952       mImpl->mFontDefaults->sizeDefined = true;
953       break;
954     }
955   }
956
957   // Clear the font-specific data
958   ClearFontData();
959
960   mImpl->RequestRelayout();
961 }
962
963 float Controller::GetDefaultFontSize( FontSizeType type ) const
964 {
965   float value = 0.0f;
966   if( NULL != mImpl->mFontDefaults )
967   {
968     switch( type )
969     {
970       case POINT_SIZE:
971       {
972         value = mImpl->mFontDefaults->mDefaultPointSize;
973         break;
974       }
975       case PIXEL_SIZE:
976       {
977         // Pixel size = Point size * DPI / 72.f
978         unsigned int horizontalDpi = 0u;
979         unsigned int verticalDpi = 0u;
980         TextAbstraction::FontClient fontClient = TextAbstraction::FontClient::Get();
981         fontClient.GetDpi( horizontalDpi, verticalDpi );
982
983         value = mImpl->mFontDefaults->mDefaultPointSize * static_cast< float >( horizontalDpi ) / 72.f;
984         break;
985       }
986     }
987     return value;
988   }
989
990   return value;
991 }
992
993 void Controller::SetPlaceholderTextFontSize( float fontSize, FontSizeType type )
994 {
995   if( NULL != mImpl->mEventData )
996   {
997     if( NULL == mImpl->mEventData->mPlaceholderFont )
998     {
999       mImpl->mEventData->mPlaceholderFont = new FontDefaults();
1000     }
1001
1002     switch( type )
1003     {
1004       case POINT_SIZE:
1005       {
1006         mImpl->mEventData->mPlaceholderFont->mDefaultPointSize = fontSize;
1007         mImpl->mEventData->mPlaceholderFont->sizeDefined = true;
1008         mImpl->mEventData->mIsPlaceholderPixelSize = false; // Font size flag
1009         break;
1010       }
1011       case PIXEL_SIZE:
1012       {
1013         // Point size = Pixel size * 72.f / DPI
1014         unsigned int horizontalDpi = 0u;
1015         unsigned int verticalDpi = 0u;
1016         TextAbstraction::FontClient fontClient = TextAbstraction::FontClient::Get();
1017         fontClient.GetDpi( horizontalDpi, verticalDpi );
1018
1019         mImpl->mEventData->mPlaceholderFont->mDefaultPointSize = ( fontSize * 72.f ) / static_cast< float >( horizontalDpi );
1020         mImpl->mEventData->mPlaceholderFont->sizeDefined = true;
1021         mImpl->mEventData->mIsPlaceholderPixelSize = true; // Font size flag
1022         break;
1023       }
1024     }
1025
1026     mImpl->RequestRelayout();
1027   }
1028 }
1029
1030 float Controller::GetPlaceholderTextFontSize( FontSizeType type ) const
1031 {
1032   float value = 0.0f;
1033   if( NULL != mImpl->mEventData )
1034   {
1035     switch( type )
1036     {
1037       case POINT_SIZE:
1038       {
1039         if( NULL != mImpl->mEventData->mPlaceholderFont )
1040         {
1041           value = mImpl->mEventData->mPlaceholderFont->mDefaultPointSize;
1042         }
1043         else
1044         {
1045           // If the placeholder text font size is not set, then return the default font size.
1046           value = GetDefaultFontSize( POINT_SIZE );
1047         }
1048         break;
1049       }
1050       case PIXEL_SIZE:
1051       {
1052         if( NULL != mImpl->mEventData->mPlaceholderFont )
1053         {
1054           // Pixel size = Point size * DPI / 72.f
1055           unsigned int horizontalDpi = 0u;
1056           unsigned int verticalDpi = 0u;
1057           TextAbstraction::FontClient fontClient = TextAbstraction::FontClient::Get();
1058           fontClient.GetDpi( horizontalDpi, verticalDpi );
1059
1060           value = mImpl->mEventData->mPlaceholderFont->mDefaultPointSize * static_cast< float >( horizontalDpi ) / 72.f;
1061         }
1062         else
1063         {
1064           // If the placeholder text font size is not set, then return the default font size.
1065           value = GetDefaultFontSize( PIXEL_SIZE );
1066         }
1067         break;
1068       }
1069     }
1070     return value;
1071   }
1072
1073   return value;
1074 }
1075
1076 void Controller::SetDefaultColor( const Vector4& color )
1077 {
1078   mImpl->mTextColor = color;
1079
1080   if( !mImpl->IsShowingPlaceholderText() )
1081   {
1082     mImpl->mModel->mVisualModel->SetTextColor( color );
1083
1084     mImpl->RequestRelayout();
1085   }
1086 }
1087
1088 const Vector4& Controller::GetDefaultColor() const
1089 {
1090   return mImpl->mTextColor;
1091 }
1092
1093 void Controller::SetPlaceholderTextColor( const Vector4& textColor )
1094 {
1095   if( NULL != mImpl->mEventData )
1096   {
1097     mImpl->mEventData->mPlaceholderTextColor = textColor;
1098   }
1099
1100   if( mImpl->IsShowingPlaceholderText() )
1101   {
1102     mImpl->mModel->mVisualModel->SetTextColor( textColor );
1103     mImpl->RequestRelayout();
1104   }
1105 }
1106
1107 const Vector4& Controller::GetPlaceholderTextColor() const
1108 {
1109   if( NULL != mImpl->mEventData )
1110   {
1111     return mImpl->mEventData->mPlaceholderTextColor;
1112   }
1113
1114   return Color::BLACK;
1115 }
1116
1117 void Controller::SetShadowOffset( const Vector2& shadowOffset )
1118 {
1119   mImpl->mModel->mVisualModel->SetShadowOffset( shadowOffset );
1120
1121   mImpl->RequestRelayout();
1122 }
1123
1124 const Vector2& Controller::GetShadowOffset() const
1125 {
1126   return mImpl->mModel->mVisualModel->GetShadowOffset();
1127 }
1128
1129 void Controller::SetShadowColor( const Vector4& shadowColor )
1130 {
1131   mImpl->mModel->mVisualModel->SetShadowColor( shadowColor );
1132
1133   mImpl->RequestRelayout();
1134 }
1135
1136 const Vector4& Controller::GetShadowColor() const
1137 {
1138   return mImpl->mModel->mVisualModel->GetShadowColor();
1139 }
1140
1141 void Controller::SetShadowBlurRadius( const float& shadowBlurRadius )
1142 {
1143   if ( fabsf( GetShadowBlurRadius() - shadowBlurRadius ) > Math::MACHINE_EPSILON_1 )
1144   {
1145     mImpl->mModel->mVisualModel->SetShadowBlurRadius( shadowBlurRadius );
1146
1147     mImpl->RequestRelayout();
1148   }
1149 }
1150
1151 const float& Controller::GetShadowBlurRadius() const
1152 {
1153   return mImpl->mModel->mVisualModel->GetShadowBlurRadius();
1154 }
1155
1156 void Controller::SetUnderlineColor( const Vector4& color )
1157 {
1158   mImpl->mModel->mVisualModel->SetUnderlineColor( color );
1159
1160   mImpl->RequestRelayout();
1161 }
1162
1163 const Vector4& Controller::GetUnderlineColor() const
1164 {
1165   return mImpl->mModel->mVisualModel->GetUnderlineColor();
1166 }
1167
1168 void Controller::SetUnderlineEnabled( bool enabled )
1169 {
1170   mImpl->mModel->mVisualModel->SetUnderlineEnabled( enabled );
1171
1172   mImpl->RequestRelayout();
1173 }
1174
1175 bool Controller::IsUnderlineEnabled() const
1176 {
1177   return mImpl->mModel->mVisualModel->IsUnderlineEnabled();
1178 }
1179
1180 void Controller::SetUnderlineHeight( float height )
1181 {
1182   mImpl->mModel->mVisualModel->SetUnderlineHeight( height );
1183
1184   mImpl->RequestRelayout();
1185 }
1186
1187 float Controller::GetUnderlineHeight() const
1188 {
1189   return mImpl->mModel->mVisualModel->GetUnderlineHeight();
1190 }
1191
1192 void Controller::SetOutlineColor( const Vector4& color )
1193 {
1194   mImpl->mModel->mVisualModel->SetOutlineColor( color );
1195
1196   mImpl->RequestRelayout();
1197 }
1198
1199 const Vector4& Controller::GetOutlineColor() const
1200 {
1201   return mImpl->mModel->mVisualModel->GetOutlineColor();
1202 }
1203
1204 void Controller::SetOutlineWidth( unsigned int width )
1205 {
1206   mImpl->mModel->mVisualModel->SetOutlineWidth( width );
1207
1208   mImpl->RequestRelayout();
1209 }
1210
1211 unsigned int Controller::GetOutlineWidth() const
1212 {
1213   return mImpl->mModel->mVisualModel->GetOutlineWidth();
1214 }
1215
1216 void Controller::SetDefaultEmbossProperties( const std::string& embossProperties )
1217 {
1218   if( NULL == mImpl->mEmbossDefaults )
1219   {
1220     mImpl->mEmbossDefaults = new EmbossDefaults();
1221   }
1222
1223   mImpl->mEmbossDefaults->properties = embossProperties;
1224 }
1225
1226 const std::string& Controller::GetDefaultEmbossProperties() const
1227 {
1228   if( NULL != mImpl->mEmbossDefaults )
1229   {
1230     return mImpl->mEmbossDefaults->properties;
1231   }
1232
1233   return EMPTY_STRING;
1234 }
1235
1236 void Controller::SetDefaultOutlineProperties( const std::string& outlineProperties )
1237 {
1238   if( NULL == mImpl->mOutlineDefaults )
1239   {
1240     mImpl->mOutlineDefaults = new OutlineDefaults();
1241   }
1242
1243   mImpl->mOutlineDefaults->properties = outlineProperties;
1244 }
1245
1246 const std::string& Controller::GetDefaultOutlineProperties() const
1247 {
1248   if( NULL != mImpl->mOutlineDefaults )
1249   {
1250     return mImpl->mOutlineDefaults->properties;
1251   }
1252
1253   return EMPTY_STRING;
1254 }
1255
1256 void Controller::SetDefaultLineSpacing( float lineSpacing )
1257 {
1258   //TODO finish implementation
1259   mImpl->mLayoutEngine.SetDefaultLineSpacing( lineSpacing );
1260 }
1261
1262 float Controller::GetDefaultLineSpacing() const
1263 {
1264   return mImpl->mLayoutEngine.GetDefaultLineSpacing();
1265 }
1266
1267 void Controller::SetInputColor( const Vector4& color )
1268 {
1269   if( NULL != mImpl->mEventData )
1270   {
1271     mImpl->mEventData->mInputStyle.textColor = color;
1272     mImpl->mEventData->mInputStyle.isDefaultColor = false;
1273
1274     if( EventData::SELECTING == mImpl->mEventData->mState )
1275     {
1276       const bool handlesCrossed = mImpl->mEventData->mLeftSelectionPosition > mImpl->mEventData->mRightSelectionPosition;
1277
1278       // Get start and end position of selection
1279       const CharacterIndex startOfSelectedText = handlesCrossed ? mImpl->mEventData->mRightSelectionPosition : mImpl->mEventData->mLeftSelectionPosition;
1280       const Length lengthOfSelectedText = ( handlesCrossed ? mImpl->mEventData->mLeftSelectionPosition : mImpl->mEventData->mRightSelectionPosition ) - startOfSelectedText;
1281
1282       // Add the color run.
1283       const VectorBase::SizeType numberOfRuns = mImpl->mModel->mLogicalModel->mColorRuns.Count();
1284       mImpl->mModel->mLogicalModel->mColorRuns.Resize( numberOfRuns + 1u );
1285
1286       ColorRun& colorRun = *( mImpl->mModel->mLogicalModel->mColorRuns.Begin() + numberOfRuns );
1287       colorRun.color = color;
1288       colorRun.characterRun.characterIndex = startOfSelectedText;
1289       colorRun.characterRun.numberOfCharacters = lengthOfSelectedText;
1290
1291       // Request to relayout.
1292       mImpl->mOperationsPending = static_cast<OperationsMask>( mImpl->mOperationsPending | COLOR );
1293       mImpl->RequestRelayout();
1294
1295       mImpl->mTextUpdateInfo.mCharacterIndex = startOfSelectedText;
1296       mImpl->mTextUpdateInfo.mNumberOfCharactersToRemove = lengthOfSelectedText;
1297       mImpl->mTextUpdateInfo.mNumberOfCharactersToAdd = lengthOfSelectedText;
1298     }
1299   }
1300 }
1301
1302 const Vector4& Controller::GetInputColor() const
1303 {
1304   if( NULL != mImpl->mEventData )
1305   {
1306     return mImpl->mEventData->mInputStyle.textColor;
1307   }
1308
1309   // Return the default text's color if there is no EventData.
1310   return mImpl->mTextColor;
1311
1312 }
1313
1314 void Controller::SetInputFontFamily( const std::string& fontFamily )
1315 {
1316   if( NULL != mImpl->mEventData )
1317   {
1318     mImpl->mEventData->mInputStyle.familyName = fontFamily;
1319     mImpl->mEventData->mInputStyle.isFamilyDefined = true;
1320
1321     if( EventData::SELECTING == mImpl->mEventData->mState )
1322     {
1323       CharacterIndex startOfSelectedText = 0u;
1324       Length lengthOfSelectedText = 0u;
1325       FontDescriptionRun& fontDescriptionRun = UpdateSelectionFontStyleRun( mImpl->mEventData,
1326                                                                             mImpl->mModel->mLogicalModel,
1327                                                                             startOfSelectedText,
1328                                                                             lengthOfSelectedText );
1329
1330       fontDescriptionRun.familyLength = fontFamily.size();
1331       fontDescriptionRun.familyName = new char[fontDescriptionRun.familyLength];
1332       memcpy( fontDescriptionRun.familyName, fontFamily.c_str(), fontDescriptionRun.familyLength );
1333       fontDescriptionRun.familyDefined = true;
1334
1335       // The memory allocated for the font family name is freed when the font description is removed from the logical model.
1336
1337       // Request to relayout.
1338       mImpl->mOperationsPending = static_cast<OperationsMask>( mImpl->mOperationsPending |
1339                                                                VALIDATE_FONTS            |
1340                                                                SHAPE_TEXT                |
1341                                                                GET_GLYPH_METRICS         |
1342                                                                LAYOUT                    |
1343                                                                UPDATE_LAYOUT_SIZE        |
1344                                                                REORDER                   |
1345                                                                ALIGN );
1346       mImpl->mRecalculateNaturalSize = true;
1347       mImpl->RequestRelayout();
1348
1349       mImpl->mTextUpdateInfo.mCharacterIndex = startOfSelectedText;
1350       mImpl->mTextUpdateInfo.mNumberOfCharactersToRemove = lengthOfSelectedText;
1351       mImpl->mTextUpdateInfo.mNumberOfCharactersToAdd = lengthOfSelectedText;
1352
1353       // As the font changes, recalculate the handle positions is needed.
1354       mImpl->mEventData->mUpdateLeftSelectionPosition = true;
1355       mImpl->mEventData->mUpdateRightSelectionPosition = true;
1356       mImpl->mEventData->mUpdateHighlightBox = true;
1357       mImpl->mEventData->mScrollAfterUpdatePosition = true;
1358     }
1359   }
1360 }
1361
1362 const std::string& Controller::GetInputFontFamily() const
1363 {
1364   if( NULL != mImpl->mEventData )
1365   {
1366     return mImpl->mEventData->mInputStyle.familyName;
1367   }
1368
1369   // Return the default font's family if there is no EventData.
1370   return GetDefaultFontFamily();
1371 }
1372
1373 void Controller::SetInputFontWeight( FontWeight weight )
1374 {
1375   if( NULL != mImpl->mEventData )
1376   {
1377     mImpl->mEventData->mInputStyle.weight = weight;
1378     mImpl->mEventData->mInputStyle.isWeightDefined = true;
1379
1380     if( EventData::SELECTING == mImpl->mEventData->mState )
1381     {
1382       CharacterIndex startOfSelectedText = 0u;
1383       Length lengthOfSelectedText = 0u;
1384       FontDescriptionRun& fontDescriptionRun = UpdateSelectionFontStyleRun( mImpl->mEventData,
1385                                                                             mImpl->mModel->mLogicalModel,
1386                                                                             startOfSelectedText,
1387                                                                             lengthOfSelectedText );
1388
1389       fontDescriptionRun.weight = weight;
1390       fontDescriptionRun.weightDefined = true;
1391
1392       // Request to relayout.
1393       mImpl->mOperationsPending = static_cast<OperationsMask>( mImpl->mOperationsPending |
1394                                                                VALIDATE_FONTS            |
1395                                                                SHAPE_TEXT                |
1396                                                                GET_GLYPH_METRICS         |
1397                                                                LAYOUT                    |
1398                                                                UPDATE_LAYOUT_SIZE        |
1399                                                                REORDER                   |
1400                                                                ALIGN );
1401       mImpl->mRecalculateNaturalSize = true;
1402       mImpl->RequestRelayout();
1403
1404       mImpl->mTextUpdateInfo.mCharacterIndex = startOfSelectedText;
1405       mImpl->mTextUpdateInfo.mNumberOfCharactersToRemove = lengthOfSelectedText;
1406       mImpl->mTextUpdateInfo.mNumberOfCharactersToAdd = lengthOfSelectedText;
1407
1408       // As the font might change, recalculate the handle positions is needed.
1409       mImpl->mEventData->mUpdateLeftSelectionPosition = true;
1410       mImpl->mEventData->mUpdateRightSelectionPosition = true;
1411       mImpl->mEventData->mUpdateHighlightBox = true;
1412       mImpl->mEventData->mScrollAfterUpdatePosition = true;
1413     }
1414   }
1415 }
1416
1417 bool Controller::IsInputFontWeightDefined() const
1418 {
1419   bool defined = false;
1420
1421   if( NULL != mImpl->mEventData )
1422   {
1423     defined = mImpl->mEventData->mInputStyle.isWeightDefined;
1424   }
1425
1426   return defined;
1427 }
1428
1429 FontWeight Controller::GetInputFontWeight() const
1430 {
1431   if( NULL != mImpl->mEventData )
1432   {
1433     return mImpl->mEventData->mInputStyle.weight;
1434   }
1435
1436   return GetDefaultFontWeight();
1437 }
1438
1439 void Controller::SetInputFontWidth( FontWidth width )
1440 {
1441   if( NULL != mImpl->mEventData )
1442   {
1443     mImpl->mEventData->mInputStyle.width = width;
1444     mImpl->mEventData->mInputStyle.isWidthDefined = true;
1445
1446     if( EventData::SELECTING == mImpl->mEventData->mState )
1447     {
1448       CharacterIndex startOfSelectedText = 0u;
1449       Length lengthOfSelectedText = 0u;
1450       FontDescriptionRun& fontDescriptionRun = UpdateSelectionFontStyleRun( mImpl->mEventData,
1451                                                                             mImpl->mModel->mLogicalModel,
1452                                                                             startOfSelectedText,
1453                                                                             lengthOfSelectedText );
1454
1455       fontDescriptionRun.width = width;
1456       fontDescriptionRun.widthDefined = true;
1457
1458       // Request to relayout.
1459       mImpl->mOperationsPending = static_cast<OperationsMask>( mImpl->mOperationsPending |
1460                                                                VALIDATE_FONTS            |
1461                                                                SHAPE_TEXT                |
1462                                                                GET_GLYPH_METRICS         |
1463                                                                LAYOUT                    |
1464                                                                UPDATE_LAYOUT_SIZE        |
1465                                                                REORDER                   |
1466                                                                ALIGN );
1467       mImpl->mRecalculateNaturalSize = true;
1468       mImpl->RequestRelayout();
1469
1470       mImpl->mTextUpdateInfo.mCharacterIndex = startOfSelectedText;
1471       mImpl->mTextUpdateInfo.mNumberOfCharactersToRemove = lengthOfSelectedText;
1472       mImpl->mTextUpdateInfo.mNumberOfCharactersToAdd = lengthOfSelectedText;
1473
1474       // As the font might change, recalculate the handle positions is needed.
1475       mImpl->mEventData->mUpdateLeftSelectionPosition = true;
1476       mImpl->mEventData->mUpdateRightSelectionPosition = true;
1477       mImpl->mEventData->mUpdateHighlightBox = true;
1478       mImpl->mEventData->mScrollAfterUpdatePosition = true;
1479     }
1480   }
1481 }
1482
1483 bool Controller::IsInputFontWidthDefined() const
1484 {
1485   bool defined = false;
1486
1487   if( NULL != mImpl->mEventData )
1488   {
1489     defined = mImpl->mEventData->mInputStyle.isWidthDefined;
1490   }
1491
1492   return defined;
1493 }
1494
1495 FontWidth Controller::GetInputFontWidth() const
1496 {
1497   if( NULL != mImpl->mEventData )
1498   {
1499     return mImpl->mEventData->mInputStyle.width;
1500   }
1501
1502   return GetDefaultFontWidth();
1503 }
1504
1505 void Controller::SetInputFontSlant( FontSlant slant )
1506 {
1507   if( NULL != mImpl->mEventData )
1508   {
1509     mImpl->mEventData->mInputStyle.slant = slant;
1510     mImpl->mEventData->mInputStyle.isSlantDefined = true;
1511
1512     if( EventData::SELECTING == mImpl->mEventData->mState )
1513     {
1514       CharacterIndex startOfSelectedText = 0u;
1515       Length lengthOfSelectedText = 0u;
1516       FontDescriptionRun& fontDescriptionRun = UpdateSelectionFontStyleRun( mImpl->mEventData,
1517                                                                             mImpl->mModel->mLogicalModel,
1518                                                                             startOfSelectedText,
1519                                                                             lengthOfSelectedText );
1520
1521       fontDescriptionRun.slant = slant;
1522       fontDescriptionRun.slantDefined = true;
1523
1524       // Request to relayout.
1525       mImpl->mOperationsPending = static_cast<OperationsMask>( mImpl->mOperationsPending |
1526                                                                VALIDATE_FONTS            |
1527                                                                SHAPE_TEXT                |
1528                                                                GET_GLYPH_METRICS         |
1529                                                                LAYOUT                    |
1530                                                                UPDATE_LAYOUT_SIZE        |
1531                                                                REORDER                   |
1532                                                                ALIGN );
1533       mImpl->mRecalculateNaturalSize = true;
1534       mImpl->RequestRelayout();
1535
1536       mImpl->mTextUpdateInfo.mCharacterIndex = startOfSelectedText;
1537       mImpl->mTextUpdateInfo.mNumberOfCharactersToRemove = lengthOfSelectedText;
1538       mImpl->mTextUpdateInfo.mNumberOfCharactersToAdd = lengthOfSelectedText;
1539
1540       // As the font might change, recalculate the handle positions is needed.
1541       mImpl->mEventData->mUpdateLeftSelectionPosition = true;
1542       mImpl->mEventData->mUpdateRightSelectionPosition = true;
1543       mImpl->mEventData->mUpdateHighlightBox = true;
1544       mImpl->mEventData->mScrollAfterUpdatePosition = true;
1545     }
1546   }
1547 }
1548
1549 bool Controller::IsInputFontSlantDefined() const
1550 {
1551   bool defined = false;
1552
1553   if( NULL != mImpl->mEventData )
1554   {
1555     defined = mImpl->mEventData->mInputStyle.isSlantDefined;
1556   }
1557
1558   return defined;
1559 }
1560
1561 FontSlant Controller::GetInputFontSlant() const
1562 {
1563   if( NULL != mImpl->mEventData )
1564   {
1565     return mImpl->mEventData->mInputStyle.slant;
1566   }
1567
1568   return GetDefaultFontSlant();
1569 }
1570
1571 void Controller::SetInputFontPointSize( float size )
1572 {
1573   if( NULL != mImpl->mEventData )
1574   {
1575     mImpl->mEventData->mInputStyle.size = size;
1576     mImpl->mEventData->mInputStyle.isSizeDefined = true;
1577
1578     if( EventData::SELECTING == mImpl->mEventData->mState )
1579     {
1580       CharacterIndex startOfSelectedText = 0u;
1581       Length lengthOfSelectedText = 0u;
1582       FontDescriptionRun& fontDescriptionRun = UpdateSelectionFontStyleRun( mImpl->mEventData,
1583                                                                             mImpl->mModel->mLogicalModel,
1584                                                                             startOfSelectedText,
1585                                                                             lengthOfSelectedText );
1586
1587       fontDescriptionRun.size = static_cast<PointSize26Dot6>( size * 64.f );
1588       fontDescriptionRun.sizeDefined = true;
1589
1590       // Request to relayout.
1591       mImpl->mOperationsPending = static_cast<OperationsMask>( mImpl->mOperationsPending |
1592                                                                VALIDATE_FONTS            |
1593                                                                SHAPE_TEXT                |
1594                                                                GET_GLYPH_METRICS         |
1595                                                                LAYOUT                    |
1596                                                                UPDATE_LAYOUT_SIZE        |
1597                                                                REORDER                   |
1598                                                                ALIGN );
1599       mImpl->mRecalculateNaturalSize = true;
1600       mImpl->RequestRelayout();
1601
1602       mImpl->mTextUpdateInfo.mCharacterIndex = startOfSelectedText;
1603       mImpl->mTextUpdateInfo.mNumberOfCharactersToRemove = lengthOfSelectedText;
1604       mImpl->mTextUpdateInfo.mNumberOfCharactersToAdd = lengthOfSelectedText;
1605
1606       // As the font might change, recalculate the handle positions is needed.
1607       mImpl->mEventData->mUpdateLeftSelectionPosition = true;
1608       mImpl->mEventData->mUpdateRightSelectionPosition = true;
1609       mImpl->mEventData->mUpdateHighlightBox = true;
1610       mImpl->mEventData->mScrollAfterUpdatePosition = true;
1611     }
1612   }
1613 }
1614
1615 float Controller::GetInputFontPointSize() const
1616 {
1617   if( NULL != mImpl->mEventData )
1618   {
1619     return mImpl->mEventData->mInputStyle.size;
1620   }
1621
1622   // Return the default font's point size if there is no EventData.
1623   return GetDefaultFontSize( Text::Controller::POINT_SIZE );
1624 }
1625
1626 void Controller::SetInputLineSpacing( float lineSpacing )
1627 {
1628   if( NULL != mImpl->mEventData )
1629   {
1630     mImpl->mEventData->mInputStyle.lineSpacing = lineSpacing;
1631     mImpl->mEventData->mInputStyle.isLineSpacingDefined = true;
1632   }
1633 }
1634
1635 float Controller::GetInputLineSpacing() const
1636 {
1637   if( NULL != mImpl->mEventData )
1638   {
1639     return mImpl->mEventData->mInputStyle.lineSpacing;
1640   }
1641
1642   return 0.f;
1643 }
1644
1645 void Controller::SetInputShadowProperties( const std::string& shadowProperties )
1646 {
1647   if( NULL != mImpl->mEventData )
1648   {
1649     mImpl->mEventData->mInputStyle.shadowProperties = shadowProperties;
1650   }
1651 }
1652
1653 const std::string& Controller::GetInputShadowProperties() const
1654 {
1655   if( NULL != mImpl->mEventData )
1656   {
1657     return mImpl->mEventData->mInputStyle.shadowProperties;
1658   }
1659
1660   return EMPTY_STRING;
1661 }
1662
1663 void Controller::SetInputUnderlineProperties( const std::string& underlineProperties )
1664 {
1665   if( NULL != mImpl->mEventData )
1666   {
1667     mImpl->mEventData->mInputStyle.underlineProperties = underlineProperties;
1668   }
1669 }
1670
1671 const std::string& Controller::GetInputUnderlineProperties() const
1672 {
1673   if( NULL != mImpl->mEventData )
1674   {
1675     return mImpl->mEventData->mInputStyle.underlineProperties;
1676   }
1677
1678   return EMPTY_STRING;
1679 }
1680
1681 void Controller::SetInputEmbossProperties( const std::string& embossProperties )
1682 {
1683   if( NULL != mImpl->mEventData )
1684   {
1685     mImpl->mEventData->mInputStyle.embossProperties = embossProperties;
1686   }
1687 }
1688
1689 const std::string& Controller::GetInputEmbossProperties() const
1690 {
1691   if( NULL != mImpl->mEventData )
1692   {
1693     return mImpl->mEventData->mInputStyle.embossProperties;
1694   }
1695
1696   return GetDefaultEmbossProperties();
1697 }
1698
1699 void Controller::SetInputOutlineProperties( const std::string& outlineProperties )
1700 {
1701   if( NULL != mImpl->mEventData )
1702   {
1703     mImpl->mEventData->mInputStyle.outlineProperties = outlineProperties;
1704   }
1705 }
1706
1707 const std::string& Controller::GetInputOutlineProperties() const
1708 {
1709   if( NULL != mImpl->mEventData )
1710   {
1711     return mImpl->mEventData->mInputStyle.outlineProperties;
1712   }
1713
1714   return GetDefaultOutlineProperties();
1715 }
1716
1717 void Controller::SetInputModePassword( bool passwordInput )
1718 {
1719   if( NULL != mImpl->mEventData )
1720   {
1721     mImpl->mEventData->mPasswordInput = passwordInput;
1722   }
1723 }
1724
1725 bool Controller::IsInputModePassword()
1726 {
1727   if( NULL != mImpl->mEventData )
1728   {
1729     return mImpl->mEventData->mPasswordInput;
1730   }
1731   return false;
1732 }
1733
1734 void Controller::SetNoTextDoubleTapAction( NoTextTap::Action action )
1735 {
1736   if( NULL != mImpl->mEventData )
1737   {
1738     mImpl->mEventData->mDoubleTapAction = action;
1739   }
1740 }
1741
1742 Controller::NoTextTap::Action Controller::GetNoTextDoubleTapAction() const
1743 {
1744   NoTextTap::Action action = NoTextTap::NO_ACTION;
1745
1746   if( NULL != mImpl->mEventData )
1747   {
1748     action = mImpl->mEventData->mDoubleTapAction;
1749   }
1750
1751   return action;
1752 }
1753
1754 void Controller::SetNoTextLongPressAction( NoTextTap::Action action )
1755 {
1756   if( NULL != mImpl->mEventData )
1757   {
1758     mImpl->mEventData->mLongPressAction = action;
1759   }
1760 }
1761
1762 Controller::NoTextTap::Action Controller::GetNoTextLongPressAction() const
1763 {
1764   NoTextTap::Action action = NoTextTap::NO_ACTION;
1765
1766   if( NULL != mImpl->mEventData )
1767   {
1768     action = mImpl->mEventData->mLongPressAction;
1769   }
1770
1771   return action;
1772 }
1773
1774 bool Controller::IsUnderlineSetByString()
1775 {
1776   return mImpl->mUnderlineSetByString;
1777 }
1778
1779 void Controller::UnderlineSetByString( bool setByString )
1780 {
1781   mImpl->mUnderlineSetByString = setByString;
1782 }
1783
1784 bool Controller::IsShadowSetByString()
1785 {
1786   return mImpl->mShadowSetByString;
1787 }
1788
1789 void Controller::ShadowSetByString( bool setByString )
1790 {
1791   mImpl->mShadowSetByString = setByString;
1792 }
1793
1794 bool Controller::IsOutlineSetByString()
1795 {
1796   return mImpl->mOutlineSetByString;
1797 }
1798
1799 void Controller::OutlineSetByString( bool setByString )
1800 {
1801   mImpl->mOutlineSetByString = setByString;
1802 }
1803
1804 bool Controller::IsFontStyleSetByString()
1805 {
1806   return mImpl->mFontStyleSetByString;
1807 }
1808
1809 void Controller::FontStyleSetByString( bool setByString )
1810 {
1811   mImpl->mFontStyleSetByString = setByString;
1812 }
1813
1814 // public : Queries & retrieves.
1815
1816 Layout::Engine& Controller::GetLayoutEngine()
1817 {
1818   return mImpl->mLayoutEngine;
1819 }
1820
1821 View& Controller::GetView()
1822 {
1823   return mImpl->mView;
1824 }
1825
1826 Vector3 Controller::GetNaturalSize()
1827 {
1828   DALI_LOG_INFO( gLogFilter, Debug::Verbose, "-->Controller::GetNaturalSize\n" );
1829   Vector3 naturalSize;
1830
1831   // Make sure the model is up-to-date before layouting
1832   ProcessModifyEvents();
1833
1834   if( mImpl->mRecalculateNaturalSize )
1835   {
1836     // Operations that can be done only once until the text changes.
1837     const OperationsMask onlyOnceOperations = static_cast<OperationsMask>( CONVERT_TO_UTF32  |
1838                                                                            GET_SCRIPTS       |
1839                                                                            VALIDATE_FONTS    |
1840                                                                            GET_LINE_BREAKS   |
1841                                                                            GET_WORD_BREAKS   |
1842                                                                            BIDI_INFO         |
1843                                                                            SHAPE_TEXT        |
1844                                                                            GET_GLYPH_METRICS );
1845
1846     // Set the update info to relayout the whole text.
1847     mImpl->mTextUpdateInfo.mParagraphCharacterIndex = 0u;
1848     mImpl->mTextUpdateInfo.mRequestedNumberOfCharacters = mImpl->mModel->mLogicalModel->mText.Count();
1849
1850     // Make sure the model is up-to-date before layouting
1851     mImpl->UpdateModel( onlyOnceOperations );
1852
1853     // Layout the text for the new width.
1854     mImpl->mOperationsPending = static_cast<OperationsMask>( mImpl->mOperationsPending | LAYOUT | REORDER );
1855
1856     // Store the actual control's size to restore later.
1857     const Size actualControlSize = mImpl->mModel->mVisualModel->mControlSize;
1858
1859     DoRelayout( Size( MAX_FLOAT, MAX_FLOAT ),
1860                 static_cast<OperationsMask>( onlyOnceOperations |
1861                                              LAYOUT | REORDER ),
1862                 naturalSize.GetVectorXY() );
1863
1864     // Do not do again the only once operations.
1865     mImpl->mOperationsPending = static_cast<OperationsMask>( mImpl->mOperationsPending & ~onlyOnceOperations );
1866
1867     // Do the size related operations again.
1868     const OperationsMask sizeOperations =  static_cast<OperationsMask>( LAYOUT |
1869                                                                         ALIGN  |
1870                                                                         REORDER );
1871     mImpl->mOperationsPending = static_cast<OperationsMask>( mImpl->mOperationsPending | sizeOperations );
1872
1873     // Stores the natural size to avoid recalculate it again
1874     // unless the text/style changes.
1875     mImpl->mModel->mVisualModel->SetNaturalSize( naturalSize.GetVectorXY() );
1876
1877     mImpl->mRecalculateNaturalSize = false;
1878
1879     // Clear the update info. This info will be set the next time the text is updated.
1880     mImpl->mTextUpdateInfo.Clear();
1881
1882     // Restore the actual control's size.
1883     mImpl->mModel->mVisualModel->mControlSize = actualControlSize;
1884
1885     DALI_LOG_INFO( gLogFilter, Debug::Verbose, "<--Controller::GetNaturalSize calculated %f,%f,%f\n", naturalSize.x, naturalSize.y, naturalSize.z );
1886   }
1887   else
1888   {
1889     naturalSize = mImpl->mModel->mVisualModel->GetNaturalSize();
1890
1891     DALI_LOG_INFO( gLogFilter, Debug::Verbose, "<--Controller::GetNaturalSize cached %f,%f,%f\n", naturalSize.x, naturalSize.y, naturalSize.z );
1892   }
1893
1894   naturalSize.x = ConvertToEven( naturalSize.x );
1895   naturalSize.y = ConvertToEven( naturalSize.y );
1896
1897   return naturalSize;
1898 }
1899
1900 float Controller::GetHeightForWidth( float width )
1901 {
1902   DALI_LOG_INFO( gLogFilter, Debug::Verbose, "-->Controller::GetHeightForWidth %p width %f\n", this, width );
1903   // Make sure the model is up-to-date before layouting
1904   ProcessModifyEvents();
1905
1906   Size layoutSize;
1907   if( fabsf( width - mImpl->mModel->mVisualModel->mControlSize.width ) > Math::MACHINE_EPSILON_1000 ||
1908                                                          mImpl->mTextUpdateInfo.mFullRelayoutNeeded ||
1909                                                          mImpl->mTextUpdateInfo.mClearAll            )
1910   {
1911     // Operations that can be done only once until the text changes.
1912     const OperationsMask onlyOnceOperations = static_cast<OperationsMask>( CONVERT_TO_UTF32  |
1913                                                                            GET_SCRIPTS       |
1914                                                                            VALIDATE_FONTS    |
1915                                                                            GET_LINE_BREAKS   |
1916                                                                            GET_WORD_BREAKS   |
1917                                                                            BIDI_INFO         |
1918                                                                            SHAPE_TEXT        |
1919                                                                            GET_GLYPH_METRICS );
1920
1921     // Set the update info to relayout the whole text.
1922     mImpl->mTextUpdateInfo.mParagraphCharacterIndex = 0u;
1923     mImpl->mTextUpdateInfo.mRequestedNumberOfCharacters = mImpl->mModel->mLogicalModel->mText.Count();
1924
1925     // Make sure the model is up-to-date before layouting
1926     mImpl->UpdateModel( onlyOnceOperations );
1927
1928
1929     // Layout the text for the new width.
1930     mImpl->mOperationsPending = static_cast<OperationsMask>( mImpl->mOperationsPending | LAYOUT );
1931
1932     // Store the actual control's width.
1933     const float actualControlWidth = mImpl->mModel->mVisualModel->mControlSize.width;
1934
1935     DoRelayout( Size( width, MAX_FLOAT ),
1936                 static_cast<OperationsMask>( onlyOnceOperations |
1937                                              LAYOUT ),
1938                 layoutSize );
1939
1940     // Do not do again the only once operations.
1941     mImpl->mOperationsPending = static_cast<OperationsMask>( mImpl->mOperationsPending & ~onlyOnceOperations );
1942
1943     // Do the size related operations again.
1944     const OperationsMask sizeOperations =  static_cast<OperationsMask>( LAYOUT |
1945                                                                         ALIGN  |
1946                                                                         REORDER );
1947
1948     mImpl->mOperationsPending = static_cast<OperationsMask>( mImpl->mOperationsPending | sizeOperations );
1949
1950     // Clear the update info. This info will be set the next time the text is updated.
1951     mImpl->mTextUpdateInfo.Clear();
1952
1953     // Restore the actual control's width.
1954     mImpl->mModel->mVisualModel->mControlSize.width = actualControlWidth;
1955
1956     DALI_LOG_INFO( gLogFilter, Debug::Verbose, "<--Controller::GetHeightForWidth calculated %f\n", layoutSize.height );
1957   }
1958   else
1959   {
1960     layoutSize = mImpl->mModel->mVisualModel->GetLayoutSize();
1961     DALI_LOG_INFO( gLogFilter, Debug::Verbose, "<--Controller::GetHeightForWidth cached %f\n", layoutSize.height );
1962   }
1963
1964   return layoutSize.height;
1965 }
1966
1967 int Controller::GetLineCount( float width )
1968 {
1969   GetHeightForWidth( width );
1970   int numberofLines = mImpl->mModel->GetNumberOfLines();
1971   return numberofLines;
1972 }
1973
1974 const ModelInterface* const Controller::GetTextModel() const
1975 {
1976   return mImpl->mModel.Get();
1977 }
1978
1979 float Controller::GetScrollAmountByUserInput()
1980 {
1981   float scrollAmount = 0.0f;
1982
1983   if (NULL != mImpl->mEventData && mImpl->mEventData->mCheckScrollAmount)
1984   {
1985     scrollAmount = mImpl->mModel->mScrollPosition.y -  mImpl->mModel->mScrollPositionLast.y;
1986     mImpl->mEventData->mCheckScrollAmount = false;
1987   }
1988   return scrollAmount;
1989 }
1990
1991 bool Controller::GetTextScrollInfo( float& scrollPosition, float& controlHeight, float& layoutHeight )
1992 {
1993   const Vector2& layout = mImpl->mModel->mVisualModel->GetLayoutSize();
1994   bool isScrolled;
1995
1996   controlHeight = mImpl->mModel->mVisualModel->mControlSize.height;
1997   layoutHeight = layout.height;
1998   scrollPosition = mImpl->mModel->mScrollPosition.y;
1999   isScrolled = !Equals( mImpl->mModel->mScrollPosition.y, mImpl->mModel->mScrollPositionLast.y, Math::MACHINE_EPSILON_1 );
2000   return isScrolled;
2001 }
2002
2003 void Controller::SetHiddenInputOption(const Property::Map& options )
2004 {
2005   if( NULL == mImpl->mHiddenInput )
2006   {
2007     mImpl->mHiddenInput = new HiddenText( this );
2008   }
2009   mImpl->mHiddenInput->SetProperties(options);
2010 }
2011
2012 void Controller::GetHiddenInputOption(Property::Map& options )
2013 {
2014   if( NULL != mImpl->mHiddenInput )
2015   {
2016     mImpl->mHiddenInput->GetProperties(options);
2017   }
2018 }
2019
2020 void Controller::SetPlaceholderProperty( const Property::Map& map )
2021 {
2022   const Property::Map::SizeType count = map.Count();
2023
2024   for( Property::Map::SizeType position = 0; position < count; ++position )
2025   {
2026     KeyValuePair keyValue = map.GetKeyValue( position );
2027     Property::Key& key = keyValue.first;
2028     Property::Value& value = keyValue.second;
2029
2030     if( key == Toolkit::Text::PlaceHolder::Property::TEXT  || key == PLACEHOLDER_TEXT )
2031     {
2032       std::string text = "";
2033       value.Get( text );
2034       SetPlaceholderText( Controller::PLACEHOLDER_TYPE_INACTIVE, text );
2035     }
2036     else if( key == Toolkit::Text::PlaceHolder::Property::TEXT_FOCUSED || key == PLACEHOLDER_TEXT_FOCUSED )
2037     {
2038       std::string text = "";
2039       value.Get( text );
2040       SetPlaceholderText( Controller::PLACEHOLDER_TYPE_ACTIVE, text );
2041     }
2042     else if( key == Toolkit::Text::PlaceHolder::Property::COLOR || key == PLACEHOLDER_COLOR )
2043     {
2044       Vector4 textColor;
2045       value.Get( textColor );
2046       if( GetPlaceholderTextColor() != textColor )
2047       {
2048         SetPlaceholderTextColor( textColor );
2049       }
2050     }
2051     else if( key == Toolkit::Text::PlaceHolder::Property::FONT_FAMILY || key == PLACEHOLDER_FONT_FAMILY )
2052     {
2053       std::string fontFamily = "";
2054       value.Get( fontFamily );
2055       SetPlaceholderFontFamily( fontFamily );
2056     }
2057     else if( key == Toolkit::Text::PlaceHolder::Property::FONT_STYLE || key == PLACEHOLDER_FONT_STYLE )
2058     {
2059       SetFontStyleProperty( this, value, Text::FontStyle::PLACEHOLDER );
2060     }
2061     else if( key == Toolkit::Text::PlaceHolder::Property::POINT_SIZE || key == PLACEHOLDER_POINT_SIZE )
2062     {
2063       float pointSize;
2064       value.Get( pointSize );
2065       if( !Equals( GetPlaceholderTextFontSize( Text::Controller::POINT_SIZE ), pointSize ) )
2066       {
2067         SetPlaceholderTextFontSize( pointSize, Text::Controller::POINT_SIZE );
2068       }
2069     }
2070     else if( key == Toolkit::Text::PlaceHolder::Property::PIXEL_SIZE || key == PLACEHOLDER_PIXEL_SIZE )
2071     {
2072       float pixelSize;
2073       value.Get( pixelSize );
2074       if( !Equals( GetPlaceholderTextFontSize( Text::Controller::PIXEL_SIZE ), pixelSize ) )
2075       {
2076         SetPlaceholderTextFontSize( pixelSize, Text::Controller::PIXEL_SIZE );
2077       }
2078     }
2079     else if( key == Toolkit::Text::PlaceHolder::Property::ELLIPSIS || key == PLACEHOLDER_ELLIPSIS )
2080     {
2081       bool ellipsis;
2082       value.Get( ellipsis );
2083       SetPlaceholderTextElideEnabled( ellipsis );
2084     }
2085   }
2086 }
2087
2088 void Controller::GetPlaceholderProperty( Property::Map& map )
2089 {
2090   if( NULL != mImpl->mEventData )
2091   {
2092     if( !mImpl->mEventData->mPlaceholderTextActive.empty() )
2093     {
2094       map[ Text::PlaceHolder::Property::TEXT_FOCUSED ] = mImpl->mEventData->mPlaceholderTextActive;
2095     }
2096     if( !mImpl->mEventData->mPlaceholderTextInactive.empty() )
2097     {
2098       map[ Text::PlaceHolder::Property::TEXT ] = mImpl->mEventData->mPlaceholderTextInactive;
2099     }
2100
2101     map[ Text::PlaceHolder::Property::COLOR ] = mImpl->mEventData->mPlaceholderTextColor;
2102     map[ Text::PlaceHolder::Property::FONT_FAMILY ] = GetPlaceholderFontFamily();
2103
2104     Property::Value fontStyleMapGet;
2105     GetFontStyleProperty( this, fontStyleMapGet, Text::FontStyle::PLACEHOLDER );
2106     map[ Text::PlaceHolder::Property::FONT_STYLE ] = fontStyleMapGet;
2107
2108     // Choose font size : POINT_SIZE or PIXEL_SIZE
2109     if( !mImpl->mEventData->mIsPlaceholderPixelSize )
2110     {
2111       map[ Text::PlaceHolder::Property::POINT_SIZE ] = GetPlaceholderTextFontSize( Text::Controller::POINT_SIZE );
2112     }
2113     else
2114     {
2115       map[ Text::PlaceHolder::Property::PIXEL_SIZE ] = GetPlaceholderTextFontSize( Text::Controller::PIXEL_SIZE );
2116     }
2117
2118     if( mImpl->mEventData->mPlaceholderEllipsisFlag )
2119     {
2120       map[ Text::PlaceHolder::Property::ELLIPSIS ] = IsPlaceholderTextElideEnabled();
2121     }
2122   }
2123 }
2124
2125 Toolkit::DevelText::TextDirection::Type Controller::GetTextDirection()
2126 {
2127   if( ( 0u == mImpl->mModel->mLogicalModel->mText.Count() ) )
2128   {
2129     return Toolkit::DevelText::TextDirection::LEFT_TO_RIGHT;
2130   }
2131
2132   const Character character = mImpl->mModel->mLogicalModel->mText[0];
2133   Script script = TextAbstraction::GetCharacterScript( character );
2134
2135   if( TextAbstraction::IsRightToLeftScript( script ) )
2136   {
2137     return Toolkit::DevelText::TextDirection::RIGHT_TO_LEFT;
2138   }
2139
2140   return Toolkit::DevelText::TextDirection::LEFT_TO_RIGHT;
2141 }
2142
2143 // public : Relayout.
2144
2145 Controller::UpdateTextType Controller::Relayout( const Size& size )
2146 {
2147   DALI_LOG_INFO( gLogFilter, Debug::Verbose, "-->Controller::Relayout %p size %f,%f, autoScroll[%s]\n", this, size.width, size.height, mImpl->mIsAutoScrollEnabled ?"true":"false"  );
2148
2149   UpdateTextType updateTextType = NONE_UPDATED;
2150
2151   if( ( size.width < Math::MACHINE_EPSILON_1000 ) || ( size.height < Math::MACHINE_EPSILON_1000 ) )
2152   {
2153     if( 0u != mImpl->mModel->mVisualModel->mGlyphPositions.Count() )
2154     {
2155       mImpl->mModel->mVisualModel->mGlyphPositions.Clear();
2156       updateTextType = MODEL_UPDATED;
2157     }
2158
2159     // Clear the update info. This info will be set the next time the text is updated.
2160     mImpl->mTextUpdateInfo.Clear();
2161
2162     // Not worth to relayout if width or height is equal to zero.
2163     DALI_LOG_INFO( gLogFilter, Debug::Verbose, "<--Controller::Relayout (skipped)\n" );
2164
2165     return updateTextType;
2166   }
2167
2168   // Whether a new size has been set.
2169   const bool newSize = ( size != mImpl->mModel->mVisualModel->mControlSize );
2170
2171   if( newSize )
2172   {
2173     DALI_LOG_INFO( gLogFilter, Debug::Verbose, "new size (previous size %f,%f)\n", mImpl->mModel->mVisualModel->mControlSize.width, mImpl->mModel->mVisualModel->mControlSize.height );
2174
2175     if( ( 0 == mImpl->mTextUpdateInfo.mNumberOfCharactersToAdd ) &&
2176         ( 0 == mImpl->mTextUpdateInfo.mPreviousNumberOfCharacters ) &&
2177         ( ( mImpl->mModel->mVisualModel->mControlSize.width < Math::MACHINE_EPSILON_1000 ) || ( mImpl->mModel->mVisualModel->mControlSize.height < Math::MACHINE_EPSILON_1000 ) ) )
2178     {
2179       mImpl->mTextUpdateInfo.mNumberOfCharactersToAdd = mImpl->mModel->mLogicalModel->mText.Count();
2180     }
2181
2182     // Layout operations that need to be done if the size changes.
2183     mImpl->mOperationsPending = static_cast<OperationsMask>( mImpl->mOperationsPending |
2184                                                              LAYOUT                    |
2185                                                              ALIGN                     |
2186                                                              UPDATE_LAYOUT_SIZE        |
2187                                                              REORDER );
2188     // Set the update info to relayout the whole text.
2189     mImpl->mTextUpdateInfo.mFullRelayoutNeeded = true;
2190     mImpl->mTextUpdateInfo.mCharacterIndex = 0u;
2191
2192     // Store the size used to layout the text.
2193     mImpl->mModel->mVisualModel->mControlSize = size;
2194   }
2195
2196   // Whether there are modify events.
2197   if( 0u != mImpl->mModifyEvents.Count() )
2198   {
2199     // Style operations that need to be done if the text is modified.
2200     mImpl->mOperationsPending = static_cast<OperationsMask>( mImpl->mOperationsPending |
2201                                                              COLOR );
2202   }
2203
2204   // Set the update info to elide the text.
2205   if( mImpl->mModel->mElideEnabled ||
2206       ( ( NULL != mImpl->mEventData ) && mImpl->mEventData->mIsPlaceholderElideEnabled ) )
2207   {
2208     // Update Text layout for applying elided
2209     mImpl->mOperationsPending = static_cast<OperationsMask>( mImpl->mOperationsPending |
2210                                                              ALIGN                     |
2211                                                              LAYOUT                    |
2212                                                              UPDATE_LAYOUT_SIZE        |
2213                                                              REORDER );
2214     mImpl->mTextUpdateInfo.mFullRelayoutNeeded = true;
2215     mImpl->mTextUpdateInfo.mCharacterIndex = 0u;
2216   }
2217
2218   // Make sure the model is up-to-date before layouting.
2219   ProcessModifyEvents();
2220   bool updated = mImpl->UpdateModel( mImpl->mOperationsPending );
2221
2222   // Layout the text.
2223   Size layoutSize;
2224   updated = DoRelayout( size,
2225                         mImpl->mOperationsPending,
2226                         layoutSize ) || updated;
2227
2228   if( updated )
2229   {
2230     updateTextType = MODEL_UPDATED;
2231   }
2232
2233   // Do not re-do any operation until something changes.
2234   mImpl->mOperationsPending = NO_OPERATION;
2235   mImpl->mModel->mScrollPositionLast = mImpl->mModel->mScrollPosition;
2236
2237   // Whether the text control is editable
2238   const bool isEditable = NULL != mImpl->mEventData;
2239
2240   // Keep the current offset as it will be used to update the decorator's positions (if the size changes).
2241   Vector2 offset;
2242   if( newSize && isEditable )
2243   {
2244     offset = mImpl->mModel->mScrollPosition;
2245   }
2246
2247   if( !isEditable || !IsMultiLineEnabled() )
2248   {
2249     // After doing the text layout, the vertical offset to place the actor in the desired position can be calculated.
2250     CalculateVerticalOffset( size );
2251   }
2252
2253   if( isEditable )
2254   {
2255     if( newSize )
2256     {
2257       // If there is a new size, the scroll position needs to be clamped.
2258       mImpl->ClampHorizontalScroll( layoutSize );
2259
2260       // Update the decorator's positions is needed if there is a new size.
2261       mImpl->mEventData->mDecorator->UpdatePositions( mImpl->mModel->mScrollPosition - offset );
2262     }
2263
2264     // Move the cursor, grab handle etc.
2265     if( mImpl->ProcessInputEvents() )
2266     {
2267       updateTextType = static_cast<UpdateTextType>( updateTextType | DECORATOR_UPDATED );
2268     }
2269   }
2270
2271   // Clear the update info. This info will be set the next time the text is updated.
2272   mImpl->mTextUpdateInfo.Clear();
2273   DALI_LOG_INFO( gLogFilter, Debug::Verbose, "<--Controller::Relayout\n" );
2274
2275   return updateTextType;
2276 }
2277
2278 void Controller::RequestRelayout()
2279 {
2280   mImpl->RequestRelayout();
2281 }
2282
2283 // public : Input style change signals.
2284
2285 bool Controller::IsInputStyleChangedSignalsQueueEmpty()
2286 {
2287   return ( NULL == mImpl->mEventData ) || ( 0u == mImpl->mEventData->mInputStyleChangedQueue.Count() );
2288 }
2289
2290 void Controller::ProcessInputStyleChangedSignals()
2291 {
2292   if( NULL == mImpl->mEventData )
2293   {
2294     // Nothing to do.
2295     return;
2296   }
2297
2298   for( Vector<InputStyle::Mask>::ConstIterator it = mImpl->mEventData->mInputStyleChangedQueue.Begin(),
2299          endIt = mImpl->mEventData->mInputStyleChangedQueue.End();
2300        it != endIt;
2301        ++it )
2302   {
2303     const InputStyle::Mask mask = *it;
2304
2305     if( NULL != mImpl->mEditableControlInterface )
2306     {
2307       // Emit the input style changed signal.
2308       mImpl->mEditableControlInterface->InputStyleChanged( mask );
2309     }
2310   }
2311
2312   mImpl->mEventData->mInputStyleChangedQueue.Clear();
2313 }
2314
2315 // public : Text-input Event Queuing.
2316
2317 void Controller::KeyboardFocusGainEvent()
2318 {
2319   DALI_ASSERT_DEBUG( mImpl->mEventData && "Unexpected KeyboardFocusGainEvent" );
2320
2321   if( NULL != mImpl->mEventData )
2322   {
2323     if( ( EventData::INACTIVE == mImpl->mEventData->mState ) ||
2324         ( EventData::INTERRUPTED == mImpl->mEventData->mState ) )
2325     {
2326       mImpl->ChangeState( EventData::EDITING );
2327       mImpl->mEventData->mUpdateCursorPosition = true; //If editing started without tap event, cursor update must be triggered.
2328       mImpl->mEventData->mUpdateInputStyle = true;
2329     }
2330     mImpl->NotifyImfMultiLineStatus();
2331     if( mImpl->IsShowingPlaceholderText() )
2332     {
2333       // Show alternative placeholder-text when editing
2334       ShowPlaceholderText();
2335     }
2336
2337     mImpl->RequestRelayout();
2338   }
2339 }
2340
2341 void Controller::KeyboardFocusLostEvent()
2342 {
2343   DALI_ASSERT_DEBUG( mImpl->mEventData && "Unexpected KeyboardFocusLostEvent" );
2344
2345   if( NULL != mImpl->mEventData )
2346   {
2347     if( EventData::INTERRUPTED != mImpl->mEventData->mState )
2348     {
2349       mImpl->ChangeState( EventData::INACTIVE );
2350
2351       if( !mImpl->IsShowingRealText() )
2352       {
2353         // Revert to regular placeholder-text when not editing
2354         ShowPlaceholderText();
2355       }
2356     }
2357   }
2358   mImpl->RequestRelayout();
2359 }
2360
2361 bool Controller::KeyEvent( const Dali::KeyEvent& keyEvent )
2362 {
2363   DALI_ASSERT_DEBUG( mImpl->mEventData && "Unexpected KeyEvent" );
2364
2365   bool textChanged = false;
2366   bool relayoutNeeded = false;
2367
2368   if( ( NULL != mImpl->mEventData ) &&
2369       ( keyEvent.state == KeyEvent::Down ) )
2370   {
2371     int keyCode = keyEvent.keyCode;
2372     const std::string& keyString = keyEvent.keyPressed;
2373     const std::string keyName = keyEvent.keyPressedName;
2374
2375     const bool isNullKey = ( 0 == keyCode ) && ( keyString.empty() );
2376
2377     // Pre-process to separate modifying events from non-modifying input events.
2378     if( isNullKey )
2379     {
2380       // In some platforms arrive key events with no key code.
2381       // Do nothing.
2382       return false;
2383     }
2384     else if( Dali::DALI_KEY_ESCAPE == keyCode || Dali::DALI_KEY_BACK == keyCode  || Dali::DALI_KEY_SEARCH == keyCode )
2385     {
2386       // Do nothing
2387       return false;
2388     }
2389     else if( ( Dali::DALI_KEY_CURSOR_LEFT  == keyCode ) ||
2390              ( Dali::DALI_KEY_CURSOR_RIGHT == keyCode ) ||
2391              ( Dali::DALI_KEY_CURSOR_UP    == keyCode ) ||
2392              ( Dali::DALI_KEY_CURSOR_DOWN  == keyCode ) )
2393     {
2394       // If don't have any text, do nothing.
2395       if( !mImpl->mTextUpdateInfo.mPreviousNumberOfCharacters )
2396       {
2397         return false;
2398       }
2399
2400       uint32_t cursorPosition = mImpl->mEventData->mPrimaryCursorPosition;
2401       uint32_t numberOfCharacters = mImpl->mTextUpdateInfo.mPreviousNumberOfCharacters;
2402       uint32_t cursorLine = mImpl->mModel->mVisualModel->GetLineOfCharacter( cursorPosition );
2403       uint32_t numberOfLines = mImpl->mModel->GetNumberOfLines();
2404
2405       // Logic to determine whether this text control will lose focus or not.
2406       if( ( Dali::DALI_KEY_CURSOR_LEFT == keyCode && 0 == cursorPosition ) ||
2407           ( Dali::DALI_KEY_CURSOR_RIGHT == keyCode && numberOfCharacters == cursorPosition) ||
2408           ( Dali::DALI_KEY_CURSOR_DOWN == keyCode && cursorLine == numberOfLines -1 ) ||
2409           ( Dali::DALI_KEY_CURSOR_DOWN == keyCode && numberOfCharacters == cursorPosition && cursorLine -1 == numberOfLines -1 ) ||
2410           ( Dali::DALI_KEY_CURSOR_UP == keyCode && cursorLine == 0 ) ||
2411           ( Dali::DALI_KEY_CURSOR_UP == keyCode && numberOfCharacters == cursorPosition && cursorLine == 1 ) )
2412       {
2413         return false;
2414       }
2415
2416       mImpl->mEventData->mCheckScrollAmount = true;
2417       Event event( Event::CURSOR_KEY_EVENT );
2418       event.p1.mInt = keyCode;
2419       event.p2.mBool = keyEvent.IsShiftModifier();
2420       mImpl->mEventData->mEventQueue.push_back( event );
2421
2422       // Will request for relayout.
2423       relayoutNeeded = true;
2424     }
2425     else if ( Dali::DevelKey::DALI_KEY_CONTROL_LEFT == keyCode || Dali::DevelKey::DALI_KEY_CONTROL_RIGHT == keyCode )
2426     {
2427       // Left or Right Control key event is received before Ctrl-C/V/X key event is received
2428       // If not handle it here, any selected text will be deleted
2429
2430       // Do nothing
2431       return false;
2432     }
2433     else if ( keyEvent.IsCtrlModifier() )
2434     {
2435       bool consumed = false;
2436       if (keyName == KEY_C_NAME)
2437       {
2438         // Ctrl-C to copy the selected text
2439         TextPopupButtonTouched( Toolkit::TextSelectionPopup::COPY );
2440         consumed = true;
2441       }
2442       else if (keyName == KEY_V_NAME)
2443       {
2444         // Ctrl-V to paste the copied text
2445         TextPopupButtonTouched( Toolkit::TextSelectionPopup::PASTE );
2446         consumed = true;
2447       }
2448       else if (keyName == KEY_X_NAME)
2449       {
2450         // Ctrl-X to cut the selected text
2451         TextPopupButtonTouched( Toolkit::TextSelectionPopup::CUT );
2452         consumed = true;
2453       }
2454       return consumed;
2455     }
2456     else if( ( Dali::DALI_KEY_BACKSPACE == keyCode ) ||
2457              ( Dali::DevelKey::DALI_KEY_DELETE == keyCode ) )
2458     {
2459       textChanged = DeleteEvent( keyCode );
2460
2461       // Will request for relayout.
2462       relayoutNeeded = true;
2463     }
2464     else if( IsKey( keyEvent, Dali::DALI_KEY_POWER ) ||
2465              IsKey( keyEvent, Dali::DALI_KEY_MENU )  ||
2466              IsKey( keyEvent, static_cast<Dali::KEY>(Dali::DevelKey::DALI_KEY_SOURCE) ) ||
2467              IsKey( keyEvent, Dali::DALI_KEY_HOME ) )
2468     {
2469       // Power key/Menu/Home key behaviour does not allow edit mode to resume.
2470       mImpl->ChangeState( EventData::INACTIVE );
2471
2472       // Will request for relayout.
2473       relayoutNeeded = true;
2474
2475       // This branch avoids calling the InsertText() method of the 'else' branch which can delete selected text.
2476     }
2477     else if( Dali::DALI_KEY_SHIFT_LEFT == keyCode )
2478     {
2479       // DALI_KEY_SHIFT_LEFT is the key code for the Left Shift. It's sent (by the imf?) when the predictive text is enabled
2480       // and a character is typed after the type of a upper case latin character.
2481
2482       // Do nothing.
2483       return false;
2484     }
2485     else if( ( Dali::DALI_KEY_VOLUME_UP == keyCode ) || ( Dali::DALI_KEY_VOLUME_DOWN == keyCode ) )
2486     {
2487       // This branch avoids calling the InsertText() method of the 'else' branch which can delete selected text.
2488       // Do nothing.
2489       return false;
2490     }
2491     else
2492     {
2493       DALI_LOG_INFO( gLogFilter, Debug::Verbose, "Controller::KeyEvent %p keyString %s\n", this, keyString.c_str() );
2494
2495       // IMF manager is no longer handling key-events
2496       mImpl->ClearPreEditFlag();
2497
2498       InsertText( keyString, COMMIT );
2499       textChanged = true;
2500
2501       // Will request for relayout.
2502       relayoutNeeded = true;
2503     }
2504
2505     if ( ( mImpl->mEventData->mState != EventData::INTERRUPTED ) &&
2506          ( mImpl->mEventData->mState != EventData::INACTIVE ) &&
2507          ( !isNullKey ) &&
2508          ( Dali::DALI_KEY_SHIFT_LEFT != keyCode ) &&
2509          ( Dali::DALI_KEY_VOLUME_UP != keyCode ) &&
2510          ( Dali::DALI_KEY_VOLUME_DOWN != keyCode ) )
2511     {
2512       // Should not change the state if the key is the shift send by the imf manager.
2513       // Otherwise, when the state is SELECTING the text controller can't send the right
2514       // surrounding info to the imf.
2515       mImpl->ChangeState( EventData::EDITING );
2516
2517       // Will request for relayout.
2518       relayoutNeeded = true;
2519     }
2520
2521     if( relayoutNeeded )
2522     {
2523       mImpl->RequestRelayout();
2524     }
2525   }
2526
2527   if( textChanged &&
2528       ( NULL != mImpl->mEditableControlInterface ) )
2529   {
2530     // Do this last since it provides callbacks into application code
2531     mImpl->mEditableControlInterface->TextChanged();
2532   }
2533
2534   return true;
2535 }
2536
2537 void Controller::TapEvent( unsigned int tapCount, float x, float y )
2538 {
2539   DALI_ASSERT_DEBUG( mImpl->mEventData && "Unexpected TapEvent" );
2540
2541   if( NULL != mImpl->mEventData )
2542   {
2543     DALI_LOG_INFO( gLogFilter, Debug::Concise, "TapEvent state:%d \n", mImpl->mEventData->mState );
2544     EventData::State state( mImpl->mEventData->mState );
2545     bool relayoutNeeded( false );   // to avoid unnecessary relayouts when tapping an empty text-field
2546
2547     if( mImpl->IsClipboardVisible() )
2548     {
2549       if( EventData::INACTIVE == state || EventData::EDITING == state)
2550       {
2551         mImpl->ChangeState( EventData::EDITING_WITH_GRAB_HANDLE );
2552       }
2553       relayoutNeeded = true;
2554     }
2555     else if( 1u == tapCount )
2556     {
2557       if( EventData::EDITING_WITH_POPUP == state || EventData::EDITING_WITH_PASTE_POPUP == state )
2558       {
2559         mImpl->ChangeState( EventData::EDITING_WITH_GRAB_HANDLE );  // If Popup shown hide it here so can be shown again if required.
2560       }
2561
2562       if( mImpl->IsShowingRealText() && ( EventData::INACTIVE != state ) )
2563       {
2564         mImpl->ChangeState( EventData::EDITING_WITH_GRAB_HANDLE );
2565         relayoutNeeded = true;
2566       }
2567       else
2568       {
2569         if( mImpl->IsShowingPlaceholderText() && !mImpl->IsFocusedPlaceholderAvailable() )
2570         {
2571           // Hide placeholder text
2572           ResetText();
2573         }
2574
2575         if( EventData::INACTIVE == state )
2576         {
2577           mImpl->ChangeState( EventData::EDITING );
2578         }
2579         else if( !mImpl->IsClipboardEmpty() )
2580         {
2581           mImpl->ChangeState( EventData::EDITING_WITH_POPUP );
2582         }
2583         relayoutNeeded = true;
2584       }
2585     }
2586     else if( 2u == tapCount )
2587     {
2588       if( mImpl->mEventData->mSelectionEnabled &&
2589           mImpl->IsShowingRealText() )
2590       {
2591         relayoutNeeded = true;
2592         mImpl->mEventData->mIsLeftHandleSelected = true;
2593         mImpl->mEventData->mIsRightHandleSelected = true;
2594       }
2595     }
2596
2597     // Handles & cursors must be repositioned after Relayout() i.e. after the Model has been updated
2598     if( relayoutNeeded )
2599     {
2600       Event event( Event::TAP_EVENT );
2601       event.p1.mUint = tapCount;
2602       event.p2.mFloat = x;
2603       event.p3.mFloat = y;
2604       mImpl->mEventData->mEventQueue.push_back( event );
2605
2606       mImpl->RequestRelayout();
2607     }
2608   }
2609
2610   // Reset keyboard as tap event has occurred.
2611   mImpl->ResetImfManager();
2612 }
2613
2614 void Controller::PanEvent( Gesture::State state, const Vector2& displacement )
2615 {
2616   DALI_ASSERT_DEBUG( mImpl->mEventData && "Unexpected PanEvent" );
2617
2618   if( NULL != mImpl->mEventData )
2619   {
2620     Event event( Event::PAN_EVENT );
2621     event.p1.mInt = state;
2622     event.p2.mFloat = displacement.x;
2623     event.p3.mFloat = displacement.y;
2624     mImpl->mEventData->mEventQueue.push_back( event );
2625
2626     mImpl->RequestRelayout();
2627   }
2628 }
2629
2630 void Controller::LongPressEvent( Gesture::State state, float x, float y  )
2631 {
2632   DALI_ASSERT_DEBUG( mImpl->mEventData && "Unexpected LongPressEvent" );
2633
2634   if( ( state == Gesture::Started ) &&
2635       ( NULL != mImpl->mEventData ) )
2636   {
2637     // The 1st long-press on inactive text-field is treated as tap
2638     if( EventData::INACTIVE == mImpl->mEventData->mState )
2639     {
2640       mImpl->ChangeState( EventData::EDITING );
2641
2642       Event event( Event::TAP_EVENT );
2643       event.p1.mUint = 1;
2644       event.p2.mFloat = x;
2645       event.p3.mFloat = y;
2646       mImpl->mEventData->mEventQueue.push_back( event );
2647
2648       mImpl->RequestRelayout();
2649     }
2650     else if( !mImpl->IsShowingRealText() )
2651     {
2652       Event event( Event::LONG_PRESS_EVENT );
2653       event.p1.mInt = state;
2654       event.p2.mFloat = x;
2655       event.p3.mFloat = y;
2656       mImpl->mEventData->mEventQueue.push_back( event );
2657       mImpl->RequestRelayout();
2658     }
2659     else if( !mImpl->IsClipboardVisible() )
2660     {
2661       // Reset the imf manager to commit the pre-edit before selecting the text.
2662       mImpl->ResetImfManager();
2663
2664       Event event( Event::LONG_PRESS_EVENT );
2665       event.p1.mInt = state;
2666       event.p2.mFloat = x;
2667       event.p3.mFloat = y;
2668       mImpl->mEventData->mEventQueue.push_back( event );
2669       mImpl->RequestRelayout();
2670
2671       mImpl->mEventData->mIsLeftHandleSelected = true;
2672       mImpl->mEventData->mIsRightHandleSelected = true;
2673     }
2674   }
2675 }
2676
2677 ImfManager::ImfCallbackData Controller::OnImfEvent( ImfManager& imfManager, const ImfManager::ImfEventData& imfEvent )
2678 {
2679   // Whether the text needs to be relaid-out.
2680   bool requestRelayout = false;
2681
2682   // Whether to retrieve the text and cursor position to be sent to the IMF manager.
2683   bool retrieveText = false;
2684   bool retrieveCursor = false;
2685
2686   switch( imfEvent.eventName )
2687   {
2688     case ImfManager::COMMIT:
2689     {
2690       InsertText( imfEvent.predictiveString, Text::Controller::COMMIT );
2691       requestRelayout = true;
2692       retrieveCursor = true;
2693       break;
2694     }
2695     case ImfManager::PREEDIT:
2696     {
2697       InsertText( imfEvent.predictiveString, Text::Controller::PRE_EDIT );
2698       requestRelayout = true;
2699       retrieveCursor = true;
2700       break;
2701     }
2702     case ImfManager::DELETESURROUNDING:
2703     {
2704       const bool textDeleted = RemoveText( imfEvent.cursorOffset,
2705                                            imfEvent.numberOfChars,
2706                                            DONT_UPDATE_INPUT_STYLE );
2707
2708       if( textDeleted )
2709       {
2710         if( ( 0u != mImpl->mModel->mLogicalModel->mText.Count() ) ||
2711             !mImpl->IsPlaceholderAvailable() )
2712         {
2713           mImpl->QueueModifyEvent( ModifyEvent::TEXT_DELETED );
2714         }
2715         else
2716         {
2717           ShowPlaceholderText();
2718         }
2719         mImpl->mEventData->mUpdateCursorPosition = true;
2720         mImpl->mEventData->mScrollAfterDelete = true;
2721
2722         requestRelayout = true;
2723       }
2724       break;
2725     }
2726     case ImfManager::GETSURROUNDING:
2727     {
2728       retrieveText = true;
2729       retrieveCursor = true;
2730       break;
2731     }
2732     case ImfManager::PRIVATECOMMAND:
2733     {
2734       // PRIVATECOMMAND event is just for getting the private command message
2735       retrieveText = true;
2736       retrieveCursor = true;
2737       break;
2738     }
2739     case ImfManager::VOID:
2740     {
2741       // do nothing
2742       break;
2743     }
2744   } // end switch
2745
2746   if( requestRelayout )
2747   {
2748     mImpl->mOperationsPending = ALL_OPERATIONS;
2749     mImpl->RequestRelayout();
2750   }
2751
2752   std::string text;
2753   CharacterIndex cursorPosition = 0u;
2754   Length numberOfWhiteSpaces = 0u;
2755
2756   if( retrieveCursor )
2757   {
2758     numberOfWhiteSpaces = mImpl->GetNumberOfWhiteSpaces( 0u );
2759
2760     cursorPosition = mImpl->GetLogicalCursorPosition();
2761
2762     if( cursorPosition < numberOfWhiteSpaces )
2763     {
2764       cursorPosition = 0u;
2765     }
2766     else
2767     {
2768       cursorPosition -= numberOfWhiteSpaces;
2769     }
2770   }
2771
2772   if( retrieveText )
2773   {
2774     if( !mImpl->IsShowingPlaceholderText() )
2775     {
2776       // Retrieves the normal text string.
2777       mImpl->GetText( numberOfWhiteSpaces, text );
2778     }
2779     else
2780     {
2781       // When the current text is Placeholder Text, the surrounding text should be empty string.
2782       // It means DALi should send empty string ("") to IME.
2783       text = "";
2784     }
2785   }
2786
2787   ImfManager::ImfCallbackData callbackData( ( retrieveText || retrieveCursor ), cursorPosition, text, false );
2788
2789   if( requestRelayout &&
2790       ( NULL != mImpl->mEditableControlInterface ) )
2791   {
2792     // Do this last since it provides callbacks into application code
2793     mImpl->mEditableControlInterface->TextChanged();
2794   }
2795
2796   return callbackData;
2797 }
2798
2799 void Controller::PasteClipboardItemEvent()
2800 {
2801   // Retrieve the clipboard contents first
2802   ClipboardEventNotifier notifier( ClipboardEventNotifier::Get() );
2803   std::string stringToPaste( notifier.GetContent() );
2804
2805   // Commit the current pre-edit text; the contents of the clipboard should be appended
2806   mImpl->ResetImfManager();
2807
2808   // Temporary disable hiding clipboard
2809   mImpl->SetClipboardHideEnable( false );
2810
2811   // Paste
2812   PasteText( stringToPaste );
2813
2814   mImpl->SetClipboardHideEnable( true );
2815 }
2816
2817 // protected : Inherit from Text::Decorator::ControllerInterface.
2818
2819 void Controller::GetTargetSize( Vector2& targetSize )
2820 {
2821   targetSize = mImpl->mModel->mVisualModel->mControlSize;
2822 }
2823
2824 void Controller::AddDecoration( Actor& actor, bool needsClipping )
2825 {
2826   if( NULL != mImpl->mEditableControlInterface )
2827   {
2828     mImpl->mEditableControlInterface->AddDecoration( actor, needsClipping );
2829   }
2830 }
2831
2832 void Controller::DecorationEvent( HandleType handleType, HandleState state, float x, float y )
2833 {
2834   DALI_ASSERT_DEBUG( mImpl->mEventData && "Unexpected DecorationEvent" );
2835
2836   if( NULL != mImpl->mEventData )
2837   {
2838     switch( handleType )
2839     {
2840       case GRAB_HANDLE:
2841       {
2842         Event event( Event::GRAB_HANDLE_EVENT );
2843         event.p1.mUint  = state;
2844         event.p2.mFloat = x;
2845         event.p3.mFloat = y;
2846
2847         mImpl->mEventData->mEventQueue.push_back( event );
2848         break;
2849       }
2850       case LEFT_SELECTION_HANDLE:
2851       {
2852         Event event( Event::LEFT_SELECTION_HANDLE_EVENT );
2853         event.p1.mUint  = state;
2854         event.p2.mFloat = x;
2855         event.p3.mFloat = y;
2856
2857         mImpl->mEventData->mEventQueue.push_back( event );
2858         break;
2859       }
2860       case RIGHT_SELECTION_HANDLE:
2861       {
2862         Event event( Event::RIGHT_SELECTION_HANDLE_EVENT );
2863         event.p1.mUint  = state;
2864         event.p2.mFloat = x;
2865         event.p3.mFloat = y;
2866
2867         mImpl->mEventData->mEventQueue.push_back( event );
2868         break;
2869       }
2870       case LEFT_SELECTION_HANDLE_MARKER:
2871       case RIGHT_SELECTION_HANDLE_MARKER:
2872       {
2873         // Markers do not move the handles.
2874         break;
2875       }
2876       case HANDLE_TYPE_COUNT:
2877       {
2878         DALI_ASSERT_DEBUG( !"Controller::HandleEvent. Unexpected handle type" );
2879       }
2880     }
2881
2882     mImpl->RequestRelayout();
2883   }
2884 }
2885
2886 // protected : Inherit from TextSelectionPopup::TextPopupButtonCallbackInterface.
2887
2888 void Controller::TextPopupButtonTouched( Dali::Toolkit::TextSelectionPopup::Buttons button )
2889 {
2890   if( NULL == mImpl->mEventData )
2891   {
2892     return;
2893   }
2894
2895   switch( button )
2896   {
2897     case Toolkit::TextSelectionPopup::CUT:
2898     {
2899       mImpl->SendSelectionToClipboard( true ); // Synchronous call to modify text
2900       mImpl->mOperationsPending = ALL_OPERATIONS;
2901
2902       if( ( 0u != mImpl->mModel->mLogicalModel->mText.Count() ) ||
2903           !mImpl->IsPlaceholderAvailable() )
2904       {
2905         mImpl->QueueModifyEvent( ModifyEvent::TEXT_DELETED );
2906       }
2907       else
2908       {
2909         ShowPlaceholderText();
2910       }
2911
2912       mImpl->mEventData->mUpdateCursorPosition = true;
2913       mImpl->mEventData->mScrollAfterDelete = true;
2914
2915       mImpl->RequestRelayout();
2916
2917       if( NULL != mImpl->mEditableControlInterface )
2918       {
2919         mImpl->mEditableControlInterface->TextChanged();
2920       }
2921       break;
2922     }
2923     case Toolkit::TextSelectionPopup::COPY:
2924     {
2925       mImpl->SendSelectionToClipboard( false ); // Text not modified
2926
2927       mImpl->mEventData->mUpdateCursorPosition = true;
2928
2929       mImpl->RequestRelayout(); // Cursor, Handles, Selection Highlight, Popup
2930       break;
2931     }
2932     case Toolkit::TextSelectionPopup::PASTE:
2933     {
2934       mImpl->RequestGetTextFromClipboard(); // Request clipboard service to retrieve an item
2935       break;
2936     }
2937     case Toolkit::TextSelectionPopup::SELECT:
2938     {
2939       const Vector2& currentCursorPosition = mImpl->mEventData->mDecorator->GetPosition( PRIMARY_CURSOR );
2940
2941       if( mImpl->mEventData->mSelectionEnabled )
2942       {
2943         // Creates a SELECT event.
2944         SelectEvent( currentCursorPosition.x, currentCursorPosition.y, false );
2945       }
2946       break;
2947     }
2948     case Toolkit::TextSelectionPopup::SELECT_ALL:
2949     {
2950       // Creates a SELECT_ALL event
2951       SelectEvent( 0.f, 0.f, true );
2952       break;
2953     }
2954     case Toolkit::TextSelectionPopup::CLIPBOARD:
2955     {
2956       mImpl->ShowClipboard();
2957       break;
2958     }
2959     case Toolkit::TextSelectionPopup::NONE:
2960     {
2961       // Nothing to do.
2962       break;
2963     }
2964   }
2965 }
2966
2967 void Controller::DisplayTimeExpired()
2968 {
2969   mImpl->mEventData->mUpdateCursorPosition = true;
2970   // Apply modifications to the model
2971   mImpl->mOperationsPending = ALL_OPERATIONS;
2972
2973   mImpl->RequestRelayout();
2974 }
2975
2976 // private : Update.
2977
2978 void Controller::InsertText( const std::string& text, Controller::InsertType type )
2979 {
2980   bool removedPrevious = false;
2981   bool removedSelected = false;
2982   bool maxLengthReached = false;
2983
2984   DALI_ASSERT_DEBUG( NULL != mImpl->mEventData && "Unexpected InsertText" )
2985
2986   if( NULL == mImpl->mEventData )
2987   {
2988     return;
2989   }
2990
2991   DALI_LOG_INFO( gLogFilter, Debug::Verbose, "Controller::InsertText %p %s (%s) mPrimaryCursorPosition %d mPreEditFlag %d mPreEditStartPosition %d mPreEditLength %d\n",
2992                  this, text.c_str(), (COMMIT == type ? "COMMIT" : "PRE_EDIT"),
2993                  mImpl->mEventData->mPrimaryCursorPosition, mImpl->mEventData->mPreEditFlag, mImpl->mEventData->mPreEditStartPosition, mImpl->mEventData->mPreEditLength );
2994
2995   // TODO: At the moment the underline runs are only for pre-edit.
2996   mImpl->mModel->mVisualModel->mUnderlineRuns.Clear();
2997
2998   // Remove the previous IMF pre-edit.
2999   if( mImpl->mEventData->mPreEditFlag && ( 0u != mImpl->mEventData->mPreEditLength ) )
3000   {
3001     removedPrevious = RemoveText( -static_cast<int>( mImpl->mEventData->mPrimaryCursorPosition - mImpl->mEventData->mPreEditStartPosition ),
3002                                   mImpl->mEventData->mPreEditLength,
3003                                   DONT_UPDATE_INPUT_STYLE );
3004
3005     mImpl->mEventData->mPrimaryCursorPosition = mImpl->mEventData->mPreEditStartPosition;
3006     mImpl->mEventData->mPreEditLength = 0u;
3007   }
3008   else
3009   {
3010     // Remove the previous Selection.
3011     removedSelected = RemoveSelectedText();
3012
3013   }
3014
3015   Vector<Character> utf32Characters;
3016   Length characterCount = 0u;
3017
3018   if( !text.empty() )
3019   {
3020     //  Convert text into UTF-32
3021     utf32Characters.Resize( text.size() );
3022
3023     // This is a bit horrible but std::string returns a (signed) char*
3024     const uint8_t* utf8 = reinterpret_cast<const uint8_t*>( text.c_str() );
3025
3026     // Transform a text array encoded in utf8 into an array encoded in utf32.
3027     // It returns the actual number of characters.
3028     characterCount = Utf8ToUtf32( utf8, text.size(), utf32Characters.Begin() );
3029     utf32Characters.Resize( characterCount );
3030
3031     DALI_ASSERT_DEBUG( text.size() >= utf32Characters.Count() && "Invalid UTF32 conversion length" );
3032     DALI_LOG_INFO( gLogFilter, Debug::Verbose, "UTF8 size %d, UTF32 size %d\n", text.size(), utf32Characters.Count() );
3033   }
3034
3035   if( 0u != utf32Characters.Count() ) // Check if Utf8ToUtf32 conversion succeeded
3036   {
3037     // The placeholder text is no longer needed
3038     if( mImpl->IsShowingPlaceholderText() )
3039     {
3040       ResetText();
3041     }
3042
3043     mImpl->ChangeState( EventData::EDITING );
3044
3045     // Handle the IMF (predicitive text) state changes
3046     if( COMMIT == type )
3047     {
3048       // IMF manager is no longer handling key-events
3049       mImpl->ClearPreEditFlag();
3050     }
3051     else // PRE_EDIT
3052     {
3053       if( !mImpl->mEventData->mPreEditFlag )
3054       {
3055         DALI_LOG_INFO( gLogFilter, Debug::Verbose, "Entered PreEdit state\n" );
3056
3057         // Record the start of the pre-edit text
3058         mImpl->mEventData->mPreEditStartPosition = mImpl->mEventData->mPrimaryCursorPosition;
3059       }
3060
3061       mImpl->mEventData->mPreEditLength = utf32Characters.Count();
3062       mImpl->mEventData->mPreEditFlag = true;
3063
3064       DALI_LOG_INFO( gLogFilter, Debug::Verbose, "mPreEditStartPosition %d mPreEditLength %d\n", mImpl->mEventData->mPreEditStartPosition, mImpl->mEventData->mPreEditLength );
3065     }
3066
3067     const Length numberOfCharactersInModel = mImpl->mModel->mLogicalModel->mText.Count();
3068
3069     // Restrict new text to fit within Maximum characters setting.
3070     Length maxSizeOfNewText = std::min( ( mImpl->mMaximumNumberOfCharacters - numberOfCharactersInModel ), characterCount );
3071     maxLengthReached = ( characterCount > maxSizeOfNewText );
3072
3073     // The cursor position.
3074     CharacterIndex& cursorIndex = mImpl->mEventData->mPrimaryCursorPosition;
3075
3076     // Update the text's style.
3077
3078     // Updates the text style runs by adding characters.
3079     mImpl->mModel->mLogicalModel->UpdateTextStyleRuns( cursorIndex, maxSizeOfNewText );
3080
3081     // Get the character index from the cursor index.
3082     const CharacterIndex styleIndex = ( cursorIndex > 0u ) ? cursorIndex - 1u : 0u;
3083
3084     // Retrieve the text's style for the given index.
3085     InputStyle style;
3086     mImpl->RetrieveDefaultInputStyle( style );
3087     mImpl->mModel->mLogicalModel->RetrieveStyle( styleIndex, style );
3088
3089     // Whether to add a new text color run.
3090     const bool addColorRun = ( style.textColor != mImpl->mEventData->mInputStyle.textColor );
3091
3092     // Whether to add a new font run.
3093     const bool addFontNameRun = style.familyName != mImpl->mEventData->mInputStyle.familyName;
3094     const bool addFontWeightRun = style.weight != mImpl->mEventData->mInputStyle.weight;
3095     const bool addFontWidthRun = style.width != mImpl->mEventData->mInputStyle.width;
3096     const bool addFontSlantRun = style.slant != mImpl->mEventData->mInputStyle.slant;
3097     const bool addFontSizeRun = style.size != mImpl->mEventData->mInputStyle.size;
3098
3099     // Add style runs.
3100     if( addColorRun )
3101     {
3102       const VectorBase::SizeType numberOfRuns = mImpl->mModel->mLogicalModel->mColorRuns.Count();
3103       mImpl->mModel->mLogicalModel->mColorRuns.Resize( numberOfRuns + 1u );
3104
3105       ColorRun& colorRun = *( mImpl->mModel->mLogicalModel->mColorRuns.Begin() + numberOfRuns );
3106       colorRun.color = mImpl->mEventData->mInputStyle.textColor;
3107       colorRun.characterRun.characterIndex = cursorIndex;
3108       colorRun.characterRun.numberOfCharacters = maxSizeOfNewText;
3109     }
3110
3111     if( addFontNameRun   ||
3112         addFontWeightRun ||
3113         addFontWidthRun  ||
3114         addFontSlantRun  ||
3115         addFontSizeRun )
3116     {
3117       const VectorBase::SizeType numberOfRuns = mImpl->mModel->mLogicalModel->mFontDescriptionRuns.Count();
3118       mImpl->mModel->mLogicalModel->mFontDescriptionRuns.Resize( numberOfRuns + 1u );
3119
3120       FontDescriptionRun& fontDescriptionRun = *( mImpl->mModel->mLogicalModel->mFontDescriptionRuns.Begin() + numberOfRuns );
3121
3122       if( addFontNameRun )
3123       {
3124         fontDescriptionRun.familyLength = mImpl->mEventData->mInputStyle.familyName.size();
3125         fontDescriptionRun.familyName = new char[fontDescriptionRun.familyLength];
3126         memcpy( fontDescriptionRun.familyName, mImpl->mEventData->mInputStyle.familyName.c_str(), fontDescriptionRun.familyLength );
3127         fontDescriptionRun.familyDefined = true;
3128
3129         // The memory allocated for the font family name is freed when the font description is removed from the logical model.
3130       }
3131
3132       if( addFontWeightRun )
3133       {
3134         fontDescriptionRun.weight = mImpl->mEventData->mInputStyle.weight;
3135         fontDescriptionRun.weightDefined = true;
3136       }
3137
3138       if( addFontWidthRun )
3139       {
3140         fontDescriptionRun.width = mImpl->mEventData->mInputStyle.width;
3141         fontDescriptionRun.widthDefined = true;
3142       }
3143
3144       if( addFontSlantRun )
3145       {
3146         fontDescriptionRun.slant = mImpl->mEventData->mInputStyle.slant;
3147         fontDescriptionRun.slantDefined = true;
3148       }
3149
3150       if( addFontSizeRun )
3151       {
3152         fontDescriptionRun.size = static_cast<PointSize26Dot6>( mImpl->mEventData->mInputStyle.size * 64.f );
3153         fontDescriptionRun.sizeDefined = true;
3154       }
3155
3156       fontDescriptionRun.characterRun.characterIndex = cursorIndex;
3157       fontDescriptionRun.characterRun.numberOfCharacters = maxSizeOfNewText;
3158     }
3159
3160     // Insert at current cursor position.
3161     Vector<Character>& modifyText = mImpl->mModel->mLogicalModel->mText;
3162
3163     if( cursorIndex < numberOfCharactersInModel )
3164     {
3165       modifyText.Insert( modifyText.Begin() + cursorIndex, utf32Characters.Begin(), utf32Characters.Begin() + maxSizeOfNewText );
3166     }
3167     else
3168     {
3169       modifyText.Insert( modifyText.End(), utf32Characters.Begin(), utf32Characters.Begin() + maxSizeOfNewText );
3170     }
3171
3172     // Mark the first paragraph to be updated.
3173     if( Layout::Engine::SINGLE_LINE_BOX == mImpl->mLayoutEngine.GetLayout() )
3174     {
3175       mImpl->mTextUpdateInfo.mCharacterIndex = 0;
3176       mImpl->mTextUpdateInfo.mNumberOfCharactersToRemove = mImpl->mTextUpdateInfo.mPreviousNumberOfCharacters;
3177       mImpl->mTextUpdateInfo.mNumberOfCharactersToAdd = numberOfCharactersInModel + maxSizeOfNewText;
3178       mImpl->mTextUpdateInfo.mClearAll = true;
3179     }
3180     else
3181     {
3182       mImpl->mTextUpdateInfo.mCharacterIndex = std::min( cursorIndex, mImpl->mTextUpdateInfo.mCharacterIndex );
3183       mImpl->mTextUpdateInfo.mNumberOfCharactersToAdd += maxSizeOfNewText;
3184     }
3185
3186     // Update the cursor index.
3187     cursorIndex += maxSizeOfNewText;
3188
3189     DALI_LOG_INFO( gLogFilter, Debug::Verbose, "Inserted %d characters, new size %d new cursor %d\n", maxSizeOfNewText, mImpl->mModel->mLogicalModel->mText.Count(), mImpl->mEventData->mPrimaryCursorPosition );
3190   }
3191
3192   if( ( 0u == mImpl->mModel->mLogicalModel->mText.Count() ) &&
3193       mImpl->IsPlaceholderAvailable() )
3194   {
3195     // Show place-holder if empty after removing the pre-edit text
3196     ShowPlaceholderText();
3197     mImpl->mEventData->mUpdateCursorPosition = true;
3198     mImpl->ClearPreEditFlag();
3199   }
3200   else if( removedPrevious ||
3201            removedSelected ||
3202            ( 0 != utf32Characters.Count() ) )
3203   {
3204     // Queue an inserted event
3205     mImpl->QueueModifyEvent( ModifyEvent::TEXT_INSERTED );
3206
3207     mImpl->mEventData->mUpdateCursorPosition = true;
3208     if( removedSelected )
3209     {
3210       mImpl->mEventData->mScrollAfterDelete = true;
3211     }
3212     else
3213     {
3214       mImpl->mEventData->mScrollAfterUpdatePosition = true;
3215     }
3216   }
3217
3218   if( maxLengthReached )
3219   {
3220     DALI_LOG_INFO( gLogFilter, Debug::Verbose, "MaxLengthReached (%d)\n", mImpl->mModel->mLogicalModel->mText.Count() );
3221
3222     mImpl->ResetImfManager();
3223
3224     if( NULL != mImpl->mEditableControlInterface )
3225     {
3226       // Do this last since it provides callbacks into application code
3227       mImpl->mEditableControlInterface->MaxLengthReached();
3228     }
3229   }
3230 }
3231
3232 void Controller::PasteText( const std::string& stringToPaste )
3233 {
3234   InsertText( stringToPaste, Text::Controller::COMMIT );
3235   mImpl->ChangeState( EventData::EDITING );
3236   mImpl->RequestRelayout();
3237
3238   if( NULL != mImpl->mEditableControlInterface )
3239   {
3240     // Do this last since it provides callbacks into application code
3241     mImpl->mEditableControlInterface->TextChanged();
3242   }
3243 }
3244
3245 bool Controller::RemoveText( int cursorOffset,
3246                              int numberOfCharacters,
3247                              UpdateInputStyleType type )
3248 {
3249   bool removed = false;
3250
3251   // When the users press "Delete All" button, the IME sends numberOfCharacters as '200000' value which means the max number of characters.
3252   const bool deleteAll = ( numberOfCharacters >= MAX_NUMBER_OF_CHARACTERS );
3253
3254   if( NULL == mImpl->mEventData )
3255   {
3256     return removed;
3257   }
3258
3259   DALI_LOG_INFO( gLogFilter, Debug::General, "Controller::RemoveText %p mText.Count() %d cursor %d cursorOffset %d numberOfCharacters %d\n",
3260                  this, mImpl->mModel->mLogicalModel->mText.Count(), mImpl->mEventData->mPrimaryCursorPosition, cursorOffset, numberOfCharacters );
3261
3262   if( !mImpl->IsShowingPlaceholderText() )
3263   {
3264     // Delete at current cursor position
3265     Vector<Character>& currentText = mImpl->mModel->mLogicalModel->mText;
3266     CharacterIndex& oldCursorIndex = mImpl->mEventData->mPrimaryCursorPosition;
3267
3268     CharacterIndex cursorIndex = 0;
3269
3270     // Validate the cursor position & number of characters
3271     if( ( static_cast< int >( mImpl->mEventData->mPrimaryCursorPosition ) + cursorOffset ) >= 0 )
3272     {
3273       cursorIndex = mImpl->mEventData->mPrimaryCursorPosition + cursorOffset;
3274     }
3275
3276     if( ( cursorIndex + numberOfCharacters ) > currentText.Count() )
3277     {
3278       numberOfCharacters = currentText.Count() - cursorIndex;
3279     }
3280
3281     if( mImpl->mEventData->mPreEditFlag || // If the preedit flag is enabled, it means two (or more) of them came together i.e. when two keys have been pressed at the same time.
3282         ( ( cursorIndex + numberOfCharacters ) <= mImpl->mTextUpdateInfo.mPreviousNumberOfCharacters ) || deleteAll /*'Delete All' button clicked*/ )
3283     {
3284       // Mark the paragraphs to be updated.
3285       if( Layout::Engine::SINGLE_LINE_BOX == mImpl->mLayoutEngine.GetLayout() )
3286       {
3287         mImpl->mTextUpdateInfo.mCharacterIndex = 0;
3288         mImpl->mTextUpdateInfo.mNumberOfCharactersToRemove = mImpl->mTextUpdateInfo.mPreviousNumberOfCharacters;
3289         mImpl->mTextUpdateInfo.mNumberOfCharactersToAdd = mImpl->mTextUpdateInfo.mPreviousNumberOfCharacters - numberOfCharacters;
3290         mImpl->mTextUpdateInfo.mClearAll = true;
3291       }
3292       else
3293       {
3294         mImpl->mTextUpdateInfo.mCharacterIndex = std::min( cursorIndex, mImpl->mTextUpdateInfo.mCharacterIndex );
3295         mImpl->mTextUpdateInfo.mNumberOfCharactersToRemove += numberOfCharacters;
3296       }
3297
3298       // Update the input style and remove the text's style before removing the text.
3299
3300       if( UPDATE_INPUT_STYLE == type )
3301       {
3302         // Keep a copy of the current input style.
3303         InputStyle currentInputStyle;
3304         currentInputStyle.Copy( mImpl->mEventData->mInputStyle );
3305
3306         // Set first the default input style.
3307         mImpl->RetrieveDefaultInputStyle( mImpl->mEventData->mInputStyle );
3308
3309         // Update the input style.
3310         mImpl->mModel->mLogicalModel->RetrieveStyle( cursorIndex, mImpl->mEventData->mInputStyle );
3311
3312         // Compare if the input style has changed.
3313         const bool hasInputStyleChanged = !currentInputStyle.Equal( mImpl->mEventData->mInputStyle );
3314
3315         if( hasInputStyleChanged )
3316         {
3317           const InputStyle::Mask styleChangedMask = currentInputStyle.GetInputStyleChangeMask( mImpl->mEventData->mInputStyle );
3318           // Queue the input style changed signal.
3319           mImpl->mEventData->mInputStyleChangedQueue.PushBack( styleChangedMask );
3320         }
3321       }
3322
3323       // Updates the text style runs by removing characters. Runs with no characters are removed.
3324       mImpl->mModel->mLogicalModel->UpdateTextStyleRuns( cursorIndex, -numberOfCharacters );
3325
3326       // Remove the characters.
3327       Vector<Character>::Iterator first = currentText.Begin() + cursorIndex;
3328       Vector<Character>::Iterator last  = first + numberOfCharacters;
3329
3330       currentText.Erase( first, last );
3331
3332       // Cursor position retreat
3333       oldCursorIndex = cursorIndex;
3334
3335       mImpl->mEventData->mScrollAfterDelete = true;
3336
3337       DALI_LOG_INFO( gLogFilter, Debug::General, "Controller::RemoveText %p removed %d\n", this, numberOfCharacters );
3338       removed = true;
3339     }
3340   }
3341
3342   return removed;
3343 }
3344
3345 bool Controller::RemoveSelectedText()
3346 {
3347   bool textRemoved( false );
3348
3349   if( EventData::SELECTING == mImpl->mEventData->mState )
3350   {
3351     std::string removedString;
3352     mImpl->RetrieveSelection( removedString, true );
3353
3354     if( !removedString.empty() )
3355     {
3356       textRemoved = true;
3357       mImpl->ChangeState( EventData::EDITING );
3358     }
3359   }
3360
3361   return textRemoved;
3362 }
3363
3364 // private : Relayout.
3365
3366 bool Controller::DoRelayout( const Size& size,
3367                              OperationsMask operationsRequired,
3368                              Size& layoutSize )
3369 {
3370   DALI_LOG_INFO( gLogFilter, Debug::Verbose, "-->Controller::DoRelayout %p size %f,%f\n", this, size.width, size.height );
3371   bool viewUpdated( false );
3372
3373   // Calculate the operations to be done.
3374   const OperationsMask operations = static_cast<OperationsMask>( mImpl->mOperationsPending & operationsRequired );
3375
3376   const CharacterIndex startIndex = mImpl->mTextUpdateInfo.mParagraphCharacterIndex;
3377   const Length requestedNumberOfCharacters = mImpl->mTextUpdateInfo.mRequestedNumberOfCharacters;
3378
3379   // Get the current layout size.
3380   layoutSize = mImpl->mModel->mVisualModel->GetLayoutSize();
3381
3382   if( NO_OPERATION != ( LAYOUT & operations ) )
3383   {
3384     DALI_LOG_INFO( gLogFilter, Debug::Verbose, "-->Controller::DoRelayout LAYOUT & operations\n");
3385
3386     // Some vectors with data needed to layout and reorder may be void
3387     // after the first time the text has been laid out.
3388     // Fill the vectors again.
3389
3390     // Calculate the number of glyphs to layout.
3391     const Vector<GlyphIndex>& charactersToGlyph = mImpl->mModel->mVisualModel->mCharactersToGlyph;
3392     const Vector<Length>& glyphsPerCharacter = mImpl->mModel->mVisualModel->mGlyphsPerCharacter;
3393     const GlyphIndex* const charactersToGlyphBuffer = charactersToGlyph.Begin();
3394     const Length* const glyphsPerCharacterBuffer = glyphsPerCharacter.Begin();
3395
3396     const CharacterIndex lastIndex = startIndex + ( ( requestedNumberOfCharacters > 0u ) ? requestedNumberOfCharacters - 1u : 0u );
3397     const GlyphIndex startGlyphIndex = mImpl->mTextUpdateInfo.mStartGlyphIndex;
3398     const Length numberOfGlyphs = ( requestedNumberOfCharacters > 0u ) ? *( charactersToGlyphBuffer + lastIndex ) + *( glyphsPerCharacterBuffer + lastIndex ) - startGlyphIndex : 0u;
3399     const Length totalNumberOfGlyphs = mImpl->mModel->mVisualModel->mGlyphs.Count();
3400
3401     if( 0u == totalNumberOfGlyphs )
3402     {
3403       if( NO_OPERATION != ( UPDATE_LAYOUT_SIZE & operations ) )
3404       {
3405         mImpl->mModel->mVisualModel->SetLayoutSize( Size::ZERO );
3406       }
3407
3408       // Nothing else to do if there is no glyphs.
3409       DALI_LOG_INFO( gLogFilter, Debug::Verbose, "<--Controller::DoRelayout no glyphs, view updated true\n" );
3410       return true;
3411     }
3412
3413     const Vector<LineBreakInfo>& lineBreakInfo = mImpl->mModel->mLogicalModel->mLineBreakInfo;
3414     const Vector<WordBreakInfo>& wordBreakInfo = mImpl->mModel->mLogicalModel->mWordBreakInfo;
3415     const Vector<CharacterDirection>& characterDirection = mImpl->mModel->mLogicalModel->mCharacterDirections;
3416     const Vector<GlyphInfo>& glyphs = mImpl->mModel->mVisualModel->mGlyphs;
3417     const Vector<CharacterIndex>& glyphsToCharactersMap = mImpl->mModel->mVisualModel->mGlyphsToCharacters;
3418     const Vector<Length>& charactersPerGlyph = mImpl->mModel->mVisualModel->mCharactersPerGlyph;
3419     const Character* const textBuffer = mImpl->mModel->mLogicalModel->mText.Begin();
3420     const float outlineWidth = static_cast<float>( mImpl->mModel->GetOutlineWidth() );
3421
3422     // Set the layout parameters.
3423     Layout::Parameters layoutParameters( size,
3424                                          textBuffer,
3425                                          lineBreakInfo.Begin(),
3426                                          wordBreakInfo.Begin(),
3427                                          ( 0u != characterDirection.Count() ) ? characterDirection.Begin() : NULL,
3428                                          glyphs.Begin(),
3429                                          glyphsToCharactersMap.Begin(),
3430                                          charactersPerGlyph.Begin(),
3431                                          charactersToGlyphBuffer,
3432                                          glyphsPerCharacterBuffer,
3433                                          totalNumberOfGlyphs,
3434                                          mImpl->mModel->mHorizontalAlignment,
3435                                          mImpl->mModel->mLineWrapMode,
3436                                          outlineWidth );
3437
3438     // Resize the vector of positions to have the same size than the vector of glyphs.
3439     Vector<Vector2>& glyphPositions = mImpl->mModel->mVisualModel->mGlyphPositions;
3440     glyphPositions.Resize( totalNumberOfGlyphs );
3441
3442     // Whether the last character is a new paragraph character.
3443     mImpl->mTextUpdateInfo.mIsLastCharacterNewParagraph =  TextAbstraction::IsNewParagraph( *( textBuffer + ( mImpl->mModel->mLogicalModel->mText.Count() - 1u ) ) );
3444     layoutParameters.isLastNewParagraph = mImpl->mTextUpdateInfo.mIsLastCharacterNewParagraph;
3445
3446     // The initial glyph and the number of glyphs to layout.
3447     layoutParameters.startGlyphIndex = startGlyphIndex;
3448     layoutParameters.numberOfGlyphs = numberOfGlyphs;
3449     layoutParameters.startLineIndex = mImpl->mTextUpdateInfo.mStartLineIndex;
3450     layoutParameters.estimatedNumberOfLines = mImpl->mTextUpdateInfo.mEstimatedNumberOfLines;
3451
3452     // Update the ellipsis
3453     bool elideTextEnabled = mImpl->mModel->mElideEnabled;
3454
3455     if( NULL != mImpl->mEventData )
3456     {
3457       if( mImpl->mEventData->mPlaceholderEllipsisFlag && mImpl->IsShowingPlaceholderText() )
3458       {
3459         elideTextEnabled = mImpl->mEventData->mIsPlaceholderElideEnabled;
3460       }
3461       else if( EventData::INACTIVE != mImpl->mEventData->mState )
3462       {
3463         // Disable ellipsis when editing
3464         elideTextEnabled = false;
3465       }
3466
3467       // Reset the scroll position in inactive state
3468       if( elideTextEnabled && ( mImpl->mEventData->mState == EventData::INACTIVE ) )
3469       {
3470         ResetScrollPosition();
3471       }
3472     }
3473
3474     // Update the visual model.
3475     Size newLayoutSize;
3476     viewUpdated = mImpl->mLayoutEngine.LayoutText( layoutParameters,
3477                                                    glyphPositions,
3478                                                    mImpl->mModel->mVisualModel->mLines,
3479                                                    newLayoutSize,
3480                                                    elideTextEnabled );
3481
3482     viewUpdated = viewUpdated || ( newLayoutSize != layoutSize );
3483
3484     if( viewUpdated )
3485     {
3486       layoutSize = newLayoutSize;
3487
3488       if( NO_OPERATION != ( UPDATE_DIRECTION & operations ) )
3489       {
3490         mImpl->mAutoScrollDirectionRTL = false;
3491       }
3492
3493       // Reorder the lines
3494       if( NO_OPERATION != ( REORDER & operations ) )
3495       {
3496         Vector<BidirectionalParagraphInfoRun>& bidirectionalInfo = mImpl->mModel->mLogicalModel->mBidirectionalParagraphInfo;
3497         Vector<BidirectionalLineInfoRun>& bidirectionalLineInfo = mImpl->mModel->mLogicalModel->mBidirectionalLineInfo;
3498
3499         // Check first if there are paragraphs with bidirectional info.
3500         if( 0u != bidirectionalInfo.Count() )
3501         {
3502           // Get the lines
3503           const Length numberOfLines = mImpl->mModel->mVisualModel->mLines.Count();
3504
3505           // Reorder the lines.
3506           bidirectionalLineInfo.Reserve( numberOfLines ); // Reserve because is not known yet how many lines have right to left characters.
3507           ReorderLines( bidirectionalInfo,
3508                         startIndex,
3509                         requestedNumberOfCharacters,
3510                         mImpl->mModel->mVisualModel->mLines,
3511                         bidirectionalLineInfo );
3512
3513           // Set the bidirectional info per line into the layout parameters.
3514           layoutParameters.lineBidirectionalInfoRunsBuffer = bidirectionalLineInfo.Begin();
3515           layoutParameters.numberOfBidirectionalInfoRuns = bidirectionalLineInfo.Count();
3516
3517           // Re-layout the text. Reorder those lines with right to left characters.
3518           mImpl->mLayoutEngine.ReLayoutRightToLeftLines( layoutParameters,
3519                                                          startIndex,
3520                                                          requestedNumberOfCharacters,
3521                                                          glyphPositions );
3522
3523           if ( ( NO_OPERATION != ( UPDATE_DIRECTION & operations ) ) && ( numberOfLines > 0 ) )
3524           {
3525             const LineRun* const firstline = mImpl->mModel->mVisualModel->mLines.Begin();
3526             if ( firstline )
3527             {
3528               mImpl->mAutoScrollDirectionRTL = firstline->direction;
3529             }
3530           }
3531         }
3532       } // REORDER
3533
3534       // Sets the layout size.
3535       if( NO_OPERATION != ( UPDATE_LAYOUT_SIZE & operations ) )
3536       {
3537         mImpl->mModel->mVisualModel->SetLayoutSize( layoutSize );
3538       }
3539     } // view updated
3540   }
3541
3542   if( NO_OPERATION != ( ALIGN & operations ) )
3543   {
3544     // The laid-out lines.
3545     Vector<LineRun>& lines = mImpl->mModel->mVisualModel->mLines;
3546
3547     // Need to align with the control's size as the text may contain lines
3548     // starting either with left to right text or right to left.
3549     mImpl->mLayoutEngine.Align( size,
3550                                 startIndex,
3551                                 requestedNumberOfCharacters,
3552                                 mImpl->mModel->mHorizontalAlignment,
3553                                 lines,
3554                                 mImpl->mModel->mAlignmentOffset );
3555
3556     viewUpdated = true;
3557   }
3558 #if defined(DEBUG_ENABLED)
3559   std::string currentText;
3560   GetText( currentText );
3561   DALI_LOG_INFO( gLogFilter, Debug::Concise, "Controller::DoRelayout [%p] mImpl->mAutoScrollDirectionRTL[%s] [%s]\n", this, (mImpl->mAutoScrollDirectionRTL)?"true":"false",  currentText.c_str() );
3562 #endif
3563   DALI_LOG_INFO( gLogFilter, Debug::Verbose, "<--Controller::DoRelayout, view updated %s\n", ( viewUpdated ? "true" : "false" ) );
3564   return viewUpdated;
3565 }
3566
3567 void Controller::CalculateVerticalOffset( const Size& controlSize )
3568 {
3569   Size layoutSize = mImpl->mModel->mVisualModel->GetLayoutSize();
3570
3571   if( fabsf( layoutSize.height ) < Math::MACHINE_EPSILON_1000 )
3572   {
3573     // Get the line height of the default font.
3574     layoutSize.height = mImpl->GetDefaultFontLineHeight();
3575   }
3576
3577   switch( mImpl->mModel->mVerticalAlignment )
3578   {
3579     case VerticalAlignment::TOP:
3580     {
3581       mImpl->mModel->mScrollPosition.y = 0.f;
3582       break;
3583     }
3584     case VerticalAlignment::CENTER:
3585     {
3586       mImpl->mModel->mScrollPosition.y = floorf( 0.5f * ( controlSize.height - layoutSize.height ) ); // try to avoid pixel alignment.
3587       break;
3588     }
3589     case VerticalAlignment::BOTTOM:
3590     {
3591       mImpl->mModel->mScrollPosition.y = controlSize.height - layoutSize.height;
3592       break;
3593     }
3594   }
3595 }
3596
3597 // private : Events.
3598
3599 void Controller::ProcessModifyEvents()
3600 {
3601   Vector<ModifyEvent>& events = mImpl->mModifyEvents;
3602
3603   if( 0u == events.Count() )
3604   {
3605     // Nothing to do.
3606     return;
3607   }
3608
3609   for( Vector<ModifyEvent>::ConstIterator it = events.Begin(),
3610          endIt = events.End();
3611        it != endIt;
3612        ++it )
3613   {
3614     const ModifyEvent& event = *it;
3615
3616     if( ModifyEvent::TEXT_REPLACED == event.type )
3617     {
3618       // A (single) replace event should come first, otherwise we wasted time processing NOOP events
3619       DALI_ASSERT_DEBUG( it == events.Begin() && "Unexpected TEXT_REPLACED event" );
3620
3621       TextReplacedEvent();
3622     }
3623     else if( ModifyEvent::TEXT_INSERTED == event.type )
3624     {
3625       TextInsertedEvent();
3626     }
3627     else if( ModifyEvent::TEXT_DELETED == event.type )
3628     {
3629       // Placeholder-text cannot be deleted
3630       if( !mImpl->IsShowingPlaceholderText() )
3631       {
3632         TextDeletedEvent();
3633       }
3634     }
3635   }
3636
3637   if( NULL != mImpl->mEventData )
3638   {
3639     // When the text is being modified, delay cursor blinking
3640     mImpl->mEventData->mDecorator->DelayCursorBlink();
3641
3642     // Update selection position after modifying the text
3643     mImpl->mEventData->mLeftSelectionPosition = mImpl->mEventData->mPrimaryCursorPosition;
3644     mImpl->mEventData->mRightSelectionPosition = mImpl->mEventData->mPrimaryCursorPosition;
3645   }
3646
3647   // Discard temporary text
3648   events.Clear();
3649 }
3650
3651 void Controller::TextReplacedEvent()
3652 {
3653   // The natural size needs to be re-calculated.
3654   mImpl->mRecalculateNaturalSize = true;
3655
3656   // Apply modifications to the model
3657   mImpl->mOperationsPending = ALL_OPERATIONS;
3658 }
3659
3660 void Controller::TextInsertedEvent()
3661 {
3662   DALI_ASSERT_DEBUG( NULL != mImpl->mEventData && "Unexpected TextInsertedEvent" );
3663
3664   if( NULL == mImpl->mEventData )
3665   {
3666     return;
3667   }
3668
3669   mImpl->mEventData->mCheckScrollAmount = true;
3670
3671   // The natural size needs to be re-calculated.
3672   mImpl->mRecalculateNaturalSize = true;
3673
3674   // Apply modifications to the model; TODO - Optimize this
3675   mImpl->mOperationsPending = ALL_OPERATIONS;
3676 }
3677
3678 void Controller::TextDeletedEvent()
3679 {
3680   DALI_ASSERT_DEBUG( NULL != mImpl->mEventData && "Unexpected TextDeletedEvent" );
3681
3682   if( NULL == mImpl->mEventData )
3683   {
3684     return;
3685   }
3686
3687   mImpl->mEventData->mCheckScrollAmount = true;
3688
3689   // The natural size needs to be re-calculated.
3690   mImpl->mRecalculateNaturalSize = true;
3691
3692   // Apply modifications to the model; TODO - Optimize this
3693   mImpl->mOperationsPending = ALL_OPERATIONS;
3694 }
3695
3696 void Controller::SelectEvent( float x, float y, bool selectAll )
3697 {
3698   DALI_LOG_INFO( gLogFilter, Debug::Verbose, "Controller::SelectEvent\n" );
3699
3700   if( NULL != mImpl->mEventData )
3701   {
3702     if( selectAll )
3703     {
3704       Event event( Event::SELECT_ALL );
3705       mImpl->mEventData->mEventQueue.push_back( event );
3706     }
3707     else
3708     {
3709       Event event( Event::SELECT );
3710       event.p2.mFloat = x;
3711       event.p3.mFloat = y;
3712       mImpl->mEventData->mEventQueue.push_back( event );
3713     }
3714
3715     mImpl->mEventData->mCheckScrollAmount = true;
3716     mImpl->mEventData->mIsLeftHandleSelected = true;
3717     mImpl->mEventData->mIsRightHandleSelected = true;
3718     mImpl->RequestRelayout();
3719   }
3720 }
3721
3722 bool Controller::DeleteEvent( int keyCode )
3723 {
3724   DALI_LOG_INFO( gLogFilter, Debug::Verbose, "Controller::KeyEvent %p KeyCode : %d \n", this, keyCode );
3725
3726   bool removed = false;
3727
3728   if( NULL == mImpl->mEventData )
3729   {
3730     return removed;
3731   }
3732
3733   // IMF manager is no longer handling key-events
3734   mImpl->ClearPreEditFlag();
3735
3736   if( EventData::SELECTING == mImpl->mEventData->mState )
3737   {
3738     removed = RemoveSelectedText();
3739   }
3740   else if( ( mImpl->mEventData->mPrimaryCursorPosition > 0 ) && ( keyCode == Dali::DALI_KEY_BACKSPACE) )
3741   {
3742     // Remove the character before the current cursor position
3743     removed = RemoveText( -1,
3744                           1,
3745                           UPDATE_INPUT_STYLE );
3746   }
3747   else if( keyCode == Dali::DevelKey::DALI_KEY_DELETE )
3748   {
3749     // Remove the character after the current cursor position
3750     removed = RemoveText( 0,
3751                           1,
3752                           UPDATE_INPUT_STYLE );
3753   }
3754
3755   if( removed )
3756   {
3757     if( ( 0u != mImpl->mModel->mLogicalModel->mText.Count() ) ||
3758         !mImpl->IsPlaceholderAvailable() )
3759     {
3760       mImpl->QueueModifyEvent( ModifyEvent::TEXT_DELETED );
3761     }
3762     else
3763     {
3764       ShowPlaceholderText();
3765     }
3766     mImpl->mEventData->mUpdateCursorPosition = true;
3767     mImpl->mEventData->mScrollAfterDelete = true;
3768   }
3769
3770   return removed;
3771 }
3772
3773 // private : Helpers.
3774
3775 void Controller::ResetText()
3776 {
3777   // Reset buffers.
3778   mImpl->mModel->mLogicalModel->mText.Clear();
3779
3780   // We have cleared everything including the placeholder-text
3781   mImpl->PlaceholderCleared();
3782
3783   mImpl->mTextUpdateInfo.mCharacterIndex = 0u;
3784   mImpl->mTextUpdateInfo.mNumberOfCharactersToRemove = mImpl->mTextUpdateInfo.mPreviousNumberOfCharacters;
3785   mImpl->mTextUpdateInfo.mNumberOfCharactersToAdd = 0u;
3786
3787   // Clear any previous text.
3788   mImpl->mTextUpdateInfo.mClearAll = true;
3789
3790   // The natural size needs to be re-calculated.
3791   mImpl->mRecalculateNaturalSize = true;
3792
3793   // Apply modifications to the model
3794   mImpl->mOperationsPending = ALL_OPERATIONS;
3795 }
3796
3797 void Controller::ShowPlaceholderText()
3798 {
3799   if( mImpl->IsPlaceholderAvailable() )
3800   {
3801     DALI_ASSERT_DEBUG( mImpl->mEventData && "No placeholder text available" );
3802
3803     if( NULL == mImpl->mEventData )
3804     {
3805       return;
3806     }
3807
3808     mImpl->mEventData->mIsShowingPlaceholderText = true;
3809
3810     // Disable handles when showing place-holder text
3811     mImpl->mEventData->mDecorator->SetHandleActive( GRAB_HANDLE, false );
3812     mImpl->mEventData->mDecorator->SetHandleActive( LEFT_SELECTION_HANDLE, false );
3813     mImpl->mEventData->mDecorator->SetHandleActive( RIGHT_SELECTION_HANDLE, false );
3814
3815     const char* text( NULL );
3816     size_t size( 0 );
3817
3818     // TODO - Switch Placeholder text when changing state
3819     if( ( EventData::INACTIVE != mImpl->mEventData->mState ) &&
3820         ( 0u != mImpl->mEventData->mPlaceholderTextActive.c_str() ) )
3821     {
3822       text = mImpl->mEventData->mPlaceholderTextActive.c_str();
3823       size = mImpl->mEventData->mPlaceholderTextActive.size();
3824     }
3825     else
3826     {
3827       text = mImpl->mEventData->mPlaceholderTextInactive.c_str();
3828       size = mImpl->mEventData->mPlaceholderTextInactive.size();
3829     }
3830
3831     mImpl->mTextUpdateInfo.mCharacterIndex = 0u;
3832     mImpl->mTextUpdateInfo.mNumberOfCharactersToRemove = mImpl->mTextUpdateInfo.mPreviousNumberOfCharacters;
3833
3834     // Reset model for showing placeholder.
3835     mImpl->mModel->mLogicalModel->mText.Clear();
3836     mImpl->mModel->mVisualModel->SetTextColor( mImpl->mEventData->mPlaceholderTextColor );
3837
3838     // Convert text into UTF-32
3839     Vector<Character>& utf32Characters = mImpl->mModel->mLogicalModel->mText;
3840     utf32Characters.Resize( size );
3841
3842     // This is a bit horrible but std::string returns a (signed) char*
3843     const uint8_t* utf8 = reinterpret_cast<const uint8_t*>( text );
3844
3845     // Transform a text array encoded in utf8 into an array encoded in utf32.
3846     // It returns the actual number of characters.
3847     const Length characterCount = Utf8ToUtf32( utf8, size, utf32Characters.Begin() );
3848     utf32Characters.Resize( characterCount );
3849
3850     // The characters to be added.
3851     mImpl->mTextUpdateInfo.mNumberOfCharactersToAdd = characterCount;
3852
3853     // Reset the cursor position
3854     mImpl->mEventData->mPrimaryCursorPosition = 0;
3855
3856     // The natural size needs to be re-calculated.
3857     mImpl->mRecalculateNaturalSize = true;
3858
3859     // Apply modifications to the model
3860     mImpl->mOperationsPending = ALL_OPERATIONS;
3861
3862     // Update the rest of the model during size negotiation
3863     mImpl->QueueModifyEvent( ModifyEvent::TEXT_REPLACED );
3864   }
3865 }
3866
3867 void Controller::ClearFontData()
3868 {
3869   if( mImpl->mFontDefaults )
3870   {
3871     mImpl->mFontDefaults->mFontId = 0u; // Remove old font ID
3872   }
3873
3874   // Set flags to update the model.
3875   mImpl->mTextUpdateInfo.mCharacterIndex = 0u;
3876   mImpl->mTextUpdateInfo.mNumberOfCharactersToRemove = mImpl->mTextUpdateInfo.mPreviousNumberOfCharacters;
3877   mImpl->mTextUpdateInfo.mNumberOfCharactersToAdd = mImpl->mModel->mLogicalModel->mText.Count();
3878
3879   mImpl->mTextUpdateInfo.mClearAll = true;
3880   mImpl->mTextUpdateInfo.mFullRelayoutNeeded = true;
3881   mImpl->mRecalculateNaturalSize = true;
3882
3883   mImpl->mOperationsPending = static_cast<OperationsMask>( mImpl->mOperationsPending |
3884                                                            VALIDATE_FONTS            |
3885                                                            SHAPE_TEXT                |
3886                                                            BIDI_INFO                 |
3887                                                            GET_GLYPH_METRICS         |
3888                                                            LAYOUT                    |
3889                                                            UPDATE_LAYOUT_SIZE        |
3890                                                            REORDER                   |
3891                                                            ALIGN );
3892 }
3893
3894 void Controller::ClearStyleData()
3895 {
3896   mImpl->mModel->mLogicalModel->mColorRuns.Clear();
3897   mImpl->mModel->mLogicalModel->ClearFontDescriptionRuns();
3898 }
3899
3900 void Controller::ResetCursorPosition( CharacterIndex cursorIndex )
3901 {
3902   // Reset the cursor position
3903   if( NULL != mImpl->mEventData )
3904   {
3905     mImpl->mEventData->mPrimaryCursorPosition = cursorIndex;
3906
3907     // Update the cursor if it's in editing mode.
3908     if( EventData::IsEditingState( mImpl->mEventData->mState )  )
3909     {
3910       mImpl->mEventData->mUpdateCursorPosition = true;
3911     }
3912   }
3913 }
3914
3915 void Controller::ResetScrollPosition()
3916 {
3917   if( NULL != mImpl->mEventData )
3918   {
3919     // Reset the scroll position.
3920     mImpl->mModel->mScrollPosition = Vector2::ZERO;
3921     mImpl->mEventData->mScrollAfterUpdatePosition = true;
3922   }
3923 }
3924
3925 void Controller::SetControlInterface( ControlInterface* controlInterface )
3926 {
3927   mImpl->mControlInterface = controlInterface;
3928 }
3929
3930 bool Controller::ShouldClearFocusOnEscape() const
3931 {
3932   return mImpl->mShouldClearFocusOnEscape;
3933 }
3934
3935 // private : Private contructors & copy operator.
3936
3937 Controller::Controller()
3938 : mImpl( NULL )
3939 {
3940   mImpl = new Controller::Impl( NULL, NULL );
3941 }
3942
3943 Controller::Controller( ControlInterface* controlInterface )
3944 {
3945   mImpl = new Controller::Impl( controlInterface, NULL );
3946 }
3947
3948 Controller::Controller( ControlInterface* controlInterface,
3949                         EditableControlInterface* editableControlInterface )
3950 {
3951   mImpl = new Controller::Impl( controlInterface,
3952                                 editableControlInterface );
3953 }
3954
3955 // The copy constructor and operator are left unimplemented.
3956
3957 // protected : Destructor.
3958
3959 Controller::~Controller()
3960 {
3961   delete mImpl;
3962 }
3963
3964 } // namespace Text
3965
3966 } // namespace Toolkit
3967
3968 } // namespace Dali