[Tizen]Add ClearFocusOnEscape to config section.
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / internal / text / text-controller-impl.h
1 #ifndef DALI_TOOLKIT_TEXT_CONTROLLER_IMPL_H
2 #define DALI_TOOLKIT_TEXT_CONTROLLER_IMPL_H
3
4 /*
5  * Copyright (c) 2017 Samsung Electronics Co., Ltd.
6  *
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  * http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  *
19  */
20
21 // EXTERNAL INCLUDES
22 #include <dali/devel-api/adaptor-framework/clipboard.h>
23 #include <dali/devel-api/text-abstraction/font-client.h>
24
25 // INTERNAL INCLUDES
26 #include <dali-toolkit/internal/text/input-style.h>
27 #include <dali-toolkit/internal/text/text-controller.h>
28 #include <dali-toolkit/internal/text/text-model.h>
29 #include <dali-toolkit/internal/text/text-view.h>
30 #include <dali-toolkit/public-api/styling/style-manager.h>
31 #include <dali-toolkit/devel-api/styling/style-manager-devel.h>
32
33 namespace Dali
34 {
35
36 namespace Toolkit
37 {
38
39 namespace Text
40 {
41
42 //Forward declarations
43 struct CursorInfo;
44 struct FontDefaults;
45
46 struct Event
47 {
48   // Used to queue input events until DoRelayout()
49   enum Type
50   {
51     CURSOR_KEY_EVENT,
52     TAP_EVENT,
53     PAN_EVENT,
54     LONG_PRESS_EVENT,
55     GRAB_HANDLE_EVENT,
56     LEFT_SELECTION_HANDLE_EVENT,
57     RIGHT_SELECTION_HANDLE_EVENT,
58     SELECT,
59     SELECT_ALL
60   };
61
62   union Param
63   {
64     int mInt;
65     unsigned int mUint;
66     float mFloat;
67   };
68
69   Event( Type eventType )
70   : type( eventType )
71   {
72     p1.mInt = 0;
73     p2.mInt = 0;
74     p3.mInt = 0;
75   }
76
77   Type type;
78   Param p1;
79   Param p2;
80   Param p3;
81 };
82
83 struct EventData
84 {
85   enum State
86   {
87     INACTIVE,
88     INTERRUPTED,
89     SELECTING,
90     EDITING,
91     EDITING_WITH_POPUP,
92     EDITING_WITH_GRAB_HANDLE,
93     EDITING_WITH_PASTE_POPUP,
94     GRAB_HANDLE_PANNING,
95     SELECTION_HANDLE_PANNING,
96     TEXT_PANNING
97   };
98
99   EventData( DecoratorPtr decorator );
100
101   ~EventData();
102
103   static bool IsEditingState( State stateToCheck )
104   {
105     return ( stateToCheck == EDITING || stateToCheck == EDITING_WITH_POPUP || stateToCheck == EDITING_WITH_GRAB_HANDLE || stateToCheck == EDITING_WITH_PASTE_POPUP );
106   }
107
108   DecoratorPtr       mDecorator;               ///< Pointer to the decorator.
109   ImfManager         mImfManager;              ///< The Input Method Framework Manager.
110   FontDefaults*      mPlaceholderFont;         ///< The placeholder default font.
111   std::string        mPlaceholderTextActive;   ///< The text to display when the TextField is empty with key-input focus.
112   std::string        mPlaceholderTextInactive; ///< The text to display when the TextField is empty and inactive.
113   Vector4            mPlaceholderTextColor;    ///< The in/active placeholder text color.
114
115   /**
116    * This is used to delay handling events until after the model has been updated.
117    * The number of updates to the model is minimized to improve performance.
118    */
119   std::vector<Event> mEventQueue;              ///< The queue of touch events etc.
120
121   Vector<InputStyle::Mask> mInputStyleChangedQueue; ///< Queue of changes in the input style. Used to emit the signal in the iddle callback.
122
123   InputStyle         mInputStyle;              ///< The style to be set to the new inputed text.
124
125   State              mPreviousState;           ///< Stores the current state before it's updated with the new one.
126   State              mState;                   ///< Selection mode, edit mode etc.
127
128   CharacterIndex     mPrimaryCursorPosition;   ///< Index into logical model for primary cursor.
129   CharacterIndex     mLeftSelectionPosition;   ///< Index into logical model for left selection handle.
130   CharacterIndex     mRightSelectionPosition;  ///< Index into logical model for right selection handle.
131
132   CharacterIndex     mPreEditStartPosition;    ///< Used to remove the pre-edit text if necessary.
133   Length             mPreEditLength;           ///< Used to remove the pre-edit text if necessary.
134
135   float              mCursorHookPositionX;     ///< Used to move the cursor with the keys or when scrolling the text vertically with the handles.
136
137   Controller::NoTextTap::Action mDoubleTapAction; ///< Action to be done when there is a double tap on top of 'no text'
138   Controller::NoTextTap::Action mLongPressAction; ///< Action to be done when there is a long press on top of 'no text'
139
140   bool mIsShowingPlaceholderText        : 1;   ///< True if the place-holder text is being displayed.
141   bool mPreEditFlag                     : 1;   ///< True if the model contains text in pre-edit state.
142   bool mDecoratorUpdated                : 1;   ///< True if the decorator was updated during event processing.
143   bool mCursorBlinkEnabled              : 1;   ///< True if cursor should blink when active.
144   bool mGrabHandleEnabled               : 1;   ///< True if grab handle is enabled.
145   bool mGrabHandlePopupEnabled          : 1;   ///< True if the grab handle popu-up should be shown.
146   bool mSelectionEnabled                : 1;   ///< True if selection handles, highlight etc. are enabled.
147   bool mUpdateCursorHookPosition        : 1;   ///< True if the cursor hook position must be updated. Used to move the cursor with the keys 'up' and 'down'.
148   bool mUpdateCursorPosition            : 1;   ///< True if the visual position of the cursor must be recalculated.
149   bool mUpdateGrabHandlePosition        : 1;   ///< True if the visual position of the grab handle must be recalculated.
150   bool mUpdateLeftSelectionPosition     : 1;   ///< True if the visual position of the left selection handle must be recalculated.
151   bool mUpdateRightSelectionPosition    : 1;   ///< True if the visual position of the right selection handle must be recalculated.
152   bool mIsLeftHandleSelected            : 1;   ///< Whether is the left handle the one which is selected.
153   bool mIsRightHandleSelected           : 1;   ///< Whether is the right handle the one which is selected.
154   bool mUpdateHighlightBox              : 1;   ///< True if the text selection high light box must be updated.
155   bool mScrollAfterUpdatePosition       : 1;   ///< Whether to scroll after the cursor position is updated.
156   bool mScrollAfterDelete               : 1;   ///< Whether to scroll after delete characters.
157   bool mAllTextSelected                 : 1;   ///< True if the selection handles are selecting all the text.
158   bool mUpdateInputStyle                : 1;   ///< Whether to update the input style after moving the cursor.
159   bool mPasswordInput                   : 1;   ///< True if password input is enabled.
160   bool mCheckScrollAmount               : 1;   ///< Whether to check scrolled amount after updating the position
161   bool mIsPlaceholderPixelSize          : 1;   ///< True if the placeholder font size is set as pixel size.
162 };
163
164 struct ModifyEvent
165 {
166   enum Type
167   {
168     TEXT_REPLACED,    ///< The entire text was replaced
169     TEXT_INSERTED,    ///< Insert characters at the current cursor position
170     TEXT_DELETED      ///< Characters were deleted
171   };
172
173   Type type;
174 };
175
176 struct FontDefaults
177 {
178   FontDefaults()
179   : mFontDescription(),
180     mDefaultPointSize( 0.f ),
181     mFontId( 0u ),
182     familyDefined( false ),
183     weightDefined( false ),
184     widthDefined( false ),
185     slantDefined( false ),
186     sizeDefined( false )
187   {
188     // Initially use the default platform font
189     TextAbstraction::FontClient fontClient = TextAbstraction::FontClient::Get();
190     fontClient.GetDefaultPlatformFontDescription( mFontDescription );
191   }
192
193   FontId GetFontId( TextAbstraction::FontClient& fontClient )
194   {
195     if( !mFontId )
196     {
197       const PointSize26Dot6 pointSize = static_cast<PointSize26Dot6>( mDefaultPointSize * 64.f );
198       mFontId = fontClient.GetFontId( mFontDescription, pointSize );
199     }
200
201     return mFontId;
202   }
203
204   TextAbstraction::FontDescription mFontDescription;  ///< The default font's description.
205   float                            mDefaultPointSize; ///< The default font's point size.
206   FontId                           mFontId;           ///< The font's id of the default font.
207   bool familyDefined:1; ///< Whether the default font's family name is defined.
208   bool weightDefined:1; ///< Whether the default font's weight is defined.
209   bool  widthDefined:1; ///< Whether the default font's width is defined.
210   bool  slantDefined:1; ///< Whether the default font's slant is defined.
211   bool   sizeDefined:1; ///< Whether the default font's point size is defined.
212 };
213
214 /**
215  * @brief Stores indices used to update the text.
216  * Stores the character index where the text is updated and the number of characters removed and added.
217  * Stores as well indices to the first and the last paragraphs to be updated.
218  */
219 struct TextUpdateInfo
220 {
221   TextUpdateInfo()
222   : mCharacterIndex( 0u ),
223     mNumberOfCharactersToRemove( 0u ),
224     mNumberOfCharactersToAdd( 0u ),
225     mPreviousNumberOfCharacters( 0u ),
226     mParagraphCharacterIndex( 0u ),
227     mRequestedNumberOfCharacters( 0u ),
228     mStartGlyphIndex( 0u ),
229     mStartLineIndex( 0u ),
230     mEstimatedNumberOfLines( 0u ),
231     mClearAll( true ),
232     mFullRelayoutNeeded( true ),
233     mIsLastCharacterNewParagraph( false )
234   {}
235
236   ~TextUpdateInfo()
237   {}
238
239   CharacterIndex    mCharacterIndex;                ///< Index to the first character to be updated.
240   Length            mNumberOfCharactersToRemove;    ///< The number of characters to be removed.
241   Length            mNumberOfCharactersToAdd;       ///< The number of characters to be added.
242   Length            mPreviousNumberOfCharacters;    ///< The number of characters before the text update.
243
244   CharacterIndex    mParagraphCharacterIndex;       ///< Index of the first character of the first paragraph to be updated.
245   Length            mRequestedNumberOfCharacters;   ///< The requested number of characters.
246   GlyphIndex        mStartGlyphIndex;
247   LineIndex         mStartLineIndex;
248   Length            mEstimatedNumberOfLines;         ///< The estimated number of lines. Used to avoid reallocations when layouting.
249
250   bool              mClearAll:1;                    ///< Whether the whole text is cleared. i.e. when the text is reset.
251   bool              mFullRelayoutNeeded:1;          ///< Whether a full re-layout is needed. i.e. when a new size is set to the text control.
252   bool              mIsLastCharacterNewParagraph:1; ///< Whether the last character is a new paragraph character.
253
254   void Clear()
255   {
256     // Clear all info except the mPreviousNumberOfCharacters member.
257     mCharacterIndex = static_cast<CharacterIndex>( -1 );
258     mNumberOfCharactersToRemove = 0u;
259     mNumberOfCharactersToAdd = 0u;
260     mParagraphCharacterIndex = 0u;
261     mRequestedNumberOfCharacters = 0u;
262     mStartGlyphIndex = 0u;
263     mStartLineIndex = 0u;
264     mEstimatedNumberOfLines = 0u;
265     mClearAll = false;
266     mFullRelayoutNeeded = false;
267     mIsLastCharacterNewParagraph = false;
268   }
269 };
270
271 struct UnderlineDefaults
272 {
273   std::string properties;
274   // TODO: complete with underline parameters.
275 };
276
277 struct ShadowDefaults
278 {
279   std::string properties;
280   // TODO: complete with shadow parameters.
281 };
282
283 struct EmbossDefaults
284 {
285   std::string properties;
286   // TODO: complete with emboss parameters.
287 };
288
289 struct OutlineDefaults
290 {
291   std::string properties;
292   // TODO: complete with outline parameters.
293 };
294
295 struct Controller::Impl
296 {
297   Impl( ControlInterface* controlInterface,
298         EditableControlInterface* editableControlInterface )
299   : mControlInterface( controlInterface ),
300     mEditableControlInterface( editableControlInterface ),
301     mModel(),
302     mFontDefaults( NULL ),
303     mUnderlineDefaults( NULL ),
304     mShadowDefaults( NULL ),
305     mEmbossDefaults( NULL ),
306     mOutlineDefaults( NULL ),
307     mEventData( NULL ),
308     mFontClient(),
309     mClipboard(),
310     mView(),
311     mMetrics(),
312     mModifyEvents(),
313     mTextColor( Color::BLACK ),
314     mTextUpdateInfo(),
315     mOperationsPending( NO_OPERATION ),
316     mMaximumNumberOfCharacters( 50u ),
317     mHiddenInput( NULL ),
318     mRecalculateNaturalSize( true ),
319     mMarkupProcessorEnabled( false ),
320     mClipboardHideEnabled( true ),
321     mIsAutoScrollEnabled( false ),
322     mAutoScrollDirectionRTL( false ),
323     mUnderlineSetByString( false ),
324     mShadowSetByString( false ),
325     mFontStyleSetByString( false )
326   {
327     mModel = Model::New();
328
329     mFontClient = TextAbstraction::FontClient::Get();
330     mClipboard = Clipboard::Get();
331
332     mView.SetVisualModel( mModel->mVisualModel );
333
334     // Use this to access FontClient i.e. to get down-scaled Emoji metrics.
335     mMetrics = Metrics::New( mFontClient );
336     mLayoutEngine.SetMetrics( mMetrics );
337
338     // Set the text properties to default
339     mModel->mVisualModel->SetUnderlineEnabled( false );
340     mModel->mVisualModel->SetUnderlineHeight( 0.0f );
341
342     Toolkit::StyleManager styleManager = Toolkit::StyleManager::Get();
343     if( styleManager )
344     {
345       Property::Map config = Toolkit::DevelStyleManager::GetConfigurations( styleManager );
346       mIsClearFocusOnEscape = config["clearFocusOnEscape"].Get<bool>();
347     }
348
349   }
350
351   ~Impl()
352   {
353     delete mHiddenInput;
354
355     delete mFontDefaults;
356     delete mUnderlineDefaults;
357     delete mShadowDefaults;
358     delete mEmbossDefaults;
359     delete mOutlineDefaults;
360     delete mEventData;
361   }
362
363   // Text Controller Implementation.
364
365   /**
366    * @copydoc Text::Controller::RequestRelayout()
367    */
368   void RequestRelayout();
369
370   /**
371    * @brief Request a relayout using the ControlInterface.
372    */
373   void QueueModifyEvent( ModifyEvent::Type type )
374   {
375     if( ModifyEvent::TEXT_REPLACED == type)
376     {
377       // Cancel previously queued inserts etc.
378       mModifyEvents.Clear();
379     }
380
381     ModifyEvent event;
382     event.type = type;
383     mModifyEvents.PushBack( event );
384
385     // The event will be processed during relayout
386     RequestRelayout();
387   }
388
389   /**
390    * @brief Helper to move the cursor, grab handle etc.
391    */
392   bool ProcessInputEvents();
393
394   /**
395    * @brief Helper to check whether any place-holder text is available.
396    */
397   bool IsPlaceholderAvailable() const
398   {
399     return ( mEventData &&
400              ( !mEventData->mPlaceholderTextInactive.empty() ||
401                !mEventData->mPlaceholderTextActive.empty() )
402            );
403   }
404
405   bool IsShowingPlaceholderText() const
406   {
407     return ( mEventData && mEventData->mIsShowingPlaceholderText );
408   }
409
410   /**
411    * @brief Helper to check whether active place-holder text is available.
412    */
413   bool IsFocusedPlaceholderAvailable() const
414   {
415     return ( mEventData && !mEventData->mPlaceholderTextActive.empty() );
416   }
417
418   bool IsShowingRealText() const
419   {
420     return ( !IsShowingPlaceholderText() &&
421              0u != mModel->mLogicalModel->mText.Count() );
422   }
423
424   /**
425    * @brief Called when placeholder-text is hidden
426    */
427   void PlaceholderCleared()
428   {
429     if( mEventData )
430     {
431       mEventData->mIsShowingPlaceholderText = false;
432
433       // Remove mPlaceholderTextColor
434       mModel->mVisualModel->SetTextColor( mTextColor );
435     }
436   }
437
438   void ClearPreEditFlag()
439   {
440     if( mEventData )
441     {
442       mEventData->mPreEditFlag = false;
443       mEventData->mPreEditStartPosition = 0;
444       mEventData->mPreEditLength = 0;
445     }
446   }
447
448   void ResetImfManager()
449   {
450     if( mEventData )
451     {
452       // Reset incase we are in a pre-edit state.
453       if( mEventData->mImfManager )
454       {
455         mEventData->mImfManager.Reset(); // Will trigger a message ( commit, get surrounding )
456       }
457
458       ClearPreEditFlag();
459     }
460   }
461
462   /**
463    * @brief Helper to notify IMF manager with surrounding text & cursor changes.
464    */
465   void NotifyImfManager();
466
467   /**
468    * @brief Helper to notify IMF manager with multi line status.
469    */
470   void NotifyImfMultiLineStatus();
471
472   /**
473    * @brief Retrieve the current cursor position.
474    *
475    * @return The cursor position.
476    */
477   CharacterIndex GetLogicalCursorPosition() const;
478
479   /**
480    * @brief Retrieves the number of consecutive white spaces starting from the given @p index.
481    *
482    * @param[in] index The character index from where to count the number of consecutive white spaces.
483    *
484    * @return The number of consecutive white spaces.
485    */
486   Length GetNumberOfWhiteSpaces( CharacterIndex index ) const;
487
488   /**
489    * @brief Retrieve any text previously set starting from the given @p index.
490    *
491    * @param[in] index The character index from where to retrieve the text.
492    * @param[out] text A string of UTF-8 characters.
493    *
494    * @see Dali::Toolkit::Text::Controller::GetText()
495    */
496   void GetText( CharacterIndex index, std::string& text ) const;
497
498   bool IsClipboardEmpty()
499   {
500     bool result( mClipboard && mClipboard.NumberOfItems() );
501     return !result; // If NumberOfItems greater than 0, return false
502   }
503
504   bool IsClipboardVisible()
505   {
506     bool result( mClipboard && mClipboard.IsVisible() );
507     return result;
508   }
509
510   /**
511    * @brief Calculates the start character index of the first paragraph to be updated and
512    * the end character index of the last paragraph to be updated.
513    *
514    * @param[out] numberOfCharacters The number of characters to be updated.
515    */
516   void CalculateTextUpdateIndices( Length& numberOfCharacters );
517
518   /**
519    * @brief Helper to clear completely the parts of the model specified by the given @p operations.
520    *
521    * @note It never clears the text stored in utf32.
522    */
523   void ClearFullModelData( OperationsMask operations );
524
525   /**
526    * @brief Helper to clear completely the parts of the model related with the characters specified by the given @p operations.
527    *
528    * @note It never clears the text stored in utf32.
529    *
530    * @param[in] startIndex Index to the first character to be cleared.
531    * @param[in] endIndex Index to the last character to be cleared.
532    * @param[in] operations The operations required.
533    */
534   void ClearCharacterModelData( CharacterIndex startIndex, CharacterIndex endIndex, OperationsMask operations );
535
536   /**
537    * @brief Helper to clear completely the parts of the model related with the glyphs specified by the given @p operations.
538    *
539    * @note It never clears the text stored in utf32.
540    * @note Character indices are transformed to glyph indices.
541    *
542    * @param[in] startIndex Index to the first character to be cleared.
543    * @param[in] endIndex Index to the last character to be cleared.
544    * @param[in] operations The operations required.
545    */
546   void ClearGlyphModelData( CharacterIndex startIndex, CharacterIndex endIndex, OperationsMask operations );
547
548   /**
549    * @brief Helper to clear the parts of the model specified by the given @p operations and from @p startIndex to @p endIndex.
550    *
551    * @note It never clears the text stored in utf32.
552    *
553    * @param[in] startIndex Index to the first character to be cleared.
554    * @param[in] endIndex Index to the last character to be cleared.
555    * @param[in] operations The operations required.
556    */
557   void ClearModelData( CharacterIndex startIndex, CharacterIndex endIndex, OperationsMask operations );
558
559   /**
560    * @brief Updates the logical and visual models. Updates the style runs in the visual model when the text's styles changes.
561    *
562    * When text or style changes the model is set with some operations pending.
563    * When i.e. the text's size or a relayout is required this method is called
564    * with a given @p operationsRequired parameter. The operations required are
565    * matched with the operations pending to perform the minimum number of operations.
566    *
567    * @param[in] operationsRequired The operations required.
568    *
569    * @return @e true if the model has been modified.
570    */
571   bool UpdateModel( OperationsMask operationsRequired );
572
573   /**
574    * @brief Retreieves the default style.
575    *
576    * @param[out] inputStyle The default style.
577    */
578   void RetrieveDefaultInputStyle( InputStyle& inputStyle );
579
580   /**
581    * @brief Retrieve the line height of the default font.
582    */
583   float GetDefaultFontLineHeight();
584
585   void OnCursorKeyEvent( const Event& event );
586
587   void OnTapEvent( const Event& event );
588
589   void OnPanEvent( const Event& event );
590
591   void OnLongPressEvent( const Event& event );
592
593   void OnHandleEvent( const Event& event );
594
595   void OnSelectEvent( const Event& event );
596
597   void OnSelectAllEvent();
598
599   /**
600    * @brief Retrieves the selected text. It removes the text if the @p deleteAfterRetrieval parameter is @e true.
601    *
602    * @param[out] selectedText The selected text encoded in utf8.
603    * @param[in] deleteAfterRetrieval Whether the text should be deleted after retrieval.
604    */
605   void RetrieveSelection( std::string& selectedText, bool deleteAfterRetrieval );
606
607   void ShowClipboard();
608
609   void HideClipboard();
610
611   void SetClipboardHideEnable(bool enable);
612
613   bool CopyStringToClipboard( std::string& source );
614
615   void SendSelectionToClipboard( bool deleteAfterSending );
616
617   void RequestGetTextFromClipboard();
618
619   void RepositionSelectionHandles();
620   void RepositionSelectionHandles( float visualX, float visualY, Controller::NoTextTap::Action action );
621
622   void SetPopupButtons();
623
624   void ChangeState( EventData::State newState );
625
626   /**
627    * @brief Calculates the cursor's position for a given character index in the logical order.
628    *
629    * It retrieves as well the line's height and the cursor's height and
630    * if there is a valid alternative cursor, its position and height.
631    *
632    * @param[in] logical The logical cursor position (in characters). 0 is just before the first character, a value equal to the number of characters is just after the last character.
633    * @param[out] cursorInfo The line's height, the cursor's height, the cursor's position and whether there is an alternative cursor.
634    */
635   void GetCursorPosition( CharacterIndex logical,
636                           CursorInfo& cursorInfo );
637
638   /**
639    * @brief Calculates the new cursor index.
640    *
641    * It takes into account that in some scripts multiple characters can form a glyph and all of them
642    * need to be jumped with one key event.
643    *
644    * @param[in] index The initial new index.
645    *
646    * @return The new cursor index.
647    */
648   CharacterIndex CalculateNewCursorIndex( CharacterIndex index ) const;
649
650   /**
651    * @brief Updates the cursor position.
652    *
653    * Sets the cursor's position into the decorator. It transforms the cursor's position into decorator's coords.
654    * It sets the position of the secondary cursor if it's a valid one.
655    * Sets which cursors are active.
656    *
657    * @param[in] cursorInfo Contains the selection handle position in Actor's coords.
658    *
659    */
660   void UpdateCursorPosition( const CursorInfo& cursorInfo );
661
662   /**
663    * @brief Updates the position of the given selection handle. It transforms the handle's position into decorator's coords.
664    *
665    * @param[in] handleType One of the selection handles.
666    * @param[in] cursorInfo Contains the selection handle position in Actor's coords.
667    */
668   void UpdateSelectionHandle( HandleType handleType,
669                               const CursorInfo& cursorInfo );
670
671   /**
672    * @biref Clamps the horizontal scrolling to get the control always filled with text.
673    *
674    * @param[in] layoutSize The size of the laid out text.
675    */
676   void ClampHorizontalScroll( const Vector2& layoutSize );
677
678   /**
679    * @biref Clamps the vertical scrolling to get the control always filled with text.
680    *
681    * @param[in] layoutSize The size of the laid out text.
682    */
683   void ClampVerticalScroll( const Vector2& layoutSize );
684
685   /**
686    * @brief Scrolls the text to make a position visible.
687    *
688    * @pre mEventData must not be NULL. (there is a text-input or selection capabilities).
689    *
690    * @param[in] position A position in text coords.
691    * @param[in] lineHeight The line height for the given position.
692    *
693    * This method is called after inserting text, moving the cursor with the grab handle or the keypad,
694    * or moving the selection handles.
695    */
696   void ScrollToMakePositionVisible( const Vector2& position, float lineHeight );
697
698   /**
699    * @brief Scrolls the text to make the cursor visible.
700    *
701    * This method is called after deleting text.
702    */
703   void ScrollTextToMatchCursor( const CursorInfo& cursorInfo );
704
705 private:
706   // Declared private and left undefined to avoid copies.
707   Impl( const Impl& );
708   // Declared private and left undefined to avoid copies.
709   Impl& operator=( const Impl& );
710
711 public:
712
713   ControlInterface* mControlInterface;     ///< Reference to the text controller.
714   EditableControlInterface* mEditableControlInterface; ///< Reference to the editable text controller.
715   ModelPtr mModel;                         ///< Pointer to the text's model.
716   FontDefaults* mFontDefaults;             ///< Avoid allocating this when the user does not specify a font.
717   UnderlineDefaults* mUnderlineDefaults;   ///< Avoid allocating this when the user does not specify underline parameters.
718   ShadowDefaults* mShadowDefaults;         ///< Avoid allocating this when the user does not specify shadow parameters.
719   EmbossDefaults* mEmbossDefaults;         ///< Avoid allocating this when the user does not specify emboss parameters.
720   OutlineDefaults* mOutlineDefaults;       ///< Avoid allocating this when the user does not specify outline parameters.
721   EventData* mEventData;                   ///< Avoid allocating everything for text input until EnableTextInput().
722   TextAbstraction::FontClient mFontClient; ///< Handle to the font client.
723   Clipboard mClipboard;                    ///< Handle to the system clipboard
724   View mView;                              ///< The view interface to the rendering back-end.
725   MetricsPtr mMetrics;                     ///< A wrapper around FontClient used to get metrics & potentially down-scaled Emoji metrics.
726   Layout::Engine mLayoutEngine;            ///< The layout engine.
727   Vector<ModifyEvent> mModifyEvents;       ///< Temporary stores the text set until the next relayout.
728   Vector4 mTextColor;                      ///< The regular text color
729   TextUpdateInfo mTextUpdateInfo;          ///< Info of the characters updated.
730   OperationsMask mOperationsPending;       ///< Operations pending to be done to layout the text.
731   Length mMaximumNumberOfCharacters;       ///< Maximum number of characters that can be inserted.
732   HiddenText* mHiddenInput;                ///< Avoid allocating this when the user does not specify hidden input mode.
733
734   bool mRecalculateNaturalSize:1;          ///< Whether the natural size needs to be recalculated.
735   bool mMarkupProcessorEnabled:1;          ///< Whether the mark-up procesor is enabled.
736   bool mClipboardHideEnabled:1;            ///< Whether the ClipboardHide function work or not
737   bool mIsAutoScrollEnabled:1;             ///< Whether auto text scrolling is enabled.
738   CharacterDirection mAutoScrollDirectionRTL:1;  ///< Direction of auto scrolling, true if rtl
739
740   bool mUnderlineSetByString:1;            ///< Set when underline is set by string (legacy) instead of map
741   bool mShadowSetByString:1;               ///< Set when shadow is set by string (legacy) instead of map
742   bool mFontStyleSetByString:1;            ///< Set when font style is set by string (legacy) instead of map
743   bool mIsClearFocusOnEscape:1;            ///< Whether text control clear key input focus or not
744 };
745
746 } // namespace Text
747
748 } // namespace Toolkit
749
750 } // namespace Dali
751
752 #endif // DALI_TOOLKIT_TEXT_CONTROLLER_H