320a5e0ae30d5959afbcdeab7aac2b5ec0537423
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / internal / text / text-controller.cpp
1 /*
2  * Copyright (c) 2015 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 <dali/public-api/adaptor-framework/key.h>
24 #include <dali/integration-api/debug.h>
25 #include <dali/devel-api/adaptor-framework/clipboard-event-notifier.h>
26
27 // INTERNAL INCLUDES
28 #include <dali-toolkit/internal/text/bidirectional-support.h>
29 #include <dali-toolkit/internal/text/character-set-conversion.h>
30 #include <dali-toolkit/internal/text/layouts/layout-parameters.h>
31 #include <dali-toolkit/internal/text/text-controller-impl.h>
32
33 namespace
34 {
35
36 #if defined(DEBUG_ENABLED)
37   Debug::Filter* gLogFilter = Debug::Filter::New(Debug::Concise, true, "LOG_TEXT_CONTROLS");
38 #endif
39
40 const float MAX_FLOAT = std::numeric_limits<float>::max();
41
42 const std::string EMPTY_STRING("");
43
44 float ConvertToEven( float value )
45 {
46   int intValue(static_cast<int>( value ));
47   return static_cast<float>(intValue % 2 == 0) ? intValue : (intValue + 1);
48 }
49
50 } // namespace
51
52 namespace Dali
53 {
54
55 namespace Toolkit
56 {
57
58 namespace Text
59 {
60
61 ControllerPtr Controller::New( ControlInterface& controlInterface )
62 {
63   return ControllerPtr( new Controller( controlInterface ) );
64 }
65
66 void Controller::EnableTextInput( DecoratorPtr decorator )
67 {
68   if( !mImpl->mEventData )
69   {
70     mImpl->mEventData = new EventData( decorator );
71   }
72 }
73
74 void Controller::SetText( const std::string& text )
75 {
76   // Remove the previously set text
77   ResetText();
78
79   CharacterIndex lastCursorIndex = 0u;
80
81   if( mImpl->mEventData )
82   {
83     // If popup shown then hide it by switching to Editing state
84     if ( EventData::SELECTING == mImpl->mEventData->mState ||
85          EventData::SELECTION_CHANGED == mImpl->mEventData->mState ||
86          EventData::EDITING_WITH_POPUP == mImpl->mEventData->mState )
87     {
88       mImpl->ChangeState( EventData::EDITING );
89     }
90   }
91
92   if( !text.empty() )
93   {
94     //  Convert text into UTF-32
95     Vector<Character>& utf32Characters = mImpl->mLogicalModel->mText;
96     utf32Characters.Resize( text.size() );
97
98     // This is a bit horrible but std::string returns a (signed) char*
99     const uint8_t* utf8 = reinterpret_cast<const uint8_t*>( text.c_str() );
100
101     // Transform a text array encoded in utf8 into an array encoded in utf32.
102     // It returns the actual number of characters.
103     Length characterCount = Utf8ToUtf32( utf8, text.size(), utf32Characters.Begin() );
104     utf32Characters.Resize( characterCount );
105
106     DALI_ASSERT_DEBUG( text.size() >= characterCount && "Invalid UTF32 conversion length" );
107     DALI_LOG_INFO( gLogFilter, Debug::Verbose, "Controller::SetText %p UTF8 size %d, UTF32 size %d\n", this, text.size(), mImpl->mLogicalModel->mText.Count() );
108
109     // To reset the cursor position
110     lastCursorIndex = characterCount;
111
112     // Update the rest of the model during size negotiation
113     mImpl->QueueModifyEvent( ModifyEvent::TEXT_REPLACED );
114
115     // The natural size needs to be re-calculated.
116     mImpl->mRecalculateNaturalSize = true;
117
118     // Apply modifications to the model
119     mImpl->mOperationsPending = ALL_OPERATIONS;
120   }
121   else
122   {
123     ShowPlaceholderText();
124   }
125
126   // Resets the cursor position.
127   ResetCursorPosition( lastCursorIndex );
128
129   // Scrolls the text to make the cursor visible.
130   ResetScrollPosition();
131
132   mImpl->RequestRelayout();
133
134   if( mImpl->mEventData )
135   {
136     // Cancel previously queued events
137     mImpl->mEventData->mEventQueue.clear();
138   }
139
140   // Reset keyboard as text changed
141   mImpl->ResetImfManager();
142
143   // Do this last since it provides callbacks into application code
144   mImpl->mControlInterface.TextChanged();
145 }
146
147 void Controller::GetText( std::string& text ) const
148 {
149   if( ! mImpl->IsShowingPlaceholderText() )
150   {
151     Vector<Character>& utf32Characters = mImpl->mLogicalModel->mText;
152
153     if( 0u != utf32Characters.Count() )
154     {
155       Utf32ToUtf8( &utf32Characters[0], utf32Characters.Count(), text );
156     }
157   }
158   else
159   {
160     DALI_LOG_INFO( gLogFilter, Debug::Verbose, "Controller::GetText %p empty (but showing placeholder)\n", this );
161   }
162 }
163
164 unsigned int Controller::GetLogicalCursorPosition() const
165 {
166   if( mImpl->mEventData )
167   {
168     return mImpl->mEventData->mPrimaryCursorPosition;
169   }
170
171   return 0u;
172 }
173
174 void Controller::SetPlaceholderText( PlaceholderType type, const std::string& text )
175 {
176   if( mImpl->mEventData )
177   {
178     if( PLACEHOLDER_TYPE_INACTIVE == type )
179     {
180       mImpl->mEventData->mPlaceholderTextInactive = text;
181     }
182     else
183     {
184       mImpl->mEventData->mPlaceholderTextActive = text;
185     }
186
187     // Update placeholder if there is no text
188     if( mImpl->IsShowingPlaceholderText() ||
189         0u == mImpl->mLogicalModel->mText.Count() )
190     {
191       ShowPlaceholderText();
192     }
193   }
194 }
195
196 void Controller::GetPlaceholderText( PlaceholderType type, std::string& text ) const
197 {
198   if( mImpl->mEventData )
199   {
200     if( PLACEHOLDER_TYPE_INACTIVE == type )
201     {
202       text = mImpl->mEventData->mPlaceholderTextInactive;
203     }
204     else
205     {
206       text = mImpl->mEventData->mPlaceholderTextActive;
207     }
208   }
209 }
210
211 void Controller::SetMaximumNumberOfCharacters( int maxCharacters )
212 {
213   if ( maxCharacters >= 0 )
214   {
215     mImpl->mMaximumNumberOfCharacters = maxCharacters;
216   }
217 }
218
219 int Controller::GetMaximumNumberOfCharacters()
220 {
221   return mImpl->mMaximumNumberOfCharacters;
222 }
223
224 void Controller::SetDefaultFontFamily( const std::string& defaultFontFamily )
225 {
226   if( !mImpl->mFontDefaults )
227   {
228     mImpl->mFontDefaults = new FontDefaults();
229   }
230
231   mImpl->mFontDefaults->mDefaultFontFamily = defaultFontFamily;
232
233   // Clear the font-specific data
234   ClearFontData();
235
236   mImpl->mOperationsPending = ALL_OPERATIONS;
237   mImpl->mRecalculateNaturalSize = true;
238
239   mImpl->RequestRelayout();
240 }
241
242 const std::string& Controller::GetDefaultFontFamily() const
243 {
244   if( mImpl->mFontDefaults )
245   {
246     return mImpl->mFontDefaults->mDefaultFontFamily;
247   }
248
249   return EMPTY_STRING;
250 }
251
252 void Controller::SetDefaultFontStyle( const std::string& defaultFontStyle )
253 {
254   if( !mImpl->mFontDefaults )
255   {
256     mImpl->mFontDefaults = new FontDefaults();
257   }
258
259   mImpl->mFontDefaults->mDefaultFontStyle = defaultFontStyle;
260
261   // Clear the font-specific data
262   ClearFontData();
263
264   mImpl->mOperationsPending = ALL_OPERATIONS;
265   mImpl->mRecalculateNaturalSize = true;
266
267   mImpl->RequestRelayout();
268 }
269
270 const std::string& Controller::GetDefaultFontStyle() const
271 {
272   if( mImpl->mFontDefaults )
273   {
274     return mImpl->mFontDefaults->mDefaultFontStyle;
275   }
276
277   return EMPTY_STRING;
278 }
279
280 void Controller::SetDefaultPointSize( float pointSize )
281 {
282   if( !mImpl->mFontDefaults )
283   {
284     mImpl->mFontDefaults = new FontDefaults();
285   }
286
287   mImpl->mFontDefaults->mDefaultPointSize = pointSize;
288
289   // Clear the font-specific data
290   ClearFontData();
291
292   mImpl->mOperationsPending = ALL_OPERATIONS;
293   mImpl->mRecalculateNaturalSize = true;
294
295   mImpl->RequestRelayout();
296 }
297
298 float Controller::GetDefaultPointSize() const
299 {
300   if( mImpl->mFontDefaults )
301   {
302     return mImpl->mFontDefaults->mDefaultPointSize;
303   }
304
305   return 0.0f;
306 }
307
308 void Controller::SetTextColor( const Vector4& textColor )
309 {
310   mImpl->mTextColor = textColor;
311
312   if( !mImpl->IsShowingPlaceholderText() )
313   {
314     mImpl->mVisualModel->SetTextColor( textColor );
315
316     mImpl->RequestRelayout();
317   }
318 }
319
320 const Vector4& Controller::GetTextColor() const
321 {
322   return mImpl->mTextColor;
323 }
324
325 bool Controller::RemoveText( int cursorOffset, int numberOfChars )
326 {
327   bool removed( false );
328
329   DALI_LOG_INFO( gLogFilter, Debug::General, "Controller::RemoveText %p mText.Count() %d cursor %d cursorOffset %d numberOfChars %d\n",
330                  this, mImpl->mLogicalModel->mText.Count(), mImpl->mEventData->mPrimaryCursorPosition, cursorOffset, numberOfChars );
331
332   if( ! mImpl->IsShowingPlaceholderText() )
333   {
334     // Delete at current cursor position
335     Vector<Character>& currentText = mImpl->mLogicalModel->mText;
336     CharacterIndex& oldCursorIndex = mImpl->mEventData->mPrimaryCursorPosition;
337
338     CharacterIndex cursorIndex = oldCursorIndex;
339
340     // Validate the cursor position & number of characters
341     if( static_cast< CharacterIndex >( std::abs( cursorOffset ) ) <= cursorIndex )
342     {
343       cursorIndex = oldCursorIndex + cursorOffset;
344     }
345
346     if( (cursorIndex + numberOfChars) > currentText.Count() )
347     {
348       numberOfChars = currentText.Count() - cursorIndex;
349     }
350
351     if( (cursorIndex + numberOfChars) <= currentText.Count() )
352     {
353       Vector<Character>::Iterator first = currentText.Begin() + cursorIndex;
354       Vector<Character>::Iterator last  = first + numberOfChars;
355
356       currentText.Erase( first, last );
357
358       // Cursor position retreat
359       oldCursorIndex = cursorIndex;
360
361       DALI_LOG_INFO( gLogFilter, Debug::General, "Controller::RemoveText %p removed %d\n", this, numberOfChars );
362       removed = true;
363     }
364   }
365
366   return removed;
367 }
368
369 void Controller::SetPlaceholderTextColor( const Vector4& textColor )
370 {
371   if( mImpl->mEventData )
372   {
373     mImpl->mEventData->mPlaceholderTextColor = textColor;
374   }
375
376   if( mImpl->IsShowingPlaceholderText() )
377   {
378     mImpl->mVisualModel->SetTextColor( textColor );
379     mImpl->RequestRelayout();
380   }
381 }
382
383 const Vector4& Controller::GetPlaceholderTextColor() const
384 {
385   if( mImpl->mEventData )
386   {
387     return mImpl->mEventData->mPlaceholderTextColor;
388   }
389
390   return Color::BLACK;
391 }
392
393 void Controller::SetShadowOffset( const Vector2& shadowOffset )
394 {
395   mImpl->mVisualModel->SetShadowOffset( shadowOffset );
396
397   mImpl->RequestRelayout();
398 }
399
400 const Vector2& Controller::GetShadowOffset() const
401 {
402   return mImpl->mVisualModel->GetShadowOffset();
403 }
404
405 void Controller::SetShadowColor( const Vector4& shadowColor )
406 {
407   mImpl->mVisualModel->SetShadowColor( shadowColor );
408
409   mImpl->RequestRelayout();
410 }
411
412 const Vector4& Controller::GetShadowColor() const
413 {
414   return mImpl->mVisualModel->GetShadowColor();
415 }
416
417 void Controller::SetUnderlineColor( const Vector4& color )
418 {
419   mImpl->mVisualModel->SetUnderlineColor( color );
420
421   mImpl->RequestRelayout();
422 }
423
424 const Vector4& Controller::GetUnderlineColor() const
425 {
426   return mImpl->mVisualModel->GetUnderlineColor();
427 }
428
429 void Controller::SetUnderlineEnabled( bool enabled )
430 {
431   mImpl->mVisualModel->SetUnderlineEnabled( enabled );
432
433   mImpl->RequestRelayout();
434 }
435
436 bool Controller::IsUnderlineEnabled() const
437 {
438   return mImpl->mVisualModel->IsUnderlineEnabled();
439 }
440
441 void Controller::SetUnderlineHeight( float height )
442 {
443   mImpl->mVisualModel->SetUnderlineHeight( height );
444
445   mImpl->RequestRelayout();
446 }
447
448 float Controller::GetUnderlineHeight() const
449 {
450   return mImpl->mVisualModel->GetUnderlineHeight();
451 }
452
453 void Controller::SetEnableCursorBlink( bool enable )
454 {
455   DALI_ASSERT_DEBUG( NULL != mImpl->mEventData && "TextInput disabled" );
456
457   if( mImpl->mEventData )
458   {
459     mImpl->mEventData->mCursorBlinkEnabled = enable;
460
461     if( !enable &&
462         mImpl->mEventData->mDecorator )
463     {
464       mImpl->mEventData->mDecorator->StopCursorBlink();
465     }
466   }
467 }
468
469 bool Controller::GetEnableCursorBlink() const
470 {
471   if( mImpl->mEventData )
472   {
473     return mImpl->mEventData->mCursorBlinkEnabled;
474   }
475
476   return false;
477 }
478
479 const Vector2& Controller::GetScrollPosition() const
480 {
481   if( mImpl->mEventData )
482   {
483     return mImpl->mEventData->mScrollPosition;
484   }
485
486   return Vector2::ZERO;
487 }
488
489 const Vector2& Controller::GetAlignmentOffset() const
490 {
491   return mImpl->mAlignmentOffset;
492 }
493
494 Vector3 Controller::GetNaturalSize()
495 {
496   DALI_LOG_INFO( gLogFilter, Debug::Verbose, "-->Controller::GetNaturalSize\n" );
497   Vector3 naturalSize;
498
499   // Make sure the model is up-to-date before layouting
500   ProcessModifyEvents();
501
502   if( mImpl->mRecalculateNaturalSize )
503   {
504     // Operations that can be done only once until the text changes.
505     const OperationsMask onlyOnceOperations = static_cast<OperationsMask>( CONVERT_TO_UTF32  |
506                                                                            GET_SCRIPTS       |
507                                                                            VALIDATE_FONTS    |
508                                                                            GET_LINE_BREAKS   |
509                                                                            GET_WORD_BREAKS   |
510                                                                            BIDI_INFO         |
511                                                                            SHAPE_TEXT        |
512                                                                            GET_GLYPH_METRICS );
513     // Make sure the model is up-to-date before layouting
514     mImpl->UpdateModel( onlyOnceOperations );
515
516     // Operations that need to be done if the size changes.
517     const OperationsMask sizeOperations =  static_cast<OperationsMask>( LAYOUT |
518                                                                         ALIGN  |
519                                                                         REORDER );
520
521     DoRelayout( Size( MAX_FLOAT, MAX_FLOAT ),
522                 static_cast<OperationsMask>( onlyOnceOperations |
523                                              sizeOperations ),
524                 naturalSize.GetVectorXY() );
525
526     // Do not do again the only once operations.
527     mImpl->mOperationsPending = static_cast<OperationsMask>( mImpl->mOperationsPending & ~onlyOnceOperations );
528
529     // Do the size related operations again.
530     mImpl->mOperationsPending = static_cast<OperationsMask>( mImpl->mOperationsPending | sizeOperations );
531
532     // Stores the natural size to avoid recalculate it again
533     // unless the text/style changes.
534     mImpl->mVisualModel->SetNaturalSize( naturalSize.GetVectorXY() );
535
536     mImpl->mRecalculateNaturalSize = false;
537
538     DALI_LOG_INFO( gLogFilter, Debug::Verbose, "<--Controller::GetNaturalSize calculated %f,%f,%f\n", naturalSize.x, naturalSize.y, naturalSize.z );
539   }
540   else
541   {
542     naturalSize = mImpl->mVisualModel->GetNaturalSize();
543
544     DALI_LOG_INFO( gLogFilter, Debug::Verbose, "<--Controller::GetNaturalSize cached %f,%f,%f\n", naturalSize.x, naturalSize.y, naturalSize.z );
545   }
546
547   naturalSize.x = ConvertToEven( naturalSize.x );
548   naturalSize.y = ConvertToEven( naturalSize.y );
549
550   return naturalSize;
551 }
552
553 float Controller::GetHeightForWidth( float width )
554 {
555   DALI_LOG_INFO( gLogFilter, Debug::Verbose, "-->Controller::GetHeightForWidth %p width %f\n", this, width );
556   // Make sure the model is up-to-date before layouting
557   ProcessModifyEvents();
558
559   Size layoutSize;
560   if( width != mImpl->mVisualModel->mControlSize.width )
561   {
562     // Operations that can be done only once until the text changes.
563     const OperationsMask onlyOnceOperations = static_cast<OperationsMask>( CONVERT_TO_UTF32  |
564                                                                            GET_SCRIPTS       |
565                                                                            VALIDATE_FONTS    |
566                                                                            GET_LINE_BREAKS   |
567                                                                            GET_WORD_BREAKS   |
568                                                                            BIDI_INFO         |
569                                                                            SHAPE_TEXT        |
570                                                                            GET_GLYPH_METRICS );
571     // Make sure the model is up-to-date before layouting
572     mImpl->UpdateModel( onlyOnceOperations );
573
574     // Operations that need to be done if the size changes.
575     const OperationsMask sizeOperations =  static_cast<OperationsMask>( LAYOUT |
576                                                                         ALIGN  |
577                                                                         REORDER );
578
579     DoRelayout( Size( width, MAX_FLOAT ),
580                 static_cast<OperationsMask>( onlyOnceOperations |
581                                              sizeOperations ),
582                 layoutSize );
583
584     // Do not do again the only once operations.
585     mImpl->mOperationsPending = static_cast<OperationsMask>( mImpl->mOperationsPending & ~onlyOnceOperations );
586
587     // Do the size related operations again.
588     mImpl->mOperationsPending = static_cast<OperationsMask>( mImpl->mOperationsPending | sizeOperations );
589     DALI_LOG_INFO( gLogFilter, Debug::Verbose, "<--Controller::GetHeightForWidth calculated %f\n", layoutSize.height );
590   }
591   else
592   {
593     layoutSize = mImpl->mVisualModel->GetActualSize();
594     DALI_LOG_INFO( gLogFilter, Debug::Verbose, "<--Controller::GetHeightForWidth cached %f\n", layoutSize.height );
595   }
596
597   return layoutSize.height;
598 }
599
600 bool Controller::Relayout( const Size& size )
601 {
602   DALI_LOG_INFO( gLogFilter, Debug::Verbose, "-->Controller::Relayout %p size %f,%f\n", this, size.width, size.height );
603
604   if( ( size.width < Math::MACHINE_EPSILON_1000 ) || ( size.height < Math::MACHINE_EPSILON_1000 ) )
605   {
606     bool glyphsRemoved( false );
607     if( 0u != mImpl->mVisualModel->mGlyphPositions.Count() )
608     {
609       mImpl->mVisualModel->mGlyphPositions.Clear();
610       glyphsRemoved = true;
611     }
612     // Not worth to relayout if width or height is equal to zero.
613     DALI_LOG_INFO( gLogFilter, Debug::Verbose, "<--Controller::Relayout (skipped)\n" );
614     return glyphsRemoved;
615   }
616
617   if( size != mImpl->mVisualModel->mControlSize )
618   {
619     DALI_LOG_INFO( gLogFilter, Debug::Verbose, "new size (previous size %f,%f)\n", mImpl->mVisualModel->mControlSize.width, mImpl->mVisualModel->mControlSize.height );
620
621     // Operations that need to be done if the size changes.
622     mImpl->mOperationsPending = static_cast<OperationsMask>( mImpl->mOperationsPending |
623                                                              LAYOUT                    |
624                                                              ALIGN                     |
625                                                              UPDATE_ACTUAL_SIZE        |
626                                                              REORDER );
627
628     mImpl->mVisualModel->mControlSize = size;
629   }
630
631   // Make sure the model is up-to-date before layouting
632   ProcessModifyEvents();
633   mImpl->UpdateModel( mImpl->mOperationsPending );
634
635   Size layoutSize;
636   bool updated = DoRelayout( mImpl->mVisualModel->mControlSize,
637                              mImpl->mOperationsPending,
638                              layoutSize );
639
640   // Do not re-do any operation until something changes.
641   mImpl->mOperationsPending = NO_OPERATION;
642
643   // After doing the text layout, the alignment offset to place the actor in the desired position can be calculated.
644   CalculateTextAlignment( size );
645
646   if( mImpl->mEventData )
647   {
648     // Move the cursor, grab handle etc.
649     updated = mImpl->ProcessInputEvents() || updated;
650   }
651
652   DALI_LOG_INFO( gLogFilter, Debug::Verbose, "<--Controller::Relayout\n" );
653   return updated;
654 }
655
656 void Controller::ProcessModifyEvents()
657 {
658   std::vector<ModifyEvent>& events = mImpl->mModifyEvents;
659
660   for( unsigned int i=0; i<events.size(); ++i )
661   {
662     if( ModifyEvent::TEXT_REPLACED == events[0].type )
663     {
664       // A (single) replace event should come first, otherwise we wasted time processing NOOP events
665       DALI_ASSERT_DEBUG( 0 == i && "Unexpected TEXT_REPLACED event" );
666
667       TextReplacedEvent();
668     }
669     else if( ModifyEvent::TEXT_INSERTED == events[0].type )
670     {
671       TextInsertedEvent();
672     }
673     else if( ModifyEvent::TEXT_DELETED == events[0].type )
674     {
675       // Placeholder-text cannot be deleted
676       if( !mImpl->IsShowingPlaceholderText() )
677       {
678         TextDeletedEvent();
679       }
680     }
681   }
682
683   // Discard temporary text
684   events.clear();
685 }
686
687 void Controller::ResetText()
688 {
689   // Reset buffers.
690   mImpl->mLogicalModel->mText.Clear();
691   ClearModelData();
692
693   // We have cleared everything including the placeholder-text
694   mImpl->PlaceholderCleared();
695
696   // The natural size needs to be re-calculated.
697   mImpl->mRecalculateNaturalSize = true;
698
699   // Apply modifications to the model
700   mImpl->mOperationsPending = ALL_OPERATIONS;
701 }
702
703 void Controller::ResetCursorPosition( CharacterIndex cursorIndex )
704 {
705   // Reset the cursor position
706   if( NULL != mImpl->mEventData )
707   {
708     mImpl->mEventData->mPrimaryCursorPosition = cursorIndex;
709
710     // Update the cursor if it's in editing mode.
711     if( ( EventData::EDITING == mImpl->mEventData->mState ) ||
712         ( EventData::EDITING_WITH_POPUP == mImpl->mEventData->mState ) )
713     {
714       mImpl->mEventData->mUpdateCursorPosition = true;
715     }
716   }
717 }
718
719 void Controller::ResetScrollPosition()
720 {
721   if( NULL != mImpl->mEventData )
722   {
723     // Reset the scroll position.
724     mImpl->mEventData->mScrollPosition = Vector2::ZERO;
725     mImpl->mEventData->mScrollAfterUpdatePosition = true;
726   }
727 }
728
729 void Controller::TextReplacedEvent()
730 {
731   // Reset buffers.
732   ClearModelData();
733
734   // The natural size needs to be re-calculated.
735   mImpl->mRecalculateNaturalSize = true;
736
737   // Apply modifications to the model
738   mImpl->mOperationsPending = ALL_OPERATIONS;
739   mImpl->UpdateModel( ALL_OPERATIONS );
740   mImpl->mOperationsPending = static_cast<OperationsMask>( LAYOUT             |
741                                                            ALIGN              |
742                                                            UPDATE_ACTUAL_SIZE |
743                                                            REORDER );
744 }
745
746 void Controller::TextInsertedEvent()
747 {
748   DALI_ASSERT_DEBUG( NULL != mImpl->mEventData && "Unexpected TextInsertedEvent" );
749
750   // TODO - Optimize this
751   ClearModelData();
752
753   // The natural size needs to be re-calculated.
754   mImpl->mRecalculateNaturalSize = true;
755
756   // Apply modifications to the model; TODO - Optimize this
757   mImpl->mOperationsPending = ALL_OPERATIONS;
758   mImpl->UpdateModel( ALL_OPERATIONS );
759   mImpl->mOperationsPending = static_cast<OperationsMask>( LAYOUT             |
760                                                            ALIGN              |
761                                                            UPDATE_ACTUAL_SIZE |
762                                                            REORDER );
763
764   // Queue a cursor reposition event; this must wait until after DoRelayout()
765   mImpl->mEventData->mUpdateCursorPosition = true;
766   mImpl->mEventData->mScrollAfterUpdatePosition = true;
767 }
768
769 void Controller::TextDeletedEvent()
770 {
771   DALI_ASSERT_DEBUG( NULL != mImpl->mEventData && "Unexpected TextDeletedEvent" );
772
773   // TODO - Optimize this
774   ClearModelData();
775
776   // The natural size needs to be re-calculated.
777   mImpl->mRecalculateNaturalSize = true;
778
779   // Apply modifications to the model; TODO - Optimize this
780   mImpl->mOperationsPending = ALL_OPERATIONS;
781   mImpl->UpdateModel( ALL_OPERATIONS );
782   mImpl->mOperationsPending = static_cast<OperationsMask>( LAYOUT             |
783                                                            ALIGN              |
784                                                            UPDATE_ACTUAL_SIZE |
785                                                            REORDER );
786
787   // Queue a cursor reposition event; this must wait until after DoRelayout()
788   mImpl->mEventData->mScrollAfterDelete = true;
789 }
790
791 bool Controller::DoRelayout( const Size& size,
792                              OperationsMask operationsRequired,
793                              Size& layoutSize )
794 {
795   DALI_LOG_INFO( gLogFilter, Debug::Verbose, "-->Controller::DoRelayout %p size %f,%f\n", this, size.width, size.height );
796   bool viewUpdated( false );
797
798   // Calculate the operations to be done.
799   const OperationsMask operations = static_cast<OperationsMask>( mImpl->mOperationsPending & operationsRequired );
800
801   if( LAYOUT & operations )
802   {
803     // Some vectors with data needed to layout and reorder may be void
804     // after the first time the text has been laid out.
805     // Fill the vectors again.
806
807     const Length numberOfGlyphs = mImpl->mVisualModel->mGlyphs.Count();
808
809     if( 0u == numberOfGlyphs )
810     {
811       // Nothing else to do if there is no glyphs.
812       DALI_LOG_INFO( gLogFilter, Debug::Verbose, "<--Controller::DoRelayout no glyphs, view updated true\n" );
813       return true;
814     }
815
816     const Vector<LineBreakInfo>& lineBreakInfo = mImpl->mLogicalModel->mLineBreakInfo;
817     const Vector<WordBreakInfo>& wordBreakInfo = mImpl->mLogicalModel->mWordBreakInfo;
818     const Vector<CharacterDirection>& characterDirection = mImpl->mLogicalModel->mCharacterDirections;
819     const Vector<GlyphInfo>& glyphs = mImpl->mVisualModel->mGlyphs;
820     const Vector<CharacterIndex>& glyphsToCharactersMap = mImpl->mVisualModel->mGlyphsToCharacters;
821     const Vector<Length>& charactersPerGlyph = mImpl->mVisualModel->mCharactersPerGlyph;
822     const Character* const textBuffer = mImpl->mLogicalModel->mText.Begin();
823
824     // Set the layout parameters.
825     LayoutParameters layoutParameters( size,
826                                        textBuffer,
827                                        lineBreakInfo.Begin(),
828                                        wordBreakInfo.Begin(),
829                                        ( 0u != characterDirection.Count() ) ? characterDirection.Begin() : NULL,
830                                        numberOfGlyphs,
831                                        glyphs.Begin(),
832                                        glyphsToCharactersMap.Begin(),
833                                        charactersPerGlyph.Begin() );
834
835     // The laid-out lines.
836     // It's not possible to know in how many lines the text is going to be laid-out,
837     // but it can be resized at least with the number of 'paragraphs' to avoid
838     // some re-allocations.
839     Vector<LineRun>& lines = mImpl->mVisualModel->mLines;
840
841     // Delete any previous laid out lines before setting the new ones.
842     lines.Clear();
843
844     // The capacity of the bidirectional paragraph info is the number of paragraphs.
845     lines.Reserve( mImpl->mLogicalModel->mBidirectionalParagraphInfo.Capacity() );
846
847     // Resize the vector of positions to have the same size than the vector of glyphs.
848     Vector<Vector2>& glyphPositions = mImpl->mVisualModel->mGlyphPositions;
849     glyphPositions.Resize( numberOfGlyphs );
850
851     // Whether the last character is a new paragraph character.
852     layoutParameters.isLastNewParagraph = TextAbstraction::IsNewParagraph( *( textBuffer + ( mImpl->mLogicalModel->mText.Count() - 1u ) ) );
853
854     // Update the visual model.
855     viewUpdated = mImpl->mLayoutEngine.LayoutText( layoutParameters,
856                                                    glyphPositions,
857                                                    lines,
858                                                    layoutSize );
859
860     if( viewUpdated )
861     {
862       // Reorder the lines
863       if( REORDER & operations )
864       {
865         Vector<BidirectionalParagraphInfoRun>& bidirectionalInfo = mImpl->mLogicalModel->mBidirectionalParagraphInfo;
866
867         // Check first if there are paragraphs with bidirectional info.
868         if( 0u != bidirectionalInfo.Count() )
869         {
870           // Get the lines
871           const Length numberOfLines = mImpl->mVisualModel->mLines.Count();
872
873           // Reorder the lines.
874           Vector<BidirectionalLineInfoRun> lineBidirectionalInfoRuns;
875           lineBidirectionalInfoRuns.Reserve( numberOfLines ); // Reserve because is not known yet how many lines have right to left characters.
876           ReorderLines( bidirectionalInfo,
877                         lines,
878                         lineBidirectionalInfoRuns );
879
880           // Set the bidirectional info into the model.
881           const Length numberOfBidirectionalInfoRuns = lineBidirectionalInfoRuns.Count();
882           mImpl->mLogicalModel->SetVisualToLogicalMap( lineBidirectionalInfoRuns.Begin(),
883                                                        numberOfBidirectionalInfoRuns );
884
885           // Set the bidirectional info per line into the layout parameters.
886           layoutParameters.lineBidirectionalInfoRunsBuffer = lineBidirectionalInfoRuns.Begin();
887           layoutParameters.numberOfBidirectionalInfoRuns = numberOfBidirectionalInfoRuns;
888
889           // Get the character to glyph conversion table and set into the layout.
890           layoutParameters.charactersToGlyphsBuffer = mImpl->mVisualModel->mCharactersToGlyph.Begin();
891
892           // Get the glyphs per character table and set into the layout.
893           layoutParameters.glyphsPerCharacterBuffer = mImpl->mVisualModel->mGlyphsPerCharacter.Begin();
894
895           // Re-layout the text. Reorder those lines with right to left characters.
896           mImpl->mLayoutEngine.ReLayoutRightToLeftLines( layoutParameters,
897                                                          glyphPositions );
898
899           // Free the allocated memory used to store the conversion table in the bidirectional line info run.
900           for( Vector<BidirectionalLineInfoRun>::Iterator it = lineBidirectionalInfoRuns.Begin(),
901                  endIt = lineBidirectionalInfoRuns.End();
902                it != endIt;
903                ++it )
904           {
905             BidirectionalLineInfoRun& bidiLineInfo = *it;
906
907             free( bidiLineInfo.visualToLogicalMap );
908           }
909         }
910       } // REORDER
911
912       // Sets the actual size.
913       if( UPDATE_ACTUAL_SIZE & operations )
914       {
915         mImpl->mVisualModel->SetActualSize( layoutSize );
916       }
917     } // view updated
918   }
919   else
920   {
921     layoutSize = mImpl->mVisualModel->GetActualSize();
922   }
923
924   if( ALIGN & operations )
925   {
926     // The laid-out lines.
927     Vector<LineRun>& lines = mImpl->mVisualModel->mLines;
928
929     mImpl->mLayoutEngine.Align( layoutSize,
930                                 lines );
931
932     viewUpdated = true;
933   }
934
935   DALI_LOG_INFO( gLogFilter, Debug::Verbose, "<--Controller::DoRelayout, view updated %s\n", ( viewUpdated ? "true" : "false" ) );
936   return viewUpdated;
937 }
938
939 void Controller::SetMultiLineEnabled( bool enable )
940 {
941   const LayoutEngine::Layout layout = enable ? LayoutEngine::MULTI_LINE_BOX : LayoutEngine::SINGLE_LINE_BOX;
942
943   if( layout != mImpl->mLayoutEngine.GetLayout() )
944   {
945     // Set the layout type.
946     mImpl->mLayoutEngine.SetLayout( layout );
947
948     // Set the flags to redo the layout operations
949     const OperationsMask layoutOperations =  static_cast<OperationsMask>( LAYOUT             |
950                                                                           UPDATE_ACTUAL_SIZE |
951                                                                           ALIGN              |
952                                                                           REORDER );
953
954     mImpl->mOperationsPending = static_cast<OperationsMask>( mImpl->mOperationsPending | layoutOperations );
955
956     mImpl->RequestRelayout();
957   }
958 }
959
960 bool Controller::IsMultiLineEnabled() const
961 {
962   return LayoutEngine::MULTI_LINE_BOX == mImpl->mLayoutEngine.GetLayout();
963 }
964
965 void Controller::SetHorizontalAlignment( LayoutEngine::HorizontalAlignment alignment )
966 {
967   if( alignment != mImpl->mLayoutEngine.GetHorizontalAlignment() )
968   {
969     // Set the alignment.
970     mImpl->mLayoutEngine.SetHorizontalAlignment( alignment );
971
972     // Set the flag to redo the alignment operation.
973     mImpl->mOperationsPending = static_cast<OperationsMask>( mImpl->mOperationsPending | ALIGN );
974
975     mImpl->RequestRelayout();
976   }
977 }
978
979 LayoutEngine::HorizontalAlignment Controller::GetHorizontalAlignment() const
980 {
981   return mImpl->mLayoutEngine.GetHorizontalAlignment();
982 }
983
984 void Controller::SetVerticalAlignment( LayoutEngine::VerticalAlignment alignment )
985 {
986   if( alignment != mImpl->mLayoutEngine.GetVerticalAlignment() )
987   {
988     // Set the alignment.
989     mImpl->mLayoutEngine.SetVerticalAlignment( alignment );
990
991     mImpl->mOperationsPending = static_cast<OperationsMask>( mImpl->mOperationsPending | ALIGN );
992
993     mImpl->RequestRelayout();
994   }
995 }
996
997 LayoutEngine::VerticalAlignment Controller::GetVerticalAlignment() const
998 {
999   return mImpl->mLayoutEngine.GetVerticalAlignment();
1000 }
1001
1002 void Controller::CalculateTextAlignment( const Size& size )
1003 {
1004   // Get the direction of the first character.
1005   const CharacterDirection firstParagraphDirection = mImpl->mLogicalModel->GetCharacterDirection( 0u );
1006
1007   Size actualSize = mImpl->mVisualModel->GetActualSize();
1008   if( fabsf( actualSize.height ) < Math::MACHINE_EPSILON_1000 )
1009   {
1010     // Get the line height of the default font.
1011     actualSize.height = mImpl->GetDefaultFontLineHeight();
1012   }
1013
1014   // If the first paragraph is right to left swap ALIGN_BEGIN and ALIGN_END;
1015   LayoutEngine::HorizontalAlignment horizontalAlignment = mImpl->mLayoutEngine.GetHorizontalAlignment();
1016   if( firstParagraphDirection &&
1017       ( LayoutEngine::HORIZONTAL_ALIGN_CENTER != horizontalAlignment ) )
1018   {
1019     if( LayoutEngine::HORIZONTAL_ALIGN_BEGIN == horizontalAlignment )
1020     {
1021       horizontalAlignment = LayoutEngine::HORIZONTAL_ALIGN_END;
1022     }
1023     else
1024     {
1025       horizontalAlignment = LayoutEngine::HORIZONTAL_ALIGN_BEGIN;
1026     }
1027   }
1028
1029   switch( horizontalAlignment )
1030   {
1031     case LayoutEngine::HORIZONTAL_ALIGN_BEGIN:
1032     {
1033       mImpl->mAlignmentOffset.x = 0.f;
1034       break;
1035     }
1036     case LayoutEngine::HORIZONTAL_ALIGN_CENTER:
1037     {
1038       const int intOffset = static_cast<int>( 0.5f * ( size.width - actualSize.width ) ); // try to avoid pixel alignment.
1039       mImpl->mAlignmentOffset.x = static_cast<float>( intOffset );
1040       break;
1041     }
1042     case LayoutEngine::HORIZONTAL_ALIGN_END:
1043     {
1044       mImpl->mAlignmentOffset.x = size.width - actualSize.width;
1045       break;
1046     }
1047   }
1048
1049   const LayoutEngine::VerticalAlignment verticalAlignment = mImpl->mLayoutEngine.GetVerticalAlignment();
1050   switch( verticalAlignment )
1051   {
1052     case LayoutEngine::VERTICAL_ALIGN_TOP:
1053     {
1054       mImpl->mAlignmentOffset.y = 0.f;
1055       break;
1056     }
1057     case LayoutEngine::VERTICAL_ALIGN_CENTER:
1058     {
1059       const int intOffset = static_cast<int>( 0.5f * ( size.height - actualSize.height ) ); // try to avoid pixel alignment.
1060       mImpl->mAlignmentOffset.y = static_cast<float>( intOffset );
1061       break;
1062     }
1063     case LayoutEngine::VERTICAL_ALIGN_BOTTOM:
1064     {
1065       mImpl->mAlignmentOffset.y = size.height - actualSize.height;
1066       break;
1067     }
1068   }
1069 }
1070
1071 LayoutEngine& Controller::GetLayoutEngine()
1072 {
1073   return mImpl->mLayoutEngine;
1074 }
1075
1076 View& Controller::GetView()
1077 {
1078   return mImpl->mView;
1079 }
1080
1081 void Controller::KeyboardFocusGainEvent()
1082 {
1083   DALI_ASSERT_DEBUG( mImpl->mEventData && "Unexpected KeyboardFocusGainEvent" );
1084
1085   if( mImpl->mEventData )
1086   {
1087     mImpl->ChangeState( EventData::EDITING );
1088
1089     if( mImpl->IsShowingPlaceholderText() )
1090     {
1091       // Show alternative placeholder-text when editing
1092       ShowPlaceholderText();
1093     }
1094
1095     mImpl->mEventData->mUpdateCursorPosition = true; //If editing started without tap event, cursor update must be triggered.
1096     mImpl->RequestRelayout();
1097   }
1098 }
1099
1100 void Controller::KeyboardFocusLostEvent()
1101 {
1102   DALI_ASSERT_DEBUG( mImpl->mEventData && "Unexpected KeyboardFocusLostEvent" );
1103
1104   if( mImpl->mEventData )
1105   {
1106     if ( EventData::INTERRUPTED != mImpl->mEventData->mState )
1107     {
1108       mImpl->ChangeState( EventData::INACTIVE );
1109
1110       if( mImpl->IsShowingPlaceholderText() )
1111       {
1112         // Revert to regular placeholder-text when not editing
1113         ShowPlaceholderText();
1114       }
1115     }
1116   }
1117   mImpl->RequestRelayout();
1118 }
1119
1120 bool Controller::KeyEvent( const Dali::KeyEvent& keyEvent )
1121 {
1122   DALI_ASSERT_DEBUG( mImpl->mEventData && "Unexpected KeyEvent" );
1123
1124   bool textChanged( false );
1125
1126   if( mImpl->mEventData &&
1127       keyEvent.state == KeyEvent::Down )
1128   {
1129     int keyCode = keyEvent.keyCode;
1130     const std::string& keyString = keyEvent.keyPressed;
1131
1132     // Pre-process to separate modifying events from non-modifying input events.
1133     if( Dali::DALI_KEY_ESCAPE == keyCode )
1134     {
1135       // Escape key is a special case which causes focus loss
1136       KeyboardFocusLostEvent();
1137     }
1138     else if( Dali::DALI_KEY_CURSOR_LEFT  == keyCode ||
1139              Dali::DALI_KEY_CURSOR_RIGHT == keyCode ||
1140              Dali::DALI_KEY_CURSOR_UP    == keyCode ||
1141              Dali::DALI_KEY_CURSOR_DOWN  == keyCode )
1142     {
1143       Event event( Event::CURSOR_KEY_EVENT );
1144       event.p1.mInt = keyCode;
1145       mImpl->mEventData->mEventQueue.push_back( event );
1146     }
1147     else if( Dali::DALI_KEY_BACKSPACE == keyCode )
1148     {
1149       textChanged = BackspaceKeyEvent();
1150     }
1151     else if ( IsKey( keyEvent,  Dali::DALI_KEY_POWER ) )
1152     {
1153       mImpl->ChangeState( EventData::INTERRUPTED ); // State is not INACTIVE as expect to return to edit mode.
1154       // Avoids calling the InsertText() method which can delete selected text
1155     }
1156     else if ( IsKey( keyEvent, Dali::DALI_KEY_MENU ) ||
1157               IsKey( keyEvent, Dali::DALI_KEY_HOME ) )
1158     {
1159       mImpl->ChangeState( EventData::INACTIVE );
1160       // Menu/Home key behaviour does not allow edit mode to resume like Power key
1161       // Avoids calling the InsertText() method which can delete selected text
1162     }
1163     else if( Dali::DALI_KEY_SHIFT_LEFT == keyCode )
1164     {
1165       // DALI_KEY_SHIFT_LEFT is the key code for the Left Shift. It's sent (by the imf?) when the predictive text is enabled
1166       // and a character is typed after the type of a upper case latin character.
1167
1168       // Do nothing.
1169     }
1170     else
1171     {
1172       DALI_LOG_INFO( gLogFilter, Debug::Verbose, "Controller::KeyEvent %p keyString %s\n", this, keyString.c_str() );
1173
1174       // IMF manager is no longer handling key-events
1175       mImpl->ClearPreEditFlag();
1176
1177       InsertText( keyString, COMMIT );
1178       textChanged = true;
1179     }
1180
1181     if ( mImpl->mEventData->mState != EventData::INTERRUPTED &&  mImpl->mEventData->mState != EventData::INACTIVE )
1182     {
1183       mImpl->ChangeState( EventData::EDITING );
1184     }
1185
1186     mImpl->RequestRelayout();
1187   }
1188
1189   if( textChanged )
1190   {
1191     // Do this last since it provides callbacks into application code
1192     mImpl->mControlInterface.TextChanged();
1193   }
1194
1195   return false;
1196 }
1197
1198 void Controller::InsertText( const std::string& text, Controller::InsertType type )
1199 {
1200   bool removedPrevious( false );
1201   bool maxLengthReached( false );
1202
1203   DALI_ASSERT_DEBUG( NULL != mImpl->mEventData && "Unexpected InsertText" )
1204   DALI_LOG_INFO( gLogFilter, Debug::Verbose, "Controller::InsertText %p %s (%s) mPrimaryCursorPosition %d mPreEditFlag %d mPreEditStartPosition %d mPreEditLength %d\n",
1205                  this, text.c_str(), (COMMIT == type ? "COMMIT" : "PRE_EDIT"),
1206                  mImpl->mEventData->mPrimaryCursorPosition, mImpl->mEventData->mPreEditFlag, mImpl->mEventData->mPreEditStartPosition, mImpl->mEventData->mPreEditLength );
1207
1208   // TODO: At the moment the underline runs are only for pre-edit.
1209   mImpl->mVisualModel->mUnderlineRuns.Clear();
1210
1211   Vector<Character> utf32Characters;
1212   Length characterCount( 0u );
1213
1214   // Remove the previous IMF pre-edit (predicitive text)
1215   if( mImpl->mEventData &&
1216       mImpl->mEventData->mPreEditFlag &&
1217       0 != mImpl->mEventData->mPreEditLength )
1218   {
1219     CharacterIndex offset = mImpl->mEventData->mPrimaryCursorPosition - mImpl->mEventData->mPreEditStartPosition;
1220     removedPrevious = RemoveText( -static_cast<int>(offset), mImpl->mEventData->mPreEditLength );
1221
1222     mImpl->mEventData->mPrimaryCursorPosition = mImpl->mEventData->mPreEditStartPosition;
1223     mImpl->mEventData->mPreEditLength = 0;
1224   }
1225   else
1226   {
1227     // Remove the previous Selection
1228     removedPrevious = RemoveSelectedText();
1229   }
1230
1231   if( ! text.empty() )
1232   {
1233     //  Convert text into UTF-32
1234     utf32Characters.Resize( text.size() );
1235
1236     // This is a bit horrible but std::string returns a (signed) char*
1237     const uint8_t* utf8 = reinterpret_cast<const uint8_t*>( text.c_str() );
1238
1239     // Transform a text array encoded in utf8 into an array encoded in utf32.
1240     // It returns the actual number of characters.
1241     characterCount = Utf8ToUtf32( utf8, text.size(), utf32Characters.Begin() );
1242     utf32Characters.Resize( characterCount );
1243
1244     DALI_ASSERT_DEBUG( text.size() >= utf32Characters.Count() && "Invalid UTF32 conversion length" );
1245     DALI_LOG_INFO( gLogFilter, Debug::Verbose, "UTF8 size %d, UTF32 size %d\n", text.size(), utf32Characters.Count() );
1246   }
1247
1248   if( 0u != utf32Characters.Count() ) // Check if Utf8ToUtf32 conversion succeeded
1249   {
1250     // The placeholder text is no longer needed
1251     if( mImpl->IsShowingPlaceholderText() )
1252     {
1253       ResetText();
1254     }
1255
1256     mImpl->ChangeState( EventData::EDITING );
1257
1258     // Handle the IMF (predicitive text) state changes
1259     if( mImpl->mEventData )
1260     {
1261       if( COMMIT == type )
1262       {
1263         // IMF manager is no longer handling key-events
1264         mImpl->ClearPreEditFlag();
1265       }
1266       else // PRE_EDIT
1267       {
1268         if( !mImpl->mEventData->mPreEditFlag )
1269         {
1270           DALI_LOG_INFO( gLogFilter, Debug::Verbose, "Entered PreEdit state" );
1271
1272           // Record the start of the pre-edit text
1273           mImpl->mEventData->mPreEditStartPosition = mImpl->mEventData->mPrimaryCursorPosition;
1274         }
1275
1276         mImpl->mEventData->mPreEditLength = utf32Characters.Count();
1277         mImpl->mEventData->mPreEditFlag = true;
1278
1279         // Add the underline for the pre-edit text.
1280         const GlyphIndex* const charactersToGlyphBuffer = mImpl->mVisualModel->mCharactersToGlyph.Begin();
1281         const Length* const glyphsPerCharacterBuffer = mImpl->mVisualModel->mGlyphsPerCharacter.Begin();
1282
1283         const GlyphIndex glyphStart = *( charactersToGlyphBuffer + mImpl->mEventData->mPreEditStartPosition );
1284         const CharacterIndex lastPreEditCharacter = mImpl->mEventData->mPreEditStartPosition + ( ( mImpl->mEventData->mPreEditLength > 0u ) ? mImpl->mEventData->mPreEditLength - 1u : 0u );
1285         const Length numberOfGlyphsLastCharacter = *( glyphsPerCharacterBuffer + lastPreEditCharacter );
1286         const GlyphIndex glyphEnd = *( charactersToGlyphBuffer + lastPreEditCharacter ) + ( numberOfGlyphsLastCharacter > 1u ? numberOfGlyphsLastCharacter - 1u : 0u );
1287
1288         GlyphRun underlineRun;
1289         underlineRun.glyphIndex = glyphStart;
1290         underlineRun.numberOfGlyphs = 1u + glyphEnd - glyphStart;
1291
1292         // TODO: At the moment the underline runs are only for pre-edit.
1293         mImpl->mVisualModel->mUnderlineRuns.PushBack( underlineRun );
1294
1295         DALI_LOG_INFO( gLogFilter, Debug::Verbose, "mPreEditStartPosition %d mPreEditLength %d\n", mImpl->mEventData->mPreEditStartPosition, mImpl->mEventData->mPreEditLength );
1296       }
1297     }
1298
1299     const Length numberOfCharactersInModel = mImpl->mLogicalModel->mText.Count();
1300
1301     // Restrict new text to fit within Maximum characters setting
1302     Length maxSizeOfNewText = std::min ( ( mImpl->mMaximumNumberOfCharacters - numberOfCharactersInModel ), characterCount );
1303     maxLengthReached = ( characterCount > maxSizeOfNewText );
1304
1305     // Insert at current cursor position
1306     CharacterIndex& cursorIndex = mImpl->mEventData->mPrimaryCursorPosition;
1307
1308     Vector<Character>& modifyText = mImpl->mLogicalModel->mText;
1309
1310     if( cursorIndex < numberOfCharactersInModel )
1311     {
1312       modifyText.Insert( modifyText.Begin() + cursorIndex, utf32Characters.Begin(), utf32Characters.Begin() + maxSizeOfNewText );
1313     }
1314     else
1315     {
1316       modifyText.Insert( modifyText.End(), utf32Characters.Begin(), utf32Characters.Begin() + maxSizeOfNewText );
1317     }
1318
1319     cursorIndex += maxSizeOfNewText;
1320
1321     DALI_LOG_INFO( gLogFilter, Debug::Verbose, "Inserted %d characters, new size %d new cursor %d\n", maxSizeOfNewText, mImpl->mLogicalModel->mText.Count(), mImpl->mEventData->mPrimaryCursorPosition );
1322   }
1323
1324   if( 0u == mImpl->mLogicalModel->mText.Count() &&
1325       mImpl->IsPlaceholderAvailable() )
1326   {
1327     // Show place-holder if empty after removing the pre-edit text
1328     ShowPlaceholderText();
1329     mImpl->mEventData->mUpdateCursorPosition = true;
1330     mImpl->ClearPreEditFlag();
1331   }
1332   else if( removedPrevious ||
1333            0 != utf32Characters.Count() )
1334   {
1335     // Queue an inserted event
1336     mImpl->QueueModifyEvent( ModifyEvent::TEXT_INSERTED );
1337   }
1338
1339   if( maxLengthReached )
1340   {
1341     DALI_LOG_INFO( gLogFilter, Debug::Verbose, "MaxLengthReached (%d)\n", mImpl->mLogicalModel->mText.Count() );
1342
1343     mImpl->ResetImfManager();
1344
1345     // Do this last since it provides callbacks into application code
1346     mImpl->mControlInterface.MaxLengthReached();
1347   }
1348 }
1349
1350 bool Controller::RemoveSelectedText()
1351 {
1352   bool textRemoved( false );
1353
1354   if ( EventData::SELECTING         == mImpl->mEventData->mState ||
1355        EventData::SELECTION_CHANGED == mImpl->mEventData->mState )
1356   {
1357     std::string removedString;
1358     mImpl->RetrieveSelection( removedString, true );
1359
1360     if( !removedString.empty() )
1361     {
1362       textRemoved = true;
1363       mImpl->ChangeState( EventData::EDITING );
1364     }
1365   }
1366
1367   return textRemoved;
1368 }
1369
1370 void Controller::TapEvent( unsigned int tapCount, float x, float y )
1371 {
1372   DALI_ASSERT_DEBUG( mImpl->mEventData && "Unexpected TapEvent" );
1373
1374   if( NULL != mImpl->mEventData )
1375   {
1376     const bool isShowingPlaceholderText = mImpl->IsShowingPlaceholderText();
1377     if( 1u == tapCount )
1378     {
1379       if( !isShowingPlaceholderText &&
1380           ( EventData::EDITING == mImpl->mEventData->mState ) )
1381       {
1382         mImpl->ChangeState( EventData::EDITING_WITH_GRAB_HANDLE );
1383       }
1384       else if( EventData::EDITING_WITH_GRAB_HANDLE != mImpl->mEventData->mState  )
1385       {
1386         // Handles & cursors must be repositioned after Relayout() i.e. after the Model has been updated
1387         mImpl->ChangeState( EventData::EDITING );
1388       }
1389
1390       Event event( Event::TAP_EVENT );
1391       event.p1.mUint = tapCount;
1392       event.p2.mFloat = x;
1393       event.p3.mFloat = y;
1394       mImpl->mEventData->mEventQueue.push_back( event );
1395
1396       mImpl->RequestRelayout();
1397     }
1398     else if( !isShowingPlaceholderText &&
1399              mImpl->mEventData->mSelectionEnabled &&
1400              ( 2u == tapCount ) )
1401     {
1402       SelectEvent( x, y, false );
1403     }
1404   }
1405
1406   // Reset keyboard as tap event has occurred.
1407   mImpl->ResetImfManager();
1408 }
1409
1410 void Controller::PanEvent( Gesture::State state, const Vector2& displacement )
1411 {
1412   DALI_ASSERT_DEBUG( mImpl->mEventData && "Unexpected PanEvent" );
1413
1414   if( mImpl->mEventData )
1415   {
1416     Event event( Event::PAN_EVENT );
1417     event.p1.mInt = state;
1418     event.p2.mFloat = displacement.x;
1419     event.p3.mFloat = displacement.y;
1420     mImpl->mEventData->mEventQueue.push_back( event );
1421
1422     mImpl->RequestRelayout();
1423   }
1424 }
1425
1426 void Controller::LongPressEvent( Gesture::State state, float x, float y  )
1427 {
1428   DALI_ASSERT_DEBUG( mImpl->mEventData && "Unexpected PanEvent" );
1429
1430   if  ( mImpl->IsShowingPlaceholderText() || mImpl->mLogicalModel->mText.Count() == 0u )
1431   {
1432     if ( mImpl->mEventData )
1433     {
1434       Event event( Event::LONG_PRESS_EVENT );
1435       event.p1.mInt = state;
1436       mImpl->mEventData->mEventQueue.push_back( event );
1437       mImpl->RequestRelayout();
1438     }
1439   }
1440   else if( mImpl->mEventData )
1441   {
1442     SelectEvent( x, y, false );
1443   }
1444 }
1445
1446 void Controller::SelectEvent( float x, float y, bool selectAll )
1447 {
1448   if( mImpl->mEventData )
1449   {
1450     if ( mImpl->mEventData->mState == EventData::SELECTING )
1451     {
1452       mImpl->ChangeState( EventData::SELECTION_CHANGED );
1453     }
1454     else
1455     {
1456       mImpl->ChangeState( EventData::SELECTING );
1457     }
1458
1459     if( selectAll )
1460     {
1461       Event event( Event::SELECT_ALL );
1462       mImpl->mEventData->mEventQueue.push_back( event );
1463     }
1464     else
1465     {
1466       Event event( Event::SELECT );
1467       event.p2.mFloat = x;
1468       event.p3.mFloat = y;
1469       mImpl->mEventData->mEventQueue.push_back( event );
1470     }
1471
1472     mImpl->RequestRelayout();
1473   }
1474 }
1475
1476 void Controller::GetTargetSize( Vector2& targetSize )
1477 {
1478   targetSize = mImpl->mVisualModel->mControlSize;
1479 }
1480
1481 void Controller::AddDecoration( Actor& actor, bool needsClipping )
1482 {
1483   mImpl->mControlInterface.AddDecoration( actor, needsClipping );
1484 }
1485
1486 void Controller::DecorationEvent( HandleType handleType, HandleState state, float x, float y )
1487 {
1488   DALI_ASSERT_DEBUG( mImpl->mEventData && "Unexpected DecorationEvent" );
1489
1490   if( mImpl->mEventData )
1491   {
1492     switch( handleType )
1493     {
1494       case GRAB_HANDLE:
1495       {
1496         Event event( Event::GRAB_HANDLE_EVENT );
1497         event.p1.mUint  = state;
1498         event.p2.mFloat = x;
1499         event.p3.mFloat = y;
1500
1501         mImpl->mEventData->mEventQueue.push_back( event );
1502         break;
1503       }
1504       case LEFT_SELECTION_HANDLE:
1505       {
1506         Event event( Event::LEFT_SELECTION_HANDLE_EVENT );
1507         event.p1.mUint  = state;
1508         event.p2.mFloat = x;
1509         event.p3.mFloat = y;
1510
1511         mImpl->mEventData->mEventQueue.push_back( event );
1512         break;
1513       }
1514       case RIGHT_SELECTION_HANDLE:
1515       {
1516         Event event( Event::RIGHT_SELECTION_HANDLE_EVENT );
1517         event.p1.mUint  = state;
1518         event.p2.mFloat = x;
1519         event.p3.mFloat = y;
1520
1521         mImpl->mEventData->mEventQueue.push_back( event );
1522         break;
1523       }
1524       case LEFT_SELECTION_HANDLE_MARKER:
1525       case RIGHT_SELECTION_HANDLE_MARKER:
1526       {
1527         // Markers do not move the handles.
1528         break;
1529       }
1530       case HANDLE_TYPE_COUNT:
1531       {
1532         DALI_ASSERT_DEBUG( !"Controller::HandleEvent. Unexpected handle type" );
1533       }
1534     }
1535
1536     mImpl->RequestRelayout();
1537   }
1538 }
1539
1540 void Controller::PasteText( const std::string& stringToPaste )
1541 {
1542   InsertText( stringToPaste, Text::Controller::COMMIT );
1543   mImpl->ChangeState( EventData::EDITING );
1544   mImpl->RequestRelayout();
1545 }
1546
1547 void Controller::PasteClipboardItemEvent()
1548 {
1549   ClipboardEventNotifier notifier( ClipboardEventNotifier::Get() );
1550   std::string stringToPaste( notifier.GetContent() );
1551   PasteText( stringToPaste );
1552 }
1553
1554 void Controller::TextPopupButtonTouched( Dali::Toolkit::TextSelectionPopup::Buttons button )
1555 {
1556   if( NULL == mImpl->mEventData )
1557   {
1558     return;
1559   }
1560
1561   switch( button )
1562   {
1563     case Toolkit::TextSelectionPopup::CUT:
1564     {
1565       mImpl->SendSelectionToClipboard( true ); // Synchronous call to modify text
1566       mImpl->mOperationsPending = ALL_OPERATIONS;
1567       if( 0u != mImpl->mLogicalModel->mText.Count() ||
1568           !mImpl->IsPlaceholderAvailable() )
1569       {
1570         mImpl->QueueModifyEvent( ModifyEvent::TEXT_DELETED );
1571       }
1572       else
1573       {
1574         ShowPlaceholderText();
1575         mImpl->mEventData->mUpdateCursorPosition = true;
1576       }
1577       mImpl->RequestRelayout();
1578       mImpl->mControlInterface.TextChanged();
1579       break;
1580     }
1581     case Toolkit::TextSelectionPopup::COPY:
1582     {
1583       mImpl->SendSelectionToClipboard( false ); // Text not modified
1584       mImpl->RequestRelayout(); // Handles, Selection Highlight, Popup
1585       break;
1586     }
1587     case Toolkit::TextSelectionPopup::PASTE:
1588     {
1589       std::string stringToPaste("");
1590       mImpl->GetTextFromClipboard( 0, stringToPaste ); // Paste latest item from system clipboard
1591       PasteText( stringToPaste );
1592       break;
1593     }
1594     case Toolkit::TextSelectionPopup::SELECT:
1595     {
1596       const Vector2& currentCursorPosition = mImpl->mEventData->mDecorator->GetPosition( PRIMARY_CURSOR );
1597
1598       if( mImpl->mEventData->mSelectionEnabled  )
1599       {
1600         // Creates a SELECT event.
1601         SelectEvent( currentCursorPosition.x, currentCursorPosition.y, false );
1602       }
1603       break;
1604     }
1605     case Toolkit::TextSelectionPopup::SELECT_ALL:
1606     {
1607       // Creates a SELECT_ALL event
1608       SelectEvent( 0.f, 0.f, true );
1609       break;
1610     }
1611     case Toolkit::TextSelectionPopup::CLIPBOARD:
1612     {
1613       mImpl->ShowClipboard();
1614       break;
1615     }
1616     case Toolkit::TextSelectionPopup::NONE:
1617     {
1618       // Nothing to do.
1619       break;
1620     }
1621   }
1622 }
1623
1624 ImfManager::ImfCallbackData Controller::OnImfEvent( ImfManager& imfManager, const ImfManager::ImfEventData& imfEvent )
1625 {
1626   bool update( false );
1627   bool requestRelayout = false;
1628
1629   std::string text;
1630   unsigned int cursorPosition( 0 );
1631
1632   switch ( imfEvent.eventName )
1633   {
1634     case ImfManager::COMMIT:
1635     {
1636       InsertText( imfEvent.predictiveString, Text::Controller::COMMIT );
1637       requestRelayout = true;
1638       break;
1639     }
1640     case ImfManager::PREEDIT:
1641     {
1642       InsertText( imfEvent.predictiveString, Text::Controller::PRE_EDIT );
1643       update = true;
1644       requestRelayout = true;
1645       break;
1646     }
1647     case ImfManager::DELETESURROUNDING:
1648     {
1649       RemoveText( imfEvent.cursorOffset, imfEvent.numberOfChars );
1650       requestRelayout = true;
1651       break;
1652     }
1653     case ImfManager::GETSURROUNDING:
1654     {
1655       GetText( text );
1656       cursorPosition = GetLogicalCursorPosition();
1657
1658       imfManager.SetSurroundingText( text );
1659       imfManager.SetCursorPosition( cursorPosition );
1660       break;
1661     }
1662     case ImfManager::VOID:
1663     {
1664       // do nothing
1665       break;
1666     }
1667   } // end switch
1668
1669   if( ImfManager::GETSURROUNDING != imfEvent.eventName )
1670   {
1671     GetText( text );
1672     cursorPosition = GetLogicalCursorPosition();
1673   }
1674
1675   if( requestRelayout )
1676   {
1677     mImpl->mOperationsPending = ALL_OPERATIONS;
1678     mImpl->RequestRelayout();
1679
1680     // Do this last since it provides callbacks into application code
1681     mImpl->mControlInterface.TextChanged();
1682   }
1683
1684   ImfManager::ImfCallbackData callbackData( update, cursorPosition, text, false );
1685
1686   return callbackData;
1687 }
1688
1689 Controller::~Controller()
1690 {
1691   delete mImpl;
1692 }
1693
1694 bool Controller::BackspaceKeyEvent()
1695 {
1696   DALI_LOG_INFO( gLogFilter, Debug::Verbose, "Controller::KeyEvent %p DALI_KEY_BACKSPACE\n", this );
1697
1698   // IMF manager is no longer handling key-events
1699   mImpl->ClearPreEditFlag();
1700
1701   bool removed( false );
1702
1703   if ( EventData::SELECTING         == mImpl->mEventData->mState ||
1704        EventData::SELECTION_CHANGED == mImpl->mEventData->mState )
1705   {
1706     removed = RemoveSelectedText();
1707   }
1708   else if( mImpl->mEventData->mPrimaryCursorPosition > 0 )
1709   {
1710     // Remove the character before the current cursor position
1711     removed = RemoveText( -1, 1 );
1712   }
1713
1714   if( removed )
1715   {
1716     if( 0u != mImpl->mLogicalModel->mText.Count() ||
1717         !mImpl->IsPlaceholderAvailable() )
1718     {
1719       mImpl->QueueModifyEvent( ModifyEvent::TEXT_DELETED );
1720     }
1721     else
1722     {
1723       ShowPlaceholderText();
1724       mImpl->mEventData->mUpdateCursorPosition = true;
1725     }
1726   }
1727
1728   return removed;
1729 }
1730
1731 void Controller::ShowPlaceholderText()
1732 {
1733   if( mImpl->IsPlaceholderAvailable() )
1734   {
1735     DALI_ASSERT_DEBUG( mImpl->mEventData && "No placeholder text available" );
1736
1737     mImpl->mEventData->mIsShowingPlaceholderText = true;
1738
1739     // Disable handles when showing place-holder text
1740     mImpl->mEventData->mDecorator->SetHandleActive( GRAB_HANDLE, false );
1741     mImpl->mEventData->mDecorator->SetHandleActive( LEFT_SELECTION_HANDLE, false );
1742     mImpl->mEventData->mDecorator->SetHandleActive( RIGHT_SELECTION_HANDLE, false );
1743
1744     const char* text( NULL );
1745     size_t size( 0 );
1746
1747     // TODO - Switch placeholder text styles when changing state
1748     if( EventData::INACTIVE != mImpl->mEventData->mState &&
1749         0u != mImpl->mEventData->mPlaceholderTextActive.c_str() )
1750     {
1751       text = mImpl->mEventData->mPlaceholderTextActive.c_str();
1752       size = mImpl->mEventData->mPlaceholderTextActive.size();
1753     }
1754     else
1755     {
1756       text = mImpl->mEventData->mPlaceholderTextInactive.c_str();
1757       size = mImpl->mEventData->mPlaceholderTextInactive.size();
1758     }
1759
1760     // Reset model for showing placeholder.
1761     mImpl->mLogicalModel->mText.Clear();
1762     ClearModelData();
1763     mImpl->mVisualModel->SetTextColor( mImpl->mEventData->mPlaceholderTextColor );
1764
1765     // Convert text into UTF-32
1766     Vector<Character>& utf32Characters = mImpl->mLogicalModel->mText;
1767     utf32Characters.Resize( size );
1768
1769     // This is a bit horrible but std::string returns a (signed) char*
1770     const uint8_t* utf8 = reinterpret_cast<const uint8_t*>( text );
1771
1772     // Transform a text array encoded in utf8 into an array encoded in utf32.
1773     // It returns the actual number of characters.
1774     Length characterCount = Utf8ToUtf32( utf8, size, utf32Characters.Begin() );
1775     utf32Characters.Resize( characterCount );
1776
1777     // Reset the cursor position
1778     mImpl->mEventData->mPrimaryCursorPosition = 0;
1779
1780     // The natural size needs to be re-calculated.
1781     mImpl->mRecalculateNaturalSize = true;
1782
1783     // Apply modifications to the model
1784     mImpl->mOperationsPending = ALL_OPERATIONS;
1785
1786     // Update the rest of the model during size negotiation
1787     mImpl->QueueModifyEvent( ModifyEvent::TEXT_REPLACED );
1788   }
1789 }
1790
1791 void Controller::ClearModelData()
1792 {
1793   // n.b. This does not Clear the mText from mLogicalModel
1794   mImpl->mLogicalModel->mScriptRuns.Clear();
1795   mImpl->mLogicalModel->mFontRuns.Clear();
1796   mImpl->mLogicalModel->mLineBreakInfo.Clear();
1797   mImpl->mLogicalModel->mWordBreakInfo.Clear();
1798   mImpl->mLogicalModel->mBidirectionalParagraphInfo.Clear();
1799   mImpl->mLogicalModel->mCharacterDirections.Clear();
1800   mImpl->mLogicalModel->mBidirectionalLineInfo.Clear();
1801   mImpl->mLogicalModel->mLogicalToVisualMap.Clear();
1802   mImpl->mLogicalModel->mVisualToLogicalMap.Clear();
1803   mImpl->mVisualModel->mGlyphs.Clear();
1804   mImpl->mVisualModel->mGlyphsToCharacters.Clear();
1805   mImpl->mVisualModel->mCharactersToGlyph.Clear();
1806   mImpl->mVisualModel->mCharactersPerGlyph.Clear();
1807   mImpl->mVisualModel->mGlyphsPerCharacter.Clear();
1808   mImpl->mVisualModel->mGlyphPositions.Clear();
1809   mImpl->mVisualModel->mLines.Clear();
1810   mImpl->mVisualModel->ClearCaches();
1811 }
1812
1813 void Controller::ClearFontData()
1814 {
1815   mImpl->mFontDefaults->mFontId = 0u; // Remove old font ID
1816   mImpl->mLogicalModel->mFontRuns.Clear();
1817   mImpl->mVisualModel->mGlyphs.Clear();
1818   mImpl->mVisualModel->mGlyphsToCharacters.Clear();
1819   mImpl->mVisualModel->mCharactersToGlyph.Clear();
1820   mImpl->mVisualModel->mCharactersPerGlyph.Clear();
1821   mImpl->mVisualModel->mGlyphsPerCharacter.Clear();
1822   mImpl->mVisualModel->mGlyphPositions.Clear();
1823   mImpl->mVisualModel->mLines.Clear();
1824   mImpl->mVisualModel->ClearCaches();
1825 }
1826
1827 Controller::Controller( ControlInterface& controlInterface )
1828 : mImpl( NULL )
1829 {
1830   mImpl = new Controller::Impl( controlInterface );
1831 }
1832
1833 } // namespace Text
1834
1835 } // namespace Toolkit
1836
1837 } // namespace Dali