Make sure mClearAll is true after calling GetNaturalSize()
[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     mImpl->mTextUpdateInfo.mClearAll = true;
1881
1882     // Restore the actual control's size.
1883     mImpl->mModel->mVisualModel->mControlSize = actualControlSize;
1884
1885     DALI_LOG_INFO( gLogFilter, Debug::Verbose, "<--Controller::GetNaturalSize calculated %f,%f,%f\n", naturalSize.x, naturalSize.y, naturalSize.z );
1886   }
1887   else
1888   {
1889     naturalSize = mImpl->mModel->mVisualModel->GetNaturalSize();
1890
1891     DALI_LOG_INFO( gLogFilter, Debug::Verbose, "<--Controller::GetNaturalSize cached %f,%f,%f\n", naturalSize.x, naturalSize.y, naturalSize.z );
1892   }
1893
1894   naturalSize.x = ConvertToEven( naturalSize.x );
1895   naturalSize.y = ConvertToEven( naturalSize.y );
1896
1897   return naturalSize;
1898 }
1899
1900 float Controller::GetHeightForWidth( float width )
1901 {
1902   DALI_LOG_INFO( gLogFilter, Debug::Verbose, "-->Controller::GetHeightForWidth %p width %f\n", this, width );
1903   // Make sure the model is up-to-date before layouting
1904   ProcessModifyEvents();
1905
1906   Size layoutSize;
1907   if( fabsf( width - mImpl->mModel->mVisualModel->mControlSize.width ) > Math::MACHINE_EPSILON_1000 ||
1908                                                          mImpl->mTextUpdateInfo.mFullRelayoutNeeded ||
1909                                                          mImpl->mTextUpdateInfo.mClearAll            )
1910   {
1911     // Operations that can be done only once until the text changes.
1912     const OperationsMask onlyOnceOperations = static_cast<OperationsMask>( CONVERT_TO_UTF32  |
1913                                                                            GET_SCRIPTS       |
1914                                                                            VALIDATE_FONTS    |
1915                                                                            GET_LINE_BREAKS   |
1916                                                                            GET_WORD_BREAKS   |
1917                                                                            BIDI_INFO         |
1918                                                                            SHAPE_TEXT        |
1919                                                                            GET_GLYPH_METRICS );
1920
1921     // Set the update info to relayout the whole text.
1922     mImpl->mTextUpdateInfo.mParagraphCharacterIndex = 0u;
1923     mImpl->mTextUpdateInfo.mRequestedNumberOfCharacters = mImpl->mModel->mLogicalModel->mText.Count();
1924
1925     // Make sure the model is up-to-date before layouting
1926     mImpl->UpdateModel( onlyOnceOperations );
1927
1928
1929     // Layout the text for the new width.
1930     mImpl->mOperationsPending = static_cast<OperationsMask>( mImpl->mOperationsPending | LAYOUT );
1931
1932     // Store the actual control's width.
1933     const float actualControlWidth = mImpl->mModel->mVisualModel->mControlSize.width;
1934
1935     DoRelayout( Size( width, MAX_FLOAT ),
1936                 static_cast<OperationsMask>( onlyOnceOperations |
1937                                              LAYOUT ),
1938                 layoutSize );
1939
1940     // Do not do again the only once operations.
1941     mImpl->mOperationsPending = static_cast<OperationsMask>( mImpl->mOperationsPending & ~onlyOnceOperations );
1942
1943     // Do the size related operations again.
1944     const OperationsMask sizeOperations =  static_cast<OperationsMask>( LAYOUT |
1945                                                                         ALIGN  |
1946                                                                         REORDER );
1947
1948     mImpl->mOperationsPending = static_cast<OperationsMask>( mImpl->mOperationsPending | sizeOperations );
1949
1950     // Clear the update info. This info will be set the next time the text is updated.
1951     mImpl->mTextUpdateInfo.Clear();
1952
1953     // Restore the actual control's width.
1954     mImpl->mModel->mVisualModel->mControlSize.width = actualControlWidth;
1955
1956     DALI_LOG_INFO( gLogFilter, Debug::Verbose, "<--Controller::GetHeightForWidth calculated %f\n", layoutSize.height );
1957   }
1958   else
1959   {
1960     layoutSize = mImpl->mModel->mVisualModel->GetLayoutSize();
1961     DALI_LOG_INFO( gLogFilter, Debug::Verbose, "<--Controller::GetHeightForWidth cached %f\n", layoutSize.height );
1962   }
1963
1964   return layoutSize.height;
1965 }
1966
1967 int Controller::GetLineCount( float width )
1968 {
1969   GetHeightForWidth( width );
1970   int numberofLines = mImpl->mModel->GetNumberOfLines();
1971   return numberofLines;
1972 }
1973
1974 const ModelInterface* const Controller::GetTextModel() const
1975 {
1976   return mImpl->mModel.Get();
1977 }
1978
1979 float Controller::GetScrollAmountByUserInput()
1980 {
1981   float scrollAmount = 0.0f;
1982
1983   if (NULL != mImpl->mEventData && mImpl->mEventData->mCheckScrollAmount)
1984   {
1985     scrollAmount = mImpl->mModel->mScrollPosition.y -  mImpl->mModel->mScrollPositionLast.y;
1986     mImpl->mEventData->mCheckScrollAmount = false;
1987   }
1988   return scrollAmount;
1989 }
1990
1991 bool Controller::GetTextScrollInfo( float& scrollPosition, float& controlHeight, float& layoutHeight )
1992 {
1993   const Vector2& layout = mImpl->mModel->mVisualModel->GetLayoutSize();
1994   bool isScrolled;
1995
1996   controlHeight = mImpl->mModel->mVisualModel->mControlSize.height;
1997   layoutHeight = layout.height;
1998   scrollPosition = mImpl->mModel->mScrollPosition.y;
1999   isScrolled = !Equals( mImpl->mModel->mScrollPosition.y, mImpl->mModel->mScrollPositionLast.y, Math::MACHINE_EPSILON_1 );
2000   return isScrolled;
2001 }
2002
2003 void Controller::SetHiddenInputOption(const Property::Map& options )
2004 {
2005   if( NULL == mImpl->mHiddenInput )
2006   {
2007     mImpl->mHiddenInput = new HiddenText( this );
2008   }
2009   mImpl->mHiddenInput->SetProperties(options);
2010 }
2011
2012 void Controller::GetHiddenInputOption(Property::Map& options )
2013 {
2014   if( NULL != mImpl->mHiddenInput )
2015   {
2016     mImpl->mHiddenInput->GetProperties(options);
2017   }
2018 }
2019
2020 void Controller::SetPlaceholderProperty( const Property::Map& map )
2021 {
2022   const Property::Map::SizeType count = map.Count();
2023
2024   for( Property::Map::SizeType position = 0; position < count; ++position )
2025   {
2026     KeyValuePair keyValue = map.GetKeyValue( position );
2027     Property::Key& key = keyValue.first;
2028     Property::Value& value = keyValue.second;
2029
2030     if( key == Toolkit::Text::PlaceHolder::Property::TEXT  || key == PLACEHOLDER_TEXT )
2031     {
2032       std::string text = "";
2033       value.Get( text );
2034       SetPlaceholderText( Controller::PLACEHOLDER_TYPE_INACTIVE, text );
2035     }
2036     else if( key == Toolkit::Text::PlaceHolder::Property::TEXT_FOCUSED || key == PLACEHOLDER_TEXT_FOCUSED )
2037     {
2038       std::string text = "";
2039       value.Get( text );
2040       SetPlaceholderText( Controller::PLACEHOLDER_TYPE_ACTIVE, text );
2041     }
2042     else if( key == Toolkit::Text::PlaceHolder::Property::COLOR || key == PLACEHOLDER_COLOR )
2043     {
2044       Vector4 textColor;
2045       value.Get( textColor );
2046       if( GetPlaceholderTextColor() != textColor )
2047       {
2048         SetPlaceholderTextColor( textColor );
2049       }
2050     }
2051     else if( key == Toolkit::Text::PlaceHolder::Property::FONT_FAMILY || key == PLACEHOLDER_FONT_FAMILY )
2052     {
2053       std::string fontFamily = "";
2054       value.Get( fontFamily );
2055       SetPlaceholderFontFamily( fontFamily );
2056     }
2057     else if( key == Toolkit::Text::PlaceHolder::Property::FONT_STYLE || key == PLACEHOLDER_FONT_STYLE )
2058     {
2059       SetFontStyleProperty( this, value, Text::FontStyle::PLACEHOLDER );
2060     }
2061     else if( key == Toolkit::Text::PlaceHolder::Property::POINT_SIZE || key == PLACEHOLDER_POINT_SIZE )
2062     {
2063       float pointSize;
2064       value.Get( pointSize );
2065       if( !Equals( GetPlaceholderTextFontSize( Text::Controller::POINT_SIZE ), pointSize ) )
2066       {
2067         SetPlaceholderTextFontSize( pointSize, Text::Controller::POINT_SIZE );
2068       }
2069     }
2070     else if( key == Toolkit::Text::PlaceHolder::Property::PIXEL_SIZE || key == PLACEHOLDER_PIXEL_SIZE )
2071     {
2072       float pixelSize;
2073       value.Get( pixelSize );
2074       if( !Equals( GetPlaceholderTextFontSize( Text::Controller::PIXEL_SIZE ), pixelSize ) )
2075       {
2076         SetPlaceholderTextFontSize( pixelSize, Text::Controller::PIXEL_SIZE );
2077       }
2078     }
2079     else if( key == Toolkit::Text::PlaceHolder::Property::ELLIPSIS || key == PLACEHOLDER_ELLIPSIS )
2080     {
2081       bool ellipsis;
2082       value.Get( ellipsis );
2083       SetPlaceholderTextElideEnabled( ellipsis );
2084     }
2085   }
2086 }
2087
2088 void Controller::GetPlaceholderProperty( Property::Map& map )
2089 {
2090   if( NULL != mImpl->mEventData )
2091   {
2092     if( !mImpl->mEventData->mPlaceholderTextActive.empty() )
2093     {
2094       map[ Text::PlaceHolder::Property::TEXT_FOCUSED ] = mImpl->mEventData->mPlaceholderTextActive;
2095     }
2096     if( !mImpl->mEventData->mPlaceholderTextInactive.empty() )
2097     {
2098       map[ Text::PlaceHolder::Property::TEXT ] = mImpl->mEventData->mPlaceholderTextInactive;
2099     }
2100
2101     map[ Text::PlaceHolder::Property::COLOR ] = mImpl->mEventData->mPlaceholderTextColor;
2102     map[ Text::PlaceHolder::Property::FONT_FAMILY ] = GetPlaceholderFontFamily();
2103
2104     Property::Value fontStyleMapGet;
2105     GetFontStyleProperty( this, fontStyleMapGet, Text::FontStyle::PLACEHOLDER );
2106     map[ Text::PlaceHolder::Property::FONT_STYLE ] = fontStyleMapGet;
2107
2108     // Choose font size : POINT_SIZE or PIXEL_SIZE
2109     if( !mImpl->mEventData->mIsPlaceholderPixelSize )
2110     {
2111       map[ Text::PlaceHolder::Property::POINT_SIZE ] = GetPlaceholderTextFontSize( Text::Controller::POINT_SIZE );
2112     }
2113     else
2114     {
2115       map[ Text::PlaceHolder::Property::PIXEL_SIZE ] = GetPlaceholderTextFontSize( Text::Controller::PIXEL_SIZE );
2116     }
2117
2118     if( mImpl->mEventData->mPlaceholderEllipsisFlag )
2119     {
2120       map[ Text::PlaceHolder::Property::ELLIPSIS ] = IsPlaceholderTextElideEnabled();
2121     }
2122   }
2123 }
2124
2125 Toolkit::DevelText::TextDirection::Type Controller::GetTextDirection()
2126 {
2127   // Make sure the model is up-to-date before layouting
2128   ProcessModifyEvents();
2129
2130   if ( mImpl->mUpdateTextDirection )
2131   {
2132     // Operations that can be done only once until the text changes.
2133     const OperationsMask onlyOnceOperations = static_cast<OperationsMask>( GET_SCRIPTS       |
2134                                                                            VALIDATE_FONTS    |
2135                                                                            GET_LINE_BREAKS   |
2136                                                                            GET_WORD_BREAKS   |
2137                                                                            BIDI_INFO         |
2138                                                                            SHAPE_TEXT        );
2139
2140     // Set the update info to relayout the whole text.
2141     mImpl->mTextUpdateInfo.mParagraphCharacterIndex = 0u;
2142     mImpl->mTextUpdateInfo.mRequestedNumberOfCharacters = mImpl->mModel->mLogicalModel->mText.Count();
2143
2144     // Make sure the model is up-to-date before layouting
2145     mImpl->UpdateModel( onlyOnceOperations );
2146
2147     Vector3 naturalSize;
2148     DoRelayout( Size( MAX_FLOAT, MAX_FLOAT ),
2149                 static_cast<OperationsMask>( onlyOnceOperations |
2150                                              LAYOUT | REORDER | UPDATE_DIRECTION ),
2151                 naturalSize.GetVectorXY() );
2152
2153     // Clear the update info. This info will be set the next time the text is updated.
2154     mImpl->mTextUpdateInfo.Clear();
2155
2156     mImpl->mUpdateTextDirection = false;
2157   }
2158
2159   return mImpl->mIsTextDirectionRTL ? Toolkit::DevelText::TextDirection::RIGHT_TO_LEFT : Toolkit::DevelText::TextDirection::LEFT_TO_RIGHT;
2160 }
2161
2162 Toolkit::DevelText::VerticalLineAlignment::Type Controller::GetVerticalLineAlignment() const
2163 {
2164   return mImpl->mModel->GetVerticalLineAlignment();
2165 }
2166
2167 void Controller::SetVerticalLineAlignment( Toolkit::DevelText::VerticalLineAlignment::Type alignment )
2168 {
2169   mImpl->mModel->mVerticalLineAlignment = alignment;
2170 }
2171
2172 // public : Relayout.
2173
2174 Controller::UpdateTextType Controller::Relayout( const Size& size )
2175 {
2176   DALI_LOG_INFO( gLogFilter, Debug::Verbose, "-->Controller::Relayout %p size %f,%f, autoScroll[%s]\n", this, size.width, size.height, mImpl->mIsAutoScrollEnabled ?"true":"false"  );
2177
2178   UpdateTextType updateTextType = NONE_UPDATED;
2179
2180   if( ( size.width < Math::MACHINE_EPSILON_1000 ) || ( size.height < Math::MACHINE_EPSILON_1000 ) )
2181   {
2182     if( 0u != mImpl->mModel->mVisualModel->mGlyphPositions.Count() )
2183     {
2184       mImpl->mModel->mVisualModel->mGlyphPositions.Clear();
2185       updateTextType = MODEL_UPDATED;
2186     }
2187
2188     // Clear the update info. This info will be set the next time the text is updated.
2189     mImpl->mTextUpdateInfo.Clear();
2190
2191     // Not worth to relayout if width or height is equal to zero.
2192     DALI_LOG_INFO( gLogFilter, Debug::Verbose, "<--Controller::Relayout (skipped)\n" );
2193
2194     return updateTextType;
2195   }
2196
2197   // Whether a new size has been set.
2198   const bool newSize = ( size != mImpl->mModel->mVisualModel->mControlSize );
2199
2200   if( newSize )
2201   {
2202     DALI_LOG_INFO( gLogFilter, Debug::Verbose, "new size (previous size %f,%f)\n", mImpl->mModel->mVisualModel->mControlSize.width, mImpl->mModel->mVisualModel->mControlSize.height );
2203
2204     if( ( 0 == mImpl->mTextUpdateInfo.mNumberOfCharactersToAdd ) &&
2205         ( 0 == mImpl->mTextUpdateInfo.mPreviousNumberOfCharacters ) &&
2206         ( ( mImpl->mModel->mVisualModel->mControlSize.width < Math::MACHINE_EPSILON_1000 ) || ( mImpl->mModel->mVisualModel->mControlSize.height < Math::MACHINE_EPSILON_1000 ) ) )
2207     {
2208       mImpl->mTextUpdateInfo.mNumberOfCharactersToAdd = mImpl->mModel->mLogicalModel->mText.Count();
2209     }
2210
2211     // Layout operations that need to be done if the size changes.
2212     mImpl->mOperationsPending = static_cast<OperationsMask>( mImpl->mOperationsPending |
2213                                                              LAYOUT                    |
2214                                                              ALIGN                     |
2215                                                              UPDATE_LAYOUT_SIZE        |
2216                                                              REORDER );
2217     // Set the update info to relayout the whole text.
2218     mImpl->mTextUpdateInfo.mFullRelayoutNeeded = true;
2219     mImpl->mTextUpdateInfo.mCharacterIndex = 0u;
2220
2221     // Store the size used to layout the text.
2222     mImpl->mModel->mVisualModel->mControlSize = size;
2223   }
2224
2225   // Whether there are modify events.
2226   if( 0u != mImpl->mModifyEvents.Count() )
2227   {
2228     // Style operations that need to be done if the text is modified.
2229     mImpl->mOperationsPending = static_cast<OperationsMask>( mImpl->mOperationsPending |
2230                                                              COLOR );
2231   }
2232
2233   // Set the update info to elide the text.
2234   if( mImpl->mModel->mElideEnabled ||
2235       ( ( NULL != mImpl->mEventData ) && mImpl->mEventData->mIsPlaceholderElideEnabled ) )
2236   {
2237     // Update Text layout for applying elided
2238     mImpl->mOperationsPending = static_cast<OperationsMask>( mImpl->mOperationsPending |
2239                                                              ALIGN                     |
2240                                                              LAYOUT                    |
2241                                                              UPDATE_LAYOUT_SIZE        |
2242                                                              REORDER );
2243     mImpl->mTextUpdateInfo.mFullRelayoutNeeded = true;
2244     mImpl->mTextUpdateInfo.mCharacterIndex = 0u;
2245   }
2246
2247   // Make sure the model is up-to-date before layouting.
2248   ProcessModifyEvents();
2249   bool updated = mImpl->UpdateModel( mImpl->mOperationsPending );
2250
2251   // Layout the text.
2252   Size layoutSize;
2253   updated = DoRelayout( size,
2254                         mImpl->mOperationsPending,
2255                         layoutSize ) || updated;
2256
2257   if( updated )
2258   {
2259     updateTextType = MODEL_UPDATED;
2260   }
2261
2262   // Do not re-do any operation until something changes.
2263   mImpl->mOperationsPending = NO_OPERATION;
2264   mImpl->mModel->mScrollPositionLast = mImpl->mModel->mScrollPosition;
2265
2266   // Whether the text control is editable
2267   const bool isEditable = NULL != mImpl->mEventData;
2268
2269   // Keep the current offset as it will be used to update the decorator's positions (if the size changes).
2270   Vector2 offset;
2271   if( newSize && isEditable )
2272   {
2273     offset = mImpl->mModel->mScrollPosition;
2274   }
2275
2276   if( !isEditable || !IsMultiLineEnabled() )
2277   {
2278     // After doing the text layout, the vertical offset to place the actor in the desired position can be calculated.
2279     CalculateVerticalOffset( size );
2280   }
2281
2282   if( isEditable )
2283   {
2284     if( newSize )
2285     {
2286       // If there is a new size, the scroll position needs to be clamped.
2287       mImpl->ClampHorizontalScroll( layoutSize );
2288
2289       // Update the decorator's positions is needed if there is a new size.
2290       mImpl->mEventData->mDecorator->UpdatePositions( mImpl->mModel->mScrollPosition - offset );
2291     }
2292
2293     // Move the cursor, grab handle etc.
2294     if( mImpl->ProcessInputEvents() )
2295     {
2296       updateTextType = static_cast<UpdateTextType>( updateTextType | DECORATOR_UPDATED );
2297     }
2298   }
2299
2300   // Clear the update info. This info will be set the next time the text is updated.
2301   mImpl->mTextUpdateInfo.Clear();
2302   DALI_LOG_INFO( gLogFilter, Debug::Verbose, "<--Controller::Relayout\n" );
2303
2304   return updateTextType;
2305 }
2306
2307 void Controller::RequestRelayout()
2308 {
2309   mImpl->RequestRelayout();
2310 }
2311
2312 // public : Input style change signals.
2313
2314 bool Controller::IsInputStyleChangedSignalsQueueEmpty()
2315 {
2316   return ( NULL == mImpl->mEventData ) || ( 0u == mImpl->mEventData->mInputStyleChangedQueue.Count() );
2317 }
2318
2319 void Controller::ProcessInputStyleChangedSignals()
2320 {
2321   if( NULL == mImpl->mEventData )
2322   {
2323     // Nothing to do.
2324     return;
2325   }
2326
2327   for( Vector<InputStyle::Mask>::ConstIterator it = mImpl->mEventData->mInputStyleChangedQueue.Begin(),
2328          endIt = mImpl->mEventData->mInputStyleChangedQueue.End();
2329        it != endIt;
2330        ++it )
2331   {
2332     const InputStyle::Mask mask = *it;
2333
2334     if( NULL != mImpl->mEditableControlInterface )
2335     {
2336       // Emit the input style changed signal.
2337       mImpl->mEditableControlInterface->InputStyleChanged( mask );
2338     }
2339   }
2340
2341   mImpl->mEventData->mInputStyleChangedQueue.Clear();
2342 }
2343
2344 // public : Text-input Event Queuing.
2345
2346 void Controller::KeyboardFocusGainEvent()
2347 {
2348   DALI_ASSERT_DEBUG( mImpl->mEventData && "Unexpected KeyboardFocusGainEvent" );
2349
2350   if( NULL != mImpl->mEventData )
2351   {
2352     if( ( EventData::INACTIVE == mImpl->mEventData->mState ) ||
2353         ( EventData::INTERRUPTED == mImpl->mEventData->mState ) )
2354     {
2355       mImpl->ChangeState( EventData::EDITING );
2356       mImpl->mEventData->mUpdateCursorPosition = true; //If editing started without tap event, cursor update must be triggered.
2357       mImpl->mEventData->mUpdateInputStyle = true;
2358     }
2359     mImpl->NotifyImfMultiLineStatus();
2360     if( mImpl->IsShowingPlaceholderText() )
2361     {
2362       // Show alternative placeholder-text when editing
2363       ShowPlaceholderText();
2364     }
2365
2366     mImpl->RequestRelayout();
2367   }
2368 }
2369
2370 void Controller::KeyboardFocusLostEvent()
2371 {
2372   DALI_ASSERT_DEBUG( mImpl->mEventData && "Unexpected KeyboardFocusLostEvent" );
2373
2374   if( NULL != mImpl->mEventData )
2375   {
2376     if( EventData::INTERRUPTED != mImpl->mEventData->mState )
2377     {
2378       mImpl->ChangeState( EventData::INACTIVE );
2379
2380       if( !mImpl->IsShowingRealText() )
2381       {
2382         // Revert to regular placeholder-text when not editing
2383         ShowPlaceholderText();
2384       }
2385     }
2386   }
2387   mImpl->RequestRelayout();
2388 }
2389
2390 bool Controller::KeyEvent( const Dali::KeyEvent& keyEvent )
2391 {
2392   DALI_ASSERT_DEBUG( mImpl->mEventData && "Unexpected KeyEvent" );
2393
2394   bool textChanged = false;
2395   bool relayoutNeeded = false;
2396
2397   if( ( NULL != mImpl->mEventData ) &&
2398       ( keyEvent.state == KeyEvent::Down ) )
2399   {
2400     int keyCode = keyEvent.keyCode;
2401     const std::string& keyString = keyEvent.keyPressed;
2402     const std::string keyName = keyEvent.keyPressedName;
2403
2404     const bool isNullKey = ( 0 == keyCode ) && ( keyString.empty() );
2405
2406     // Pre-process to separate modifying events from non-modifying input events.
2407     if( isNullKey )
2408     {
2409       // In some platforms arrive key events with no key code.
2410       // Do nothing.
2411       return false;
2412     }
2413     else if( Dali::DALI_KEY_ESCAPE == keyCode || Dali::DALI_KEY_BACK == keyCode  || Dali::DALI_KEY_SEARCH == keyCode )
2414     {
2415       // Do nothing
2416       return false;
2417     }
2418     else if( ( Dali::DALI_KEY_CURSOR_LEFT  == keyCode ) ||
2419              ( Dali::DALI_KEY_CURSOR_RIGHT == keyCode ) ||
2420              ( Dali::DALI_KEY_CURSOR_UP    == keyCode ) ||
2421              ( Dali::DALI_KEY_CURSOR_DOWN  == keyCode ) )
2422     {
2423       // If don't have any text, do nothing.
2424       if( !mImpl->mTextUpdateInfo.mPreviousNumberOfCharacters )
2425       {
2426         return false;
2427       }
2428
2429       uint32_t cursorPosition = mImpl->mEventData->mPrimaryCursorPosition;
2430       uint32_t numberOfCharacters = mImpl->mTextUpdateInfo.mPreviousNumberOfCharacters;
2431       uint32_t cursorLine = mImpl->mModel->mVisualModel->GetLineOfCharacter( cursorPosition );
2432       uint32_t numberOfLines = mImpl->mModel->GetNumberOfLines();
2433
2434       // Logic to determine whether this text control will lose focus or not.
2435       if( ( Dali::DALI_KEY_CURSOR_LEFT == keyCode && 0 == cursorPosition ) ||
2436           ( Dali::DALI_KEY_CURSOR_RIGHT == keyCode && numberOfCharacters == cursorPosition) ||
2437           ( Dali::DALI_KEY_CURSOR_DOWN == keyCode && cursorLine == numberOfLines -1 ) ||
2438           ( Dali::DALI_KEY_CURSOR_DOWN == keyCode && numberOfCharacters == cursorPosition && cursorLine -1 == numberOfLines -1 ) ||
2439           ( Dali::DALI_KEY_CURSOR_UP == keyCode && cursorLine == 0 ) ||
2440           ( Dali::DALI_KEY_CURSOR_UP == keyCode && numberOfCharacters == cursorPosition && cursorLine == 1 ) )
2441       {
2442         return false;
2443       }
2444
2445       mImpl->mEventData->mCheckScrollAmount = true;
2446       Event event( Event::CURSOR_KEY_EVENT );
2447       event.p1.mInt = keyCode;
2448       event.p2.mBool = keyEvent.IsShiftModifier();
2449       mImpl->mEventData->mEventQueue.push_back( event );
2450
2451       // Will request for relayout.
2452       relayoutNeeded = true;
2453     }
2454     else if ( Dali::DevelKey::DALI_KEY_CONTROL_LEFT == keyCode || Dali::DevelKey::DALI_KEY_CONTROL_RIGHT == keyCode )
2455     {
2456       // Left or Right Control key event is received before Ctrl-C/V/X key event is received
2457       // If not handle it here, any selected text will be deleted
2458
2459       // Do nothing
2460       return false;
2461     }
2462     else if ( keyEvent.IsCtrlModifier() )
2463     {
2464       bool consumed = false;
2465       if (keyName == KEY_C_NAME)
2466       {
2467         // Ctrl-C to copy the selected text
2468         TextPopupButtonTouched( Toolkit::TextSelectionPopup::COPY );
2469         consumed = true;
2470       }
2471       else if (keyName == KEY_V_NAME)
2472       {
2473         // Ctrl-V to paste the copied text
2474         TextPopupButtonTouched( Toolkit::TextSelectionPopup::PASTE );
2475         consumed = true;
2476       }
2477       else if (keyName == KEY_X_NAME)
2478       {
2479         // Ctrl-X to cut the selected text
2480         TextPopupButtonTouched( Toolkit::TextSelectionPopup::CUT );
2481         consumed = true;
2482       }
2483       return consumed;
2484     }
2485     else if( ( Dali::DALI_KEY_BACKSPACE == keyCode ) ||
2486              ( Dali::DevelKey::DALI_KEY_DELETE == keyCode ) )
2487     {
2488       textChanged = DeleteEvent( keyCode );
2489
2490       // Will request for relayout.
2491       relayoutNeeded = true;
2492     }
2493     else if( IsKey( keyEvent, Dali::DALI_KEY_POWER ) ||
2494              IsKey( keyEvent, Dali::DALI_KEY_MENU ) ||
2495              IsKey( keyEvent, Dali::DALI_KEY_HOME ) )
2496     {
2497       // Power key/Menu/Home key behaviour does not allow edit mode to resume.
2498       mImpl->ChangeState( EventData::INACTIVE );
2499
2500       // Will request for relayout.
2501       relayoutNeeded = true;
2502
2503       // This branch avoids calling the InsertText() method of the 'else' branch which can delete selected text.
2504     }
2505     else if( Dali::DALI_KEY_SHIFT_LEFT == keyCode )
2506     {
2507       // DALI_KEY_SHIFT_LEFT is the key code for the Left Shift. It's sent (by the imf?) when the predictive text is enabled
2508       // and a character is typed after the type of a upper case latin character.
2509
2510       // Do nothing.
2511       return false;
2512     }
2513     else if( ( Dali::DALI_KEY_VOLUME_UP == keyCode ) || ( Dali::DALI_KEY_VOLUME_DOWN == keyCode ) )
2514     {
2515       // This branch avoids calling the InsertText() method of the 'else' branch which can delete selected text.
2516       // Do nothing.
2517       return false;
2518     }
2519     else
2520     {
2521       DALI_LOG_INFO( gLogFilter, Debug::Verbose, "Controller::KeyEvent %p keyString %s\n", this, keyString.c_str() );
2522
2523       // IMF manager is no longer handling key-events
2524       mImpl->ClearPreEditFlag();
2525
2526       InsertText( keyString, COMMIT );
2527       textChanged = true;
2528
2529       // Will request for relayout.
2530       relayoutNeeded = true;
2531     }
2532
2533     if ( ( mImpl->mEventData->mState != EventData::INTERRUPTED ) &&
2534          ( mImpl->mEventData->mState != EventData::INACTIVE ) &&
2535          ( !isNullKey ) &&
2536          ( Dali::DALI_KEY_SHIFT_LEFT != keyCode ) &&
2537          ( Dali::DALI_KEY_VOLUME_UP != keyCode ) &&
2538          ( Dali::DALI_KEY_VOLUME_DOWN != keyCode ) )
2539     {
2540       // Should not change the state if the key is the shift send by the imf manager.
2541       // Otherwise, when the state is SELECTING the text controller can't send the right
2542       // surrounding info to the imf.
2543       mImpl->ChangeState( EventData::EDITING );
2544
2545       // Will request for relayout.
2546       relayoutNeeded = true;
2547     }
2548
2549     if( relayoutNeeded )
2550     {
2551       mImpl->RequestRelayout();
2552     }
2553   }
2554
2555   if( textChanged &&
2556       ( NULL != mImpl->mEditableControlInterface ) )
2557   {
2558     // Do this last since it provides callbacks into application code
2559     mImpl->mEditableControlInterface->TextChanged();
2560   }
2561
2562   return true;
2563 }
2564
2565 void Controller::TapEvent( unsigned int tapCount, float x, float y )
2566 {
2567   DALI_ASSERT_DEBUG( mImpl->mEventData && "Unexpected TapEvent" );
2568
2569   if( NULL != mImpl->mEventData )
2570   {
2571     DALI_LOG_INFO( gLogFilter, Debug::Concise, "TapEvent state:%d \n", mImpl->mEventData->mState );
2572     EventData::State state( mImpl->mEventData->mState );
2573     bool relayoutNeeded( false );   // to avoid unnecessary relayouts when tapping an empty text-field
2574
2575     if( mImpl->IsClipboardVisible() )
2576     {
2577       if( EventData::INACTIVE == state || EventData::EDITING == state)
2578       {
2579         mImpl->ChangeState( EventData::EDITING_WITH_GRAB_HANDLE );
2580       }
2581       relayoutNeeded = true;
2582     }
2583     else if( 1u == tapCount )
2584     {
2585       if( EventData::EDITING_WITH_POPUP == state || EventData::EDITING_WITH_PASTE_POPUP == state )
2586       {
2587         mImpl->ChangeState( EventData::EDITING_WITH_GRAB_HANDLE );  // If Popup shown hide it here so can be shown again if required.
2588       }
2589
2590       if( mImpl->IsShowingRealText() && ( EventData::INACTIVE != state ) )
2591       {
2592         mImpl->ChangeState( EventData::EDITING_WITH_GRAB_HANDLE );
2593         relayoutNeeded = true;
2594       }
2595       else
2596       {
2597         if( mImpl->IsShowingPlaceholderText() && !mImpl->IsFocusedPlaceholderAvailable() )
2598         {
2599           // Hide placeholder text
2600           ResetText();
2601         }
2602
2603         if( EventData::INACTIVE == state )
2604         {
2605           mImpl->ChangeState( EventData::EDITING );
2606         }
2607         else if( !mImpl->IsClipboardEmpty() )
2608         {
2609           mImpl->ChangeState( EventData::EDITING_WITH_POPUP );
2610         }
2611         relayoutNeeded = true;
2612       }
2613     }
2614     else if( 2u == tapCount )
2615     {
2616       if( mImpl->mEventData->mSelectionEnabled &&
2617           mImpl->IsShowingRealText() )
2618       {
2619         relayoutNeeded = true;
2620         mImpl->mEventData->mIsLeftHandleSelected = true;
2621         mImpl->mEventData->mIsRightHandleSelected = true;
2622       }
2623     }
2624
2625     // Handles & cursors must be repositioned after Relayout() i.e. after the Model has been updated
2626     if( relayoutNeeded )
2627     {
2628       Event event( Event::TAP_EVENT );
2629       event.p1.mUint = tapCount;
2630       event.p2.mFloat = x;
2631       event.p3.mFloat = y;
2632       mImpl->mEventData->mEventQueue.push_back( event );
2633
2634       mImpl->RequestRelayout();
2635     }
2636   }
2637
2638   // Reset keyboard as tap event has occurred.
2639   mImpl->ResetImfManager();
2640 }
2641
2642 void Controller::PanEvent( Gesture::State state, const Vector2& displacement )
2643 {
2644   DALI_ASSERT_DEBUG( mImpl->mEventData && "Unexpected PanEvent" );
2645
2646   if( NULL != mImpl->mEventData )
2647   {
2648     Event event( Event::PAN_EVENT );
2649     event.p1.mInt = state;
2650     event.p2.mFloat = displacement.x;
2651     event.p3.mFloat = displacement.y;
2652     mImpl->mEventData->mEventQueue.push_back( event );
2653
2654     mImpl->RequestRelayout();
2655   }
2656 }
2657
2658 void Controller::LongPressEvent( Gesture::State state, float x, float y  )
2659 {
2660   DALI_ASSERT_DEBUG( mImpl->mEventData && "Unexpected LongPressEvent" );
2661
2662   if( ( state == Gesture::Started ) &&
2663       ( NULL != mImpl->mEventData ) )
2664   {
2665     // The 1st long-press on inactive text-field is treated as tap
2666     if( EventData::INACTIVE == mImpl->mEventData->mState )
2667     {
2668       mImpl->ChangeState( EventData::EDITING );
2669
2670       Event event( Event::TAP_EVENT );
2671       event.p1.mUint = 1;
2672       event.p2.mFloat = x;
2673       event.p3.mFloat = y;
2674       mImpl->mEventData->mEventQueue.push_back( event );
2675
2676       mImpl->RequestRelayout();
2677     }
2678     else if( !mImpl->IsShowingRealText() )
2679     {
2680       Event event( Event::LONG_PRESS_EVENT );
2681       event.p1.mInt = state;
2682       event.p2.mFloat = x;
2683       event.p3.mFloat = y;
2684       mImpl->mEventData->mEventQueue.push_back( event );
2685       mImpl->RequestRelayout();
2686     }
2687     else if( !mImpl->IsClipboardVisible() )
2688     {
2689       // Reset the imf manager to commit the pre-edit before selecting the text.
2690       mImpl->ResetImfManager();
2691
2692       Event event( Event::LONG_PRESS_EVENT );
2693       event.p1.mInt = state;
2694       event.p2.mFloat = x;
2695       event.p3.mFloat = y;
2696       mImpl->mEventData->mEventQueue.push_back( event );
2697       mImpl->RequestRelayout();
2698
2699       mImpl->mEventData->mIsLeftHandleSelected = true;
2700       mImpl->mEventData->mIsRightHandleSelected = true;
2701     }
2702   }
2703 }
2704
2705 ImfManager::ImfCallbackData Controller::OnImfEvent( ImfManager& imfManager, const ImfManager::ImfEventData& imfEvent )
2706 {
2707   // Whether the text needs to be relaid-out.
2708   bool requestRelayout = false;
2709
2710   // Whether to retrieve the text and cursor position to be sent to the IMF manager.
2711   bool retrieveText = false;
2712   bool retrieveCursor = false;
2713
2714   switch( imfEvent.eventName )
2715   {
2716     case ImfManager::COMMIT:
2717     {
2718       InsertText( imfEvent.predictiveString, Text::Controller::COMMIT );
2719       requestRelayout = true;
2720       retrieveCursor = true;
2721       break;
2722     }
2723     case ImfManager::PREEDIT:
2724     {
2725       InsertText( imfEvent.predictiveString, Text::Controller::PRE_EDIT );
2726       requestRelayout = true;
2727       retrieveCursor = true;
2728       break;
2729     }
2730     case ImfManager::DELETESURROUNDING:
2731     {
2732       const bool textDeleted = RemoveText( imfEvent.cursorOffset,
2733                                            imfEvent.numberOfChars,
2734                                            DONT_UPDATE_INPUT_STYLE );
2735
2736       if( textDeleted )
2737       {
2738         if( ( 0u != mImpl->mModel->mLogicalModel->mText.Count() ) ||
2739             !mImpl->IsPlaceholderAvailable() )
2740         {
2741           mImpl->QueueModifyEvent( ModifyEvent::TEXT_DELETED );
2742         }
2743         else
2744         {
2745           ShowPlaceholderText();
2746         }
2747         mImpl->mEventData->mUpdateCursorPosition = true;
2748         mImpl->mEventData->mScrollAfterDelete = true;
2749
2750         requestRelayout = true;
2751       }
2752       break;
2753     }
2754     case ImfManager::GETSURROUNDING:
2755     {
2756       retrieveText = true;
2757       retrieveCursor = true;
2758       break;
2759     }
2760     case ImfManager::PRIVATECOMMAND:
2761     {
2762       // PRIVATECOMMAND event is just for getting the private command message
2763       retrieveText = true;
2764       retrieveCursor = true;
2765       break;
2766     }
2767     case ImfManager::VOID:
2768     {
2769       // do nothing
2770       break;
2771     }
2772   } // end switch
2773
2774   if( requestRelayout )
2775   {
2776     mImpl->mOperationsPending = ALL_OPERATIONS;
2777     mImpl->RequestRelayout();
2778   }
2779
2780   std::string text;
2781   CharacterIndex cursorPosition = 0u;
2782   Length numberOfWhiteSpaces = 0u;
2783
2784   if( retrieveCursor )
2785   {
2786     numberOfWhiteSpaces = mImpl->GetNumberOfWhiteSpaces( 0u );
2787
2788     cursorPosition = mImpl->GetLogicalCursorPosition();
2789
2790     if( cursorPosition < numberOfWhiteSpaces )
2791     {
2792       cursorPosition = 0u;
2793     }
2794     else
2795     {
2796       cursorPosition -= numberOfWhiteSpaces;
2797     }
2798   }
2799
2800   if( retrieveText )
2801   {
2802     if( !mImpl->IsShowingPlaceholderText() )
2803     {
2804       // Retrieves the normal text string.
2805       mImpl->GetText( numberOfWhiteSpaces, text );
2806     }
2807     else
2808     {
2809       // When the current text is Placeholder Text, the surrounding text should be empty string.
2810       // It means DALi should send empty string ("") to IME.
2811       text = "";
2812     }
2813   }
2814
2815   ImfManager::ImfCallbackData callbackData( ( retrieveText || retrieveCursor ), cursorPosition, text, false );
2816
2817   if( requestRelayout &&
2818       ( NULL != mImpl->mEditableControlInterface ) )
2819   {
2820     // Do this last since it provides callbacks into application code
2821     mImpl->mEditableControlInterface->TextChanged();
2822   }
2823
2824   return callbackData;
2825 }
2826
2827 void Controller::PasteClipboardItemEvent()
2828 {
2829   // Retrieve the clipboard contents first
2830   ClipboardEventNotifier notifier( ClipboardEventNotifier::Get() );
2831   std::string stringToPaste( notifier.GetContent() );
2832
2833   // Commit the current pre-edit text; the contents of the clipboard should be appended
2834   mImpl->ResetImfManager();
2835
2836   // Temporary disable hiding clipboard
2837   mImpl->SetClipboardHideEnable( false );
2838
2839   // Paste
2840   PasteText( stringToPaste );
2841
2842   mImpl->SetClipboardHideEnable( true );
2843 }
2844
2845 // protected : Inherit from Text::Decorator::ControllerInterface.
2846
2847 void Controller::GetTargetSize( Vector2& targetSize )
2848 {
2849   targetSize = mImpl->mModel->mVisualModel->mControlSize;
2850 }
2851
2852 void Controller::AddDecoration( Actor& actor, bool needsClipping )
2853 {
2854   if( NULL != mImpl->mEditableControlInterface )
2855   {
2856     mImpl->mEditableControlInterface->AddDecoration( actor, needsClipping );
2857   }
2858 }
2859
2860 void Controller::DecorationEvent( HandleType handleType, HandleState state, float x, float y )
2861 {
2862   DALI_ASSERT_DEBUG( mImpl->mEventData && "Unexpected DecorationEvent" );
2863
2864   if( NULL != mImpl->mEventData )
2865   {
2866     switch( handleType )
2867     {
2868       case GRAB_HANDLE:
2869       {
2870         Event event( Event::GRAB_HANDLE_EVENT );
2871         event.p1.mUint  = state;
2872         event.p2.mFloat = x;
2873         event.p3.mFloat = y;
2874
2875         mImpl->mEventData->mEventQueue.push_back( event );
2876         break;
2877       }
2878       case LEFT_SELECTION_HANDLE:
2879       {
2880         Event event( Event::LEFT_SELECTION_HANDLE_EVENT );
2881         event.p1.mUint  = state;
2882         event.p2.mFloat = x;
2883         event.p3.mFloat = y;
2884
2885         mImpl->mEventData->mEventQueue.push_back( event );
2886         break;
2887       }
2888       case RIGHT_SELECTION_HANDLE:
2889       {
2890         Event event( Event::RIGHT_SELECTION_HANDLE_EVENT );
2891         event.p1.mUint  = state;
2892         event.p2.mFloat = x;
2893         event.p3.mFloat = y;
2894
2895         mImpl->mEventData->mEventQueue.push_back( event );
2896         break;
2897       }
2898       case LEFT_SELECTION_HANDLE_MARKER:
2899       case RIGHT_SELECTION_HANDLE_MARKER:
2900       {
2901         // Markers do not move the handles.
2902         break;
2903       }
2904       case HANDLE_TYPE_COUNT:
2905       {
2906         DALI_ASSERT_DEBUG( !"Controller::HandleEvent. Unexpected handle type" );
2907       }
2908     }
2909
2910     mImpl->RequestRelayout();
2911   }
2912 }
2913
2914 // protected : Inherit from TextSelectionPopup::TextPopupButtonCallbackInterface.
2915
2916 void Controller::TextPopupButtonTouched( Dali::Toolkit::TextSelectionPopup::Buttons button )
2917 {
2918   if( NULL == mImpl->mEventData )
2919   {
2920     return;
2921   }
2922
2923   switch( button )
2924   {
2925     case Toolkit::TextSelectionPopup::CUT:
2926     {
2927       mImpl->SendSelectionToClipboard( true ); // Synchronous call to modify text
2928       mImpl->mOperationsPending = ALL_OPERATIONS;
2929
2930       if( ( 0u != mImpl->mModel->mLogicalModel->mText.Count() ) ||
2931           !mImpl->IsPlaceholderAvailable() )
2932       {
2933         mImpl->QueueModifyEvent( ModifyEvent::TEXT_DELETED );
2934       }
2935       else
2936       {
2937         ShowPlaceholderText();
2938       }
2939
2940       mImpl->mEventData->mUpdateCursorPosition = true;
2941       mImpl->mEventData->mScrollAfterDelete = true;
2942
2943       mImpl->RequestRelayout();
2944
2945       if( NULL != mImpl->mEditableControlInterface )
2946       {
2947         mImpl->mEditableControlInterface->TextChanged();
2948       }
2949       break;
2950     }
2951     case Toolkit::TextSelectionPopup::COPY:
2952     {
2953       mImpl->SendSelectionToClipboard( false ); // Text not modified
2954
2955       mImpl->mEventData->mUpdateCursorPosition = true;
2956
2957       mImpl->RequestRelayout(); // Cursor, Handles, Selection Highlight, Popup
2958       break;
2959     }
2960     case Toolkit::TextSelectionPopup::PASTE:
2961     {
2962       mImpl->RequestGetTextFromClipboard(); // Request clipboard service to retrieve an item
2963       break;
2964     }
2965     case Toolkit::TextSelectionPopup::SELECT:
2966     {
2967       const Vector2& currentCursorPosition = mImpl->mEventData->mDecorator->GetPosition( PRIMARY_CURSOR );
2968
2969       if( mImpl->mEventData->mSelectionEnabled )
2970       {
2971         // Creates a SELECT event.
2972         SelectEvent( currentCursorPosition.x, currentCursorPosition.y, false );
2973       }
2974       break;
2975     }
2976     case Toolkit::TextSelectionPopup::SELECT_ALL:
2977     {
2978       // Creates a SELECT_ALL event
2979       SelectEvent( 0.f, 0.f, true );
2980       break;
2981     }
2982     case Toolkit::TextSelectionPopup::CLIPBOARD:
2983     {
2984       mImpl->ShowClipboard();
2985       break;
2986     }
2987     case Toolkit::TextSelectionPopup::NONE:
2988     {
2989       // Nothing to do.
2990       break;
2991     }
2992   }
2993 }
2994
2995 void Controller::DisplayTimeExpired()
2996 {
2997   mImpl->mEventData->mUpdateCursorPosition = true;
2998   // Apply modifications to the model
2999   mImpl->mOperationsPending = ALL_OPERATIONS;
3000
3001   mImpl->RequestRelayout();
3002 }
3003
3004 // private : Update.
3005
3006 void Controller::InsertText( const std::string& text, Controller::InsertType type )
3007 {
3008   bool removedPrevious = false;
3009   bool removedSelected = false;
3010   bool maxLengthReached = false;
3011
3012   DALI_ASSERT_DEBUG( NULL != mImpl->mEventData && "Unexpected InsertText" )
3013
3014   if( NULL == mImpl->mEventData )
3015   {
3016     return;
3017   }
3018
3019   DALI_LOG_INFO( gLogFilter, Debug::Verbose, "Controller::InsertText %p %s (%s) mPrimaryCursorPosition %d mPreEditFlag %d mPreEditStartPosition %d mPreEditLength %d\n",
3020                  this, text.c_str(), (COMMIT == type ? "COMMIT" : "PRE_EDIT"),
3021                  mImpl->mEventData->mPrimaryCursorPosition, mImpl->mEventData->mPreEditFlag, mImpl->mEventData->mPreEditStartPosition, mImpl->mEventData->mPreEditLength );
3022
3023   // TODO: At the moment the underline runs are only for pre-edit.
3024   mImpl->mModel->mVisualModel->mUnderlineRuns.Clear();
3025
3026   // Remove the previous IMF pre-edit.
3027   if( mImpl->mEventData->mPreEditFlag && ( 0u != mImpl->mEventData->mPreEditLength ) )
3028   {
3029     removedPrevious = RemoveText( -static_cast<int>( mImpl->mEventData->mPrimaryCursorPosition - mImpl->mEventData->mPreEditStartPosition ),
3030                                   mImpl->mEventData->mPreEditLength,
3031                                   DONT_UPDATE_INPUT_STYLE );
3032
3033     mImpl->mEventData->mPrimaryCursorPosition = mImpl->mEventData->mPreEditStartPosition;
3034     mImpl->mEventData->mPreEditLength = 0u;
3035   }
3036   else
3037   {
3038     // Remove the previous Selection.
3039     removedSelected = RemoveSelectedText();
3040
3041   }
3042
3043   Vector<Character> utf32Characters;
3044   Length characterCount = 0u;
3045
3046   if( !text.empty() )
3047   {
3048     //  Convert text into UTF-32
3049     utf32Characters.Resize( text.size() );
3050
3051     // This is a bit horrible but std::string returns a (signed) char*
3052     const uint8_t* utf8 = reinterpret_cast<const uint8_t*>( text.c_str() );
3053
3054     // Transform a text array encoded in utf8 into an array encoded in utf32.
3055     // It returns the actual number of characters.
3056     characterCount = Utf8ToUtf32( utf8, text.size(), utf32Characters.Begin() );
3057     utf32Characters.Resize( characterCount );
3058
3059     DALI_ASSERT_DEBUG( text.size() >= utf32Characters.Count() && "Invalid UTF32 conversion length" );
3060     DALI_LOG_INFO( gLogFilter, Debug::Verbose, "UTF8 size %d, UTF32 size %d\n", text.size(), utf32Characters.Count() );
3061   }
3062
3063   if( 0u != utf32Characters.Count() ) // Check if Utf8ToUtf32 conversion succeeded
3064   {
3065     // The placeholder text is no longer needed
3066     if( mImpl->IsShowingPlaceholderText() )
3067     {
3068       ResetText();
3069     }
3070
3071     mImpl->ChangeState( EventData::EDITING );
3072
3073     // Handle the IMF (predicitive text) state changes
3074     if( COMMIT == type )
3075     {
3076       // IMF manager is no longer handling key-events
3077       mImpl->ClearPreEditFlag();
3078     }
3079     else // PRE_EDIT
3080     {
3081       if( !mImpl->mEventData->mPreEditFlag )
3082       {
3083         DALI_LOG_INFO( gLogFilter, Debug::Verbose, "Entered PreEdit state\n" );
3084
3085         // Record the start of the pre-edit text
3086         mImpl->mEventData->mPreEditStartPosition = mImpl->mEventData->mPrimaryCursorPosition;
3087       }
3088
3089       mImpl->mEventData->mPreEditLength = utf32Characters.Count();
3090       mImpl->mEventData->mPreEditFlag = true;
3091
3092       DALI_LOG_INFO( gLogFilter, Debug::Verbose, "mPreEditStartPosition %d mPreEditLength %d\n", mImpl->mEventData->mPreEditStartPosition, mImpl->mEventData->mPreEditLength );
3093     }
3094
3095     const Length numberOfCharactersInModel = mImpl->mModel->mLogicalModel->mText.Count();
3096
3097     // Restrict new text to fit within Maximum characters setting.
3098     Length maxSizeOfNewText = std::min( ( mImpl->mMaximumNumberOfCharacters - numberOfCharactersInModel ), characterCount );
3099     maxLengthReached = ( characterCount > maxSizeOfNewText );
3100
3101     // The cursor position.
3102     CharacterIndex& cursorIndex = mImpl->mEventData->mPrimaryCursorPosition;
3103
3104     // Update the text's style.
3105
3106     // Updates the text style runs by adding characters.
3107     mImpl->mModel->mLogicalModel->UpdateTextStyleRuns( cursorIndex, maxSizeOfNewText );
3108
3109     // Get the character index from the cursor index.
3110     const CharacterIndex styleIndex = ( cursorIndex > 0u ) ? cursorIndex - 1u : 0u;
3111
3112     // Retrieve the text's style for the given index.
3113     InputStyle style;
3114     mImpl->RetrieveDefaultInputStyle( style );
3115     mImpl->mModel->mLogicalModel->RetrieveStyle( styleIndex, style );
3116
3117     // Whether to add a new text color run.
3118     const bool addColorRun = ( style.textColor != mImpl->mEventData->mInputStyle.textColor );
3119
3120     // Whether to add a new font run.
3121     const bool addFontNameRun = style.familyName != mImpl->mEventData->mInputStyle.familyName;
3122     const bool addFontWeightRun = style.weight != mImpl->mEventData->mInputStyle.weight;
3123     const bool addFontWidthRun = style.width != mImpl->mEventData->mInputStyle.width;
3124     const bool addFontSlantRun = style.slant != mImpl->mEventData->mInputStyle.slant;
3125     const bool addFontSizeRun = style.size != mImpl->mEventData->mInputStyle.size;
3126
3127     // Add style runs.
3128     if( addColorRun )
3129     {
3130       const VectorBase::SizeType numberOfRuns = mImpl->mModel->mLogicalModel->mColorRuns.Count();
3131       mImpl->mModel->mLogicalModel->mColorRuns.Resize( numberOfRuns + 1u );
3132
3133       ColorRun& colorRun = *( mImpl->mModel->mLogicalModel->mColorRuns.Begin() + numberOfRuns );
3134       colorRun.color = mImpl->mEventData->mInputStyle.textColor;
3135       colorRun.characterRun.characterIndex = cursorIndex;
3136       colorRun.characterRun.numberOfCharacters = maxSizeOfNewText;
3137     }
3138
3139     if( addFontNameRun   ||
3140         addFontWeightRun ||
3141         addFontWidthRun  ||
3142         addFontSlantRun  ||
3143         addFontSizeRun )
3144     {
3145       const VectorBase::SizeType numberOfRuns = mImpl->mModel->mLogicalModel->mFontDescriptionRuns.Count();
3146       mImpl->mModel->mLogicalModel->mFontDescriptionRuns.Resize( numberOfRuns + 1u );
3147
3148       FontDescriptionRun& fontDescriptionRun = *( mImpl->mModel->mLogicalModel->mFontDescriptionRuns.Begin() + numberOfRuns );
3149
3150       if( addFontNameRun )
3151       {
3152         fontDescriptionRun.familyLength = mImpl->mEventData->mInputStyle.familyName.size();
3153         fontDescriptionRun.familyName = new char[fontDescriptionRun.familyLength];
3154         memcpy( fontDescriptionRun.familyName, mImpl->mEventData->mInputStyle.familyName.c_str(), fontDescriptionRun.familyLength );
3155         fontDescriptionRun.familyDefined = true;
3156
3157         // The memory allocated for the font family name is freed when the font description is removed from the logical model.
3158       }
3159
3160       if( addFontWeightRun )
3161       {
3162         fontDescriptionRun.weight = mImpl->mEventData->mInputStyle.weight;
3163         fontDescriptionRun.weightDefined = true;
3164       }
3165
3166       if( addFontWidthRun )
3167       {
3168         fontDescriptionRun.width = mImpl->mEventData->mInputStyle.width;
3169         fontDescriptionRun.widthDefined = true;
3170       }
3171
3172       if( addFontSlantRun )
3173       {
3174         fontDescriptionRun.slant = mImpl->mEventData->mInputStyle.slant;
3175         fontDescriptionRun.slantDefined = true;
3176       }
3177
3178       if( addFontSizeRun )
3179       {
3180         fontDescriptionRun.size = static_cast<PointSize26Dot6>( mImpl->mEventData->mInputStyle.size * 64.f );
3181         fontDescriptionRun.sizeDefined = true;
3182       }
3183
3184       fontDescriptionRun.characterRun.characterIndex = cursorIndex;
3185       fontDescriptionRun.characterRun.numberOfCharacters = maxSizeOfNewText;
3186     }
3187
3188     // Insert at current cursor position.
3189     Vector<Character>& modifyText = mImpl->mModel->mLogicalModel->mText;
3190
3191     if( cursorIndex < numberOfCharactersInModel )
3192     {
3193       modifyText.Insert( modifyText.Begin() + cursorIndex, utf32Characters.Begin(), utf32Characters.Begin() + maxSizeOfNewText );
3194     }
3195     else
3196     {
3197       modifyText.Insert( modifyText.End(), utf32Characters.Begin(), utf32Characters.Begin() + maxSizeOfNewText );
3198     }
3199
3200     // Mark the first paragraph to be updated.
3201     if( Layout::Engine::SINGLE_LINE_BOX == mImpl->mLayoutEngine.GetLayout() )
3202     {
3203       mImpl->mTextUpdateInfo.mCharacterIndex = 0;
3204       mImpl->mTextUpdateInfo.mNumberOfCharactersToRemove = mImpl->mTextUpdateInfo.mPreviousNumberOfCharacters;
3205       mImpl->mTextUpdateInfo.mNumberOfCharactersToAdd = numberOfCharactersInModel + maxSizeOfNewText;
3206       mImpl->mTextUpdateInfo.mClearAll = true;
3207     }
3208     else
3209     {
3210       mImpl->mTextUpdateInfo.mCharacterIndex = std::min( cursorIndex, mImpl->mTextUpdateInfo.mCharacterIndex );
3211       mImpl->mTextUpdateInfo.mNumberOfCharactersToAdd += maxSizeOfNewText;
3212     }
3213
3214     // Update the cursor index.
3215     cursorIndex += maxSizeOfNewText;
3216
3217     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 );
3218   }
3219
3220   if( ( 0u == mImpl->mModel->mLogicalModel->mText.Count() ) &&
3221       mImpl->IsPlaceholderAvailable() )
3222   {
3223     // Show place-holder if empty after removing the pre-edit text
3224     ShowPlaceholderText();
3225     mImpl->mEventData->mUpdateCursorPosition = true;
3226     mImpl->ClearPreEditFlag();
3227   }
3228   else if( removedPrevious ||
3229            removedSelected ||
3230            ( 0 != utf32Characters.Count() ) )
3231   {
3232     // Queue an inserted event
3233     mImpl->QueueModifyEvent( ModifyEvent::TEXT_INSERTED );
3234
3235     mImpl->mEventData->mUpdateCursorPosition = true;
3236     if( removedSelected )
3237     {
3238       mImpl->mEventData->mScrollAfterDelete = true;
3239     }
3240     else
3241     {
3242       mImpl->mEventData->mScrollAfterUpdatePosition = true;
3243     }
3244   }
3245
3246   if( maxLengthReached )
3247   {
3248     DALI_LOG_INFO( gLogFilter, Debug::Verbose, "MaxLengthReached (%d)\n", mImpl->mModel->mLogicalModel->mText.Count() );
3249
3250     mImpl->ResetImfManager();
3251
3252     if( NULL != mImpl->mEditableControlInterface )
3253     {
3254       // Do this last since it provides callbacks into application code
3255       mImpl->mEditableControlInterface->MaxLengthReached();
3256     }
3257   }
3258 }
3259
3260 void Controller::PasteText( const std::string& stringToPaste )
3261 {
3262   InsertText( stringToPaste, Text::Controller::COMMIT );
3263   mImpl->ChangeState( EventData::EDITING );
3264   mImpl->RequestRelayout();
3265
3266   if( NULL != mImpl->mEditableControlInterface )
3267   {
3268     // Do this last since it provides callbacks into application code
3269     mImpl->mEditableControlInterface->TextChanged();
3270   }
3271 }
3272
3273 bool Controller::RemoveText( int cursorOffset,
3274                              int numberOfCharacters,
3275                              UpdateInputStyleType type )
3276 {
3277   bool removed = false;
3278
3279   if( NULL == mImpl->mEventData )
3280   {
3281     return removed;
3282   }
3283
3284   DALI_LOG_INFO( gLogFilter, Debug::General, "Controller::RemoveText %p mText.Count() %d cursor %d cursorOffset %d numberOfCharacters %d\n",
3285                  this, mImpl->mModel->mLogicalModel->mText.Count(), mImpl->mEventData->mPrimaryCursorPosition, cursorOffset, numberOfCharacters );
3286
3287   if( !mImpl->IsShowingPlaceholderText() )
3288   {
3289     // Delete at current cursor position
3290     Vector<Character>& currentText = mImpl->mModel->mLogicalModel->mText;
3291     CharacterIndex& oldCursorIndex = mImpl->mEventData->mPrimaryCursorPosition;
3292
3293     CharacterIndex cursorIndex = 0;
3294
3295     // Validate the cursor position & number of characters
3296     if( ( static_cast< int >( mImpl->mEventData->mPrimaryCursorPosition ) + cursorOffset ) >= 0 )
3297     {
3298       cursorIndex = mImpl->mEventData->mPrimaryCursorPosition + cursorOffset;
3299     }
3300
3301     if( ( cursorIndex + numberOfCharacters ) > currentText.Count() )
3302     {
3303       numberOfCharacters = currentText.Count() - cursorIndex;
3304     }
3305
3306     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.
3307         ( ( cursorIndex + numberOfCharacters ) <= mImpl->mTextUpdateInfo.mPreviousNumberOfCharacters ) )
3308     {
3309       // Mark the paragraphs to be updated.
3310       if( Layout::Engine::SINGLE_LINE_BOX == mImpl->mLayoutEngine.GetLayout() )
3311       {
3312         mImpl->mTextUpdateInfo.mCharacterIndex = 0;
3313         mImpl->mTextUpdateInfo.mNumberOfCharactersToRemove = mImpl->mTextUpdateInfo.mPreviousNumberOfCharacters;
3314         mImpl->mTextUpdateInfo.mNumberOfCharactersToAdd = mImpl->mTextUpdateInfo.mPreviousNumberOfCharacters - numberOfCharacters;
3315         mImpl->mTextUpdateInfo.mClearAll = true;
3316       }
3317       else
3318       {
3319         mImpl->mTextUpdateInfo.mCharacterIndex = std::min( cursorIndex, mImpl->mTextUpdateInfo.mCharacterIndex );
3320         mImpl->mTextUpdateInfo.mNumberOfCharactersToRemove += numberOfCharacters;
3321       }
3322
3323       // Update the input style and remove the text's style before removing the text.
3324
3325       if( UPDATE_INPUT_STYLE == type )
3326       {
3327         // Keep a copy of the current input style.
3328         InputStyle currentInputStyle;
3329         currentInputStyle.Copy( mImpl->mEventData->mInputStyle );
3330
3331         // Set first the default input style.
3332         mImpl->RetrieveDefaultInputStyle( mImpl->mEventData->mInputStyle );
3333
3334         // Update the input style.
3335         mImpl->mModel->mLogicalModel->RetrieveStyle( cursorIndex, mImpl->mEventData->mInputStyle );
3336
3337         // Compare if the input style has changed.
3338         const bool hasInputStyleChanged = !currentInputStyle.Equal( mImpl->mEventData->mInputStyle );
3339
3340         if( hasInputStyleChanged )
3341         {
3342           const InputStyle::Mask styleChangedMask = currentInputStyle.GetInputStyleChangeMask( mImpl->mEventData->mInputStyle );
3343           // Queue the input style changed signal.
3344           mImpl->mEventData->mInputStyleChangedQueue.PushBack( styleChangedMask );
3345         }
3346       }
3347
3348       // Updates the text style runs by removing characters. Runs with no characters are removed.
3349       mImpl->mModel->mLogicalModel->UpdateTextStyleRuns( cursorIndex, -numberOfCharacters );
3350
3351       // Remove the characters.
3352       Vector<Character>::Iterator first = currentText.Begin() + cursorIndex;
3353       Vector<Character>::Iterator last  = first + numberOfCharacters;
3354
3355       currentText.Erase( first, last );
3356
3357       // Cursor position retreat
3358       oldCursorIndex = cursorIndex;
3359
3360       mImpl->mEventData->mScrollAfterDelete = true;
3361
3362       DALI_LOG_INFO( gLogFilter, Debug::General, "Controller::RemoveText %p removed %d\n", this, numberOfCharacters );
3363       removed = true;
3364     }
3365   }
3366
3367   return removed;
3368 }
3369
3370 bool Controller::RemoveSelectedText()
3371 {
3372   bool textRemoved( false );
3373
3374   if( EventData::SELECTING == mImpl->mEventData->mState )
3375   {
3376     std::string removedString;
3377     mImpl->RetrieveSelection( removedString, true );
3378
3379     if( !removedString.empty() )
3380     {
3381       textRemoved = true;
3382       mImpl->ChangeState( EventData::EDITING );
3383     }
3384   }
3385
3386   return textRemoved;
3387 }
3388
3389 // private : Relayout.
3390
3391 bool Controller::DoRelayout( const Size& size,
3392                              OperationsMask operationsRequired,
3393                              Size& layoutSize )
3394 {
3395   DALI_LOG_INFO( gLogFilter, Debug::Verbose, "-->Controller::DoRelayout %p size %f,%f\n", this, size.width, size.height );
3396   bool viewUpdated( false );
3397
3398   // Calculate the operations to be done.
3399   const OperationsMask operations = static_cast<OperationsMask>( mImpl->mOperationsPending & operationsRequired );
3400
3401   const CharacterIndex startIndex = mImpl->mTextUpdateInfo.mParagraphCharacterIndex;
3402   const Length requestedNumberOfCharacters = mImpl->mTextUpdateInfo.mRequestedNumberOfCharacters;
3403
3404   // Get the current layout size.
3405   layoutSize = mImpl->mModel->mVisualModel->GetLayoutSize();
3406
3407   if( NO_OPERATION != ( LAYOUT & operations ) )
3408   {
3409     DALI_LOG_INFO( gLogFilter, Debug::Verbose, "-->Controller::DoRelayout LAYOUT & operations\n");
3410
3411     // Some vectors with data needed to layout and reorder may be void
3412     // after the first time the text has been laid out.
3413     // Fill the vectors again.
3414
3415     // Calculate the number of glyphs to layout.
3416     const Vector<GlyphIndex>& charactersToGlyph = mImpl->mModel->mVisualModel->mCharactersToGlyph;
3417     const Vector<Length>& glyphsPerCharacter = mImpl->mModel->mVisualModel->mGlyphsPerCharacter;
3418     const GlyphIndex* const charactersToGlyphBuffer = charactersToGlyph.Begin();
3419     const Length* const glyphsPerCharacterBuffer = glyphsPerCharacter.Begin();
3420
3421     const CharacterIndex lastIndex = startIndex + ( ( requestedNumberOfCharacters > 0u ) ? requestedNumberOfCharacters - 1u : 0u );
3422     const GlyphIndex startGlyphIndex = mImpl->mTextUpdateInfo.mStartGlyphIndex;
3423     const Length numberOfGlyphs = ( requestedNumberOfCharacters > 0u ) ? *( charactersToGlyphBuffer + lastIndex ) + *( glyphsPerCharacterBuffer + lastIndex ) - startGlyphIndex : 0u;
3424     const Length totalNumberOfGlyphs = mImpl->mModel->mVisualModel->mGlyphs.Count();
3425
3426     if( 0u == totalNumberOfGlyphs )
3427     {
3428       if( NO_OPERATION != ( UPDATE_LAYOUT_SIZE & operations ) )
3429       {
3430         mImpl->mModel->mVisualModel->SetLayoutSize( Size::ZERO );
3431       }
3432
3433       // Nothing else to do if there is no glyphs.
3434       DALI_LOG_INFO( gLogFilter, Debug::Verbose, "<--Controller::DoRelayout no glyphs, view updated true\n" );
3435       return true;
3436     }
3437
3438     const Vector<LineBreakInfo>& lineBreakInfo = mImpl->mModel->mLogicalModel->mLineBreakInfo;
3439     const Vector<WordBreakInfo>& wordBreakInfo = mImpl->mModel->mLogicalModel->mWordBreakInfo;
3440     const Vector<CharacterDirection>& characterDirection = mImpl->mModel->mLogicalModel->mCharacterDirections;
3441     const Vector<GlyphInfo>& glyphs = mImpl->mModel->mVisualModel->mGlyphs;
3442     const Vector<CharacterIndex>& glyphsToCharactersMap = mImpl->mModel->mVisualModel->mGlyphsToCharacters;
3443     const Vector<Length>& charactersPerGlyph = mImpl->mModel->mVisualModel->mCharactersPerGlyph;
3444     const Character* const textBuffer = mImpl->mModel->mLogicalModel->mText.Begin();
3445     const float outlineWidth = static_cast<float>( mImpl->mModel->GetOutlineWidth() );
3446
3447     // Set the layout parameters.
3448     const Vector2 sizeOffset = Vector2(outlineWidth * 2.0f, outlineWidth * 2.0f); // The outline should be fit into the bounding box
3449     Layout::Parameters layoutParameters( size - sizeOffset,
3450                                          textBuffer,
3451                                          lineBreakInfo.Begin(),
3452                                          wordBreakInfo.Begin(),
3453                                          ( 0u != characterDirection.Count() ) ? characterDirection.Begin() : NULL,
3454                                          glyphs.Begin(),
3455                                          glyphsToCharactersMap.Begin(),
3456                                          charactersPerGlyph.Begin(),
3457                                          charactersToGlyphBuffer,
3458                                          glyphsPerCharacterBuffer,
3459                                          totalNumberOfGlyphs,
3460                                          mImpl->mModel->mHorizontalAlignment,
3461                                          mImpl->mModel->mLineWrapMode,
3462                                          outlineWidth );
3463
3464     // Resize the vector of positions to have the same size than the vector of glyphs.
3465     Vector<Vector2>& glyphPositions = mImpl->mModel->mVisualModel->mGlyphPositions;
3466     glyphPositions.Resize( totalNumberOfGlyphs );
3467
3468     // Whether the last character is a new paragraph character.
3469     mImpl->mTextUpdateInfo.mIsLastCharacterNewParagraph =  TextAbstraction::IsNewParagraph( *( textBuffer + ( mImpl->mModel->mLogicalModel->mText.Count() - 1u ) ) );
3470     layoutParameters.isLastNewParagraph = mImpl->mTextUpdateInfo.mIsLastCharacterNewParagraph;
3471
3472     // The initial glyph and the number of glyphs to layout.
3473     layoutParameters.startGlyphIndex = startGlyphIndex;
3474     layoutParameters.numberOfGlyphs = numberOfGlyphs;
3475     layoutParameters.startLineIndex = mImpl->mTextUpdateInfo.mStartLineIndex;
3476     layoutParameters.estimatedNumberOfLines = mImpl->mTextUpdateInfo.mEstimatedNumberOfLines;
3477
3478     // Update the ellipsis
3479     bool elideTextEnabled = mImpl->mModel->mElideEnabled;
3480
3481     if( NULL != mImpl->mEventData )
3482     {
3483       if( mImpl->mEventData->mPlaceholderEllipsisFlag && mImpl->IsShowingPlaceholderText() )
3484       {
3485         elideTextEnabled = mImpl->mEventData->mIsPlaceholderElideEnabled;
3486       }
3487       else if( EventData::INACTIVE != mImpl->mEventData->mState )
3488       {
3489         // Disable ellipsis when editing
3490         elideTextEnabled = false;
3491       }
3492
3493       // Reset the scroll position in inactive state
3494       if( elideTextEnabled && ( mImpl->mEventData->mState == EventData::INACTIVE ) )
3495       {
3496         ResetScrollPosition();
3497       }
3498     }
3499
3500     // Update the visual model.
3501     Size newLayoutSize;
3502     viewUpdated = mImpl->mLayoutEngine.LayoutText( layoutParameters,
3503                                                    glyphPositions,
3504                                                    mImpl->mModel->mVisualModel->mLines,
3505                                                    newLayoutSize,
3506                                                    elideTextEnabled );
3507
3508     viewUpdated = viewUpdated || ( newLayoutSize != layoutSize );
3509
3510     if( viewUpdated )
3511     {
3512       layoutSize = newLayoutSize;
3513
3514       if( NO_OPERATION != ( UPDATE_DIRECTION & operations ) )
3515       {
3516         mImpl->mIsTextDirectionRTL = false;
3517       }
3518
3519       // Reorder the lines
3520       if( NO_OPERATION != ( REORDER & operations ) )
3521       {
3522         Vector<BidirectionalParagraphInfoRun>& bidirectionalInfo = mImpl->mModel->mLogicalModel->mBidirectionalParagraphInfo;
3523         Vector<BidirectionalLineInfoRun>& bidirectionalLineInfo = mImpl->mModel->mLogicalModel->mBidirectionalLineInfo;
3524
3525         // Check first if there are paragraphs with bidirectional info.
3526         if( 0u != bidirectionalInfo.Count() )
3527         {
3528           // Get the lines
3529           const Length numberOfLines = mImpl->mModel->mVisualModel->mLines.Count();
3530
3531           // Reorder the lines.
3532           bidirectionalLineInfo.Reserve( numberOfLines ); // Reserve because is not known yet how many lines have right to left characters.
3533           ReorderLines( bidirectionalInfo,
3534                         startIndex,
3535                         requestedNumberOfCharacters,
3536                         mImpl->mModel->mVisualModel->mLines,
3537                         bidirectionalLineInfo );
3538
3539           // Set the bidirectional info per line into the layout parameters.
3540           layoutParameters.lineBidirectionalInfoRunsBuffer = bidirectionalLineInfo.Begin();
3541           layoutParameters.numberOfBidirectionalInfoRuns = bidirectionalLineInfo.Count();
3542
3543           // Re-layout the text. Reorder those lines with right to left characters.
3544           mImpl->mLayoutEngine.ReLayoutRightToLeftLines( layoutParameters,
3545                                                          startIndex,
3546                                                          requestedNumberOfCharacters,
3547                                                          glyphPositions );
3548
3549           if ( ( NO_OPERATION != ( UPDATE_DIRECTION & operations ) ) && ( numberOfLines > 0 ) )
3550           {
3551             const LineRun* const firstline = mImpl->mModel->mVisualModel->mLines.Begin();
3552             if ( firstline )
3553             {
3554               mImpl->mIsTextDirectionRTL = firstline->direction;
3555             }
3556           }
3557         }
3558       } // REORDER
3559
3560       // Sets the layout size.
3561       if( NO_OPERATION != ( UPDATE_LAYOUT_SIZE & operations ) )
3562       {
3563         mImpl->mModel->mVisualModel->SetLayoutSize( layoutSize );
3564       }
3565     } // view updated
3566   }
3567
3568   if( NO_OPERATION != ( ALIGN & operations ) )
3569   {
3570     // The laid-out lines.
3571     Vector<LineRun>& lines = mImpl->mModel->mVisualModel->mLines;
3572
3573     // Need to align with the control's size as the text may contain lines
3574     // starting either with left to right text or right to left.
3575     mImpl->mLayoutEngine.Align( size,
3576                                 startIndex,
3577                                 requestedNumberOfCharacters,
3578                                 mImpl->mModel->mHorizontalAlignment,
3579                                 lines,
3580                                 mImpl->mModel->mAlignmentOffset );
3581
3582     viewUpdated = true;
3583   }
3584 #if defined(DEBUG_ENABLED)
3585   std::string currentText;
3586   GetText( currentText );
3587   DALI_LOG_INFO( gLogFilter, Debug::Concise, "Controller::DoRelayout [%p] mImpl->mIsTextDirectionRTL[%s] [%s]\n", this, (mImpl->mIsTextDirectionRTL)?"true":"false",  currentText.c_str() );
3588 #endif
3589   DALI_LOG_INFO( gLogFilter, Debug::Verbose, "<--Controller::DoRelayout, view updated %s\n", ( viewUpdated ? "true" : "false" ) );
3590   return viewUpdated;
3591 }
3592
3593 void Controller::CalculateVerticalOffset( const Size& controlSize )
3594 {
3595   Size layoutSize = mImpl->mModel->mVisualModel->GetLayoutSize();
3596
3597   if( fabsf( layoutSize.height ) < Math::MACHINE_EPSILON_1000 )
3598   {
3599     // Get the line height of the default font.
3600     layoutSize.height = mImpl->GetDefaultFontLineHeight();
3601   }
3602
3603   switch( mImpl->mModel->mVerticalAlignment )
3604   {
3605     case VerticalAlignment::TOP:
3606     {
3607       mImpl->mModel->mScrollPosition.y = 0.f;
3608       break;
3609     }
3610     case VerticalAlignment::CENTER:
3611     {
3612       mImpl->mModel->mScrollPosition.y = floorf( 0.5f * ( controlSize.height - layoutSize.height ) ); // try to avoid pixel alignment.
3613       break;
3614     }
3615     case VerticalAlignment::BOTTOM:
3616     {
3617       mImpl->mModel->mScrollPosition.y = controlSize.height - layoutSize.height;
3618       break;
3619     }
3620   }
3621 }
3622
3623 // private : Events.
3624
3625 void Controller::ProcessModifyEvents()
3626 {
3627   Vector<ModifyEvent>& events = mImpl->mModifyEvents;
3628
3629   if( 0u == events.Count() )
3630   {
3631     // Nothing to do.
3632     return;
3633   }
3634
3635   for( Vector<ModifyEvent>::ConstIterator it = events.Begin(),
3636          endIt = events.End();
3637        it != endIt;
3638        ++it )
3639   {
3640     const ModifyEvent& event = *it;
3641
3642     if( ModifyEvent::TEXT_REPLACED == event.type )
3643     {
3644       // A (single) replace event should come first, otherwise we wasted time processing NOOP events
3645       DALI_ASSERT_DEBUG( it == events.Begin() && "Unexpected TEXT_REPLACED event" );
3646
3647       TextReplacedEvent();
3648     }
3649     else if( ModifyEvent::TEXT_INSERTED == event.type )
3650     {
3651       TextInsertedEvent();
3652     }
3653     else if( ModifyEvent::TEXT_DELETED == event.type )
3654     {
3655       // Placeholder-text cannot be deleted
3656       if( !mImpl->IsShowingPlaceholderText() )
3657       {
3658         TextDeletedEvent();
3659       }
3660     }
3661   }
3662
3663   if( NULL != mImpl->mEventData )
3664   {
3665     // When the text is being modified, delay cursor blinking
3666     mImpl->mEventData->mDecorator->DelayCursorBlink();
3667
3668     // Update selection position after modifying the text
3669     mImpl->mEventData->mLeftSelectionPosition = mImpl->mEventData->mPrimaryCursorPosition;
3670     mImpl->mEventData->mRightSelectionPosition = mImpl->mEventData->mPrimaryCursorPosition;
3671   }
3672
3673   // Discard temporary text
3674   events.Clear();
3675 }
3676
3677 void Controller::TextReplacedEvent()
3678 {
3679   // The natural size needs to be re-calculated.
3680   mImpl->mRecalculateNaturalSize = true;
3681
3682   // The text direction needs to be updated.
3683   mImpl->mUpdateTextDirection = true;
3684
3685   // Apply modifications to the model
3686   mImpl->mOperationsPending = ALL_OPERATIONS;
3687 }
3688
3689 void Controller::TextInsertedEvent()
3690 {
3691   DALI_ASSERT_DEBUG( NULL != mImpl->mEventData && "Unexpected TextInsertedEvent" );
3692
3693   if( NULL == mImpl->mEventData )
3694   {
3695     return;
3696   }
3697
3698   mImpl->mEventData->mCheckScrollAmount = true;
3699
3700   // The natural size needs to be re-calculated.
3701   mImpl->mRecalculateNaturalSize = true;
3702
3703   // The text direction needs to be updated.
3704   mImpl->mUpdateTextDirection = true;
3705
3706   // Apply modifications to the model; TODO - Optimize this
3707   mImpl->mOperationsPending = ALL_OPERATIONS;
3708 }
3709
3710 void Controller::TextDeletedEvent()
3711 {
3712   DALI_ASSERT_DEBUG( NULL != mImpl->mEventData && "Unexpected TextDeletedEvent" );
3713
3714   if( NULL == mImpl->mEventData )
3715   {
3716     return;
3717   }
3718
3719   mImpl->mEventData->mCheckScrollAmount = true;
3720
3721   // The natural size needs to be re-calculated.
3722   mImpl->mRecalculateNaturalSize = true;
3723
3724   // The text direction needs to be updated.
3725   mImpl->mUpdateTextDirection = true;
3726
3727   // Apply modifications to the model; TODO - Optimize this
3728   mImpl->mOperationsPending = ALL_OPERATIONS;
3729 }
3730
3731 void Controller::SelectEvent( float x, float y, bool selectAll )
3732 {
3733   DALI_LOG_INFO( gLogFilter, Debug::Verbose, "Controller::SelectEvent\n" );
3734
3735   if( NULL != mImpl->mEventData )
3736   {
3737     if( selectAll )
3738     {
3739       Event event( Event::SELECT_ALL );
3740       mImpl->mEventData->mEventQueue.push_back( event );
3741     }
3742     else
3743     {
3744       Event event( Event::SELECT );
3745       event.p2.mFloat = x;
3746       event.p3.mFloat = y;
3747       mImpl->mEventData->mEventQueue.push_back( event );
3748     }
3749
3750     mImpl->mEventData->mCheckScrollAmount = true;
3751     mImpl->mEventData->mIsLeftHandleSelected = true;
3752     mImpl->mEventData->mIsRightHandleSelected = true;
3753     mImpl->RequestRelayout();
3754   }
3755 }
3756
3757 bool Controller::DeleteEvent( int keyCode )
3758 {
3759   DALI_LOG_INFO( gLogFilter, Debug::Verbose, "Controller::KeyEvent %p KeyCode : %d \n", this, keyCode );
3760
3761   bool removed = false;
3762
3763   if( NULL == mImpl->mEventData )
3764   {
3765     return removed;
3766   }
3767
3768   // IMF manager is no longer handling key-events
3769   mImpl->ClearPreEditFlag();
3770
3771   if( EventData::SELECTING == mImpl->mEventData->mState )
3772   {
3773     removed = RemoveSelectedText();
3774   }
3775   else if( ( mImpl->mEventData->mPrimaryCursorPosition > 0 ) && ( keyCode == Dali::DALI_KEY_BACKSPACE) )
3776   {
3777     // Remove the character before the current cursor position
3778     removed = RemoveText( -1,
3779                           1,
3780                           UPDATE_INPUT_STYLE );
3781   }
3782   else if( keyCode == Dali::DevelKey::DALI_KEY_DELETE )
3783   {
3784     // Remove the character after the current cursor position
3785     removed = RemoveText( 0,
3786                           1,
3787                           UPDATE_INPUT_STYLE );
3788   }
3789
3790   if( removed )
3791   {
3792     if( ( 0u != mImpl->mModel->mLogicalModel->mText.Count() ) ||
3793         !mImpl->IsPlaceholderAvailable() )
3794     {
3795       mImpl->QueueModifyEvent( ModifyEvent::TEXT_DELETED );
3796     }
3797     else
3798     {
3799       ShowPlaceholderText();
3800     }
3801     mImpl->mEventData->mUpdateCursorPosition = true;
3802     mImpl->mEventData->mScrollAfterDelete = true;
3803   }
3804
3805   return removed;
3806 }
3807
3808 // private : Helpers.
3809
3810 void Controller::ResetText()
3811 {
3812   // Reset buffers.
3813   mImpl->mModel->mLogicalModel->mText.Clear();
3814
3815   // We have cleared everything including the placeholder-text
3816   mImpl->PlaceholderCleared();
3817
3818   mImpl->mTextUpdateInfo.mCharacterIndex = 0u;
3819   mImpl->mTextUpdateInfo.mNumberOfCharactersToRemove = mImpl->mTextUpdateInfo.mPreviousNumberOfCharacters;
3820   mImpl->mTextUpdateInfo.mNumberOfCharactersToAdd = 0u;
3821
3822   // Clear any previous text.
3823   mImpl->mTextUpdateInfo.mClearAll = true;
3824
3825   // The natural size needs to be re-calculated.
3826   mImpl->mRecalculateNaturalSize = true;
3827
3828   // The text direction needs to be updated.
3829   mImpl->mUpdateTextDirection = true;
3830
3831   // Apply modifications to the model
3832   mImpl->mOperationsPending = ALL_OPERATIONS;
3833 }
3834
3835 void Controller::ShowPlaceholderText()
3836 {
3837   if( mImpl->IsPlaceholderAvailable() )
3838   {
3839     DALI_ASSERT_DEBUG( mImpl->mEventData && "No placeholder text available" );
3840
3841     if( NULL == mImpl->mEventData )
3842     {
3843       return;
3844     }
3845
3846     mImpl->mEventData->mIsShowingPlaceholderText = true;
3847
3848     // Disable handles when showing place-holder text
3849     mImpl->mEventData->mDecorator->SetHandleActive( GRAB_HANDLE, false );
3850     mImpl->mEventData->mDecorator->SetHandleActive( LEFT_SELECTION_HANDLE, false );
3851     mImpl->mEventData->mDecorator->SetHandleActive( RIGHT_SELECTION_HANDLE, false );
3852
3853     const char* text( NULL );
3854     size_t size( 0 );
3855
3856     // TODO - Switch Placeholder text when changing state
3857     if( ( EventData::INACTIVE != mImpl->mEventData->mState ) &&
3858         ( 0u != mImpl->mEventData->mPlaceholderTextActive.c_str() ) )
3859     {
3860       text = mImpl->mEventData->mPlaceholderTextActive.c_str();
3861       size = mImpl->mEventData->mPlaceholderTextActive.size();
3862     }
3863     else
3864     {
3865       text = mImpl->mEventData->mPlaceholderTextInactive.c_str();
3866       size = mImpl->mEventData->mPlaceholderTextInactive.size();
3867     }
3868
3869     mImpl->mTextUpdateInfo.mCharacterIndex = 0u;
3870     mImpl->mTextUpdateInfo.mNumberOfCharactersToRemove = mImpl->mTextUpdateInfo.mPreviousNumberOfCharacters;
3871
3872     // Reset model for showing placeholder.
3873     mImpl->mModel->mLogicalModel->mText.Clear();
3874     mImpl->mModel->mVisualModel->SetTextColor( mImpl->mEventData->mPlaceholderTextColor );
3875
3876     // Convert text into UTF-32
3877     Vector<Character>& utf32Characters = mImpl->mModel->mLogicalModel->mText;
3878     utf32Characters.Resize( size );
3879
3880     // This is a bit horrible but std::string returns a (signed) char*
3881     const uint8_t* utf8 = reinterpret_cast<const uint8_t*>( text );
3882
3883     // Transform a text array encoded in utf8 into an array encoded in utf32.
3884     // It returns the actual number of characters.
3885     const Length characterCount = Utf8ToUtf32( utf8, size, utf32Characters.Begin() );
3886     utf32Characters.Resize( characterCount );
3887
3888     // The characters to be added.
3889     mImpl->mTextUpdateInfo.mNumberOfCharactersToAdd = characterCount;
3890
3891     // Reset the cursor position
3892     mImpl->mEventData->mPrimaryCursorPosition = 0;
3893
3894     // The natural size needs to be re-calculated.
3895     mImpl->mRecalculateNaturalSize = true;
3896
3897     // The text direction needs to be updated.
3898     mImpl->mUpdateTextDirection = true;
3899
3900     // Apply modifications to the model
3901     mImpl->mOperationsPending = ALL_OPERATIONS;
3902
3903     // Update the rest of the model during size negotiation
3904     mImpl->QueueModifyEvent( ModifyEvent::TEXT_REPLACED );
3905   }
3906 }
3907
3908 void Controller::ClearFontData()
3909 {
3910   if( mImpl->mFontDefaults )
3911   {
3912     mImpl->mFontDefaults->mFontId = 0u; // Remove old font ID
3913   }
3914
3915   // Set flags to update the model.
3916   mImpl->mTextUpdateInfo.mCharacterIndex = 0u;
3917   mImpl->mTextUpdateInfo.mNumberOfCharactersToRemove = mImpl->mTextUpdateInfo.mPreviousNumberOfCharacters;
3918   mImpl->mTextUpdateInfo.mNumberOfCharactersToAdd = mImpl->mModel->mLogicalModel->mText.Count();
3919
3920   mImpl->mTextUpdateInfo.mClearAll = true;
3921   mImpl->mTextUpdateInfo.mFullRelayoutNeeded = true;
3922   mImpl->mRecalculateNaturalSize = true;
3923
3924   mImpl->mOperationsPending = static_cast<OperationsMask>( mImpl->mOperationsPending |
3925                                                            VALIDATE_FONTS            |
3926                                                            SHAPE_TEXT                |
3927                                                            BIDI_INFO                 |
3928                                                            GET_GLYPH_METRICS         |
3929                                                            LAYOUT                    |
3930                                                            UPDATE_LAYOUT_SIZE        |
3931                                                            REORDER                   |
3932                                                            ALIGN );
3933 }
3934
3935 void Controller::ClearStyleData()
3936 {
3937   mImpl->mModel->mLogicalModel->mColorRuns.Clear();
3938   mImpl->mModel->mLogicalModel->ClearFontDescriptionRuns();
3939 }
3940
3941 void Controller::ResetCursorPosition( CharacterIndex cursorIndex )
3942 {
3943   // Reset the cursor position
3944   if( NULL != mImpl->mEventData )
3945   {
3946     mImpl->mEventData->mPrimaryCursorPosition = cursorIndex;
3947
3948     // Update the cursor if it's in editing mode.
3949     if( EventData::IsEditingState( mImpl->mEventData->mState )  )
3950     {
3951       mImpl->mEventData->mUpdateCursorPosition = true;
3952     }
3953   }
3954 }
3955
3956 void Controller::ResetScrollPosition()
3957 {
3958   if( NULL != mImpl->mEventData )
3959   {
3960     // Reset the scroll position.
3961     mImpl->mModel->mScrollPosition = Vector2::ZERO;
3962     mImpl->mEventData->mScrollAfterUpdatePosition = true;
3963   }
3964 }
3965
3966 void Controller::SetControlInterface( ControlInterface* controlInterface )
3967 {
3968   mImpl->mControlInterface = controlInterface;
3969 }
3970
3971 bool Controller::ShouldClearFocusOnEscape() const
3972 {
3973   return mImpl->mShouldClearFocusOnEscape;
3974 }
3975
3976 // private : Private contructors & copy operator.
3977
3978 Controller::Controller()
3979 : mImpl( NULL )
3980 {
3981   mImpl = new Controller::Impl( NULL, NULL );
3982 }
3983
3984 Controller::Controller( ControlInterface* controlInterface )
3985 {
3986   mImpl = new Controller::Impl( controlInterface, NULL );
3987 }
3988
3989 Controller::Controller( ControlInterface* controlInterface,
3990                         EditableControlInterface* editableControlInterface )
3991 {
3992   mImpl = new Controller::Impl( controlInterface,
3993                                 editableControlInterface );
3994 }
3995
3996 // The copy constructor and operator are left unimplemented.
3997
3998 // protected : Destructor.
3999
4000 Controller::~Controller()
4001 {
4002   delete mImpl;
4003 }
4004
4005 } // namespace Text
4006
4007 } // namespace Toolkit
4008
4009 } // namespace Dali