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