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