Merge "TextField is re-laied out after its properties are changed." 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 )
2612     {
2613       // DALI_KEY_SHIFT_LEFT is the key code for the Left 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_VOLUME_UP != keyCode ) &&
2649          ( Dali::DALI_KEY_VOLUME_DOWN != keyCode ) )
2650     {
2651       // Should not change the state if the key is the shift send by the InputMethodContext.
2652       // Otherwise, when the state is SELECTING the text controller can't send the right
2653       // surrounding info to the InputMethodContext.
2654       mImpl->ChangeState( EventData::EDITING );
2655
2656       // Will request for relayout.
2657       relayoutNeeded = true;
2658     }
2659
2660     if( relayoutNeeded )
2661     {
2662       mImpl->RequestRelayout();
2663     }
2664   }
2665
2666   if( textChanged &&
2667       ( NULL != mImpl->mEditableControlInterface ) )
2668   {
2669     // Do this last since it provides callbacks into application code
2670     mImpl->mEditableControlInterface->TextChanged();
2671   }
2672
2673   return true;
2674 }
2675
2676 void Controller::TapEvent( unsigned int tapCount, float x, float y )
2677 {
2678   DALI_ASSERT_DEBUG( mImpl->mEventData && "Unexpected TapEvent" );
2679
2680   if( NULL != mImpl->mEventData )
2681   {
2682     DALI_LOG_INFO( gLogFilter, Debug::Concise, "TapEvent state:%d \n", mImpl->mEventData->mState );
2683     EventData::State state( mImpl->mEventData->mState );
2684     bool relayoutNeeded( false );   // to avoid unnecessary relayouts when tapping an empty text-field
2685
2686     if( mImpl->IsClipboardVisible() )
2687     {
2688       if( EventData::INACTIVE == state || EventData::EDITING == state)
2689       {
2690         mImpl->ChangeState( EventData::EDITING_WITH_GRAB_HANDLE );
2691       }
2692       relayoutNeeded = true;
2693     }
2694     else if( 1u == tapCount )
2695     {
2696       if( EventData::EDITING_WITH_POPUP == state || EventData::EDITING_WITH_PASTE_POPUP == state )
2697       {
2698         mImpl->ChangeState( EventData::EDITING_WITH_GRAB_HANDLE );  // If Popup shown hide it here so can be shown again if required.
2699       }
2700
2701       if( mImpl->IsShowingRealText() && ( EventData::INACTIVE != state ) )
2702       {
2703         mImpl->ChangeState( EventData::EDITING_WITH_GRAB_HANDLE );
2704         relayoutNeeded = true;
2705       }
2706       else
2707       {
2708         if( mImpl->IsShowingPlaceholderText() && !mImpl->IsFocusedPlaceholderAvailable() )
2709         {
2710           // Hide placeholder text
2711           ResetText();
2712         }
2713
2714         if( EventData::INACTIVE == state )
2715         {
2716           mImpl->ChangeState( EventData::EDITING );
2717         }
2718         else if( !mImpl->IsClipboardEmpty() )
2719         {
2720           mImpl->ChangeState( EventData::EDITING_WITH_POPUP );
2721         }
2722         relayoutNeeded = true;
2723       }
2724     }
2725     else if( 2u == tapCount )
2726     {
2727       if( mImpl->mEventData->mSelectionEnabled &&
2728           mImpl->IsShowingRealText() )
2729       {
2730         relayoutNeeded = true;
2731         mImpl->mEventData->mIsLeftHandleSelected = true;
2732         mImpl->mEventData->mIsRightHandleSelected = true;
2733       }
2734     }
2735
2736     // Handles & cursors must be repositioned after Relayout() i.e. after the Model has been updated
2737     if( relayoutNeeded )
2738     {
2739       Event event( Event::TAP_EVENT );
2740       event.p1.mUint = tapCount;
2741       event.p2.mFloat = x;
2742       event.p3.mFloat = y;
2743       mImpl->mEventData->mEventQueue.push_back( event );
2744
2745       mImpl->RequestRelayout();
2746     }
2747   }
2748
2749   // Reset keyboard as tap event has occurred.
2750   mImpl->ResetInputMethodContext();
2751 }
2752
2753 void Controller::PanEvent( Gesture::State state, const Vector2& displacement )
2754 {
2755   DALI_ASSERT_DEBUG( mImpl->mEventData && "Unexpected PanEvent" );
2756
2757   if( NULL != mImpl->mEventData )
2758   {
2759     Event event( Event::PAN_EVENT );
2760     event.p1.mInt = state;
2761     event.p2.mFloat = displacement.x;
2762     event.p3.mFloat = displacement.y;
2763     mImpl->mEventData->mEventQueue.push_back( event );
2764
2765     mImpl->RequestRelayout();
2766   }
2767 }
2768
2769 void Controller::LongPressEvent( Gesture::State state, float x, float y  )
2770 {
2771   DALI_ASSERT_DEBUG( mImpl->mEventData && "Unexpected LongPressEvent" );
2772
2773   if( ( state == Gesture::Started ) &&
2774       ( NULL != mImpl->mEventData ) )
2775   {
2776     // The 1st long-press on inactive text-field is treated as tap
2777     if( EventData::INACTIVE == mImpl->mEventData->mState )
2778     {
2779       mImpl->ChangeState( EventData::EDITING );
2780
2781       Event event( Event::TAP_EVENT );
2782       event.p1.mUint = 1;
2783       event.p2.mFloat = x;
2784       event.p3.mFloat = y;
2785       mImpl->mEventData->mEventQueue.push_back( event );
2786
2787       mImpl->RequestRelayout();
2788     }
2789     else if( !mImpl->IsShowingRealText() )
2790     {
2791       Event event( Event::LONG_PRESS_EVENT );
2792       event.p1.mInt = state;
2793       event.p2.mFloat = x;
2794       event.p3.mFloat = y;
2795       mImpl->mEventData->mEventQueue.push_back( event );
2796       mImpl->RequestRelayout();
2797     }
2798     else if( !mImpl->IsClipboardVisible() )
2799     {
2800       // Reset the InputMethodContext to commit the pre-edit before selecting the text.
2801       mImpl->ResetInputMethodContext();
2802
2803       Event event( Event::LONG_PRESS_EVENT );
2804       event.p1.mInt = state;
2805       event.p2.mFloat = x;
2806       event.p3.mFloat = y;
2807       mImpl->mEventData->mEventQueue.push_back( event );
2808       mImpl->RequestRelayout();
2809
2810       mImpl->mEventData->mIsLeftHandleSelected = true;
2811       mImpl->mEventData->mIsRightHandleSelected = true;
2812     }
2813   }
2814 }
2815
2816 InputMethodContext::CallbackData Controller::OnInputMethodContextEvent( InputMethodContext& inputMethodContext, const InputMethodContext::EventData& inputMethodContextEvent )
2817 {
2818   // Whether the text needs to be relaid-out.
2819   bool requestRelayout = false;
2820
2821   // Whether to retrieve the text and cursor position to be sent to the InputMethodContext.
2822   bool retrieveText = false;
2823   bool retrieveCursor = false;
2824
2825   switch( inputMethodContextEvent.eventName )
2826   {
2827     case InputMethodContext::COMMIT:
2828     {
2829       InsertText( inputMethodContextEvent.predictiveString, Text::Controller::COMMIT );
2830       requestRelayout = true;
2831       retrieveCursor = true;
2832       break;
2833     }
2834     case InputMethodContext::PRE_EDIT:
2835     {
2836       InsertText( inputMethodContextEvent.predictiveString, Text::Controller::PRE_EDIT );
2837       requestRelayout = true;
2838       retrieveCursor = true;
2839       break;
2840     }
2841     case InputMethodContext::DELETE_SURROUNDING:
2842     {
2843       const bool textDeleted = RemoveText( inputMethodContextEvent.cursorOffset,
2844                                            inputMethodContextEvent.numberOfChars,
2845                                            DONT_UPDATE_INPUT_STYLE );
2846
2847       if( textDeleted )
2848       {
2849         if( ( 0u != mImpl->mModel->mLogicalModel->mText.Count() ) ||
2850             !mImpl->IsPlaceholderAvailable() )
2851         {
2852           mImpl->QueueModifyEvent( ModifyEvent::TEXT_DELETED );
2853         }
2854         else
2855         {
2856           ShowPlaceholderText();
2857         }
2858         mImpl->mEventData->mUpdateCursorPosition = true;
2859         mImpl->mEventData->mScrollAfterDelete = true;
2860
2861         requestRelayout = true;
2862       }
2863       break;
2864     }
2865     case InputMethodContext::GET_SURROUNDING:
2866     {
2867       retrieveText = true;
2868       retrieveCursor = true;
2869       break;
2870     }
2871     case InputMethodContext::PRIVATE_COMMAND:
2872     {
2873       // PRIVATECOMMAND event is just for getting the private command message
2874       retrieveText = true;
2875       retrieveCursor = true;
2876       break;
2877     }
2878     case InputMethodContext::VOID:
2879     {
2880       // do nothing
2881       break;
2882     }
2883   } // end switch
2884
2885   if( requestRelayout )
2886   {
2887     mImpl->mOperationsPending = ALL_OPERATIONS;
2888     mImpl->RequestRelayout();
2889   }
2890
2891   std::string text;
2892   CharacterIndex cursorPosition = 0u;
2893   Length numberOfWhiteSpaces = 0u;
2894
2895   if( retrieveCursor )
2896   {
2897     numberOfWhiteSpaces = mImpl->GetNumberOfWhiteSpaces( 0u );
2898
2899     cursorPosition = mImpl->GetLogicalCursorPosition();
2900
2901     if( cursorPosition < numberOfWhiteSpaces )
2902     {
2903       cursorPosition = 0u;
2904     }
2905     else
2906     {
2907       cursorPosition -= numberOfWhiteSpaces;
2908     }
2909   }
2910
2911   if( retrieveText )
2912   {
2913     if( !mImpl->IsShowingPlaceholderText() )
2914     {
2915       // Retrieves the normal text string.
2916       mImpl->GetText( numberOfWhiteSpaces, text );
2917     }
2918     else
2919     {
2920       // When the current text is Placeholder Text, the surrounding text should be empty string.
2921       // It means DALi should send empty string ("") to IME.
2922       text = "";
2923     }
2924   }
2925
2926   InputMethodContext::CallbackData callbackData( ( retrieveText || retrieveCursor ), cursorPosition, text, false );
2927
2928   if( requestRelayout &&
2929       ( NULL != mImpl->mEditableControlInterface ) )
2930   {
2931     // Do this last since it provides callbacks into application code
2932     mImpl->mEditableControlInterface->TextChanged();
2933   }
2934
2935   return callbackData;
2936 }
2937
2938 void Controller::PasteClipboardItemEvent()
2939 {
2940   // Retrieve the clipboard contents first
2941   ClipboardEventNotifier notifier( ClipboardEventNotifier::Get() );
2942   std::string stringToPaste( notifier.GetContent() );
2943
2944   // Commit the current pre-edit text; the contents of the clipboard should be appended
2945   mImpl->ResetInputMethodContext();
2946
2947   // Temporary disable hiding clipboard
2948   mImpl->SetClipboardHideEnable( false );
2949
2950   // Paste
2951   PasteText( stringToPaste );
2952
2953   mImpl->SetClipboardHideEnable( true );
2954 }
2955
2956 // protected : Inherit from Text::Decorator::ControllerInterface.
2957
2958 void Controller::GetTargetSize( Vector2& targetSize )
2959 {
2960   targetSize = mImpl->mModel->mVisualModel->mControlSize;
2961 }
2962
2963 void Controller::AddDecoration( Actor& actor, bool needsClipping )
2964 {
2965   if( NULL != mImpl->mEditableControlInterface )
2966   {
2967     mImpl->mEditableControlInterface->AddDecoration( actor, needsClipping );
2968   }
2969 }
2970
2971 void Controller::DecorationEvent( HandleType handleType, HandleState state, float x, float y )
2972 {
2973   DALI_ASSERT_DEBUG( mImpl->mEventData && "Unexpected DecorationEvent" );
2974
2975   if( NULL != mImpl->mEventData )
2976   {
2977     switch( handleType )
2978     {
2979       case GRAB_HANDLE:
2980       {
2981         Event event( Event::GRAB_HANDLE_EVENT );
2982         event.p1.mUint  = state;
2983         event.p2.mFloat = x;
2984         event.p3.mFloat = y;
2985
2986         mImpl->mEventData->mEventQueue.push_back( event );
2987         break;
2988       }
2989       case LEFT_SELECTION_HANDLE:
2990       {
2991         Event event( Event::LEFT_SELECTION_HANDLE_EVENT );
2992         event.p1.mUint  = state;
2993         event.p2.mFloat = x;
2994         event.p3.mFloat = y;
2995
2996         mImpl->mEventData->mEventQueue.push_back( event );
2997         break;
2998       }
2999       case RIGHT_SELECTION_HANDLE:
3000       {
3001         Event event( Event::RIGHT_SELECTION_HANDLE_EVENT );
3002         event.p1.mUint  = state;
3003         event.p2.mFloat = x;
3004         event.p3.mFloat = y;
3005
3006         mImpl->mEventData->mEventQueue.push_back( event );
3007         break;
3008       }
3009       case LEFT_SELECTION_HANDLE_MARKER:
3010       case RIGHT_SELECTION_HANDLE_MARKER:
3011       {
3012         // Markers do not move the handles.
3013         break;
3014       }
3015       case HANDLE_TYPE_COUNT:
3016       {
3017         DALI_ASSERT_DEBUG( !"Controller::HandleEvent. Unexpected handle type" );
3018       }
3019     }
3020
3021     mImpl->RequestRelayout();
3022   }
3023 }
3024
3025 // protected : Inherit from TextSelectionPopup::TextPopupButtonCallbackInterface.
3026
3027 void Controller::TextPopupButtonTouched( Dali::Toolkit::TextSelectionPopup::Buttons button )
3028 {
3029   if( NULL == mImpl->mEventData )
3030   {
3031     return;
3032   }
3033
3034   switch( button )
3035   {
3036     case Toolkit::TextSelectionPopup::CUT:
3037     {
3038       mImpl->SendSelectionToClipboard( true ); // Synchronous call to modify text
3039       mImpl->mOperationsPending = ALL_OPERATIONS;
3040
3041       if( ( 0u != mImpl->mModel->mLogicalModel->mText.Count() ) ||
3042           !mImpl->IsPlaceholderAvailable() )
3043       {
3044         mImpl->QueueModifyEvent( ModifyEvent::TEXT_DELETED );
3045       }
3046       else
3047       {
3048         ShowPlaceholderText();
3049       }
3050
3051       mImpl->mEventData->mUpdateCursorPosition = true;
3052       mImpl->mEventData->mScrollAfterDelete = true;
3053
3054       mImpl->RequestRelayout();
3055
3056       if( NULL != mImpl->mEditableControlInterface )
3057       {
3058         mImpl->mEditableControlInterface->TextChanged();
3059       }
3060       break;
3061     }
3062     case Toolkit::TextSelectionPopup::COPY:
3063     {
3064       mImpl->SendSelectionToClipboard( false ); // Text not modified
3065
3066       mImpl->mEventData->mUpdateCursorPosition = true;
3067
3068       mImpl->RequestRelayout(); // Cursor, Handles, Selection Highlight, Popup
3069       break;
3070     }
3071     case Toolkit::TextSelectionPopup::PASTE:
3072     {
3073       mImpl->RequestGetTextFromClipboard(); // Request clipboard service to retrieve an item
3074       break;
3075     }
3076     case Toolkit::TextSelectionPopup::SELECT:
3077     {
3078       const Vector2& currentCursorPosition = mImpl->mEventData->mDecorator->GetPosition( PRIMARY_CURSOR );
3079
3080       if( mImpl->mEventData->mSelectionEnabled )
3081       {
3082         // Creates a SELECT event.
3083         SelectEvent( currentCursorPosition.x, currentCursorPosition.y, false );
3084       }
3085       break;
3086     }
3087     case Toolkit::TextSelectionPopup::SELECT_ALL:
3088     {
3089       // Creates a SELECT_ALL event
3090       SelectEvent( 0.f, 0.f, true );
3091       break;
3092     }
3093     case Toolkit::TextSelectionPopup::CLIPBOARD:
3094     {
3095       mImpl->ShowClipboard();
3096       break;
3097     }
3098     case Toolkit::TextSelectionPopup::NONE:
3099     {
3100       // Nothing to do.
3101       break;
3102     }
3103   }
3104 }
3105
3106 void Controller::DisplayTimeExpired()
3107 {
3108   mImpl->mEventData->mUpdateCursorPosition = true;
3109   // Apply modifications to the model
3110   mImpl->mOperationsPending = ALL_OPERATIONS;
3111
3112   mImpl->RequestRelayout();
3113 }
3114
3115 // private : Update.
3116
3117 void Controller::InsertText( const std::string& text, Controller::InsertType type )
3118 {
3119   bool removedPrevious = false;
3120   bool removedSelected = false;
3121   bool maxLengthReached = false;
3122
3123   DALI_ASSERT_DEBUG( NULL != mImpl->mEventData && "Unexpected InsertText" )
3124
3125   if( NULL == mImpl->mEventData )
3126   {
3127     return;
3128   }
3129
3130   DALI_LOG_INFO( gLogFilter, Debug::Verbose, "Controller::InsertText %p %s (%s) mPrimaryCursorPosition %d mPreEditFlag %d mPreEditStartPosition %d mPreEditLength %d\n",
3131                  this, text.c_str(), (COMMIT == type ? "COMMIT" : "PRE_EDIT"),
3132                  mImpl->mEventData->mPrimaryCursorPosition, mImpl->mEventData->mPreEditFlag, mImpl->mEventData->mPreEditStartPosition, mImpl->mEventData->mPreEditLength );
3133
3134   // TODO: At the moment the underline runs are only for pre-edit.
3135   mImpl->mModel->mVisualModel->mUnderlineRuns.Clear();
3136
3137   // Remove the previous InputMethodContext pre-edit.
3138   if( mImpl->mEventData->mPreEditFlag && ( 0u != mImpl->mEventData->mPreEditLength ) )
3139   {
3140     removedPrevious = RemoveText( -static_cast<int>( mImpl->mEventData->mPrimaryCursorPosition - mImpl->mEventData->mPreEditStartPosition ),
3141                                   mImpl->mEventData->mPreEditLength,
3142                                   DONT_UPDATE_INPUT_STYLE );
3143
3144     mImpl->mEventData->mPrimaryCursorPosition = mImpl->mEventData->mPreEditStartPosition;
3145     mImpl->mEventData->mPreEditLength = 0u;
3146   }
3147   else
3148   {
3149     // Remove the previous Selection.
3150     removedSelected = RemoveSelectedText();
3151
3152   }
3153
3154   Vector<Character> utf32Characters;
3155   Length characterCount = 0u;
3156
3157   if( !text.empty() )
3158   {
3159     //  Convert text into UTF-32
3160     utf32Characters.Resize( text.size() );
3161
3162     // This is a bit horrible but std::string returns a (signed) char*
3163     const uint8_t* utf8 = reinterpret_cast<const uint8_t*>( text.c_str() );
3164
3165     // Transform a text array encoded in utf8 into an array encoded in utf32.
3166     // It returns the actual number of characters.
3167     characterCount = Utf8ToUtf32( utf8, text.size(), utf32Characters.Begin() );
3168     utf32Characters.Resize( characterCount );
3169
3170     DALI_ASSERT_DEBUG( text.size() >= utf32Characters.Count() && "Invalid UTF32 conversion length" );
3171     DALI_LOG_INFO( gLogFilter, Debug::Verbose, "UTF8 size %d, UTF32 size %d\n", text.size(), utf32Characters.Count() );
3172   }
3173
3174   if( 0u != utf32Characters.Count() ) // Check if Utf8ToUtf32 conversion succeeded
3175   {
3176     // The placeholder text is no longer needed
3177     if( mImpl->IsShowingPlaceholderText() )
3178     {
3179       ResetText();
3180     }
3181
3182     mImpl->ChangeState( EventData::EDITING );
3183
3184     // Handle the InputMethodContext (predicitive text) state changes
3185     if( COMMIT == type )
3186     {
3187       // InputMethodContext is no longer handling key-events
3188       mImpl->ClearPreEditFlag();
3189     }
3190     else // PRE_EDIT
3191     {
3192       if( !mImpl->mEventData->mPreEditFlag )
3193       {
3194         DALI_LOG_INFO( gLogFilter, Debug::Verbose, "Entered PreEdit state\n" );
3195
3196         // Record the start of the pre-edit text
3197         mImpl->mEventData->mPreEditStartPosition = mImpl->mEventData->mPrimaryCursorPosition;
3198       }
3199
3200       mImpl->mEventData->mPreEditLength = utf32Characters.Count();
3201       mImpl->mEventData->mPreEditFlag = true;
3202
3203       DALI_LOG_INFO( gLogFilter, Debug::Verbose, "mPreEditStartPosition %d mPreEditLength %d\n", mImpl->mEventData->mPreEditStartPosition, mImpl->mEventData->mPreEditLength );
3204     }
3205
3206     const Length numberOfCharactersInModel = mImpl->mModel->mLogicalModel->mText.Count();
3207
3208     // Restrict new text to fit within Maximum characters setting.
3209     Length maxSizeOfNewText = std::min( ( mImpl->mMaximumNumberOfCharacters - numberOfCharactersInModel ), characterCount );
3210     maxLengthReached = ( characterCount > maxSizeOfNewText );
3211
3212     // The cursor position.
3213     CharacterIndex& cursorIndex = mImpl->mEventData->mPrimaryCursorPosition;
3214
3215     // Update the text's style.
3216
3217     // Updates the text style runs by adding characters.
3218     mImpl->mModel->mLogicalModel->UpdateTextStyleRuns( cursorIndex, maxSizeOfNewText );
3219
3220     // Get the character index from the cursor index.
3221     const CharacterIndex styleIndex = ( cursorIndex > 0u ) ? cursorIndex - 1u : 0u;
3222
3223     // Retrieve the text's style for the given index.
3224     InputStyle style;
3225     mImpl->RetrieveDefaultInputStyle( style );
3226     mImpl->mModel->mLogicalModel->RetrieveStyle( styleIndex, style );
3227
3228     // Whether to add a new text color run.
3229     const bool addColorRun = ( style.textColor != mImpl->mEventData->mInputStyle.textColor );
3230
3231     // Whether to add a new font run.
3232     const bool addFontNameRun = style.familyName != mImpl->mEventData->mInputStyle.familyName;
3233     const bool addFontWeightRun = style.weight != mImpl->mEventData->mInputStyle.weight;
3234     const bool addFontWidthRun = style.width != mImpl->mEventData->mInputStyle.width;
3235     const bool addFontSlantRun = style.slant != mImpl->mEventData->mInputStyle.slant;
3236     const bool addFontSizeRun = style.size != mImpl->mEventData->mInputStyle.size;
3237
3238     // Add style runs.
3239     if( addColorRun )
3240     {
3241       const VectorBase::SizeType numberOfRuns = mImpl->mModel->mLogicalModel->mColorRuns.Count();
3242       mImpl->mModel->mLogicalModel->mColorRuns.Resize( numberOfRuns + 1u );
3243
3244       ColorRun& colorRun = *( mImpl->mModel->mLogicalModel->mColorRuns.Begin() + numberOfRuns );
3245       colorRun.color = mImpl->mEventData->mInputStyle.textColor;
3246       colorRun.characterRun.characterIndex = cursorIndex;
3247       colorRun.characterRun.numberOfCharacters = maxSizeOfNewText;
3248     }
3249
3250     if( addFontNameRun   ||
3251         addFontWeightRun ||
3252         addFontWidthRun  ||
3253         addFontSlantRun  ||
3254         addFontSizeRun )
3255     {
3256       const VectorBase::SizeType numberOfRuns = mImpl->mModel->mLogicalModel->mFontDescriptionRuns.Count();
3257       mImpl->mModel->mLogicalModel->mFontDescriptionRuns.Resize( numberOfRuns + 1u );
3258
3259       FontDescriptionRun& fontDescriptionRun = *( mImpl->mModel->mLogicalModel->mFontDescriptionRuns.Begin() + numberOfRuns );
3260
3261       if( addFontNameRun )
3262       {
3263         fontDescriptionRun.familyLength = mImpl->mEventData->mInputStyle.familyName.size();
3264         fontDescriptionRun.familyName = new char[fontDescriptionRun.familyLength];
3265         memcpy( fontDescriptionRun.familyName, mImpl->mEventData->mInputStyle.familyName.c_str(), fontDescriptionRun.familyLength );
3266         fontDescriptionRun.familyDefined = true;
3267
3268         // The memory allocated for the font family name is freed when the font description is removed from the logical model.
3269       }
3270
3271       if( addFontWeightRun )
3272       {
3273         fontDescriptionRun.weight = mImpl->mEventData->mInputStyle.weight;
3274         fontDescriptionRun.weightDefined = true;
3275       }
3276
3277       if( addFontWidthRun )
3278       {
3279         fontDescriptionRun.width = mImpl->mEventData->mInputStyle.width;
3280         fontDescriptionRun.widthDefined = true;
3281       }
3282
3283       if( addFontSlantRun )
3284       {
3285         fontDescriptionRun.slant = mImpl->mEventData->mInputStyle.slant;
3286         fontDescriptionRun.slantDefined = true;
3287       }
3288
3289       if( addFontSizeRun )
3290       {
3291         fontDescriptionRun.size = static_cast<PointSize26Dot6>( mImpl->mEventData->mInputStyle.size * 64.f );
3292         fontDescriptionRun.sizeDefined = true;
3293       }
3294
3295       fontDescriptionRun.characterRun.characterIndex = cursorIndex;
3296       fontDescriptionRun.characterRun.numberOfCharacters = maxSizeOfNewText;
3297     }
3298
3299     // Insert at current cursor position.
3300     Vector<Character>& modifyText = mImpl->mModel->mLogicalModel->mText;
3301
3302     if( cursorIndex < numberOfCharactersInModel )
3303     {
3304       modifyText.Insert( modifyText.Begin() + cursorIndex, utf32Characters.Begin(), utf32Characters.Begin() + maxSizeOfNewText );
3305     }
3306     else
3307     {
3308       modifyText.Insert( modifyText.End(), utf32Characters.Begin(), utf32Characters.Begin() + maxSizeOfNewText );
3309     }
3310
3311     // Mark the first paragraph to be updated.
3312     if( Layout::Engine::SINGLE_LINE_BOX == mImpl->mLayoutEngine.GetLayout() )
3313     {
3314       mImpl->mTextUpdateInfo.mCharacterIndex = 0;
3315       mImpl->mTextUpdateInfo.mNumberOfCharactersToRemove = mImpl->mTextUpdateInfo.mPreviousNumberOfCharacters;
3316       mImpl->mTextUpdateInfo.mNumberOfCharactersToAdd = numberOfCharactersInModel + maxSizeOfNewText;
3317       mImpl->mTextUpdateInfo.mClearAll = true;
3318     }
3319     else
3320     {
3321       mImpl->mTextUpdateInfo.mCharacterIndex = std::min( cursorIndex, mImpl->mTextUpdateInfo.mCharacterIndex );
3322       mImpl->mTextUpdateInfo.mNumberOfCharactersToAdd += maxSizeOfNewText;
3323     }
3324
3325     // Update the cursor index.
3326     cursorIndex += maxSizeOfNewText;
3327
3328     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 );
3329   }
3330
3331   if( ( 0u == mImpl->mModel->mLogicalModel->mText.Count() ) &&
3332       mImpl->IsPlaceholderAvailable() )
3333   {
3334     // Show place-holder if empty after removing the pre-edit text
3335     ShowPlaceholderText();
3336     mImpl->mEventData->mUpdateCursorPosition = true;
3337     mImpl->ClearPreEditFlag();
3338   }
3339   else if( removedPrevious ||
3340            removedSelected ||
3341            ( 0 != utf32Characters.Count() ) )
3342   {
3343     // Queue an inserted event
3344     mImpl->QueueModifyEvent( ModifyEvent::TEXT_INSERTED );
3345
3346     mImpl->mEventData->mUpdateCursorPosition = true;
3347     if( removedSelected )
3348     {
3349       mImpl->mEventData->mScrollAfterDelete = true;
3350     }
3351     else
3352     {
3353       mImpl->mEventData->mScrollAfterUpdatePosition = true;
3354     }
3355   }
3356
3357   if( maxLengthReached )
3358   {
3359     DALI_LOG_INFO( gLogFilter, Debug::Verbose, "MaxLengthReached (%d)\n", mImpl->mModel->mLogicalModel->mText.Count() );
3360
3361     mImpl->ResetInputMethodContext();
3362
3363     if( NULL != mImpl->mEditableControlInterface )
3364     {
3365       // Do this last since it provides callbacks into application code
3366       mImpl->mEditableControlInterface->MaxLengthReached();
3367     }
3368   }
3369 }
3370
3371 void Controller::PasteText( const std::string& stringToPaste )
3372 {
3373   InsertText( stringToPaste, Text::Controller::COMMIT );
3374   mImpl->ChangeState( EventData::EDITING );
3375   mImpl->RequestRelayout();
3376
3377   if( NULL != mImpl->mEditableControlInterface )
3378   {
3379     // Do this last since it provides callbacks into application code
3380     mImpl->mEditableControlInterface->TextChanged();
3381   }
3382 }
3383
3384 bool Controller::RemoveText( int cursorOffset,
3385                              int numberOfCharacters,
3386                              UpdateInputStyleType type )
3387 {
3388   bool removed = false;
3389
3390   if( NULL == mImpl->mEventData )
3391   {
3392     return removed;
3393   }
3394
3395   DALI_LOG_INFO( gLogFilter, Debug::General, "Controller::RemoveText %p mText.Count() %d cursor %d cursorOffset %d numberOfCharacters %d\n",
3396                  this, mImpl->mModel->mLogicalModel->mText.Count(), mImpl->mEventData->mPrimaryCursorPosition, cursorOffset, numberOfCharacters );
3397
3398   if( !mImpl->IsShowingPlaceholderText() )
3399   {
3400     // Delete at current cursor position
3401     Vector<Character>& currentText = mImpl->mModel->mLogicalModel->mText;
3402     CharacterIndex& oldCursorIndex = mImpl->mEventData->mPrimaryCursorPosition;
3403
3404     CharacterIndex cursorIndex = 0;
3405
3406     // Validate the cursor position & number of characters
3407     if( ( static_cast< int >( mImpl->mEventData->mPrimaryCursorPosition ) + cursorOffset ) >= 0 )
3408     {
3409       cursorIndex = mImpl->mEventData->mPrimaryCursorPosition + cursorOffset;
3410     }
3411
3412     if( ( cursorIndex + numberOfCharacters ) > currentText.Count() )
3413     {
3414       numberOfCharacters = currentText.Count() - cursorIndex;
3415     }
3416
3417     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.
3418         ( ( cursorIndex + numberOfCharacters ) <= mImpl->mTextUpdateInfo.mPreviousNumberOfCharacters ) )
3419     {
3420       // Mark the paragraphs to be updated.
3421       if( Layout::Engine::SINGLE_LINE_BOX == mImpl->mLayoutEngine.GetLayout() )
3422       {
3423         mImpl->mTextUpdateInfo.mCharacterIndex = 0;
3424         mImpl->mTextUpdateInfo.mNumberOfCharactersToRemove = mImpl->mTextUpdateInfo.mPreviousNumberOfCharacters;
3425         mImpl->mTextUpdateInfo.mNumberOfCharactersToAdd = mImpl->mTextUpdateInfo.mPreviousNumberOfCharacters - numberOfCharacters;
3426         mImpl->mTextUpdateInfo.mClearAll = true;
3427       }
3428       else
3429       {
3430         mImpl->mTextUpdateInfo.mCharacterIndex = std::min( cursorIndex, mImpl->mTextUpdateInfo.mCharacterIndex );
3431         mImpl->mTextUpdateInfo.mNumberOfCharactersToRemove += numberOfCharacters;
3432       }
3433
3434       // Update the input style and remove the text's style before removing the text.
3435
3436       if( UPDATE_INPUT_STYLE == type )
3437       {
3438         // Keep a copy of the current input style.
3439         InputStyle currentInputStyle;
3440         currentInputStyle.Copy( mImpl->mEventData->mInputStyle );
3441
3442         // Set first the default input style.
3443         mImpl->RetrieveDefaultInputStyle( mImpl->mEventData->mInputStyle );
3444
3445         // Update the input style.
3446         mImpl->mModel->mLogicalModel->RetrieveStyle( cursorIndex, mImpl->mEventData->mInputStyle );
3447
3448         // Compare if the input style has changed.
3449         const bool hasInputStyleChanged = !currentInputStyle.Equal( mImpl->mEventData->mInputStyle );
3450
3451         if( hasInputStyleChanged )
3452         {
3453           const InputStyle::Mask styleChangedMask = currentInputStyle.GetInputStyleChangeMask( mImpl->mEventData->mInputStyle );
3454           // Queue the input style changed signal.
3455           mImpl->mEventData->mInputStyleChangedQueue.PushBack( styleChangedMask );
3456         }
3457       }
3458
3459       // Updates the text style runs by removing characters. Runs with no characters are removed.
3460       mImpl->mModel->mLogicalModel->UpdateTextStyleRuns( cursorIndex, -numberOfCharacters );
3461
3462       // Remove the characters.
3463       Vector<Character>::Iterator first = currentText.Begin() + cursorIndex;
3464       Vector<Character>::Iterator last  = first + numberOfCharacters;
3465
3466       currentText.Erase( first, last );
3467
3468       // Cursor position retreat
3469       oldCursorIndex = cursorIndex;
3470
3471       mImpl->mEventData->mScrollAfterDelete = true;
3472
3473       DALI_LOG_INFO( gLogFilter, Debug::General, "Controller::RemoveText %p removed %d\n", this, numberOfCharacters );
3474       removed = true;
3475     }
3476   }
3477
3478   return removed;
3479 }
3480
3481 bool Controller::RemoveSelectedText()
3482 {
3483   bool textRemoved( false );
3484
3485   if( EventData::SELECTING == mImpl->mEventData->mState )
3486   {
3487     std::string removedString;
3488     mImpl->RetrieveSelection( removedString, true );
3489
3490     if( !removedString.empty() )
3491     {
3492       textRemoved = true;
3493       mImpl->ChangeState( EventData::EDITING );
3494     }
3495   }
3496
3497   return textRemoved;
3498 }
3499
3500 // private : Relayout.
3501
3502 bool Controller::DoRelayout( const Size& size,
3503                              OperationsMask operationsRequired,
3504                              Size& layoutSize )
3505 {
3506   DALI_LOG_INFO( gLogFilter, Debug::Verbose, "-->Controller::DoRelayout %p size %f,%f\n", this, size.width, size.height );
3507   bool viewUpdated( false );
3508
3509   // Calculate the operations to be done.
3510   const OperationsMask operations = static_cast<OperationsMask>( mImpl->mOperationsPending & operationsRequired );
3511
3512   const CharacterIndex startIndex = mImpl->mTextUpdateInfo.mParagraphCharacterIndex;
3513   const Length requestedNumberOfCharacters = mImpl->mTextUpdateInfo.mRequestedNumberOfCharacters;
3514
3515   // Get the current layout size.
3516   layoutSize = mImpl->mModel->mVisualModel->GetLayoutSize();
3517
3518   if( NO_OPERATION != ( LAYOUT & operations ) )
3519   {
3520     DALI_LOG_INFO( gLogFilter, Debug::Verbose, "-->Controller::DoRelayout LAYOUT & operations\n");
3521
3522     // Some vectors with data needed to layout and reorder may be void
3523     // after the first time the text has been laid out.
3524     // Fill the vectors again.
3525
3526     // Calculate the number of glyphs to layout.
3527     const Vector<GlyphIndex>& charactersToGlyph = mImpl->mModel->mVisualModel->mCharactersToGlyph;
3528     const Vector<Length>& glyphsPerCharacter = mImpl->mModel->mVisualModel->mGlyphsPerCharacter;
3529     const GlyphIndex* const charactersToGlyphBuffer = charactersToGlyph.Begin();
3530     const Length* const glyphsPerCharacterBuffer = glyphsPerCharacter.Begin();
3531
3532     const CharacterIndex lastIndex = startIndex + ( ( requestedNumberOfCharacters > 0u ) ? requestedNumberOfCharacters - 1u : 0u );
3533     const GlyphIndex startGlyphIndex = mImpl->mTextUpdateInfo.mStartGlyphIndex;
3534
3535     // Make sure the index is not out of bound
3536     if ( charactersToGlyph.Count() != glyphsPerCharacter.Count() ||
3537          requestedNumberOfCharacters > charactersToGlyph.Count() ||
3538          ( lastIndex >= charactersToGlyph.Count() && charactersToGlyph.Count() > 0u ) )
3539     {
3540       std::string currentText;
3541       GetText( currentText );
3542
3543       DALI_LOG_ERROR( "Controller::DoRelayout: Attempting to access invalid buffer\n" );
3544       DALI_LOG_ERROR( "Current text is: %s\n", currentText.c_str() );
3545       DALI_LOG_ERROR( "startIndex: %u, lastIndex: %u, requestedNumberOfCharacters: %u, charactersToGlyph.Count = %lu, glyphsPerCharacter.Count = %lu\n", startIndex, lastIndex, requestedNumberOfCharacters, charactersToGlyph.Count(), glyphsPerCharacter.Count());
3546
3547       return false;
3548     }
3549
3550     const Length numberOfGlyphs = ( requestedNumberOfCharacters > 0u ) ? *( charactersToGlyphBuffer + lastIndex ) + *( glyphsPerCharacterBuffer + lastIndex ) - startGlyphIndex : 0u;
3551     const Length totalNumberOfGlyphs = mImpl->mModel->mVisualModel->mGlyphs.Count();
3552
3553     if( 0u == totalNumberOfGlyphs )
3554     {
3555       if( NO_OPERATION != ( UPDATE_LAYOUT_SIZE & operations ) )
3556       {
3557         mImpl->mModel->mVisualModel->SetLayoutSize( Size::ZERO );
3558       }
3559
3560       // Nothing else to do if there is no glyphs.
3561       DALI_LOG_INFO( gLogFilter, Debug::Verbose, "<--Controller::DoRelayout no glyphs, view updated true\n" );
3562       return true;
3563     }
3564
3565     const Vector<LineBreakInfo>& lineBreakInfo = mImpl->mModel->mLogicalModel->mLineBreakInfo;
3566     const Vector<WordBreakInfo>& wordBreakInfo = mImpl->mModel->mLogicalModel->mWordBreakInfo;
3567     const Vector<CharacterDirection>& characterDirection = mImpl->mModel->mLogicalModel->mCharacterDirections;
3568     const Vector<GlyphInfo>& glyphs = mImpl->mModel->mVisualModel->mGlyphs;
3569     const Vector<CharacterIndex>& glyphsToCharactersMap = mImpl->mModel->mVisualModel->mGlyphsToCharacters;
3570     const Vector<Length>& charactersPerGlyph = mImpl->mModel->mVisualModel->mCharactersPerGlyph;
3571     const Character* const textBuffer = mImpl->mModel->mLogicalModel->mText.Begin();
3572     const float outlineWidth = static_cast<float>( mImpl->mModel->GetOutlineWidth() );
3573
3574     // Set the layout parameters.
3575     Layout::Parameters layoutParameters( size,
3576                                          textBuffer,
3577                                          lineBreakInfo.Begin(),
3578                                          wordBreakInfo.Begin(),
3579                                          ( 0u != characterDirection.Count() ) ? characterDirection.Begin() : NULL,
3580                                          glyphs.Begin(),
3581                                          glyphsToCharactersMap.Begin(),
3582                                          charactersPerGlyph.Begin(),
3583                                          charactersToGlyphBuffer,
3584                                          glyphsPerCharacterBuffer,
3585                                          totalNumberOfGlyphs,
3586                                          mImpl->mModel->mHorizontalAlignment,
3587                                          mImpl->mModel->mLineWrapMode,
3588                                          outlineWidth,
3589                                          mImpl->mModel->mIgnoreSpacesAfterText,
3590                                          mImpl->mModel->mMatchSystemLanguageDirection );
3591
3592     // Resize the vector of positions to have the same size than the vector of glyphs.
3593     Vector<Vector2>& glyphPositions = mImpl->mModel->mVisualModel->mGlyphPositions;
3594     glyphPositions.Resize( totalNumberOfGlyphs );
3595
3596     // Whether the last character is a new paragraph character.
3597     mImpl->mTextUpdateInfo.mIsLastCharacterNewParagraph =  TextAbstraction::IsNewParagraph( *( textBuffer + ( mImpl->mModel->mLogicalModel->mText.Count() - 1u ) ) );
3598     layoutParameters.isLastNewParagraph = mImpl->mTextUpdateInfo.mIsLastCharacterNewParagraph;
3599
3600     // The initial glyph and the number of glyphs to layout.
3601     layoutParameters.startGlyphIndex = startGlyphIndex;
3602     layoutParameters.numberOfGlyphs = numberOfGlyphs;
3603     layoutParameters.startLineIndex = mImpl->mTextUpdateInfo.mStartLineIndex;
3604     layoutParameters.estimatedNumberOfLines = mImpl->mTextUpdateInfo.mEstimatedNumberOfLines;
3605
3606     // Update the ellipsis
3607     bool elideTextEnabled = mImpl->mModel->mElideEnabled;
3608
3609     if( NULL != mImpl->mEventData )
3610     {
3611       if( mImpl->mEventData->mPlaceholderEllipsisFlag && mImpl->IsShowingPlaceholderText() )
3612       {
3613         elideTextEnabled = mImpl->mEventData->mIsPlaceholderElideEnabled;
3614       }
3615       else if( EventData::INACTIVE != mImpl->mEventData->mState )
3616       {
3617         // Disable ellipsis when editing
3618         elideTextEnabled = false;
3619       }
3620
3621       // Reset the scroll position in inactive state
3622       if( elideTextEnabled && ( mImpl->mEventData->mState == EventData::INACTIVE ) )
3623       {
3624         ResetScrollPosition();
3625       }
3626     }
3627
3628     // Update the visual model.
3629     bool isAutoScrollEnabled = mImpl->mIsAutoScrollEnabled;
3630     Size newLayoutSize;
3631     viewUpdated = mImpl->mLayoutEngine.LayoutText( layoutParameters,
3632                                                    glyphPositions,
3633                                                    mImpl->mModel->mVisualModel->mLines,
3634                                                    newLayoutSize,
3635                                                    elideTextEnabled,
3636                                                    isAutoScrollEnabled );
3637     mImpl->mIsAutoScrollEnabled = isAutoScrollEnabled;
3638
3639     viewUpdated = viewUpdated || ( newLayoutSize != layoutSize );
3640
3641     if( viewUpdated )
3642     {
3643       layoutSize = newLayoutSize;
3644
3645       if( NO_OPERATION != ( UPDATE_DIRECTION & operations ) )
3646       {
3647         mImpl->mIsTextDirectionRTL = false;
3648       }
3649
3650       // Reorder the lines
3651       if( NO_OPERATION != ( REORDER & operations ) )
3652       {
3653         Vector<BidirectionalParagraphInfoRun>& bidirectionalInfo = mImpl->mModel->mLogicalModel->mBidirectionalParagraphInfo;
3654         Vector<BidirectionalLineInfoRun>& bidirectionalLineInfo = mImpl->mModel->mLogicalModel->mBidirectionalLineInfo;
3655
3656         // Check first if there are paragraphs with bidirectional info.
3657         if( 0u != bidirectionalInfo.Count() )
3658         {
3659           // Get the lines
3660           const Length numberOfLines = mImpl->mModel->mVisualModel->mLines.Count();
3661
3662           // Reorder the lines.
3663           bidirectionalLineInfo.Reserve( numberOfLines ); // Reserve because is not known yet how many lines have right to left characters.
3664           ReorderLines( bidirectionalInfo,
3665                         startIndex,
3666                         requestedNumberOfCharacters,
3667                         mImpl->mModel->mVisualModel->mLines,
3668                         bidirectionalLineInfo );
3669
3670           // Set the bidirectional info per line into the layout parameters.
3671           layoutParameters.lineBidirectionalInfoRunsBuffer = bidirectionalLineInfo.Begin();
3672           layoutParameters.numberOfBidirectionalInfoRuns = bidirectionalLineInfo.Count();
3673
3674           // Re-layout the text. Reorder those lines with right to left characters.
3675           mImpl->mLayoutEngine.ReLayoutRightToLeftLines( layoutParameters,
3676                                                          startIndex,
3677                                                          requestedNumberOfCharacters,
3678                                                          glyphPositions );
3679
3680           if ( ( NO_OPERATION != ( UPDATE_DIRECTION & operations ) ) && ( numberOfLines > 0 ) )
3681           {
3682             const LineRun* const firstline = mImpl->mModel->mVisualModel->mLines.Begin();
3683             if ( firstline )
3684             {
3685               mImpl->mIsTextDirectionRTL = firstline->direction;
3686             }
3687           }
3688         }
3689       } // REORDER
3690
3691       // Sets the layout size.
3692       if( NO_OPERATION != ( UPDATE_LAYOUT_SIZE & operations ) )
3693       {
3694         mImpl->mModel->mVisualModel->SetLayoutSize( layoutSize );
3695       }
3696     } // view updated
3697   }
3698
3699   if( NO_OPERATION != ( ALIGN & operations ) )
3700   {
3701     // The laid-out lines.
3702     Vector<LineRun>& lines = mImpl->mModel->mVisualModel->mLines;
3703
3704     // Need to align with the control's size as the text may contain lines
3705     // starting either with left to right text or right to left.
3706     mImpl->mLayoutEngine.Align( size,
3707                                 startIndex,
3708                                 requestedNumberOfCharacters,
3709                                 mImpl->mModel->mHorizontalAlignment,
3710                                 lines,
3711                                 mImpl->mModel->mAlignmentOffset,
3712                                 mImpl->mLayoutDirection,
3713                                 mImpl->mModel->mMatchSystemLanguageDirection );
3714
3715     viewUpdated = true;
3716   }
3717 #if defined(DEBUG_ENABLED)
3718   std::string currentText;
3719   GetText( currentText );
3720   DALI_LOG_INFO( gLogFilter, Debug::Concise, "Controller::DoRelayout [%p] mImpl->mIsTextDirectionRTL[%s] [%s]\n", this, (mImpl->mIsTextDirectionRTL)?"true":"false",  currentText.c_str() );
3721 #endif
3722   DALI_LOG_INFO( gLogFilter, Debug::Verbose, "<--Controller::DoRelayout, view updated %s\n", ( viewUpdated ? "true" : "false" ) );
3723   return viewUpdated;
3724 }
3725
3726 void Controller::CalculateVerticalOffset( const Size& controlSize )
3727 {
3728   Size layoutSize = mImpl->mModel->mVisualModel->GetLayoutSize();
3729
3730   if( fabsf( layoutSize.height ) < Math::MACHINE_EPSILON_1000 )
3731   {
3732     // Get the line height of the default font.
3733     layoutSize.height = mImpl->GetDefaultFontLineHeight();
3734   }
3735
3736   switch( mImpl->mModel->mVerticalAlignment )
3737   {
3738     case VerticalAlignment::TOP:
3739     {
3740       mImpl->mModel->mScrollPosition.y = 0.f;
3741       break;
3742     }
3743     case VerticalAlignment::CENTER:
3744     {
3745       mImpl->mModel->mScrollPosition.y = floorf( 0.5f * ( controlSize.height - layoutSize.height ) ); // try to avoid pixel alignment.
3746       break;
3747     }
3748     case VerticalAlignment::BOTTOM:
3749     {
3750       mImpl->mModel->mScrollPosition.y = controlSize.height - layoutSize.height;
3751       break;
3752     }
3753   }
3754 }
3755
3756 // private : Events.
3757
3758 void Controller::ProcessModifyEvents()
3759 {
3760   Vector<ModifyEvent>& events = mImpl->mModifyEvents;
3761
3762   if( 0u == events.Count() )
3763   {
3764     // Nothing to do.
3765     return;
3766   }
3767
3768   for( Vector<ModifyEvent>::ConstIterator it = events.Begin(),
3769          endIt = events.End();
3770        it != endIt;
3771        ++it )
3772   {
3773     const ModifyEvent& event = *it;
3774
3775     if( ModifyEvent::TEXT_REPLACED == event.type )
3776     {
3777       // A (single) replace event should come first, otherwise we wasted time processing NOOP events
3778       DALI_ASSERT_DEBUG( it == events.Begin() && "Unexpected TEXT_REPLACED event" );
3779
3780       TextReplacedEvent();
3781     }
3782     else if( ModifyEvent::TEXT_INSERTED == event.type )
3783     {
3784       TextInsertedEvent();
3785     }
3786     else if( ModifyEvent::TEXT_DELETED == event.type )
3787     {
3788       // Placeholder-text cannot be deleted
3789       if( !mImpl->IsShowingPlaceholderText() )
3790       {
3791         TextDeletedEvent();
3792       }
3793     }
3794   }
3795
3796   if( NULL != mImpl->mEventData )
3797   {
3798     // When the text is being modified, delay cursor blinking
3799     mImpl->mEventData->mDecorator->DelayCursorBlink();
3800
3801     // Update selection position after modifying the text
3802     mImpl->mEventData->mLeftSelectionPosition = mImpl->mEventData->mPrimaryCursorPosition;
3803     mImpl->mEventData->mRightSelectionPosition = mImpl->mEventData->mPrimaryCursorPosition;
3804   }
3805
3806   // Discard temporary text
3807   events.Clear();
3808 }
3809
3810 void Controller::TextReplacedEvent()
3811 {
3812   // The natural size needs to be re-calculated.
3813   mImpl->mRecalculateNaturalSize = true;
3814
3815   // The text direction needs to be updated.
3816   mImpl->mUpdateTextDirection = true;
3817
3818   // Apply modifications to the model
3819   mImpl->mOperationsPending = ALL_OPERATIONS;
3820 }
3821
3822 void Controller::TextInsertedEvent()
3823 {
3824   DALI_ASSERT_DEBUG( NULL != mImpl->mEventData && "Unexpected TextInsertedEvent" );
3825
3826   if( NULL == mImpl->mEventData )
3827   {
3828     return;
3829   }
3830
3831   mImpl->mEventData->mCheckScrollAmount = true;
3832
3833   // The natural size needs to be re-calculated.
3834   mImpl->mRecalculateNaturalSize = true;
3835
3836   // The text direction needs to be updated.
3837   mImpl->mUpdateTextDirection = true;
3838
3839   // Apply modifications to the model; TODO - Optimize this
3840   mImpl->mOperationsPending = ALL_OPERATIONS;
3841 }
3842
3843 void Controller::TextDeletedEvent()
3844 {
3845   DALI_ASSERT_DEBUG( NULL != mImpl->mEventData && "Unexpected TextDeletedEvent" );
3846
3847   if( NULL == mImpl->mEventData )
3848   {
3849     return;
3850   }
3851
3852   mImpl->mEventData->mCheckScrollAmount = true;
3853
3854   // The natural size needs to be re-calculated.
3855   mImpl->mRecalculateNaturalSize = true;
3856
3857   // The text direction needs to be updated.
3858   mImpl->mUpdateTextDirection = true;
3859
3860   // Apply modifications to the model; TODO - Optimize this
3861   mImpl->mOperationsPending = ALL_OPERATIONS;
3862 }
3863
3864 void Controller::SelectEvent( float x, float y, bool selectAll )
3865 {
3866   DALI_LOG_INFO( gLogFilter, Debug::Verbose, "Controller::SelectEvent\n" );
3867
3868   if( NULL != mImpl->mEventData )
3869   {
3870     if( selectAll )
3871     {
3872       Event event( Event::SELECT_ALL );
3873       mImpl->mEventData->mEventQueue.push_back( event );
3874     }
3875     else
3876     {
3877       Event event( Event::SELECT );
3878       event.p2.mFloat = x;
3879       event.p3.mFloat = y;
3880       mImpl->mEventData->mEventQueue.push_back( event );
3881     }
3882
3883     mImpl->mEventData->mCheckScrollAmount = true;
3884     mImpl->mEventData->mIsLeftHandleSelected = true;
3885     mImpl->mEventData->mIsRightHandleSelected = true;
3886     mImpl->RequestRelayout();
3887   }
3888 }
3889
3890 bool Controller::DeleteEvent( int keyCode )
3891 {
3892   DALI_LOG_INFO( gLogFilter, Debug::Verbose, "Controller::KeyEvent %p KeyCode : %d \n", this, keyCode );
3893
3894   bool removed = false;
3895
3896   if( NULL == mImpl->mEventData )
3897   {
3898     return removed;
3899   }
3900
3901   // InputMethodContext is no longer handling key-events
3902   mImpl->ClearPreEditFlag();
3903
3904   if( EventData::SELECTING == mImpl->mEventData->mState )
3905   {
3906     removed = RemoveSelectedText();
3907   }
3908   else if( ( mImpl->mEventData->mPrimaryCursorPosition > 0 ) && ( keyCode == Dali::DALI_KEY_BACKSPACE) )
3909   {
3910     // Remove the character before the current cursor position
3911     removed = RemoveText( -1,
3912                           1,
3913                           UPDATE_INPUT_STYLE );
3914   }
3915   else if( keyCode == Dali::DevelKey::DALI_KEY_DELETE )
3916   {
3917     // Remove the character after the current cursor position
3918     removed = RemoveText( 0,
3919                           1,
3920                           UPDATE_INPUT_STYLE );
3921   }
3922
3923   if( removed )
3924   {
3925     if( ( 0u != mImpl->mModel->mLogicalModel->mText.Count() ) ||
3926         !mImpl->IsPlaceholderAvailable() )
3927     {
3928       mImpl->QueueModifyEvent( ModifyEvent::TEXT_DELETED );
3929     }
3930     else
3931     {
3932       ShowPlaceholderText();
3933     }
3934     mImpl->mEventData->mUpdateCursorPosition = true;
3935     mImpl->mEventData->mScrollAfterDelete = true;
3936   }
3937
3938   return removed;
3939 }
3940
3941 // private : Helpers.
3942
3943 void Controller::ResetText()
3944 {
3945   // Reset buffers.
3946   mImpl->mModel->mLogicalModel->mText.Clear();
3947
3948   // Reset the embedded images buffer.
3949   mImpl->mModel->mLogicalModel->ClearEmbeddedImages();
3950
3951   // We have cleared everything including the placeholder-text
3952   mImpl->PlaceholderCleared();
3953
3954   mImpl->mTextUpdateInfo.mCharacterIndex = 0u;
3955   mImpl->mTextUpdateInfo.mNumberOfCharactersToRemove = mImpl->mTextUpdateInfo.mPreviousNumberOfCharacters;
3956   mImpl->mTextUpdateInfo.mNumberOfCharactersToAdd = 0u;
3957
3958   // Clear any previous text.
3959   mImpl->mTextUpdateInfo.mClearAll = true;
3960
3961   // The natural size needs to be re-calculated.
3962   mImpl->mRecalculateNaturalSize = true;
3963
3964   // The text direction needs to be updated.
3965   mImpl->mUpdateTextDirection = true;
3966
3967   // Apply modifications to the model
3968   mImpl->mOperationsPending = ALL_OPERATIONS;
3969 }
3970
3971 void Controller::ShowPlaceholderText()
3972 {
3973   if( mImpl->IsPlaceholderAvailable() )
3974   {
3975     DALI_ASSERT_DEBUG( mImpl->mEventData && "No placeholder text available" );
3976
3977     if( NULL == mImpl->mEventData )
3978     {
3979       return;
3980     }
3981
3982     mImpl->mEventData->mIsShowingPlaceholderText = true;
3983
3984     // Disable handles when showing place-holder text
3985     mImpl->mEventData->mDecorator->SetHandleActive( GRAB_HANDLE, false );
3986     mImpl->mEventData->mDecorator->SetHandleActive( LEFT_SELECTION_HANDLE, false );
3987     mImpl->mEventData->mDecorator->SetHandleActive( RIGHT_SELECTION_HANDLE, false );
3988
3989     const char* text( NULL );
3990     size_t size( 0 );
3991
3992     // TODO - Switch Placeholder text when changing state
3993     if( ( EventData::INACTIVE != mImpl->mEventData->mState ) &&
3994         ( 0u != mImpl->mEventData->mPlaceholderTextActive.c_str() ) )
3995     {
3996       text = mImpl->mEventData->mPlaceholderTextActive.c_str();
3997       size = mImpl->mEventData->mPlaceholderTextActive.size();
3998     }
3999     else
4000     {
4001       text = mImpl->mEventData->mPlaceholderTextInactive.c_str();
4002       size = mImpl->mEventData->mPlaceholderTextInactive.size();
4003     }
4004
4005     mImpl->mTextUpdateInfo.mCharacterIndex = 0u;
4006     mImpl->mTextUpdateInfo.mNumberOfCharactersToRemove = mImpl->mTextUpdateInfo.mPreviousNumberOfCharacters;
4007
4008     // Reset model for showing placeholder.
4009     mImpl->mModel->mLogicalModel->mText.Clear();
4010     mImpl->mModel->mVisualModel->SetTextColor( mImpl->mEventData->mPlaceholderTextColor );
4011
4012     // Convert text into UTF-32
4013     Vector<Character>& utf32Characters = mImpl->mModel->mLogicalModel->mText;
4014     utf32Characters.Resize( size );
4015
4016     // This is a bit horrible but std::string returns a (signed) char*
4017     const uint8_t* utf8 = reinterpret_cast<const uint8_t*>( text );
4018
4019     // Transform a text array encoded in utf8 into an array encoded in utf32.
4020     // It returns the actual number of characters.
4021     const Length characterCount = Utf8ToUtf32( utf8, size, utf32Characters.Begin() );
4022     utf32Characters.Resize( characterCount );
4023
4024     // The characters to be added.
4025     mImpl->mTextUpdateInfo.mNumberOfCharactersToAdd = characterCount;
4026
4027     // Reset the cursor position
4028     mImpl->mEventData->mPrimaryCursorPosition = 0;
4029
4030     // The natural size needs to be re-calculated.
4031     mImpl->mRecalculateNaturalSize = true;
4032
4033     // The text direction needs to be updated.
4034     mImpl->mUpdateTextDirection = true;
4035
4036     // Apply modifications to the model
4037     mImpl->mOperationsPending = ALL_OPERATIONS;
4038
4039     // Update the rest of the model during size negotiation
4040     mImpl->QueueModifyEvent( ModifyEvent::TEXT_REPLACED );
4041   }
4042 }
4043
4044 void Controller::ClearFontData()
4045 {
4046   if( mImpl->mFontDefaults )
4047   {
4048     mImpl->mFontDefaults->mFontId = 0u; // Remove old font ID
4049   }
4050
4051   // Set flags to update the model.
4052   mImpl->mTextUpdateInfo.mCharacterIndex = 0u;
4053   mImpl->mTextUpdateInfo.mNumberOfCharactersToRemove = mImpl->mTextUpdateInfo.mPreviousNumberOfCharacters;
4054   mImpl->mTextUpdateInfo.mNumberOfCharactersToAdd = mImpl->mModel->mLogicalModel->mText.Count();
4055
4056   mImpl->mTextUpdateInfo.mClearAll = true;
4057   mImpl->mTextUpdateInfo.mFullRelayoutNeeded = true;
4058   mImpl->mRecalculateNaturalSize = true;
4059
4060   mImpl->mOperationsPending = static_cast<OperationsMask>( mImpl->mOperationsPending |
4061                                                            VALIDATE_FONTS            |
4062                                                            SHAPE_TEXT                |
4063                                                            BIDI_INFO                 |
4064                                                            GET_GLYPH_METRICS         |
4065                                                            LAYOUT                    |
4066                                                            UPDATE_LAYOUT_SIZE        |
4067                                                            REORDER                   |
4068                                                            ALIGN );
4069 }
4070
4071 void Controller::ClearStyleData()
4072 {
4073   mImpl->mModel->mLogicalModel->mColorRuns.Clear();
4074   mImpl->mModel->mLogicalModel->ClearFontDescriptionRuns();
4075 }
4076
4077 void Controller::ResetCursorPosition( CharacterIndex cursorIndex )
4078 {
4079   // Reset the cursor position
4080   if( NULL != mImpl->mEventData )
4081   {
4082     mImpl->mEventData->mPrimaryCursorPosition = cursorIndex;
4083
4084     // Update the cursor if it's in editing mode.
4085     if( EventData::IsEditingState( mImpl->mEventData->mState )  )
4086     {
4087       mImpl->mEventData->mUpdateCursorPosition = true;
4088     }
4089   }
4090 }
4091
4092 void Controller::ResetScrollPosition()
4093 {
4094   if( NULL != mImpl->mEventData )
4095   {
4096     // Reset the scroll position.
4097     mImpl->mModel->mScrollPosition = Vector2::ZERO;
4098     mImpl->mEventData->mScrollAfterUpdatePosition = true;
4099   }
4100 }
4101
4102 void Controller::SetControlInterface( ControlInterface* controlInterface )
4103 {
4104   mImpl->mControlInterface = controlInterface;
4105 }
4106
4107 bool Controller::ShouldClearFocusOnEscape() const
4108 {
4109   return mImpl->mShouldClearFocusOnEscape;
4110 }
4111
4112 // private : Private contructors & copy operator.
4113
4114 Controller::Controller()
4115 : mImpl( NULL )
4116 {
4117   mImpl = new Controller::Impl( NULL, NULL );
4118 }
4119
4120 Controller::Controller( ControlInterface* controlInterface )
4121 {
4122   mImpl = new Controller::Impl( controlInterface, NULL );
4123 }
4124
4125 Controller::Controller( ControlInterface* controlInterface,
4126                         EditableControlInterface* editableControlInterface )
4127 {
4128   mImpl = new Controller::Impl( controlInterface,
4129                                 editableControlInterface );
4130 }
4131
4132 // The copy constructor and operator are left unimplemented.
4133
4134 // protected : Destructor.
4135
4136 Controller::~Controller()
4137 {
4138   delete mImpl;
4139 }
4140
4141 } // namespace Text
4142
4143 } // namespace Toolkit
4144
4145 } // namespace Dali