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