text tiling
[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 void Controller::SetInputColor( const Vector4& color )
1466 {
1467   if( NULL != mImpl->mEventData )
1468   {
1469     mImpl->mEventData->mInputStyle.textColor = color;
1470     mImpl->mEventData->mInputStyle.isDefaultColor = false;
1471
1472     if( EventData::SELECTING == mImpl->mEventData->mState || EventData::EDITING == mImpl->mEventData->mState || EventData::INACTIVE == mImpl->mEventData->mState )
1473     {
1474       const bool handlesCrossed = mImpl->mEventData->mLeftSelectionPosition > mImpl->mEventData->mRightSelectionPosition;
1475
1476       // Get start and end position of selection
1477       const CharacterIndex startOfSelectedText = handlesCrossed ? mImpl->mEventData->mRightSelectionPosition : mImpl->mEventData->mLeftSelectionPosition;
1478       const Length lengthOfSelectedText = ( handlesCrossed ? mImpl->mEventData->mLeftSelectionPosition : mImpl->mEventData->mRightSelectionPosition ) - startOfSelectedText;
1479
1480       // Add the color run.
1481       const VectorBase::SizeType numberOfRuns = mImpl->mModel->mLogicalModel->mColorRuns.Count();
1482       mImpl->mModel->mLogicalModel->mColorRuns.Resize( numberOfRuns + 1u );
1483
1484       ColorRun& colorRun = *( mImpl->mModel->mLogicalModel->mColorRuns.Begin() + numberOfRuns );
1485       colorRun.color = color;
1486       colorRun.characterRun.characterIndex = startOfSelectedText;
1487       colorRun.characterRun.numberOfCharacters = lengthOfSelectedText;
1488
1489       // Request to relayout.
1490       mImpl->mOperationsPending = static_cast<OperationsMask>( mImpl->mOperationsPending | COLOR );
1491       mImpl->RequestRelayout();
1492
1493       mImpl->mTextUpdateInfo.mCharacterIndex = startOfSelectedText;
1494       mImpl->mTextUpdateInfo.mNumberOfCharactersToRemove = lengthOfSelectedText;
1495       mImpl->mTextUpdateInfo.mNumberOfCharactersToAdd = lengthOfSelectedText;
1496     }
1497   }
1498 }
1499
1500 const Vector4& Controller::GetInputColor() const
1501 {
1502   if( NULL != mImpl->mEventData )
1503   {
1504     return mImpl->mEventData->mInputStyle.textColor;
1505   }
1506
1507   // Return the default text's color if there is no EventData.
1508   return mImpl->mTextColor;
1509
1510 }
1511
1512 void Controller::SetInputFontFamily( const std::string& fontFamily )
1513 {
1514   if( NULL != mImpl->mEventData )
1515   {
1516     mImpl->mEventData->mInputStyle.familyName = fontFamily;
1517     mImpl->mEventData->mInputStyle.isFamilyDefined = true;
1518
1519     if( EventData::SELECTING == mImpl->mEventData->mState || EventData::EDITING == mImpl->mEventData->mState || EventData::INACTIVE == mImpl->mEventData->mState )
1520     {
1521       CharacterIndex startOfSelectedText = 0u;
1522       Length lengthOfSelectedText = 0u;
1523       FontDescriptionRun& fontDescriptionRun = UpdateSelectionFontStyleRun( mImpl->mEventData,
1524                                                                             mImpl->mModel->mLogicalModel,
1525                                                                             startOfSelectedText,
1526                                                                             lengthOfSelectedText );
1527
1528       fontDescriptionRun.familyLength = fontFamily.size();
1529       fontDescriptionRun.familyName = new char[fontDescriptionRun.familyLength];
1530       memcpy( fontDescriptionRun.familyName, fontFamily.c_str(), fontDescriptionRun.familyLength );
1531       fontDescriptionRun.familyDefined = true;
1532
1533       // The memory allocated for the font family name is freed when the font description is removed from the logical model.
1534
1535       // Request to relayout.
1536       mImpl->mOperationsPending = static_cast<OperationsMask>( mImpl->mOperationsPending |
1537                                                                VALIDATE_FONTS            |
1538                                                                SHAPE_TEXT                |
1539                                                                GET_GLYPH_METRICS         |
1540                                                                LAYOUT                    |
1541                                                                UPDATE_LAYOUT_SIZE        |
1542                                                                REORDER                   |
1543                                                                ALIGN );
1544       mImpl->mRecalculateNaturalSize = true;
1545       mImpl->RequestRelayout();
1546
1547       mImpl->mTextUpdateInfo.mCharacterIndex = startOfSelectedText;
1548       mImpl->mTextUpdateInfo.mNumberOfCharactersToRemove = lengthOfSelectedText;
1549       mImpl->mTextUpdateInfo.mNumberOfCharactersToAdd = lengthOfSelectedText;
1550
1551       // As the font changes, recalculate the handle positions is needed.
1552       mImpl->mEventData->mUpdateLeftSelectionPosition = true;
1553       mImpl->mEventData->mUpdateRightSelectionPosition = true;
1554       mImpl->mEventData->mUpdateHighlightBox = true;
1555       mImpl->mEventData->mScrollAfterUpdatePosition = true;
1556     }
1557   }
1558 }
1559
1560 const std::string& Controller::GetInputFontFamily() const
1561 {
1562   if( NULL != mImpl->mEventData )
1563   {
1564     return mImpl->mEventData->mInputStyle.familyName;
1565   }
1566
1567   // Return the default font's family if there is no EventData.
1568   return GetDefaultFontFamily();
1569 }
1570
1571 void Controller::SetInputFontWeight( FontWeight weight )
1572 {
1573   if( NULL != mImpl->mEventData )
1574   {
1575     mImpl->mEventData->mInputStyle.weight = weight;
1576     mImpl->mEventData->mInputStyle.isWeightDefined = true;
1577
1578     if( EventData::SELECTING == mImpl->mEventData->mState || EventData::EDITING == mImpl->mEventData->mState || EventData::INACTIVE == mImpl->mEventData->mState )
1579     {
1580       CharacterIndex startOfSelectedText = 0u;
1581       Length lengthOfSelectedText = 0u;
1582       FontDescriptionRun& fontDescriptionRun = UpdateSelectionFontStyleRun( mImpl->mEventData,
1583                                                                             mImpl->mModel->mLogicalModel,
1584                                                                             startOfSelectedText,
1585                                                                             lengthOfSelectedText );
1586
1587       fontDescriptionRun.weight = weight;
1588       fontDescriptionRun.weightDefined = true;
1589
1590       // Request to relayout.
1591       mImpl->mOperationsPending = static_cast<OperationsMask>( mImpl->mOperationsPending |
1592                                                                VALIDATE_FONTS            |
1593                                                                SHAPE_TEXT                |
1594                                                                GET_GLYPH_METRICS         |
1595                                                                LAYOUT                    |
1596                                                                UPDATE_LAYOUT_SIZE        |
1597                                                                REORDER                   |
1598                                                                ALIGN );
1599       mImpl->mRecalculateNaturalSize = true;
1600       mImpl->RequestRelayout();
1601
1602       mImpl->mTextUpdateInfo.mCharacterIndex = startOfSelectedText;
1603       mImpl->mTextUpdateInfo.mNumberOfCharactersToRemove = lengthOfSelectedText;
1604       mImpl->mTextUpdateInfo.mNumberOfCharactersToAdd = lengthOfSelectedText;
1605
1606       // As the font might change, recalculate the handle positions is needed.
1607       mImpl->mEventData->mUpdateLeftSelectionPosition = true;
1608       mImpl->mEventData->mUpdateRightSelectionPosition = true;
1609       mImpl->mEventData->mUpdateHighlightBox = true;
1610       mImpl->mEventData->mScrollAfterUpdatePosition = true;
1611     }
1612   }
1613 }
1614
1615 bool Controller::IsInputFontWeightDefined() const
1616 {
1617   bool defined = false;
1618
1619   if( NULL != mImpl->mEventData )
1620   {
1621     defined = mImpl->mEventData->mInputStyle.isWeightDefined;
1622   }
1623
1624   return defined;
1625 }
1626
1627 FontWeight Controller::GetInputFontWeight() const
1628 {
1629   if( NULL != mImpl->mEventData )
1630   {
1631     return mImpl->mEventData->mInputStyle.weight;
1632   }
1633
1634   return GetDefaultFontWeight();
1635 }
1636
1637 void Controller::SetInputFontWidth( FontWidth width )
1638 {
1639   if( NULL != mImpl->mEventData )
1640   {
1641     mImpl->mEventData->mInputStyle.width = width;
1642     mImpl->mEventData->mInputStyle.isWidthDefined = true;
1643
1644     if( EventData::SELECTING == mImpl->mEventData->mState || EventData::EDITING == mImpl->mEventData->mState || EventData::INACTIVE == mImpl->mEventData->mState )
1645     {
1646       CharacterIndex startOfSelectedText = 0u;
1647       Length lengthOfSelectedText = 0u;
1648       FontDescriptionRun& fontDescriptionRun = UpdateSelectionFontStyleRun( mImpl->mEventData,
1649                                                                             mImpl->mModel->mLogicalModel,
1650                                                                             startOfSelectedText,
1651                                                                             lengthOfSelectedText );
1652
1653       fontDescriptionRun.width = width;
1654       fontDescriptionRun.widthDefined = true;
1655
1656       // Request to relayout.
1657       mImpl->mOperationsPending = static_cast<OperationsMask>( mImpl->mOperationsPending |
1658                                                                VALIDATE_FONTS            |
1659                                                                SHAPE_TEXT                |
1660                                                                GET_GLYPH_METRICS         |
1661                                                                LAYOUT                    |
1662                                                                UPDATE_LAYOUT_SIZE        |
1663                                                                REORDER                   |
1664                                                                ALIGN );
1665       mImpl->mRecalculateNaturalSize = true;
1666       mImpl->RequestRelayout();
1667
1668       mImpl->mTextUpdateInfo.mCharacterIndex = startOfSelectedText;
1669       mImpl->mTextUpdateInfo.mNumberOfCharactersToRemove = lengthOfSelectedText;
1670       mImpl->mTextUpdateInfo.mNumberOfCharactersToAdd = lengthOfSelectedText;
1671
1672       // As the font might change, recalculate the handle positions is needed.
1673       mImpl->mEventData->mUpdateLeftSelectionPosition = true;
1674       mImpl->mEventData->mUpdateRightSelectionPosition = true;
1675       mImpl->mEventData->mUpdateHighlightBox = true;
1676       mImpl->mEventData->mScrollAfterUpdatePosition = true;
1677     }
1678   }
1679 }
1680
1681 bool Controller::IsInputFontWidthDefined() const
1682 {
1683   bool defined = false;
1684
1685   if( NULL != mImpl->mEventData )
1686   {
1687     defined = mImpl->mEventData->mInputStyle.isWidthDefined;
1688   }
1689
1690   return defined;
1691 }
1692
1693 FontWidth Controller::GetInputFontWidth() const
1694 {
1695   if( NULL != mImpl->mEventData )
1696   {
1697     return mImpl->mEventData->mInputStyle.width;
1698   }
1699
1700   return GetDefaultFontWidth();
1701 }
1702
1703 void Controller::SetInputFontSlant( FontSlant slant )
1704 {
1705   if( NULL != mImpl->mEventData )
1706   {
1707     mImpl->mEventData->mInputStyle.slant = slant;
1708     mImpl->mEventData->mInputStyle.isSlantDefined = true;
1709
1710     if( EventData::SELECTING == mImpl->mEventData->mState || EventData::EDITING == mImpl->mEventData->mState || EventData::INACTIVE == mImpl->mEventData->mState )
1711     {
1712       CharacterIndex startOfSelectedText = 0u;
1713       Length lengthOfSelectedText = 0u;
1714       FontDescriptionRun& fontDescriptionRun = UpdateSelectionFontStyleRun( mImpl->mEventData,
1715                                                                             mImpl->mModel->mLogicalModel,
1716                                                                             startOfSelectedText,
1717                                                                             lengthOfSelectedText );
1718
1719       fontDescriptionRun.slant = slant;
1720       fontDescriptionRun.slantDefined = true;
1721
1722       // Request to relayout.
1723       mImpl->mOperationsPending = static_cast<OperationsMask>( mImpl->mOperationsPending |
1724                                                                VALIDATE_FONTS            |
1725                                                                SHAPE_TEXT                |
1726                                                                GET_GLYPH_METRICS         |
1727                                                                LAYOUT                    |
1728                                                                UPDATE_LAYOUT_SIZE        |
1729                                                                REORDER                   |
1730                                                                ALIGN );
1731       mImpl->mRecalculateNaturalSize = true;
1732       mImpl->RequestRelayout();
1733
1734       mImpl->mTextUpdateInfo.mCharacterIndex = startOfSelectedText;
1735       mImpl->mTextUpdateInfo.mNumberOfCharactersToRemove = lengthOfSelectedText;
1736       mImpl->mTextUpdateInfo.mNumberOfCharactersToAdd = lengthOfSelectedText;
1737
1738       // As the font might change, recalculate the handle positions is needed.
1739       mImpl->mEventData->mUpdateLeftSelectionPosition = true;
1740       mImpl->mEventData->mUpdateRightSelectionPosition = true;
1741       mImpl->mEventData->mUpdateHighlightBox = true;
1742       mImpl->mEventData->mScrollAfterUpdatePosition = true;
1743     }
1744   }
1745 }
1746
1747 bool Controller::IsInputFontSlantDefined() const
1748 {
1749   bool defined = false;
1750
1751   if( NULL != mImpl->mEventData )
1752   {
1753     defined = mImpl->mEventData->mInputStyle.isSlantDefined;
1754   }
1755
1756   return defined;
1757 }
1758
1759 FontSlant Controller::GetInputFontSlant() const
1760 {
1761   if( NULL != mImpl->mEventData )
1762   {
1763     return mImpl->mEventData->mInputStyle.slant;
1764   }
1765
1766   return GetDefaultFontSlant();
1767 }
1768
1769 void Controller::SetInputFontPointSize( float size )
1770 {
1771   if( NULL != mImpl->mEventData )
1772   {
1773     mImpl->mEventData->mInputStyle.size = size;
1774     mImpl->mEventData->mInputStyle.isSizeDefined = true;
1775
1776     if( EventData::SELECTING == mImpl->mEventData->mState || EventData::EDITING == mImpl->mEventData->mState || EventData::INACTIVE == mImpl->mEventData->mState )
1777     {
1778       CharacterIndex startOfSelectedText = 0u;
1779       Length lengthOfSelectedText = 0u;
1780       FontDescriptionRun& fontDescriptionRun = UpdateSelectionFontStyleRun( mImpl->mEventData,
1781                                                                             mImpl->mModel->mLogicalModel,
1782                                                                             startOfSelectedText,
1783                                                                             lengthOfSelectedText );
1784
1785       fontDescriptionRun.size = static_cast<PointSize26Dot6>( size * 64.f );
1786       fontDescriptionRun.sizeDefined = true;
1787
1788       // Request to relayout.
1789       mImpl->mOperationsPending = static_cast<OperationsMask>( mImpl->mOperationsPending |
1790                                                                VALIDATE_FONTS            |
1791                                                                SHAPE_TEXT                |
1792                                                                GET_GLYPH_METRICS         |
1793                                                                LAYOUT                    |
1794                                                                UPDATE_LAYOUT_SIZE        |
1795                                                                REORDER                   |
1796                                                                ALIGN );
1797       mImpl->mRecalculateNaturalSize = true;
1798       mImpl->RequestRelayout();
1799
1800       mImpl->mTextUpdateInfo.mCharacterIndex = startOfSelectedText;
1801       mImpl->mTextUpdateInfo.mNumberOfCharactersToRemove = lengthOfSelectedText;
1802       mImpl->mTextUpdateInfo.mNumberOfCharactersToAdd = lengthOfSelectedText;
1803
1804       // As the font might change, recalculate the handle positions is needed.
1805       mImpl->mEventData->mUpdateLeftSelectionPosition = true;
1806       mImpl->mEventData->mUpdateRightSelectionPosition = true;
1807       mImpl->mEventData->mUpdateHighlightBox = true;
1808       mImpl->mEventData->mScrollAfterUpdatePosition = true;
1809     }
1810   }
1811 }
1812
1813 float Controller::GetInputFontPointSize() const
1814 {
1815   if( NULL != mImpl->mEventData )
1816   {
1817     return mImpl->mEventData->mInputStyle.size;
1818   }
1819
1820   // Return the default font's point size if there is no EventData.
1821   return GetDefaultFontSize( Text::Controller::POINT_SIZE );
1822 }
1823
1824 void Controller::SetInputLineSpacing( float lineSpacing )
1825 {
1826   if( NULL != mImpl->mEventData )
1827   {
1828     mImpl->mEventData->mInputStyle.lineSpacing = lineSpacing;
1829     mImpl->mEventData->mInputStyle.isLineSpacingDefined = true;
1830   }
1831 }
1832
1833 float Controller::GetInputLineSpacing() const
1834 {
1835   if( NULL != mImpl->mEventData )
1836   {
1837     return mImpl->mEventData->mInputStyle.lineSpacing;
1838   }
1839
1840   return 0.f;
1841 }
1842
1843 void Controller::SetInputShadowProperties( const std::string& shadowProperties )
1844 {
1845   if( NULL != mImpl->mEventData )
1846   {
1847     mImpl->mEventData->mInputStyle.shadowProperties = shadowProperties;
1848   }
1849 }
1850
1851 const std::string& Controller::GetInputShadowProperties() const
1852 {
1853   if( NULL != mImpl->mEventData )
1854   {
1855     return mImpl->mEventData->mInputStyle.shadowProperties;
1856   }
1857
1858   return EMPTY_STRING;
1859 }
1860
1861 void Controller::SetInputUnderlineProperties( const std::string& underlineProperties )
1862 {
1863   if( NULL != mImpl->mEventData )
1864   {
1865     mImpl->mEventData->mInputStyle.underlineProperties = underlineProperties;
1866   }
1867 }
1868
1869 const std::string& Controller::GetInputUnderlineProperties() const
1870 {
1871   if( NULL != mImpl->mEventData )
1872   {
1873     return mImpl->mEventData->mInputStyle.underlineProperties;
1874   }
1875
1876   return EMPTY_STRING;
1877 }
1878
1879 void Controller::SetInputEmbossProperties( const std::string& embossProperties )
1880 {
1881   if( NULL != mImpl->mEventData )
1882   {
1883     mImpl->mEventData->mInputStyle.embossProperties = embossProperties;
1884   }
1885 }
1886
1887 const std::string& Controller::GetInputEmbossProperties() const
1888 {
1889   if( NULL != mImpl->mEventData )
1890   {
1891     return mImpl->mEventData->mInputStyle.embossProperties;
1892   }
1893
1894   return GetDefaultEmbossProperties();
1895 }
1896
1897 void Controller::SetInputOutlineProperties( const std::string& outlineProperties )
1898 {
1899   if( NULL != mImpl->mEventData )
1900   {
1901     mImpl->mEventData->mInputStyle.outlineProperties = outlineProperties;
1902   }
1903 }
1904
1905 const std::string& Controller::GetInputOutlineProperties() const
1906 {
1907   if( NULL != mImpl->mEventData )
1908   {
1909     return mImpl->mEventData->mInputStyle.outlineProperties;
1910   }
1911
1912   return GetDefaultOutlineProperties();
1913 }
1914
1915 void Controller::SetInputModePassword( bool passwordInput )
1916 {
1917   if( NULL != mImpl->mEventData )
1918   {
1919     mImpl->mEventData->mPasswordInput = passwordInput;
1920   }
1921 }
1922
1923 bool Controller::IsInputModePassword()
1924 {
1925   if( NULL != mImpl->mEventData )
1926   {
1927     return mImpl->mEventData->mPasswordInput;
1928   }
1929   return false;
1930 }
1931
1932 void Controller::SetNoTextDoubleTapAction( NoTextTap::Action action )
1933 {
1934   if( NULL != mImpl->mEventData )
1935   {
1936     mImpl->mEventData->mDoubleTapAction = action;
1937   }
1938 }
1939
1940 Controller::NoTextTap::Action Controller::GetNoTextDoubleTapAction() const
1941 {
1942   NoTextTap::Action action = NoTextTap::NO_ACTION;
1943
1944   if( NULL != mImpl->mEventData )
1945   {
1946     action = mImpl->mEventData->mDoubleTapAction;
1947   }
1948
1949   return action;
1950 }
1951
1952 void Controller::SetNoTextLongPressAction( NoTextTap::Action action )
1953 {
1954   if( NULL != mImpl->mEventData )
1955   {
1956     mImpl->mEventData->mLongPressAction = action;
1957   }
1958 }
1959
1960 Controller::NoTextTap::Action Controller::GetNoTextLongPressAction() const
1961 {
1962   NoTextTap::Action action = NoTextTap::NO_ACTION;
1963
1964   if( NULL != mImpl->mEventData )
1965   {
1966     action = mImpl->mEventData->mLongPressAction;
1967   }
1968
1969   return action;
1970 }
1971
1972 bool Controller::IsUnderlineSetByString()
1973 {
1974   return mImpl->mUnderlineSetByString;
1975 }
1976
1977 void Controller::UnderlineSetByString( bool setByString )
1978 {
1979   mImpl->mUnderlineSetByString = setByString;
1980 }
1981
1982 bool Controller::IsShadowSetByString()
1983 {
1984   return mImpl->mShadowSetByString;
1985 }
1986
1987 void Controller::ShadowSetByString( bool setByString )
1988 {
1989   mImpl->mShadowSetByString = setByString;
1990 }
1991
1992 bool Controller::IsOutlineSetByString()
1993 {
1994   return mImpl->mOutlineSetByString;
1995 }
1996
1997 void Controller::OutlineSetByString( bool setByString )
1998 {
1999   mImpl->mOutlineSetByString = setByString;
2000 }
2001
2002 bool Controller::IsFontStyleSetByString()
2003 {
2004   return mImpl->mFontStyleSetByString;
2005 }
2006
2007 void Controller::FontStyleSetByString( bool setByString )
2008 {
2009   mImpl->mFontStyleSetByString = setByString;
2010 }
2011
2012 // public : Queries & retrieves.
2013
2014 Layout::Engine& Controller::GetLayoutEngine()
2015 {
2016   return mImpl->mLayoutEngine;
2017 }
2018
2019 View& Controller::GetView()
2020 {
2021   return mImpl->mView;
2022 }
2023
2024 Vector3 Controller::GetNaturalSize()
2025 {
2026   DALI_LOG_INFO( gLogFilter, Debug::Verbose, "-->Controller::GetNaturalSize\n" );
2027   Vector3 naturalSize;
2028
2029   // Make sure the model is up-to-date before layouting
2030   ProcessModifyEvents();
2031
2032   if( mImpl->mRecalculateNaturalSize )
2033   {
2034     // Operations that can be done only once until the text changes.
2035     const OperationsMask onlyOnceOperations = static_cast<OperationsMask>( CONVERT_TO_UTF32  |
2036                                                                            GET_SCRIPTS       |
2037                                                                            VALIDATE_FONTS    |
2038                                                                            GET_LINE_BREAKS   |
2039                                                                            BIDI_INFO         |
2040                                                                            SHAPE_TEXT        |
2041                                                                            GET_GLYPH_METRICS );
2042
2043     // Set the update info to relayout the whole text.
2044     mImpl->mTextUpdateInfo.mParagraphCharacterIndex = 0u;
2045     mImpl->mTextUpdateInfo.mRequestedNumberOfCharacters = mImpl->mModel->mLogicalModel->mText.Count();
2046
2047     // Make sure the model is up-to-date before layouting
2048     mImpl->UpdateModel( onlyOnceOperations );
2049
2050     // Layout the text for the new width.
2051     mImpl->mOperationsPending = static_cast<OperationsMask>( mImpl->mOperationsPending | LAYOUT | REORDER );
2052
2053     // Store the actual control's size to restore later.
2054     const Size actualControlSize = mImpl->mModel->mVisualModel->mControlSize;
2055
2056     DoRelayout( Size( MAX_FLOAT, MAX_FLOAT ),
2057                 static_cast<OperationsMask>( onlyOnceOperations |
2058                                              LAYOUT | REORDER ),
2059                 naturalSize.GetVectorXY() );
2060
2061     // Do not do again the only once operations.
2062     mImpl->mOperationsPending = static_cast<OperationsMask>( mImpl->mOperationsPending & ~onlyOnceOperations );
2063
2064     // Do the size related operations again.
2065     const OperationsMask sizeOperations =  static_cast<OperationsMask>( LAYOUT |
2066                                                                         ALIGN  |
2067                                                                         REORDER );
2068     mImpl->mOperationsPending = static_cast<OperationsMask>( mImpl->mOperationsPending | sizeOperations );
2069
2070     // Stores the natural size to avoid recalculate it again
2071     // unless the text/style changes.
2072     mImpl->mModel->mVisualModel->SetNaturalSize( naturalSize.GetVectorXY() );
2073
2074     mImpl->mRecalculateNaturalSize = false;
2075
2076     // Clear the update info. This info will be set the next time the text is updated.
2077     mImpl->mTextUpdateInfo.Clear();
2078     mImpl->mTextUpdateInfo.mClearAll = true;
2079
2080     // Restore the actual control's size.
2081     mImpl->mModel->mVisualModel->mControlSize = actualControlSize;
2082
2083     DALI_LOG_INFO( gLogFilter, Debug::Verbose, "<--Controller::GetNaturalSize calculated %f,%f,%f\n", naturalSize.x, naturalSize.y, naturalSize.z );
2084   }
2085   else
2086   {
2087     naturalSize = mImpl->mModel->mVisualModel->GetNaturalSize();
2088
2089     DALI_LOG_INFO( gLogFilter, Debug::Verbose, "<--Controller::GetNaturalSize cached %f,%f,%f\n", naturalSize.x, naturalSize.y, naturalSize.z );
2090   }
2091
2092   naturalSize.x = ConvertToEven( naturalSize.x );
2093   naturalSize.y = ConvertToEven( naturalSize.y );
2094
2095   return naturalSize;
2096 }
2097
2098 bool Controller::CheckForTextFit( float pointSize, Size& layoutSize )
2099 {
2100   Size textSize;
2101   mImpl->mFontDefaults->mFitPointSize = pointSize;
2102   mImpl->mFontDefaults->sizeDefined = true;
2103   ClearFontData();
2104
2105   // Operations that can be done only once until the text changes.
2106   const OperationsMask onlyOnceOperations = static_cast<OperationsMask>( CONVERT_TO_UTF32 |
2107                                                                               GET_SCRIPTS |
2108                                                                            VALIDATE_FONTS |
2109                                                                           GET_LINE_BREAKS |
2110                                                                                 BIDI_INFO |
2111                                                                                 SHAPE_TEXT|
2112                                                                          GET_GLYPH_METRICS );
2113
2114   mImpl->mTextUpdateInfo.mParagraphCharacterIndex = 0u;
2115   mImpl->mTextUpdateInfo.mRequestedNumberOfCharacters = mImpl->mModel->mLogicalModel->mText.Count();
2116
2117   // Make sure the model is up-to-date before layouting
2118   mImpl->UpdateModel( onlyOnceOperations );
2119
2120   DoRelayout( Size( layoutSize.width, MAX_FLOAT ),
2121               static_cast<OperationsMask>( onlyOnceOperations | LAYOUT),
2122               textSize);
2123
2124   // Clear the update info. This info will be set the next time the text is updated.
2125   mImpl->mTextUpdateInfo.Clear();
2126   mImpl->mTextUpdateInfo.mClearAll = true;
2127
2128   if( textSize.width > layoutSize.width || textSize.height > layoutSize.height )
2129   {
2130     return false;
2131   }
2132   return true;
2133 }
2134
2135 void Controller::FitPointSizeforLayout( Size layoutSize )
2136 {
2137   const OperationsMask operations  = mImpl->mOperationsPending;
2138   if( NO_OPERATION != ( UPDATE_LAYOUT_SIZE & operations ) || mImpl->mTextFitContentSize != layoutSize )
2139   {
2140     bool actualellipsis = mImpl->mModel->mElideEnabled;
2141     float minPointSize = mImpl->mTextFitMinSize;
2142     float maxPointSize = mImpl->mTextFitMaxSize;
2143     float pointInterval = mImpl->mTextFitStepSize;
2144
2145     mImpl->mModel->mElideEnabled = false;
2146     Vector<float> pointSizeArray;
2147
2148     // check zero value
2149     if( pointInterval < 1.f )
2150     {
2151       mImpl->mTextFitStepSize = pointInterval = 1.0f;
2152     }
2153
2154     pointSizeArray.Reserve( static_cast< unsigned int >( ceil( ( maxPointSize - minPointSize ) / pointInterval ) ) );
2155
2156     for( float i = minPointSize; i < maxPointSize; i += pointInterval )
2157     {
2158       pointSizeArray.PushBack( i );
2159     }
2160
2161     pointSizeArray.PushBack( maxPointSize );
2162
2163     int bestSizeIndex = 0;
2164     int min = bestSizeIndex + 1;
2165     int max = pointSizeArray.Size() - 1;
2166     while( min <= max )
2167     {
2168       int destI = ( min + max ) / 2;
2169
2170       if( CheckForTextFit( pointSizeArray[destI], layoutSize ) )
2171       {
2172         bestSizeIndex = min;
2173         min = destI + 1;
2174       }
2175       else
2176       {
2177         max = destI - 1;
2178         bestSizeIndex = max;
2179       }
2180     }
2181
2182     mImpl->mModel->mElideEnabled = actualellipsis;
2183     mImpl->mFontDefaults->mFitPointSize = pointSizeArray[bestSizeIndex];
2184     mImpl->mFontDefaults->sizeDefined = true;
2185     ClearFontData();
2186   }
2187 }
2188
2189 float Controller::GetHeightForWidth( float width )
2190 {
2191   DALI_LOG_INFO( gLogFilter, Debug::Verbose, "-->Controller::GetHeightForWidth %p width %f\n", this, width );
2192   // Make sure the model is up-to-date before layouting
2193   ProcessModifyEvents();
2194
2195   Size layoutSize;
2196   if( fabsf( width - mImpl->mModel->mVisualModel->mControlSize.width ) > Math::MACHINE_EPSILON_1000 ||
2197                                                          mImpl->mTextUpdateInfo.mFullRelayoutNeeded ||
2198                                                          mImpl->mTextUpdateInfo.mClearAll            )
2199   {
2200     // Operations that can be done only once until the text changes.
2201     const OperationsMask onlyOnceOperations = static_cast<OperationsMask>( CONVERT_TO_UTF32  |
2202                                                                            GET_SCRIPTS       |
2203                                                                            VALIDATE_FONTS    |
2204                                                                            GET_LINE_BREAKS   |
2205                                                                            BIDI_INFO         |
2206                                                                            SHAPE_TEXT        |
2207                                                                            GET_GLYPH_METRICS );
2208
2209     // Set the update info to relayout the whole text.
2210     mImpl->mTextUpdateInfo.mParagraphCharacterIndex = 0u;
2211     mImpl->mTextUpdateInfo.mRequestedNumberOfCharacters = mImpl->mModel->mLogicalModel->mText.Count();
2212
2213     // Make sure the model is up-to-date before layouting
2214     mImpl->UpdateModel( onlyOnceOperations );
2215
2216
2217     // Layout the text for the new width.
2218     mImpl->mOperationsPending = static_cast<OperationsMask>( mImpl->mOperationsPending | LAYOUT );
2219
2220     // Store the actual control's width.
2221     const float actualControlWidth = mImpl->mModel->mVisualModel->mControlSize.width;
2222
2223     DoRelayout( Size( width, MAX_FLOAT ),
2224                 static_cast<OperationsMask>( onlyOnceOperations |
2225                                              LAYOUT ),
2226                 layoutSize );
2227
2228     // Do not do again the only once operations.
2229     mImpl->mOperationsPending = static_cast<OperationsMask>( mImpl->mOperationsPending & ~onlyOnceOperations );
2230
2231     // Do the size related operations again.
2232     const OperationsMask sizeOperations =  static_cast<OperationsMask>( LAYOUT |
2233                                                                         ALIGN  |
2234                                                                         REORDER );
2235
2236     mImpl->mOperationsPending = static_cast<OperationsMask>( mImpl->mOperationsPending | sizeOperations );
2237
2238     // Clear the update info. This info will be set the next time the text is updated.
2239     mImpl->mTextUpdateInfo.Clear();
2240     mImpl->mTextUpdateInfo.mClearAll = true;
2241
2242     // Restore the actual control's width.
2243     mImpl->mModel->mVisualModel->mControlSize.width = actualControlWidth;
2244
2245     DALI_LOG_INFO( gLogFilter, Debug::Verbose, "<--Controller::GetHeightForWidth calculated %f\n", layoutSize.height );
2246   }
2247   else
2248   {
2249     layoutSize = mImpl->mModel->mVisualModel->GetLayoutSize();
2250     DALI_LOG_INFO( gLogFilter, Debug::Verbose, "<--Controller::GetHeightForWidth cached %f\n", layoutSize.height );
2251   }
2252
2253   return layoutSize.height;
2254 }
2255
2256 int Controller::GetLineCount( float width )
2257 {
2258   GetHeightForWidth( width );
2259   int numberofLines = mImpl->mModel->GetNumberOfLines();
2260   return numberofLines;
2261 }
2262
2263 const ModelInterface* const Controller::GetTextModel() const
2264 {
2265   return mImpl->mModel.Get();
2266 }
2267
2268 float Controller::GetScrollAmountByUserInput()
2269 {
2270   float scrollAmount = 0.0f;
2271
2272   if (NULL != mImpl->mEventData && mImpl->mEventData->mCheckScrollAmount)
2273   {
2274     scrollAmount = mImpl->mModel->mScrollPosition.y -  mImpl->mModel->mScrollPositionLast.y;
2275     mImpl->mEventData->mCheckScrollAmount = false;
2276   }
2277   return scrollAmount;
2278 }
2279
2280 bool Controller::GetTextScrollInfo( float& scrollPosition, float& controlHeight, float& layoutHeight )
2281 {
2282   const Vector2& layout = mImpl->mModel->mVisualModel->GetLayoutSize();
2283   bool isScrolled;
2284
2285   controlHeight = mImpl->mModel->mVisualModel->mControlSize.height;
2286   layoutHeight = layout.height;
2287   scrollPosition = mImpl->mModel->mScrollPosition.y;
2288   isScrolled = !Equals( mImpl->mModel->mScrollPosition.y, mImpl->mModel->mScrollPositionLast.y, Math::MACHINE_EPSILON_1 );
2289   return isScrolled;
2290 }
2291
2292 void Controller::SetHiddenInputOption(const Property::Map& options )
2293 {
2294   if( NULL == mImpl->mHiddenInput )
2295   {
2296     mImpl->mHiddenInput = new HiddenText( this );
2297   }
2298   mImpl->mHiddenInput->SetProperties(options);
2299 }
2300
2301 void Controller::GetHiddenInputOption(Property::Map& options )
2302 {
2303   if( NULL != mImpl->mHiddenInput )
2304   {
2305     mImpl->mHiddenInput->GetProperties(options);
2306   }
2307 }
2308
2309 void Controller::SetPlaceholderProperty( const Property::Map& map )
2310 {
2311   const Property::Map::SizeType count = map.Count();
2312
2313   for( Property::Map::SizeType position = 0; position < count; ++position )
2314   {
2315     KeyValuePair keyValue = map.GetKeyValue( position );
2316     Property::Key& key = keyValue.first;
2317     Property::Value& value = keyValue.second;
2318
2319     if( key == Toolkit::Text::PlaceHolder::Property::TEXT  || key == PLACEHOLDER_TEXT )
2320     {
2321       std::string text = "";
2322       value.Get( text );
2323       SetPlaceholderText( Controller::PLACEHOLDER_TYPE_INACTIVE, text );
2324     }
2325     else if( key == Toolkit::Text::PlaceHolder::Property::TEXT_FOCUSED || key == PLACEHOLDER_TEXT_FOCUSED )
2326     {
2327       std::string text = "";
2328       value.Get( text );
2329       SetPlaceholderText( Controller::PLACEHOLDER_TYPE_ACTIVE, text );
2330     }
2331     else if( key == Toolkit::Text::PlaceHolder::Property::COLOR || key == PLACEHOLDER_COLOR )
2332     {
2333       Vector4 textColor;
2334       value.Get( textColor );
2335       if( GetPlaceholderTextColor() != textColor )
2336       {
2337         SetPlaceholderTextColor( textColor );
2338       }
2339     }
2340     else if( key == Toolkit::Text::PlaceHolder::Property::FONT_FAMILY || key == PLACEHOLDER_FONT_FAMILY )
2341     {
2342       std::string fontFamily = "";
2343       value.Get( fontFamily );
2344       SetPlaceholderFontFamily( fontFamily );
2345     }
2346     else if( key == Toolkit::Text::PlaceHolder::Property::FONT_STYLE || key == PLACEHOLDER_FONT_STYLE )
2347     {
2348       SetFontStyleProperty( this, value, Text::FontStyle::PLACEHOLDER );
2349     }
2350     else if( key == Toolkit::Text::PlaceHolder::Property::POINT_SIZE || key == PLACEHOLDER_POINT_SIZE )
2351     {
2352       float pointSize;
2353       value.Get( pointSize );
2354       if( !Equals( GetPlaceholderTextFontSize( Text::Controller::POINT_SIZE ), pointSize ) )
2355       {
2356         SetPlaceholderTextFontSize( pointSize, Text::Controller::POINT_SIZE );
2357       }
2358     }
2359     else if( key == Toolkit::Text::PlaceHolder::Property::PIXEL_SIZE || key == PLACEHOLDER_PIXEL_SIZE )
2360     {
2361       float pixelSize;
2362       value.Get( pixelSize );
2363       if( !Equals( GetPlaceholderTextFontSize( Text::Controller::PIXEL_SIZE ), pixelSize ) )
2364       {
2365         SetPlaceholderTextFontSize( pixelSize, Text::Controller::PIXEL_SIZE );
2366       }
2367     }
2368     else if( key == Toolkit::Text::PlaceHolder::Property::ELLIPSIS || key == PLACEHOLDER_ELLIPSIS )
2369     {
2370       bool ellipsis;
2371       value.Get( ellipsis );
2372       SetPlaceholderTextElideEnabled( ellipsis );
2373     }
2374   }
2375 }
2376
2377 void Controller::GetPlaceholderProperty( Property::Map& map )
2378 {
2379   if( NULL != mImpl->mEventData )
2380   {
2381     if( !mImpl->mEventData->mPlaceholderTextActive.empty() )
2382     {
2383       map[ Text::PlaceHolder::Property::TEXT_FOCUSED ] = mImpl->mEventData->mPlaceholderTextActive;
2384     }
2385     if( !mImpl->mEventData->mPlaceholderTextInactive.empty() )
2386     {
2387       map[ Text::PlaceHolder::Property::TEXT ] = mImpl->mEventData->mPlaceholderTextInactive;
2388     }
2389
2390     map[ Text::PlaceHolder::Property::COLOR ] = mImpl->mEventData->mPlaceholderTextColor;
2391     map[ Text::PlaceHolder::Property::FONT_FAMILY ] = GetPlaceholderFontFamily();
2392
2393     Property::Value fontStyleMapGet;
2394     GetFontStyleProperty( this, fontStyleMapGet, Text::FontStyle::PLACEHOLDER );
2395     map[ Text::PlaceHolder::Property::FONT_STYLE ] = fontStyleMapGet;
2396
2397     // Choose font size : POINT_SIZE or PIXEL_SIZE
2398     if( !mImpl->mEventData->mIsPlaceholderPixelSize )
2399     {
2400       map[ Text::PlaceHolder::Property::POINT_SIZE ] = GetPlaceholderTextFontSize( Text::Controller::POINT_SIZE );
2401     }
2402     else
2403     {
2404       map[ Text::PlaceHolder::Property::PIXEL_SIZE ] = GetPlaceholderTextFontSize( Text::Controller::PIXEL_SIZE );
2405     }
2406
2407     if( mImpl->mEventData->mPlaceholderEllipsisFlag )
2408     {
2409       map[ Text::PlaceHolder::Property::ELLIPSIS ] = IsPlaceholderTextElideEnabled();
2410     }
2411   }
2412 }
2413
2414 Toolkit::DevelText::TextDirection::Type Controller::GetTextDirection()
2415 {
2416   // Make sure the model is up-to-date before layouting
2417   ProcessModifyEvents();
2418
2419   if ( mImpl->mUpdateTextDirection )
2420   {
2421     // Operations that can be done only once until the text changes.
2422     const OperationsMask onlyOnceOperations = static_cast<OperationsMask>( CONVERT_TO_UTF32  |
2423                                                                            GET_SCRIPTS       |
2424                                                                            VALIDATE_FONTS    |
2425                                                                            GET_LINE_BREAKS   |
2426                                                                            BIDI_INFO         |
2427                                                                            SHAPE_TEXT        |
2428                                                                            GET_GLYPH_METRICS );
2429
2430     // Set the update info to relayout the whole text.
2431     mImpl->mTextUpdateInfo.mParagraphCharacterIndex = 0u;
2432     mImpl->mTextUpdateInfo.mRequestedNumberOfCharacters = mImpl->mModel->mLogicalModel->mText.Count();
2433
2434     // Make sure the model is up-to-date before layouting
2435     mImpl->UpdateModel( onlyOnceOperations );
2436
2437     Vector3 naturalSize;
2438     DoRelayout( Size( MAX_FLOAT, MAX_FLOAT ),
2439                 static_cast<OperationsMask>( onlyOnceOperations |
2440                                              LAYOUT | REORDER | UPDATE_DIRECTION ),
2441                 naturalSize.GetVectorXY() );
2442
2443     // Do not do again the only once operations.
2444     mImpl->mOperationsPending = static_cast<OperationsMask>( mImpl->mOperationsPending & ~onlyOnceOperations );
2445
2446     // Clear the update info. This info will be set the next time the text is updated.
2447     mImpl->mTextUpdateInfo.Clear();
2448
2449     // FullRelayoutNeeded should be true because DoRelayout is MAX_FLOAT, MAX_FLOAT.
2450     mImpl->mTextUpdateInfo.mFullRelayoutNeeded = true;
2451
2452     mImpl->mUpdateTextDirection = false;
2453   }
2454
2455   return mImpl->mIsTextDirectionRTL ? Toolkit::DevelText::TextDirection::RIGHT_TO_LEFT : Toolkit::DevelText::TextDirection::LEFT_TO_RIGHT;
2456 }
2457
2458 Toolkit::DevelText::VerticalLineAlignment::Type Controller::GetVerticalLineAlignment() const
2459 {
2460   return mImpl->mModel->GetVerticalLineAlignment();
2461 }
2462
2463 void Controller::SetVerticalLineAlignment( Toolkit::DevelText::VerticalLineAlignment::Type alignment )
2464 {
2465   mImpl->mModel->mVerticalLineAlignment = alignment;
2466 }
2467
2468 // public : Relayout.
2469
2470 Controller::UpdateTextType Controller::Relayout( const Size& size, Dali::LayoutDirection::Type layoutDirection )
2471 {
2472   DALI_LOG_INFO( gLogFilter, Debug::Verbose, "-->Controller::Relayout %p size %f,%f, autoScroll[%s]\n", this, size.width, size.height, mImpl->mIsAutoScrollEnabled ?"true":"false"  );
2473
2474   UpdateTextType updateTextType = NONE_UPDATED;
2475
2476   if( ( size.width < Math::MACHINE_EPSILON_1000 ) || ( size.height < Math::MACHINE_EPSILON_1000 ) )
2477   {
2478     if( 0u != mImpl->mModel->mVisualModel->mGlyphPositions.Count() )
2479     {
2480       mImpl->mModel->mVisualModel->mGlyphPositions.Clear();
2481       updateTextType = MODEL_UPDATED;
2482     }
2483
2484     // Clear the update info. This info will be set the next time the text is updated.
2485     mImpl->mTextUpdateInfo.Clear();
2486
2487     // Not worth to relayout if width or height is equal to zero.
2488     DALI_LOG_INFO( gLogFilter, Debug::Verbose, "<--Controller::Relayout (skipped)\n" );
2489
2490     return updateTextType;
2491   }
2492
2493   // Whether a new size has been set.
2494   const bool newSize = ( size != mImpl->mModel->mVisualModel->mControlSize );
2495
2496   if( newSize )
2497   {
2498     DALI_LOG_INFO( gLogFilter, Debug::Verbose, "new size (previous size %f,%f)\n", mImpl->mModel->mVisualModel->mControlSize.width, mImpl->mModel->mVisualModel->mControlSize.height );
2499
2500     if( ( 0 == mImpl->mTextUpdateInfo.mNumberOfCharactersToAdd ) &&
2501         ( 0 == mImpl->mTextUpdateInfo.mPreviousNumberOfCharacters ) &&
2502         ( ( mImpl->mModel->mVisualModel->mControlSize.width < Math::MACHINE_EPSILON_1000 ) || ( mImpl->mModel->mVisualModel->mControlSize.height < Math::MACHINE_EPSILON_1000 ) ) )
2503     {
2504       mImpl->mTextUpdateInfo.mNumberOfCharactersToAdd = mImpl->mModel->mLogicalModel->mText.Count();
2505     }
2506
2507     // Layout operations that need to be done if the size changes.
2508     mImpl->mOperationsPending = static_cast<OperationsMask>( mImpl->mOperationsPending |
2509                                                              LAYOUT                    |
2510                                                              ALIGN                     |
2511                                                              UPDATE_LAYOUT_SIZE        |
2512                                                              REORDER );
2513     // Set the update info to relayout the whole text.
2514     mImpl->mTextUpdateInfo.mFullRelayoutNeeded = true;
2515     mImpl->mTextUpdateInfo.mCharacterIndex = 0u;
2516
2517     // Store the size used to layout the text.
2518     mImpl->mModel->mVisualModel->mControlSize = size;
2519   }
2520
2521   // Whether there are modify events.
2522   if( 0u != mImpl->mModifyEvents.Count() )
2523   {
2524     // Style operations that need to be done if the text is modified.
2525     mImpl->mOperationsPending = static_cast<OperationsMask>( mImpl->mOperationsPending |
2526                                                              COLOR );
2527   }
2528
2529   // Set the update info to elide the text.
2530   if( mImpl->mModel->mElideEnabled ||
2531       ( ( NULL != mImpl->mEventData ) && mImpl->mEventData->mIsPlaceholderElideEnabled ) )
2532   {
2533     // Update Text layout for applying elided
2534     mImpl->mOperationsPending = static_cast<OperationsMask>( mImpl->mOperationsPending |
2535                                                              ALIGN                     |
2536                                                              LAYOUT                    |
2537                                                              UPDATE_LAYOUT_SIZE        |
2538                                                              REORDER );
2539     mImpl->mTextUpdateInfo.mFullRelayoutNeeded = true;
2540     mImpl->mTextUpdateInfo.mCharacterIndex = 0u;
2541   }
2542
2543   if( mImpl->mModel->mMatchSystemLanguageDirection  && mImpl->mLayoutDirection != layoutDirection )
2544   {
2545     // Clear the update info. This info will be set the next time the text is updated.
2546     mImpl->mTextUpdateInfo.mClearAll = true;
2547     // Apply modifications to the model
2548     // Shape the text again is needed because characters like '()[]{}' have to be mirrored and the glyphs generated again.
2549     mImpl->mOperationsPending = static_cast<OperationsMask>( mImpl->mOperationsPending |
2550                                                              GET_GLYPH_METRICS         |
2551                                                              SHAPE_TEXT                |
2552                                                              UPDATE_DIRECTION          |
2553                                                              LAYOUT                    |
2554                                                              BIDI_INFO                 |
2555                                                              REORDER );
2556     mImpl->mLayoutDirection = layoutDirection;
2557   }
2558
2559   // Make sure the model is up-to-date before layouting.
2560   ProcessModifyEvents();
2561   bool updated = mImpl->UpdateModel( mImpl->mOperationsPending );
2562
2563   // Layout the text.
2564   Size layoutSize;
2565   updated = DoRelayout( size,
2566                         mImpl->mOperationsPending,
2567                         layoutSize ) || updated;
2568
2569
2570   if( updated )
2571   {
2572     updateTextType = MODEL_UPDATED;
2573   }
2574
2575   // Do not re-do any operation until something changes.
2576   mImpl->mOperationsPending = NO_OPERATION;
2577   mImpl->mModel->mScrollPositionLast = mImpl->mModel->mScrollPosition;
2578
2579   // Whether the text control is editable
2580   const bool isEditable = NULL != mImpl->mEventData;
2581
2582   // Keep the current offset as it will be used to update the decorator's positions (if the size changes).
2583   Vector2 offset;
2584   if( newSize && isEditable )
2585   {
2586     offset = mImpl->mModel->mScrollPosition;
2587   }
2588
2589   if( !isEditable || !IsMultiLineEnabled() )
2590   {
2591     // After doing the text layout, the vertical offset to place the actor in the desired position can be calculated.
2592     CalculateVerticalOffset( size );
2593   }
2594
2595   if( isEditable )
2596   {
2597     if( newSize )
2598     {
2599       // If there is a new size, the scroll position needs to be clamped.
2600       mImpl->ClampHorizontalScroll( layoutSize );
2601
2602       // Update the decorator's positions is needed if there is a new size.
2603       mImpl->mEventData->mDecorator->UpdatePositions( mImpl->mModel->mScrollPosition - offset );
2604     }
2605
2606     // Move the cursor, grab handle etc.
2607     if( mImpl->ProcessInputEvents() )
2608     {
2609       updateTextType = static_cast<UpdateTextType>( updateTextType | DECORATOR_UPDATED );
2610     }
2611   }
2612
2613   // Clear the update info. This info will be set the next time the text is updated.
2614   mImpl->mTextUpdateInfo.Clear();
2615   DALI_LOG_INFO( gLogFilter, Debug::Verbose, "<--Controller::Relayout\n" );
2616
2617   return updateTextType;
2618 }
2619
2620 void Controller::RequestRelayout()
2621 {
2622   mImpl->RequestRelayout();
2623 }
2624
2625 // public : Input style change signals.
2626
2627 bool Controller::IsInputStyleChangedSignalsQueueEmpty()
2628 {
2629   return ( NULL == mImpl->mEventData ) || ( 0u == mImpl->mEventData->mInputStyleChangedQueue.Count() );
2630 }
2631
2632 void Controller::ProcessInputStyleChangedSignals()
2633 {
2634   if( NULL == mImpl->mEventData )
2635   {
2636     // Nothing to do.
2637     return;
2638   }
2639
2640   for( Vector<InputStyle::Mask>::ConstIterator it = mImpl->mEventData->mInputStyleChangedQueue.Begin(),
2641          endIt = mImpl->mEventData->mInputStyleChangedQueue.End();
2642        it != endIt;
2643        ++it )
2644   {
2645     const InputStyle::Mask mask = *it;
2646
2647     if( NULL != mImpl->mEditableControlInterface )
2648     {
2649       // Emit the input style changed signal.
2650       mImpl->mEditableControlInterface->InputStyleChanged( mask );
2651     }
2652   }
2653
2654   mImpl->mEventData->mInputStyleChangedQueue.Clear();
2655 }
2656
2657 // public : Text-input Event Queuing.
2658
2659 void Controller::KeyboardFocusGainEvent()
2660 {
2661   DALI_ASSERT_DEBUG( mImpl->mEventData && "Unexpected KeyboardFocusGainEvent" );
2662
2663   if( NULL != mImpl->mEventData )
2664   {
2665     if( ( EventData::INACTIVE == mImpl->mEventData->mState ) ||
2666         ( EventData::INTERRUPTED == mImpl->mEventData->mState ) )
2667     {
2668       mImpl->ChangeState( EventData::EDITING );
2669       mImpl->mEventData->mUpdateCursorPosition = true; //If editing started without tap event, cursor update must be triggered.
2670       mImpl->mEventData->mUpdateInputStyle = true;
2671       mImpl->mEventData->mScrollAfterUpdatePosition = true;
2672     }
2673     mImpl->NotifyInputMethodContextMultiLineStatus();
2674     if( mImpl->IsShowingPlaceholderText() )
2675     {
2676       // Show alternative placeholder-text when editing
2677       ShowPlaceholderText();
2678     }
2679
2680     mImpl->RequestRelayout();
2681   }
2682 }
2683
2684 void Controller::KeyboardFocusLostEvent()
2685 {
2686   DALI_ASSERT_DEBUG( mImpl->mEventData && "Unexpected KeyboardFocusLostEvent" );
2687
2688   if( NULL != mImpl->mEventData )
2689   {
2690     if( EventData::INTERRUPTED != mImpl->mEventData->mState )
2691     {
2692       mImpl->ChangeState( EventData::INACTIVE );
2693
2694       if( !mImpl->IsShowingRealText() )
2695       {
2696         // Revert to regular placeholder-text when not editing
2697         ShowPlaceholderText();
2698       }
2699     }
2700   }
2701   mImpl->RequestRelayout();
2702 }
2703
2704 bool Controller::KeyEvent( const Dali::KeyEvent& keyEvent )
2705 {
2706   DALI_ASSERT_DEBUG( mImpl->mEventData && "Unexpected KeyEvent" );
2707
2708   bool textChanged = false;
2709   bool relayoutNeeded = false;
2710
2711   if( ( NULL != mImpl->mEventData ) &&
2712       ( keyEvent.state == KeyEvent::Down ) )
2713   {
2714     int keyCode = keyEvent.keyCode;
2715     const std::string& keyString = keyEvent.keyPressed;
2716     const std::string keyName = keyEvent.keyPressedName;
2717
2718     const bool isNullKey = ( 0 == keyCode ) && ( keyString.empty() );
2719
2720     // Pre-process to separate modifying events from non-modifying input events.
2721     if( isNullKey )
2722     {
2723       // In some platforms arrive key events with no key code.
2724       // Do nothing.
2725       return false;
2726     }
2727     else if( Dali::DALI_KEY_ESCAPE == keyCode || Dali::DALI_KEY_BACK == keyCode  || Dali::DALI_KEY_SEARCH == keyCode )
2728     {
2729       // Do nothing
2730       return false;
2731     }
2732     else if( ( Dali::DALI_KEY_CURSOR_LEFT  == keyCode ) ||
2733              ( Dali::DALI_KEY_CURSOR_RIGHT == keyCode ) ||
2734              ( Dali::DALI_KEY_CURSOR_UP    == keyCode ) ||
2735              ( Dali::DALI_KEY_CURSOR_DOWN  == keyCode ) )
2736     {
2737       // If don't have any text, do nothing.
2738       if( !mImpl->mTextUpdateInfo.mPreviousNumberOfCharacters )
2739       {
2740         return false;
2741       }
2742
2743       uint32_t cursorPosition = mImpl->mEventData->mPrimaryCursorPosition;
2744       uint32_t numberOfCharacters = mImpl->mTextUpdateInfo.mPreviousNumberOfCharacters;
2745       uint32_t cursorLine = mImpl->mModel->mVisualModel->GetLineOfCharacter( cursorPosition );
2746       uint32_t numberOfLines = mImpl->mModel->GetNumberOfLines();
2747
2748       // Logic to determine whether this text control will lose focus or not.
2749       if( ( Dali::DALI_KEY_CURSOR_LEFT == keyCode && 0 == cursorPosition && !keyEvent.IsShiftModifier() ) ||
2750           ( Dali::DALI_KEY_CURSOR_RIGHT == keyCode && numberOfCharacters == cursorPosition && !keyEvent.IsShiftModifier() ) ||
2751           ( Dali::DALI_KEY_CURSOR_DOWN == keyCode && cursorLine == numberOfLines -1 ) ||
2752           ( Dali::DALI_KEY_CURSOR_DOWN == keyCode && numberOfCharacters == cursorPosition && cursorLine -1 == numberOfLines -1 ) ||
2753           ( Dali::DALI_KEY_CURSOR_UP == keyCode && cursorLine == 0 ) ||
2754           ( Dali::DALI_KEY_CURSOR_UP == keyCode && numberOfCharacters == cursorPosition && cursorLine == 1 ) )
2755       {
2756         // Release the active highlight.
2757         if( mImpl->mEventData->mState == EventData::SELECTING )
2758         {
2759           mImpl->ChangeState( EventData::EDITING );
2760
2761           // Update selection position.
2762           mImpl->mEventData->mLeftSelectionPosition = mImpl->mEventData->mPrimaryCursorPosition;
2763           mImpl->mEventData->mRightSelectionPosition = mImpl->mEventData->mPrimaryCursorPosition;
2764           mImpl->mEventData->mUpdateCursorPosition = true;
2765           mImpl->RequestRelayout();
2766         }
2767         return false;
2768       }
2769
2770       mImpl->mEventData->mCheckScrollAmount = true;
2771       Event event( Event::CURSOR_KEY_EVENT );
2772       event.p1.mInt = keyCode;
2773       event.p2.mBool = keyEvent.IsShiftModifier();
2774       mImpl->mEventData->mEventQueue.push_back( event );
2775
2776       // Will request for relayout.
2777       relayoutNeeded = true;
2778     }
2779     else if ( Dali::DevelKey::DALI_KEY_CONTROL_LEFT == keyCode || Dali::DevelKey::DALI_KEY_CONTROL_RIGHT == keyCode )
2780     {
2781       // Left or Right Control key event is received before Ctrl-C/V/X key event is received
2782       // If not handle it here, any selected text will be deleted
2783
2784       // Do nothing
2785       return false;
2786     }
2787     else if ( keyEvent.IsCtrlModifier() )
2788     {
2789       bool consumed = false;
2790       if (keyName == KEY_C_NAME)
2791       {
2792         // Ctrl-C to copy the selected text
2793         TextPopupButtonTouched( Toolkit::TextSelectionPopup::COPY );
2794         consumed = true;
2795       }
2796       else if (keyName == KEY_V_NAME)
2797       {
2798         // Ctrl-V to paste the copied text
2799         TextPopupButtonTouched( Toolkit::TextSelectionPopup::PASTE );
2800         consumed = true;
2801       }
2802       else if (keyName == KEY_X_NAME)
2803       {
2804         // Ctrl-X to cut the selected text
2805         TextPopupButtonTouched( Toolkit::TextSelectionPopup::CUT );
2806         consumed = true;
2807       }
2808       return consumed;
2809     }
2810     else if( ( Dali::DALI_KEY_BACKSPACE == keyCode ) ||
2811              ( Dali::DevelKey::DALI_KEY_DELETE == keyCode ) )
2812     {
2813       textChanged = DeleteEvent( keyCode );
2814
2815       // Will request for relayout.
2816       relayoutNeeded = true;
2817     }
2818     else if( IsKey( keyEvent, Dali::DALI_KEY_POWER ) ||
2819              IsKey( keyEvent, Dali::DALI_KEY_MENU ) ||
2820              IsKey( keyEvent, Dali::DALI_KEY_HOME ) )
2821     {
2822       // Power key/Menu/Home key behaviour does not allow edit mode to resume.
2823       mImpl->ChangeState( EventData::INACTIVE );
2824
2825       // Will request for relayout.
2826       relayoutNeeded = true;
2827
2828       // This branch avoids calling the InsertText() method of the 'else' branch which can delete selected text.
2829     }
2830     else if( ( Dali::DALI_KEY_SHIFT_LEFT == keyCode ) || ( Dali::DALI_KEY_SHIFT_RIGHT == keyCode ) )
2831     {
2832       // 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
2833       // and a character is typed after the type of a upper case latin character.
2834
2835       // Do nothing.
2836       return false;
2837     }
2838     else if( ( Dali::DALI_KEY_VOLUME_UP == keyCode ) || ( Dali::DALI_KEY_VOLUME_DOWN == keyCode ) )
2839     {
2840       // This branch avoids calling the InsertText() method of the 'else' branch which can delete selected text.
2841       // Do nothing.
2842       return false;
2843     }
2844     else
2845     {
2846       DALI_LOG_INFO( gLogFilter, Debug::Verbose, "Controller::KeyEvent %p keyString %s\n", this, keyString.c_str() );
2847
2848       if( !keyString.empty() )
2849       {
2850         // InputMethodContext is no longer handling key-events
2851         mImpl->ClearPreEditFlag();
2852
2853         InsertText( keyString, COMMIT );
2854
2855         textChanged = true;
2856
2857         // Will request for relayout.
2858         relayoutNeeded = true;
2859       }
2860
2861     }
2862
2863     if ( ( mImpl->mEventData->mState != EventData::INTERRUPTED ) &&
2864          ( mImpl->mEventData->mState != EventData::INACTIVE ) &&
2865          ( !isNullKey ) &&
2866          ( Dali::DALI_KEY_SHIFT_LEFT != keyCode ) &&
2867          ( Dali::DALI_KEY_SHIFT_RIGHT != keyCode ) &&
2868          ( Dali::DALI_KEY_VOLUME_UP != keyCode ) &&
2869          ( Dali::DALI_KEY_VOLUME_DOWN != keyCode ) )
2870     {
2871       // Should not change the state if the key is the shift send by the InputMethodContext.
2872       // Otherwise, when the state is SELECTING the text controller can't send the right
2873       // surrounding info to the InputMethodContext.
2874       mImpl->ChangeState( EventData::EDITING );
2875
2876       // Will request for relayout.
2877       relayoutNeeded = true;
2878     }
2879
2880     if( relayoutNeeded )
2881     {
2882       mImpl->RequestRelayout();
2883     }
2884   }
2885
2886   if( textChanged &&
2887       ( NULL != mImpl->mEditableControlInterface ) )
2888   {
2889     // Do this last since it provides callbacks into application code
2890     mImpl->mEditableControlInterface->TextChanged();
2891   }
2892
2893   return true;
2894 }
2895
2896 void Controller::TapEvent( unsigned int tapCount, float x, float y )
2897 {
2898   DALI_ASSERT_DEBUG( mImpl->mEventData && "Unexpected TapEvent" );
2899
2900   if( NULL != mImpl->mEventData )
2901   {
2902     DALI_LOG_INFO( gLogFilter, Debug::Concise, "TapEvent state:%d \n", mImpl->mEventData->mState );
2903     EventData::State state( mImpl->mEventData->mState );
2904     bool relayoutNeeded( false );   // to avoid unnecessary relayouts when tapping an empty text-field
2905
2906     if( mImpl->IsClipboardVisible() )
2907     {
2908       if( EventData::INACTIVE == state || EventData::EDITING == state)
2909       {
2910         mImpl->ChangeState( EventData::EDITING_WITH_GRAB_HANDLE );
2911       }
2912       relayoutNeeded = true;
2913     }
2914     else if( 1u == tapCount )
2915     {
2916       if( EventData::EDITING_WITH_POPUP == state || EventData::EDITING_WITH_PASTE_POPUP == state )
2917       {
2918         mImpl->ChangeState( EventData::EDITING_WITH_GRAB_HANDLE );  // If Popup shown hide it here so can be shown again if required.
2919       }
2920
2921       if( mImpl->IsShowingRealText() && ( EventData::INACTIVE != state ) )
2922       {
2923         mImpl->ChangeState( EventData::EDITING_WITH_GRAB_HANDLE );
2924         relayoutNeeded = true;
2925       }
2926       else
2927       {
2928         if( mImpl->IsShowingPlaceholderText() && !mImpl->IsFocusedPlaceholderAvailable() )
2929         {
2930           // Hide placeholder text
2931           ResetText();
2932         }
2933
2934         if( EventData::INACTIVE == state )
2935         {
2936           mImpl->ChangeState( EventData::EDITING );
2937         }
2938         else if( !mImpl->IsClipboardEmpty() )
2939         {
2940           mImpl->ChangeState( EventData::EDITING_WITH_POPUP );
2941         }
2942         relayoutNeeded = true;
2943       }
2944     }
2945     else if( 2u == tapCount )
2946     {
2947       if( mImpl->mEventData->mSelectionEnabled &&
2948           mImpl->IsShowingRealText() )
2949       {
2950         relayoutNeeded = true;
2951         mImpl->mEventData->mIsLeftHandleSelected = true;
2952         mImpl->mEventData->mIsRightHandleSelected = true;
2953       }
2954     }
2955
2956     // Handles & cursors must be repositioned after Relayout() i.e. after the Model has been updated
2957     if( relayoutNeeded )
2958     {
2959       Event event( Event::TAP_EVENT );
2960       event.p1.mUint = tapCount;
2961       event.p2.mFloat = x;
2962       event.p3.mFloat = y;
2963       mImpl->mEventData->mEventQueue.push_back( event );
2964
2965       mImpl->RequestRelayout();
2966     }
2967   }
2968
2969   // Reset keyboard as tap event has occurred.
2970   mImpl->ResetInputMethodContext();
2971 }
2972
2973 void Controller::PanEvent( Gesture::State state, const Vector2& displacement )
2974 {
2975   DALI_ASSERT_DEBUG( mImpl->mEventData && "Unexpected PanEvent" );
2976
2977   if( NULL != mImpl->mEventData )
2978   {
2979     Event event( Event::PAN_EVENT );
2980     event.p1.mInt = state;
2981     event.p2.mFloat = displacement.x;
2982     event.p3.mFloat = displacement.y;
2983     mImpl->mEventData->mEventQueue.push_back( event );
2984
2985     mImpl->RequestRelayout();
2986   }
2987 }
2988
2989 void Controller::LongPressEvent( Gesture::State state, float x, float y  )
2990 {
2991   DALI_ASSERT_DEBUG( mImpl->mEventData && "Unexpected LongPressEvent" );
2992
2993   if( ( state == Gesture::Started ) &&
2994       ( NULL != mImpl->mEventData ) )
2995   {
2996     // The 1st long-press on inactive text-field is treated as tap
2997     if( EventData::INACTIVE == mImpl->mEventData->mState )
2998     {
2999       mImpl->ChangeState( EventData::EDITING );
3000
3001       Event event( Event::TAP_EVENT );
3002       event.p1.mUint = 1;
3003       event.p2.mFloat = x;
3004       event.p3.mFloat = y;
3005       mImpl->mEventData->mEventQueue.push_back( event );
3006
3007       mImpl->RequestRelayout();
3008     }
3009     else if( !mImpl->IsShowingRealText() )
3010     {
3011       Event event( Event::LONG_PRESS_EVENT );
3012       event.p1.mInt = state;
3013       event.p2.mFloat = x;
3014       event.p3.mFloat = y;
3015       mImpl->mEventData->mEventQueue.push_back( event );
3016       mImpl->RequestRelayout();
3017     }
3018     else if( !mImpl->IsClipboardVisible() )
3019     {
3020       // Reset the InputMethodContext to commit the pre-edit before selecting the text.
3021       mImpl->ResetInputMethodContext();
3022
3023       Event event( Event::LONG_PRESS_EVENT );
3024       event.p1.mInt = state;
3025       event.p2.mFloat = x;
3026       event.p3.mFloat = y;
3027       mImpl->mEventData->mEventQueue.push_back( event );
3028       mImpl->RequestRelayout();
3029
3030       mImpl->mEventData->mIsLeftHandleSelected = true;
3031       mImpl->mEventData->mIsRightHandleSelected = true;
3032     }
3033   }
3034 }
3035
3036 void Controller::SelectEvent( float x, float y, bool selectAll )
3037 {
3038   DALI_LOG_INFO( gLogFilter, Debug::Verbose, "Controller::SelectEvent\n" );
3039
3040   if( NULL != mImpl->mEventData )
3041   {
3042     if( selectAll )
3043     {
3044       Event event( Event::SELECT_ALL );
3045       mImpl->mEventData->mEventQueue.push_back( event );
3046     }
3047     else
3048     {
3049       Event event( Event::SELECT );
3050       event.p2.mFloat = x;
3051       event.p3.mFloat = y;
3052       mImpl->mEventData->mEventQueue.push_back( event );
3053     }
3054
3055     mImpl->mEventData->mCheckScrollAmount = true;
3056     mImpl->mEventData->mIsLeftHandleSelected = true;
3057     mImpl->mEventData->mIsRightHandleSelected = true;
3058     mImpl->RequestRelayout();
3059   }
3060 }
3061
3062 InputMethodContext::CallbackData Controller::OnInputMethodContextEvent( InputMethodContext& inputMethodContext, const InputMethodContext::EventData& inputMethodContextEvent )
3063 {
3064   // Whether the text needs to be relaid-out.
3065   bool requestRelayout = false;
3066
3067   // Whether to retrieve the text and cursor position to be sent to the InputMethodContext.
3068   bool retrieveText = false;
3069   bool retrieveCursor = false;
3070
3071   switch( inputMethodContextEvent.eventName )
3072   {
3073     case InputMethodContext::COMMIT:
3074     {
3075       InsertText( inputMethodContextEvent.predictiveString, Text::Controller::COMMIT );
3076       requestRelayout = true;
3077       retrieveCursor = true;
3078       break;
3079     }
3080     case InputMethodContext::PRE_EDIT:
3081     {
3082       InsertText( inputMethodContextEvent.predictiveString, Text::Controller::PRE_EDIT );
3083       requestRelayout = true;
3084       retrieveCursor = true;
3085       break;
3086     }
3087     case InputMethodContext::DELETE_SURROUNDING:
3088     {
3089       const bool textDeleted = RemoveText( inputMethodContextEvent.cursorOffset,
3090                                            inputMethodContextEvent.numberOfChars,
3091                                            DONT_UPDATE_INPUT_STYLE );
3092
3093       if( textDeleted )
3094       {
3095         if( ( 0u != mImpl->mModel->mLogicalModel->mText.Count() ) ||
3096             !mImpl->IsPlaceholderAvailable() )
3097         {
3098           mImpl->QueueModifyEvent( ModifyEvent::TEXT_DELETED );
3099         }
3100         else
3101         {
3102           ShowPlaceholderText();
3103         }
3104         mImpl->mEventData->mUpdateCursorPosition = true;
3105         mImpl->mEventData->mScrollAfterDelete = true;
3106
3107         requestRelayout = true;
3108       }
3109       break;
3110     }
3111     case InputMethodContext::GET_SURROUNDING:
3112     {
3113       retrieveText = true;
3114       retrieveCursor = true;
3115       break;
3116     }
3117     case InputMethodContext::PRIVATE_COMMAND:
3118     {
3119       // PRIVATECOMMAND event is just for getting the private command message
3120       retrieveText = true;
3121       retrieveCursor = true;
3122       break;
3123     }
3124     case InputMethodContext::VOID:
3125     {
3126       // do nothing
3127       break;
3128     }
3129   } // end switch
3130
3131   if( requestRelayout )
3132   {
3133     mImpl->mOperationsPending = ALL_OPERATIONS;
3134     mImpl->RequestRelayout();
3135   }
3136
3137   std::string text;
3138   CharacterIndex cursorPosition = 0u;
3139   Length numberOfWhiteSpaces = 0u;
3140
3141   if( retrieveCursor )
3142   {
3143     numberOfWhiteSpaces = mImpl->GetNumberOfWhiteSpaces( 0u );
3144
3145     cursorPosition = mImpl->GetLogicalCursorPosition();
3146
3147     if( cursorPosition < numberOfWhiteSpaces )
3148     {
3149       cursorPosition = 0u;
3150     }
3151     else
3152     {
3153       cursorPosition -= numberOfWhiteSpaces;
3154     }
3155   }
3156
3157   if( retrieveText )
3158   {
3159     if( !mImpl->IsShowingPlaceholderText() )
3160     {
3161       // Retrieves the normal text string.
3162       mImpl->GetText( numberOfWhiteSpaces, text );
3163     }
3164     else
3165     {
3166       // When the current text is Placeholder Text, the surrounding text should be empty string.
3167       // It means DALi should send empty string ("") to IME.
3168       text = "";
3169     }
3170   }
3171
3172   InputMethodContext::CallbackData callbackData( ( retrieveText || retrieveCursor ), cursorPosition, text, false );
3173
3174   if( requestRelayout &&
3175       ( NULL != mImpl->mEditableControlInterface ) )
3176   {
3177     // Do this last since it provides callbacks into application code
3178     mImpl->mEditableControlInterface->TextChanged();
3179   }
3180
3181   return callbackData;
3182 }
3183
3184 void Controller::PasteClipboardItemEvent()
3185 {
3186   // Retrieve the clipboard contents first
3187   ClipboardEventNotifier notifier( ClipboardEventNotifier::Get() );
3188   std::string stringToPaste( notifier.GetContent() );
3189
3190   // Commit the current pre-edit text; the contents of the clipboard should be appended
3191   mImpl->ResetInputMethodContext();
3192
3193   // Temporary disable hiding clipboard
3194   mImpl->SetClipboardHideEnable( false );
3195
3196   // Paste
3197   PasteText( stringToPaste );
3198
3199   mImpl->SetClipboardHideEnable( true );
3200 }
3201
3202 // protected : Inherit from Text::Decorator::ControllerInterface.
3203
3204 void Controller::GetTargetSize( Vector2& targetSize )
3205 {
3206   targetSize = mImpl->mModel->mVisualModel->mControlSize;
3207 }
3208
3209 void Controller::AddDecoration( Actor& actor, bool needsClipping )
3210 {
3211   if( NULL != mImpl->mEditableControlInterface )
3212   {
3213     mImpl->mEditableControlInterface->AddDecoration( actor, needsClipping );
3214   }
3215 }
3216
3217 void Controller::DecorationEvent( HandleType handleType, HandleState state, float x, float y )
3218 {
3219   DALI_ASSERT_DEBUG( mImpl->mEventData && "Unexpected DecorationEvent" );
3220
3221   if( NULL != mImpl->mEventData )
3222   {
3223     switch( handleType )
3224     {
3225       case GRAB_HANDLE:
3226       {
3227         Event event( Event::GRAB_HANDLE_EVENT );
3228         event.p1.mUint  = state;
3229         event.p2.mFloat = x;
3230         event.p3.mFloat = y;
3231
3232         mImpl->mEventData->mEventQueue.push_back( event );
3233         break;
3234       }
3235       case LEFT_SELECTION_HANDLE:
3236       {
3237         Event event( Event::LEFT_SELECTION_HANDLE_EVENT );
3238         event.p1.mUint  = state;
3239         event.p2.mFloat = x;
3240         event.p3.mFloat = y;
3241
3242         mImpl->mEventData->mEventQueue.push_back( event );
3243         break;
3244       }
3245       case RIGHT_SELECTION_HANDLE:
3246       {
3247         Event event( Event::RIGHT_SELECTION_HANDLE_EVENT );
3248         event.p1.mUint  = state;
3249         event.p2.mFloat = x;
3250         event.p3.mFloat = y;
3251
3252         mImpl->mEventData->mEventQueue.push_back( event );
3253         break;
3254       }
3255       case LEFT_SELECTION_HANDLE_MARKER:
3256       case RIGHT_SELECTION_HANDLE_MARKER:
3257       {
3258         // Markers do not move the handles.
3259         break;
3260       }
3261       case HANDLE_TYPE_COUNT:
3262       {
3263         DALI_ASSERT_DEBUG( !"Controller::HandleEvent. Unexpected handle type" );
3264       }
3265     }
3266
3267     mImpl->RequestRelayout();
3268   }
3269 }
3270
3271 // protected : Inherit from TextSelectionPopup::TextPopupButtonCallbackInterface.
3272
3273 void Controller::TextPopupButtonTouched( Dali::Toolkit::TextSelectionPopup::Buttons button )
3274 {
3275   if( NULL == mImpl->mEventData )
3276   {
3277     return;
3278   }
3279
3280   switch( button )
3281   {
3282     case Toolkit::TextSelectionPopup::CUT:
3283     {
3284       mImpl->SendSelectionToClipboard( true ); // Synchronous call to modify text
3285       mImpl->mOperationsPending = ALL_OPERATIONS;
3286
3287       if( ( 0u != mImpl->mModel->mLogicalModel->mText.Count() ) ||
3288           !mImpl->IsPlaceholderAvailable() )
3289       {
3290         mImpl->QueueModifyEvent( ModifyEvent::TEXT_DELETED );
3291       }
3292       else
3293       {
3294         ShowPlaceholderText();
3295       }
3296
3297       mImpl->mEventData->mUpdateCursorPosition = true;
3298       mImpl->mEventData->mScrollAfterDelete = true;
3299
3300       mImpl->RequestRelayout();
3301
3302       if( NULL != mImpl->mEditableControlInterface )
3303       {
3304         mImpl->mEditableControlInterface->TextChanged();
3305       }
3306       break;
3307     }
3308     case Toolkit::TextSelectionPopup::COPY:
3309     {
3310       mImpl->SendSelectionToClipboard( false ); // Text not modified
3311
3312       mImpl->mEventData->mUpdateCursorPosition = true;
3313
3314       mImpl->RequestRelayout(); // Cursor, Handles, Selection Highlight, Popup
3315       break;
3316     }
3317     case Toolkit::TextSelectionPopup::PASTE:
3318     {
3319       mImpl->RequestGetTextFromClipboard(); // Request clipboard service to retrieve an item
3320       break;
3321     }
3322     case Toolkit::TextSelectionPopup::SELECT:
3323     {
3324       const Vector2& currentCursorPosition = mImpl->mEventData->mDecorator->GetPosition( PRIMARY_CURSOR );
3325
3326       if( mImpl->mEventData->mSelectionEnabled )
3327       {
3328         // Creates a SELECT event.
3329         SelectEvent( currentCursorPosition.x, currentCursorPosition.y, false );
3330       }
3331       break;
3332     }
3333     case Toolkit::TextSelectionPopup::SELECT_ALL:
3334     {
3335       // Creates a SELECT_ALL event
3336       SelectEvent( 0.f, 0.f, true );
3337       break;
3338     }
3339     case Toolkit::TextSelectionPopup::CLIPBOARD:
3340     {
3341       mImpl->ShowClipboard();
3342       break;
3343     }
3344     case Toolkit::TextSelectionPopup::NONE:
3345     {
3346       // Nothing to do.
3347       break;
3348     }
3349   }
3350 }
3351
3352 void Controller::DisplayTimeExpired()
3353 {
3354   mImpl->mEventData->mUpdateCursorPosition = true;
3355   // Apply modifications to the model
3356   mImpl->mOperationsPending = ALL_OPERATIONS;
3357
3358   mImpl->RequestRelayout();
3359 }
3360
3361 // private : Update.
3362
3363 void Controller::InsertText( const std::string& text, Controller::InsertType type )
3364 {
3365   bool removedPrevious = false;
3366   bool removedSelected = false;
3367   bool maxLengthReached = false;
3368
3369   DALI_ASSERT_DEBUG( NULL != mImpl->mEventData && "Unexpected InsertText" )
3370
3371   if( NULL == mImpl->mEventData )
3372   {
3373     return;
3374   }
3375
3376   DALI_LOG_INFO( gLogFilter, Debug::Verbose, "Controller::InsertText %p %s (%s) mPrimaryCursorPosition %d mPreEditFlag %d mPreEditStartPosition %d mPreEditLength %d\n",
3377                  this, text.c_str(), (COMMIT == type ? "COMMIT" : "PRE_EDIT"),
3378                  mImpl->mEventData->mPrimaryCursorPosition, mImpl->mEventData->mPreEditFlag, mImpl->mEventData->mPreEditStartPosition, mImpl->mEventData->mPreEditLength );
3379
3380   // TODO: At the moment the underline runs are only for pre-edit.
3381   mImpl->mModel->mVisualModel->mUnderlineRuns.Clear();
3382
3383   // Remove the previous InputMethodContext pre-edit.
3384   if( mImpl->mEventData->mPreEditFlag && ( 0u != mImpl->mEventData->mPreEditLength ) )
3385   {
3386     removedPrevious = RemoveText( -static_cast<int>( mImpl->mEventData->mPrimaryCursorPosition - mImpl->mEventData->mPreEditStartPosition ),
3387                                   mImpl->mEventData->mPreEditLength,
3388                                   DONT_UPDATE_INPUT_STYLE );
3389
3390     mImpl->mEventData->mPrimaryCursorPosition = mImpl->mEventData->mPreEditStartPosition;
3391     mImpl->mEventData->mPreEditLength = 0u;
3392   }
3393   else
3394   {
3395     // Remove the previous Selection.
3396     removedSelected = RemoveSelectedText();
3397
3398   }
3399
3400   Vector<Character> utf32Characters;
3401   Length characterCount = 0u;
3402
3403   if( !text.empty() )
3404   {
3405     //  Convert text into UTF-32
3406     utf32Characters.Resize( text.size() );
3407
3408     // This is a bit horrible but std::string returns a (signed) char*
3409     const uint8_t* utf8 = reinterpret_cast<const uint8_t*>( text.c_str() );
3410
3411     // Transform a text array encoded in utf8 into an array encoded in utf32.
3412     // It returns the actual number of characters.
3413     characterCount = Utf8ToUtf32( utf8, text.size(), utf32Characters.Begin() );
3414     utf32Characters.Resize( characterCount );
3415
3416     DALI_ASSERT_DEBUG( text.size() >= utf32Characters.Count() && "Invalid UTF32 conversion length" );
3417     DALI_LOG_INFO( gLogFilter, Debug::Verbose, "UTF8 size %d, UTF32 size %d\n", text.size(), utf32Characters.Count() );
3418   }
3419
3420   if( 0u != utf32Characters.Count() ) // Check if Utf8ToUtf32 conversion succeeded
3421   {
3422     // The placeholder text is no longer needed
3423     if( mImpl->IsShowingPlaceholderText() )
3424     {
3425       ResetText();
3426     }
3427
3428     mImpl->ChangeState( EventData::EDITING );
3429
3430     // Handle the InputMethodContext (predicitive text) state changes
3431     if( COMMIT == type )
3432     {
3433       // InputMethodContext is no longer handling key-events
3434       mImpl->ClearPreEditFlag();
3435     }
3436     else // PRE_EDIT
3437     {
3438       if( !mImpl->mEventData->mPreEditFlag )
3439       {
3440         DALI_LOG_INFO( gLogFilter, Debug::Verbose, "Entered PreEdit state\n" );
3441
3442         // Record the start of the pre-edit text
3443         mImpl->mEventData->mPreEditStartPosition = mImpl->mEventData->mPrimaryCursorPosition;
3444       }
3445
3446       mImpl->mEventData->mPreEditLength = utf32Characters.Count();
3447       mImpl->mEventData->mPreEditFlag = true;
3448
3449       DALI_LOG_INFO( gLogFilter, Debug::Verbose, "mPreEditStartPosition %d mPreEditLength %d\n", mImpl->mEventData->mPreEditStartPosition, mImpl->mEventData->mPreEditLength );
3450     }
3451
3452     const Length numberOfCharactersInModel = mImpl->mModel->mLogicalModel->mText.Count();
3453
3454     // Restrict new text to fit within Maximum characters setting.
3455     Length maxSizeOfNewText = std::min( ( mImpl->mMaximumNumberOfCharacters - numberOfCharactersInModel ), characterCount );
3456     maxLengthReached = ( characterCount > maxSizeOfNewText );
3457
3458     // The cursor position.
3459     CharacterIndex& cursorIndex = mImpl->mEventData->mPrimaryCursorPosition;
3460
3461     // Update the text's style.
3462
3463     // Updates the text style runs by adding characters.
3464     mImpl->mModel->mLogicalModel->UpdateTextStyleRuns( cursorIndex, maxSizeOfNewText );
3465
3466     // Get the character index from the cursor index.
3467     const CharacterIndex styleIndex = ( cursorIndex > 0u ) ? cursorIndex - 1u : 0u;
3468
3469     // Retrieve the text's style for the given index.
3470     InputStyle style;
3471     mImpl->RetrieveDefaultInputStyle( style );
3472     mImpl->mModel->mLogicalModel->RetrieveStyle( styleIndex, style );
3473
3474     // Whether to add a new text color run.
3475     const bool addColorRun = ( style.textColor != mImpl->mEventData->mInputStyle.textColor ) && !mImpl->mEventData->mInputStyle.isDefaultColor;
3476
3477     // Whether to add a new font run.
3478     const bool addFontNameRun = ( style.familyName != mImpl->mEventData->mInputStyle.familyName ) && mImpl->mEventData->mInputStyle.isFamilyDefined;
3479     const bool addFontWeightRun = ( style.weight != mImpl->mEventData->mInputStyle.weight ) && mImpl->mEventData->mInputStyle.isWeightDefined;
3480     const bool addFontWidthRun = ( style.width != mImpl->mEventData->mInputStyle.width ) && mImpl->mEventData->mInputStyle.isWidthDefined;
3481     const bool addFontSlantRun = ( style.slant != mImpl->mEventData->mInputStyle.slant ) && mImpl->mEventData->mInputStyle.isSlantDefined;
3482     const bool addFontSizeRun = ( style.size != mImpl->mEventData->mInputStyle.size ) && mImpl->mEventData->mInputStyle.isSizeDefined ;
3483
3484     // Add style runs.
3485     if( addColorRun )
3486     {
3487       const VectorBase::SizeType numberOfRuns = mImpl->mModel->mLogicalModel->mColorRuns.Count();
3488       mImpl->mModel->mLogicalModel->mColorRuns.Resize( numberOfRuns + 1u );
3489
3490       ColorRun& colorRun = *( mImpl->mModel->mLogicalModel->mColorRuns.Begin() + numberOfRuns );
3491       colorRun.color = mImpl->mEventData->mInputStyle.textColor;
3492       colorRun.characterRun.characterIndex = cursorIndex;
3493       colorRun.characterRun.numberOfCharacters = maxSizeOfNewText;
3494     }
3495
3496     if( addFontNameRun   ||
3497         addFontWeightRun ||
3498         addFontWidthRun  ||
3499         addFontSlantRun  ||
3500         addFontSizeRun )
3501     {
3502       const VectorBase::SizeType numberOfRuns = mImpl->mModel->mLogicalModel->mFontDescriptionRuns.Count();
3503       mImpl->mModel->mLogicalModel->mFontDescriptionRuns.Resize( numberOfRuns + 1u );
3504
3505       FontDescriptionRun& fontDescriptionRun = *( mImpl->mModel->mLogicalModel->mFontDescriptionRuns.Begin() + numberOfRuns );
3506
3507       if( addFontNameRun )
3508       {
3509         fontDescriptionRun.familyLength = mImpl->mEventData->mInputStyle.familyName.size();
3510         fontDescriptionRun.familyName = new char[fontDescriptionRun.familyLength];
3511         memcpy( fontDescriptionRun.familyName, mImpl->mEventData->mInputStyle.familyName.c_str(), fontDescriptionRun.familyLength );
3512         fontDescriptionRun.familyDefined = true;
3513
3514         // The memory allocated for the font family name is freed when the font description is removed from the logical model.
3515       }
3516
3517       if( addFontWeightRun )
3518       {
3519         fontDescriptionRun.weight = mImpl->mEventData->mInputStyle.weight;
3520         fontDescriptionRun.weightDefined = true;
3521       }
3522
3523       if( addFontWidthRun )
3524       {
3525         fontDescriptionRun.width = mImpl->mEventData->mInputStyle.width;
3526         fontDescriptionRun.widthDefined = true;
3527       }
3528
3529       if( addFontSlantRun )
3530       {
3531         fontDescriptionRun.slant = mImpl->mEventData->mInputStyle.slant;
3532         fontDescriptionRun.slantDefined = true;
3533       }
3534
3535       if( addFontSizeRun )
3536       {
3537         fontDescriptionRun.size = static_cast<PointSize26Dot6>( mImpl->mEventData->mInputStyle.size * 64.f );
3538         fontDescriptionRun.sizeDefined = true;
3539       }
3540
3541       fontDescriptionRun.characterRun.characterIndex = cursorIndex;
3542       fontDescriptionRun.characterRun.numberOfCharacters = maxSizeOfNewText;
3543     }
3544
3545     // Insert at current cursor position.
3546     Vector<Character>& modifyText = mImpl->mModel->mLogicalModel->mText;
3547
3548     if( cursorIndex < numberOfCharactersInModel )
3549     {
3550       modifyText.Insert( modifyText.Begin() + cursorIndex, utf32Characters.Begin(), utf32Characters.Begin() + maxSizeOfNewText );
3551     }
3552     else
3553     {
3554       modifyText.Insert( modifyText.End(), utf32Characters.Begin(), utf32Characters.Begin() + maxSizeOfNewText );
3555     }
3556
3557     // Mark the first paragraph to be updated.
3558     if( Layout::Engine::SINGLE_LINE_BOX == mImpl->mLayoutEngine.GetLayout() )
3559     {
3560       mImpl->mTextUpdateInfo.mCharacterIndex = 0;
3561       mImpl->mTextUpdateInfo.mNumberOfCharactersToRemove = mImpl->mTextUpdateInfo.mPreviousNumberOfCharacters;
3562       mImpl->mTextUpdateInfo.mNumberOfCharactersToAdd = numberOfCharactersInModel + maxSizeOfNewText;
3563       mImpl->mTextUpdateInfo.mClearAll = true;
3564     }
3565     else
3566     {
3567       mImpl->mTextUpdateInfo.mCharacterIndex = std::min( cursorIndex, mImpl->mTextUpdateInfo.mCharacterIndex );
3568       mImpl->mTextUpdateInfo.mNumberOfCharactersToAdd += maxSizeOfNewText;
3569     }
3570
3571     // Update the cursor index.
3572     cursorIndex += maxSizeOfNewText;
3573
3574     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 );
3575   }
3576
3577   if( ( 0u == mImpl->mModel->mLogicalModel->mText.Count() ) &&
3578       mImpl->IsPlaceholderAvailable() )
3579   {
3580     // Show place-holder if empty after removing the pre-edit text
3581     ShowPlaceholderText();
3582     mImpl->mEventData->mUpdateCursorPosition = true;
3583     mImpl->ClearPreEditFlag();
3584   }
3585   else if( removedPrevious ||
3586            removedSelected ||
3587            ( 0 != utf32Characters.Count() ) )
3588   {
3589     // Queue an inserted event
3590     mImpl->QueueModifyEvent( ModifyEvent::TEXT_INSERTED );
3591
3592     mImpl->mEventData->mUpdateCursorPosition = true;
3593     if( removedSelected )
3594     {
3595       mImpl->mEventData->mScrollAfterDelete = true;
3596     }
3597     else
3598     {
3599       mImpl->mEventData->mScrollAfterUpdatePosition = true;
3600     }
3601   }
3602
3603   if( maxLengthReached )
3604   {
3605     DALI_LOG_INFO( gLogFilter, Debug::Verbose, "MaxLengthReached (%d)\n", mImpl->mModel->mLogicalModel->mText.Count() );
3606
3607     mImpl->ResetInputMethodContext();
3608
3609     if( NULL != mImpl->mEditableControlInterface )
3610     {
3611       // Do this last since it provides callbacks into application code
3612       mImpl->mEditableControlInterface->MaxLengthReached();
3613     }
3614   }
3615 }
3616
3617 void Controller::PasteText( const std::string& stringToPaste )
3618 {
3619   InsertText( stringToPaste, Text::Controller::COMMIT );
3620   mImpl->ChangeState( EventData::EDITING );
3621   mImpl->RequestRelayout();
3622
3623   if( NULL != mImpl->mEditableControlInterface )
3624   {
3625     // Do this last since it provides callbacks into application code
3626     mImpl->mEditableControlInterface->TextChanged();
3627   }
3628 }
3629
3630 bool Controller::RemoveText( int cursorOffset,
3631                              int numberOfCharacters,
3632                              UpdateInputStyleType type )
3633 {
3634   bool removed = false;
3635
3636   if( NULL == mImpl->mEventData )
3637   {
3638     return removed;
3639   }
3640
3641   DALI_LOG_INFO( gLogFilter, Debug::General, "Controller::RemoveText %p mText.Count() %d cursor %d cursorOffset %d numberOfCharacters %d\n",
3642                  this, mImpl->mModel->mLogicalModel->mText.Count(), mImpl->mEventData->mPrimaryCursorPosition, cursorOffset, numberOfCharacters );
3643
3644   if( !mImpl->IsShowingPlaceholderText() )
3645   {
3646     // Delete at current cursor position
3647     Vector<Character>& currentText = mImpl->mModel->mLogicalModel->mText;
3648     CharacterIndex& oldCursorIndex = mImpl->mEventData->mPrimaryCursorPosition;
3649
3650     CharacterIndex cursorIndex = 0;
3651
3652     // Validate the cursor position & number of characters
3653     if( ( static_cast< int >( mImpl->mEventData->mPrimaryCursorPosition ) + cursorOffset ) >= 0 )
3654     {
3655       cursorIndex = mImpl->mEventData->mPrimaryCursorPosition + cursorOffset;
3656     }
3657
3658     if( ( cursorIndex + numberOfCharacters ) > currentText.Count() )
3659     {
3660       numberOfCharacters = currentText.Count() - cursorIndex;
3661     }
3662
3663     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.
3664         ( ( cursorIndex + numberOfCharacters ) <= mImpl->mTextUpdateInfo.mPreviousNumberOfCharacters ) )
3665     {
3666       // Mark the paragraphs to be updated.
3667       if( Layout::Engine::SINGLE_LINE_BOX == mImpl->mLayoutEngine.GetLayout() )
3668       {
3669         mImpl->mTextUpdateInfo.mCharacterIndex = 0;
3670         mImpl->mTextUpdateInfo.mNumberOfCharactersToRemove = mImpl->mTextUpdateInfo.mPreviousNumberOfCharacters;
3671         mImpl->mTextUpdateInfo.mNumberOfCharactersToAdd = mImpl->mTextUpdateInfo.mPreviousNumberOfCharacters - numberOfCharacters;
3672         mImpl->mTextUpdateInfo.mClearAll = true;
3673       }
3674       else
3675       {
3676         mImpl->mTextUpdateInfo.mCharacterIndex = std::min( cursorIndex, mImpl->mTextUpdateInfo.mCharacterIndex );
3677         mImpl->mTextUpdateInfo.mNumberOfCharactersToRemove += numberOfCharacters;
3678       }
3679
3680       // Update the input style and remove the text's style before removing the text.
3681
3682       if( UPDATE_INPUT_STYLE == type )
3683       {
3684         // Keep a copy of the current input style.
3685         InputStyle currentInputStyle;
3686         currentInputStyle.Copy( mImpl->mEventData->mInputStyle );
3687
3688         // Set first the default input style.
3689         mImpl->RetrieveDefaultInputStyle( mImpl->mEventData->mInputStyle );
3690
3691         // Update the input style.
3692         mImpl->mModel->mLogicalModel->RetrieveStyle( cursorIndex, mImpl->mEventData->mInputStyle );
3693
3694         // Compare if the input style has changed.
3695         const bool hasInputStyleChanged = !currentInputStyle.Equal( mImpl->mEventData->mInputStyle );
3696
3697         if( hasInputStyleChanged )
3698         {
3699           const InputStyle::Mask styleChangedMask = currentInputStyle.GetInputStyleChangeMask( mImpl->mEventData->mInputStyle );
3700           // Queue the input style changed signal.
3701           mImpl->mEventData->mInputStyleChangedQueue.PushBack( styleChangedMask );
3702         }
3703       }
3704
3705       // If the number of current text and the number of characters to be deleted are same,
3706       // it means all texts should be removed and all Preedit variables should be initialized.
3707       if( ( currentText.Count() - numberOfCharacters == 0 ) && ( cursorIndex == 0 ) )
3708       {
3709         mImpl->ClearPreEditFlag();
3710       }
3711
3712       // Updates the text style runs by removing characters. Runs with no characters are removed.
3713       mImpl->mModel->mLogicalModel->UpdateTextStyleRuns( cursorIndex, -numberOfCharacters );
3714
3715       // Remove the characters.
3716       Vector<Character>::Iterator first = currentText.Begin() + cursorIndex;
3717       Vector<Character>::Iterator last  = first + numberOfCharacters;
3718
3719       currentText.Erase( first, last );
3720
3721       // Cursor position retreat
3722       oldCursorIndex = cursorIndex;
3723
3724       mImpl->mEventData->mScrollAfterDelete = true;
3725
3726       if( EventData::INACTIVE == mImpl->mEventData->mState )
3727       {
3728         mImpl->ChangeState( EventData::EDITING );
3729       }
3730
3731       DALI_LOG_INFO( gLogFilter, Debug::General, "Controller::RemoveText %p removed %d\n", this, numberOfCharacters );
3732       removed = true;
3733     }
3734   }
3735
3736   return removed;
3737 }
3738
3739 bool Controller::RemoveSelectedText()
3740 {
3741   bool textRemoved( false );
3742
3743   if( EventData::SELECTING == mImpl->mEventData->mState )
3744   {
3745     std::string removedString;
3746     mImpl->RetrieveSelection( removedString, true );
3747
3748     if( !removedString.empty() )
3749     {
3750       textRemoved = true;
3751       mImpl->ChangeState( EventData::EDITING );
3752     }
3753   }
3754
3755   return textRemoved;
3756 }
3757
3758 // private : Relayout.
3759
3760 bool Controller::DoRelayout( const Size& size,
3761                              OperationsMask operationsRequired,
3762                              Size& layoutSize )
3763 {
3764   DALI_LOG_INFO( gLogFilter, Debug::Verbose, "-->Controller::DoRelayout %p size %f,%f\n", this, size.width, size.height );
3765   bool viewUpdated( false );
3766
3767   // Calculate the operations to be done.
3768   const OperationsMask operations = static_cast<OperationsMask>( mImpl->mOperationsPending & operationsRequired );
3769
3770   const CharacterIndex startIndex = mImpl->mTextUpdateInfo.mParagraphCharacterIndex;
3771   const Length requestedNumberOfCharacters = mImpl->mTextUpdateInfo.mRequestedNumberOfCharacters;
3772
3773   // Get the current layout size.
3774   layoutSize = mImpl->mModel->mVisualModel->GetLayoutSize();
3775
3776   if( NO_OPERATION != ( LAYOUT & operations ) )
3777   {
3778     DALI_LOG_INFO( gLogFilter, Debug::Verbose, "-->Controller::DoRelayout LAYOUT & operations\n");
3779
3780     // Some vectors with data needed to layout and reorder may be void
3781     // after the first time the text has been laid out.
3782     // Fill the vectors again.
3783
3784     // Calculate the number of glyphs to layout.
3785     const Vector<GlyphIndex>& charactersToGlyph = mImpl->mModel->mVisualModel->mCharactersToGlyph;
3786     const Vector<Length>& glyphsPerCharacter = mImpl->mModel->mVisualModel->mGlyphsPerCharacter;
3787     const GlyphIndex* const charactersToGlyphBuffer = charactersToGlyph.Begin();
3788     const Length* const glyphsPerCharacterBuffer = glyphsPerCharacter.Begin();
3789
3790     const CharacterIndex lastIndex = startIndex + ( ( requestedNumberOfCharacters > 0u ) ? requestedNumberOfCharacters - 1u : 0u );
3791     const GlyphIndex startGlyphIndex = mImpl->mTextUpdateInfo.mStartGlyphIndex;
3792
3793     // Make sure the index is not out of bound
3794     if ( charactersToGlyph.Count() != glyphsPerCharacter.Count() ||
3795          requestedNumberOfCharacters > charactersToGlyph.Count() ||
3796          ( lastIndex > charactersToGlyph.Count() && charactersToGlyph.Count() > 0u ) )
3797     {
3798       std::string currentText;
3799       GetText( currentText );
3800
3801       DALI_LOG_ERROR( "Controller::DoRelayout: Attempting to access invalid buffer\n" );
3802       DALI_LOG_ERROR( "Current text is: %s\n", currentText.c_str() );
3803       DALI_LOG_ERROR( "startIndex: %u, lastIndex: %u, requestedNumberOfCharacters: %u, charactersToGlyph.Count = %lu, glyphsPerCharacter.Count = %lu\n", startIndex, lastIndex, requestedNumberOfCharacters, charactersToGlyph.Count(), glyphsPerCharacter.Count());
3804
3805       return false;
3806     }
3807
3808     const Length numberOfGlyphs = ( requestedNumberOfCharacters > 0u ) ? *( charactersToGlyphBuffer + lastIndex ) + *( glyphsPerCharacterBuffer + lastIndex ) - startGlyphIndex : 0u;
3809     const Length totalNumberOfGlyphs = mImpl->mModel->mVisualModel->mGlyphs.Count();
3810
3811     if( 0u == totalNumberOfGlyphs )
3812     {
3813       if( NO_OPERATION != ( UPDATE_LAYOUT_SIZE & operations ) )
3814       {
3815         mImpl->mModel->mVisualModel->SetLayoutSize( Size::ZERO );
3816       }
3817
3818       // Nothing else to do if there is no glyphs.
3819       DALI_LOG_INFO( gLogFilter, Debug::Verbose, "<--Controller::DoRelayout no glyphs, view updated true\n" );
3820       return true;
3821     }
3822
3823     // Set the layout parameters.
3824     Layout::Parameters layoutParameters( size,
3825                                          mImpl->mModel);
3826
3827     // Resize the vector of positions to have the same size than the vector of glyphs.
3828     Vector<Vector2>& glyphPositions = mImpl->mModel->mVisualModel->mGlyphPositions;
3829     glyphPositions.Resize( totalNumberOfGlyphs );
3830
3831     // Whether the last character is a new paragraph character.
3832     const Character* const textBuffer = mImpl->mModel->mLogicalModel->mText.Begin();
3833     mImpl->mTextUpdateInfo.mIsLastCharacterNewParagraph =  TextAbstraction::IsNewParagraph( *( textBuffer + ( mImpl->mModel->mLogicalModel->mText.Count() - 1u ) ) );
3834     layoutParameters.isLastNewParagraph = mImpl->mTextUpdateInfo.mIsLastCharacterNewParagraph;
3835
3836     // The initial glyph and the number of glyphs to layout.
3837     layoutParameters.startGlyphIndex = startGlyphIndex;
3838     layoutParameters.numberOfGlyphs = numberOfGlyphs;
3839     layoutParameters.startLineIndex = mImpl->mTextUpdateInfo.mStartLineIndex;
3840     layoutParameters.estimatedNumberOfLines = mImpl->mTextUpdateInfo.mEstimatedNumberOfLines;
3841
3842     // Update the ellipsis
3843     bool elideTextEnabled = mImpl->mModel->mElideEnabled;
3844
3845     if( NULL != mImpl->mEventData )
3846     {
3847       if( mImpl->mEventData->mPlaceholderEllipsisFlag && mImpl->IsShowingPlaceholderText() )
3848       {
3849         elideTextEnabled = mImpl->mEventData->mIsPlaceholderElideEnabled;
3850       }
3851       else if( EventData::INACTIVE != mImpl->mEventData->mState )
3852       {
3853         // Disable ellipsis when editing
3854         elideTextEnabled = false;
3855       }
3856
3857       // Reset the scroll position in inactive state
3858       if( elideTextEnabled && ( mImpl->mEventData->mState == EventData::INACTIVE ) )
3859       {
3860         ResetScrollPosition();
3861       }
3862     }
3863
3864     // Update the visual model.
3865     bool isAutoScrollEnabled = mImpl->mIsAutoScrollEnabled;
3866     Size newLayoutSize;
3867     viewUpdated = mImpl->mLayoutEngine.LayoutText( layoutParameters,
3868                                                    newLayoutSize,
3869                                                    elideTextEnabled,
3870                                                    isAutoScrollEnabled );
3871     mImpl->mIsAutoScrollEnabled = isAutoScrollEnabled;
3872
3873     viewUpdated = viewUpdated || ( newLayoutSize != layoutSize );
3874
3875     if( viewUpdated )
3876     {
3877       layoutSize = newLayoutSize;
3878
3879       if( NO_OPERATION != ( UPDATE_DIRECTION & operations ) )
3880       {
3881         mImpl->mIsTextDirectionRTL = false;
3882       }
3883
3884       if ( ( NO_OPERATION != ( UPDATE_DIRECTION & operations ) ) && !mImpl->mModel->mVisualModel->mLines.Empty() )
3885       {
3886         mImpl->mIsTextDirectionRTL = mImpl->mModel->mVisualModel->mLines[0u].direction;
3887       }
3888
3889       // Sets the layout size.
3890       if( NO_OPERATION != ( UPDATE_LAYOUT_SIZE & operations ) )
3891       {
3892         mImpl->mModel->mVisualModel->SetLayoutSize( layoutSize );
3893       }
3894     } // view updated
3895   }
3896
3897   if( NO_OPERATION != ( ALIGN & operations ) )
3898   {
3899     // The laid-out lines.
3900     Vector<LineRun>& lines = mImpl->mModel->mVisualModel->mLines;
3901
3902     CharacterIndex alignStartIndex = startIndex;
3903     Length alignRequestedNumberOfCharacters = requestedNumberOfCharacters;
3904
3905     // the whole text needs to be full aligned.
3906     // If you do not do a full aligned, only the last line of the multiline input is aligned.
3907     if(  mImpl->mEventData && mImpl->mEventData->mUpdateAlignment )
3908     {
3909       alignStartIndex = 0u;
3910       alignRequestedNumberOfCharacters = mImpl->mModel->mLogicalModel->mText.Count();
3911       mImpl->mEventData->mUpdateAlignment = false;
3912     }
3913
3914     // Need to align with the control's size as the text may contain lines
3915     // starting either with left to right text or right to left.
3916     mImpl->mLayoutEngine.Align( size,
3917                                 alignStartIndex,
3918                                 alignRequestedNumberOfCharacters,
3919                                 mImpl->mModel->mHorizontalAlignment,
3920                                 lines,
3921                                 mImpl->mModel->mAlignmentOffset,
3922                                 mImpl->mLayoutDirection,
3923                                 mImpl->mModel->mMatchSystemLanguageDirection );
3924
3925     viewUpdated = true;
3926   }
3927 #if defined(DEBUG_ENABLED)
3928   std::string currentText;
3929   GetText( currentText );
3930   DALI_LOG_INFO( gLogFilter, Debug::Concise, "Controller::DoRelayout [%p] mImpl->mIsTextDirectionRTL[%s] [%s]\n", this, (mImpl->mIsTextDirectionRTL)?"true":"false",  currentText.c_str() );
3931 #endif
3932   DALI_LOG_INFO( gLogFilter, Debug::Verbose, "<--Controller::DoRelayout, view updated %s\n", ( viewUpdated ? "true" : "false" ) );
3933   return viewUpdated;
3934 }
3935
3936 void Controller::CalculateVerticalOffset( const Size& controlSize )
3937 {
3938   Size layoutSize = mImpl->mModel->mVisualModel->GetLayoutSize();
3939
3940   if( fabsf( layoutSize.height ) < Math::MACHINE_EPSILON_1000 )
3941   {
3942     // Get the line height of the default font.
3943     layoutSize.height = mImpl->GetDefaultFontLineHeight();
3944   }
3945
3946   switch( mImpl->mModel->mVerticalAlignment )
3947   {
3948     case VerticalAlignment::TOP:
3949     {
3950       mImpl->mModel->mScrollPosition.y = 0.f;
3951       break;
3952     }
3953     case VerticalAlignment::CENTER:
3954     {
3955       mImpl->mModel->mScrollPosition.y = floorf( 0.5f * ( controlSize.height - layoutSize.height ) ); // try to avoid pixel alignment.
3956       break;
3957     }
3958     case VerticalAlignment::BOTTOM:
3959     {
3960       mImpl->mModel->mScrollPosition.y = controlSize.height - layoutSize.height;
3961       break;
3962     }
3963   }
3964 }
3965
3966 // private : Events.
3967
3968 void Controller::ProcessModifyEvents()
3969 {
3970   Vector<ModifyEvent>& events = mImpl->mModifyEvents;
3971
3972   if( 0u == events.Count() )
3973   {
3974     // Nothing to do.
3975     return;
3976   }
3977
3978   for( Vector<ModifyEvent>::ConstIterator it = events.Begin(),
3979          endIt = events.End();
3980        it != endIt;
3981        ++it )
3982   {
3983     const ModifyEvent& event = *it;
3984
3985     if( ModifyEvent::TEXT_REPLACED == event.type )
3986     {
3987       // A (single) replace event should come first, otherwise we wasted time processing NOOP events
3988       DALI_ASSERT_DEBUG( it == events.Begin() && "Unexpected TEXT_REPLACED event" );
3989
3990       TextReplacedEvent();
3991     }
3992     else if( ModifyEvent::TEXT_INSERTED == event.type )
3993     {
3994       TextInsertedEvent();
3995     }
3996     else if( ModifyEvent::TEXT_DELETED == event.type )
3997     {
3998       // Placeholder-text cannot be deleted
3999       if( !mImpl->IsShowingPlaceholderText() )
4000       {
4001         TextDeletedEvent();
4002       }
4003     }
4004   }
4005
4006   if( NULL != mImpl->mEventData )
4007   {
4008     // When the text is being modified, delay cursor blinking
4009     mImpl->mEventData->mDecorator->DelayCursorBlink();
4010
4011     // Update selection position after modifying the text
4012     mImpl->mEventData->mLeftSelectionPosition = mImpl->mEventData->mPrimaryCursorPosition;
4013     mImpl->mEventData->mRightSelectionPosition = mImpl->mEventData->mPrimaryCursorPosition;
4014   }
4015
4016   // Discard temporary text
4017   events.Clear();
4018 }
4019
4020 void Controller::TextReplacedEvent()
4021 {
4022   // The natural size needs to be re-calculated.
4023   mImpl->mRecalculateNaturalSize = true;
4024
4025   // The text direction needs to be updated.
4026   mImpl->mUpdateTextDirection = true;
4027
4028   // Apply modifications to the model
4029   mImpl->mOperationsPending = ALL_OPERATIONS;
4030 }
4031
4032 void Controller::TextInsertedEvent()
4033 {
4034   DALI_ASSERT_DEBUG( NULL != mImpl->mEventData && "Unexpected TextInsertedEvent" );
4035
4036   if( NULL == mImpl->mEventData )
4037   {
4038     return;
4039   }
4040
4041   mImpl->mEventData->mCheckScrollAmount = true;
4042
4043   // The natural size needs to be re-calculated.
4044   mImpl->mRecalculateNaturalSize = true;
4045
4046   // The text direction needs to be updated.
4047   mImpl->mUpdateTextDirection = true;
4048
4049   // Apply modifications to the model; TODO - Optimize this
4050   mImpl->mOperationsPending = ALL_OPERATIONS;
4051 }
4052
4053 void Controller::TextDeletedEvent()
4054 {
4055   DALI_ASSERT_DEBUG( NULL != mImpl->mEventData && "Unexpected TextDeletedEvent" );
4056
4057   if( NULL == mImpl->mEventData )
4058   {
4059     return;
4060   }
4061
4062   mImpl->mEventData->mCheckScrollAmount = true;
4063
4064   // The natural size needs to be re-calculated.
4065   mImpl->mRecalculateNaturalSize = true;
4066
4067   // The text direction needs to be updated.
4068   mImpl->mUpdateTextDirection = true;
4069
4070   // Apply modifications to the model; TODO - Optimize this
4071   mImpl->mOperationsPending = ALL_OPERATIONS;
4072 }
4073
4074 bool Controller::DeleteEvent( int keyCode )
4075 {
4076   DALI_LOG_INFO( gLogFilter, Debug::Verbose, "Controller::KeyEvent %p KeyCode : %d \n", this, keyCode );
4077
4078   bool removed = false;
4079
4080   if( NULL == mImpl->mEventData )
4081   {
4082     return removed;
4083   }
4084
4085   // InputMethodContext is no longer handling key-events
4086   mImpl->ClearPreEditFlag();
4087
4088   if( EventData::SELECTING == mImpl->mEventData->mState )
4089   {
4090     removed = RemoveSelectedText();
4091   }
4092   else if( ( mImpl->mEventData->mPrimaryCursorPosition > 0 ) && ( keyCode == Dali::DALI_KEY_BACKSPACE) )
4093   {
4094     // Remove the character before the current cursor position
4095     removed = RemoveText( -1,
4096                           1,
4097                           UPDATE_INPUT_STYLE );
4098   }
4099   else if( keyCode == Dali::DevelKey::DALI_KEY_DELETE )
4100   {
4101     // Remove the character after the current cursor position
4102     removed = RemoveText( 0,
4103                           1,
4104                           UPDATE_INPUT_STYLE );
4105   }
4106
4107   if( removed )
4108   {
4109     if( ( 0u != mImpl->mModel->mLogicalModel->mText.Count() ) ||
4110         !mImpl->IsPlaceholderAvailable() )
4111     {
4112       mImpl->QueueModifyEvent( ModifyEvent::TEXT_DELETED );
4113     }
4114     else
4115     {
4116       ShowPlaceholderText();
4117     }
4118     mImpl->mEventData->mUpdateCursorPosition = true;
4119     mImpl->mEventData->mScrollAfterDelete = true;
4120   }
4121
4122   return removed;
4123 }
4124
4125 // private : Helpers.
4126
4127 void Controller::ResetText()
4128 {
4129   // Reset buffers.
4130   mImpl->mModel->mLogicalModel->mText.Clear();
4131
4132   // Reset the embedded images buffer.
4133   mImpl->mModel->mLogicalModel->ClearEmbeddedImages();
4134
4135   // We have cleared everything including the placeholder-text
4136   mImpl->PlaceholderCleared();
4137
4138   mImpl->mTextUpdateInfo.mCharacterIndex = 0u;
4139   mImpl->mTextUpdateInfo.mNumberOfCharactersToRemove = mImpl->mTextUpdateInfo.mPreviousNumberOfCharacters;
4140   mImpl->mTextUpdateInfo.mNumberOfCharactersToAdd = 0u;
4141
4142   // Clear any previous text.
4143   mImpl->mTextUpdateInfo.mClearAll = true;
4144
4145   // The natural size needs to be re-calculated.
4146   mImpl->mRecalculateNaturalSize = true;
4147
4148   // The text direction needs to be updated.
4149   mImpl->mUpdateTextDirection = true;
4150
4151   // Apply modifications to the model
4152   mImpl->mOperationsPending = ALL_OPERATIONS;
4153 }
4154
4155 void Controller::ShowPlaceholderText()
4156 {
4157   if( mImpl->IsPlaceholderAvailable() )
4158   {
4159     DALI_ASSERT_DEBUG( mImpl->mEventData && "No placeholder text available" );
4160
4161     if( NULL == mImpl->mEventData )
4162     {
4163       return;
4164     }
4165
4166     mImpl->mEventData->mIsShowingPlaceholderText = true;
4167
4168     // Disable handles when showing place-holder text
4169     mImpl->mEventData->mDecorator->SetHandleActive( GRAB_HANDLE, false );
4170     mImpl->mEventData->mDecorator->SetHandleActive( LEFT_SELECTION_HANDLE, false );
4171     mImpl->mEventData->mDecorator->SetHandleActive( RIGHT_SELECTION_HANDLE, false );
4172
4173     const char* text( NULL );
4174     size_t size( 0 );
4175
4176     // TODO - Switch Placeholder text when changing state
4177     if( ( EventData::INACTIVE != mImpl->mEventData->mState ) &&
4178         ( 0u != mImpl->mEventData->mPlaceholderTextActive.c_str() ) )
4179     {
4180       text = mImpl->mEventData->mPlaceholderTextActive.c_str();
4181       size = mImpl->mEventData->mPlaceholderTextActive.size();
4182     }
4183     else
4184     {
4185       text = mImpl->mEventData->mPlaceholderTextInactive.c_str();
4186       size = mImpl->mEventData->mPlaceholderTextInactive.size();
4187     }
4188
4189     mImpl->mTextUpdateInfo.mCharacterIndex = 0u;
4190     mImpl->mTextUpdateInfo.mNumberOfCharactersToRemove = mImpl->mTextUpdateInfo.mPreviousNumberOfCharacters;
4191
4192     // Reset model for showing placeholder.
4193     mImpl->mModel->mLogicalModel->mText.Clear();
4194     mImpl->mModel->mVisualModel->SetTextColor( mImpl->mEventData->mPlaceholderTextColor );
4195
4196     // Convert text into UTF-32
4197     Vector<Character>& utf32Characters = mImpl->mModel->mLogicalModel->mText;
4198     utf32Characters.Resize( size );
4199
4200     // This is a bit horrible but std::string returns a (signed) char*
4201     const uint8_t* utf8 = reinterpret_cast<const uint8_t*>( text );
4202
4203     // Transform a text array encoded in utf8 into an array encoded in utf32.
4204     // It returns the actual number of characters.
4205     const Length characterCount = Utf8ToUtf32( utf8, size, utf32Characters.Begin() );
4206     utf32Characters.Resize( characterCount );
4207
4208     // The characters to be added.
4209     mImpl->mTextUpdateInfo.mNumberOfCharactersToAdd = characterCount;
4210
4211     // Reset the cursor position
4212     mImpl->mEventData->mPrimaryCursorPosition = 0;
4213
4214     // The natural size needs to be re-calculated.
4215     mImpl->mRecalculateNaturalSize = true;
4216
4217     // The text direction needs to be updated.
4218     mImpl->mUpdateTextDirection = true;
4219
4220     // Apply modifications to the model
4221     mImpl->mOperationsPending = ALL_OPERATIONS;
4222
4223     // Update the rest of the model during size negotiation
4224     mImpl->QueueModifyEvent( ModifyEvent::TEXT_REPLACED );
4225   }
4226 }
4227
4228 void Controller::ClearFontData()
4229 {
4230   if( mImpl->mFontDefaults )
4231   {
4232     mImpl->mFontDefaults->mFontId = 0u; // Remove old font ID
4233   }
4234
4235   // Set flags to update the model.
4236   mImpl->mTextUpdateInfo.mCharacterIndex = 0u;
4237   mImpl->mTextUpdateInfo.mNumberOfCharactersToRemove = mImpl->mTextUpdateInfo.mPreviousNumberOfCharacters;
4238   mImpl->mTextUpdateInfo.mNumberOfCharactersToAdd = mImpl->mModel->mLogicalModel->mText.Count();
4239
4240   mImpl->mTextUpdateInfo.mClearAll = true;
4241   mImpl->mTextUpdateInfo.mFullRelayoutNeeded = true;
4242   mImpl->mRecalculateNaturalSize = true;
4243
4244   mImpl->mOperationsPending = static_cast<OperationsMask>( mImpl->mOperationsPending |
4245                                                            VALIDATE_FONTS            |
4246                                                            SHAPE_TEXT                |
4247                                                            BIDI_INFO                 |
4248                                                            GET_GLYPH_METRICS         |
4249                                                            LAYOUT                    |
4250                                                            UPDATE_LAYOUT_SIZE        |
4251                                                            REORDER                   |
4252                                                            ALIGN );
4253 }
4254
4255 void Controller::ClearStyleData()
4256 {
4257   mImpl->mModel->mLogicalModel->mColorRuns.Clear();
4258   mImpl->mModel->mLogicalModel->ClearFontDescriptionRuns();
4259 }
4260
4261 void Controller::ResetCursorPosition( CharacterIndex cursorIndex )
4262 {
4263   // Reset the cursor position
4264   if( NULL != mImpl->mEventData )
4265   {
4266     mImpl->mEventData->mPrimaryCursorPosition = cursorIndex;
4267
4268     // Update the cursor if it's in editing mode.
4269     if( EventData::IsEditingState( mImpl->mEventData->mState )  )
4270     {
4271       mImpl->mEventData->mUpdateCursorPosition = true;
4272     }
4273   }
4274 }
4275
4276 void Controller::ResetScrollPosition()
4277 {
4278   if( NULL != mImpl->mEventData )
4279   {
4280     // Reset the scroll position.
4281     mImpl->mModel->mScrollPosition = Vector2::ZERO;
4282     mImpl->mEventData->mScrollAfterUpdatePosition = true;
4283   }
4284 }
4285
4286 void Controller::SetControlInterface( ControlInterface* controlInterface )
4287 {
4288   mImpl->mControlInterface = controlInterface;
4289 }
4290
4291 bool Controller::ShouldClearFocusOnEscape() const
4292 {
4293   return mImpl->mShouldClearFocusOnEscape;
4294 }
4295
4296 Actor Controller::CreateBackgroundActor()
4297 {
4298   return mImpl->CreateBackgroundActor();
4299 }
4300
4301 // private : Private contructors & copy operator.
4302
4303 Controller::Controller()
4304 : mImpl( NULL )
4305 {
4306   mImpl = new Controller::Impl( NULL, NULL );
4307 }
4308
4309 Controller::Controller( ControlInterface* controlInterface )
4310 {
4311   mImpl = new Controller::Impl( controlInterface, NULL );
4312 }
4313
4314 Controller::Controller( ControlInterface* controlInterface,
4315                         EditableControlInterface* editableControlInterface )
4316 {
4317   mImpl = new Controller::Impl( controlInterface,
4318                                 editableControlInterface );
4319 }
4320
4321 // The copy constructor and operator are left unimplemented.
4322
4323 // protected : Destructor.
4324
4325 Controller::~Controller()
4326 {
4327   delete mImpl;
4328 }
4329
4330 } // namespace Text
4331
4332 } // namespace Toolkit
4333
4334 } // namespace Dali