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