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