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