Merge "Added TextChanged signal to TextField" into tizen
[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) 2015 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/text-abstraction/font-client.h>
23 #include <dali/devel-api/adaptor-framework/imf-manager.h>
24
25 // INTERNAL INCLUDES
26 #include <dali-toolkit/internal/text/layouts/layout-engine.h>
27 #include <dali-toolkit/internal/text/logical-model-impl.h>
28 #include <dali-toolkit/internal/text/text-controller.h>
29 #include <dali-toolkit/internal/text/visual-model-impl.h>
30
31 namespace Dali
32 {
33
34 namespace Toolkit
35 {
36
37 namespace Text
38 {
39
40 struct Event
41 {
42   // Used to queue input events until DoRelayout()
43   enum Type
44   {
45     CURSOR_KEY_EVENT,
46     TAP_EVENT,
47     PAN_EVENT,
48     GRAB_HANDLE_EVENT,
49     LEFT_SELECTION_HANDLE_EVENT,
50     RIGHT_SELECTION_HANDLE_EVENT
51   };
52
53   union Param
54   {
55     int mInt;
56     unsigned int mUint;
57     float mFloat;
58   };
59
60   Event( Type eventType )
61   : type( eventType )
62   {
63     p1.mInt = 0;
64     p2.mInt = 0;
65     p3.mInt = 0;
66   }
67
68   Type type;
69   Param p1;
70   Param p2;
71   Param p3;
72 };
73
74 struct CursorInfo
75 {
76   CursorInfo()
77   : primaryPosition(),
78     secondaryPosition(),
79     lineHeight( 0.f ),
80     primaryCursorHeight( 0.f ),
81     secondaryCursorHeight( 0.f ),
82     isSecondaryCursor( false )
83   {}
84
85   ~CursorInfo()
86   {}
87
88   Vector2 primaryPosition;       ///< The primary cursor's position.
89   Vector2 secondaryPosition;     ///< The secondary cursor's position.
90   float   lineHeight;            ///< The height of the line where the cursor is placed.
91   float   primaryCursorHeight;   ///< The primary cursor's height.
92   float   secondaryCursorHeight; ///< The secondary cursor's height.
93   bool    isSecondaryCursor;     ///< Whether the secondary cursor is valid.
94 };
95
96 struct EventData
97 {
98   enum State
99   {
100     INACTIVE,
101     SELECTING,
102     EDITING,
103     EDITING_WITH_POPUP
104   };
105
106   EventData( DecoratorPtr decorator );
107
108   ~EventData();
109
110   DecoratorPtr       mDecorator;               ///< Pointer to the decorator
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   /**
122    * 0,0 means that the top-left corner of the layout matches the top-left corner of the UI control.
123    * Typically this will have a negative value with scrolling occurs.
124    */
125   Vector2            mScrollPosition;          ///< The text is offset by this position when scrolling.
126
127   State              mState;                   ///< Selection mode, edit mode etc.
128
129   CharacterIndex     mPrimaryCursorPosition;   ///< Index into logical model for primary cursor.
130   CharacterIndex     mLeftSelectionPosition;   ///< Index into logical model for left selection handle.
131   CharacterIndex     mRightSelectionPosition;  ///< Index into logical model for right selection handle.
132
133   CharacterIndex     mPreEditStartPosition;    ///< Used to remove the pre-edit text if necessary.
134   Length             mPreEditLength;           ///< Used to remove the pre-edit text if necessary.
135
136   bool mIsShowingPlaceholderText           : 1;   ///< True if the place-holder text is being displayed.
137   bool mPreEditFlag                        : 1;   ///< True if the model contains text in pre-edit state.
138   bool mDecoratorUpdated                   : 1;   ///< True if the decorator was updated during event processing.
139   bool mCursorBlinkEnabled                 : 1;   ///< True if cursor should blink when active.
140   bool mGrabHandleEnabled                  : 1;   ///< True if grab handle is enabled.
141   bool mGrabHandlePopupEnabled             : 1;   ///< True if the grab handle popu-up should be shown.
142   bool mSelectionEnabled                   : 1;   ///< True if selection handles, highlight etc. are enabled.
143   bool mHorizontalScrollingEnabled         : 1;   ///< True if horizontal scrolling is enabled.
144   bool mVerticalScrollingEnabled           : 1;   ///< True if vertical scrolling is enabled.
145   bool mUpdateCursorPosition               : 1;   ///< True if the visual position of the cursor must be recalculated.
146   bool mUpdateLeftSelectionPosition        : 1;   ///< True if the visual position of the left selection handle must be recalculated.
147   bool mUpdateRightSelectionPosition       : 1;   ///< True if the visual position of the right selection handle must be recalculated.
148   bool mScrollAfterUpdateCursorPosition    : 1;   ///< Whether to scroll after the cursor position is updated.
149 };
150
151 struct ModifyEvent
152 {
153   enum Type
154   {
155     TEXT_REPLACED,    ///< The entire text was replaced
156     TEXT_INSERTED,    ///< Insert characters at the current cursor position
157     TEXT_DELETED      ///< Characters were deleted
158   };
159
160   Type type;
161 };
162
163 struct FontDefaults
164 {
165   FontDefaults()
166   : mDefaultPointSize(0.0f),
167     mFontId(0u)
168   {
169   }
170
171   FontId GetFontId( TextAbstraction::FontClient& fontClient )
172   {
173     if( !mFontId )
174     {
175       Dali::TextAbstraction::PointSize26Dot6 pointSize = mDefaultPointSize*64;
176       mFontId = fontClient.GetFontId( mDefaultFontFamily, mDefaultFontStyle, pointSize );
177     }
178
179     return mFontId;
180   }
181
182   std::string mDefaultFontFamily;
183   std::string mDefaultFontStyle;
184   float mDefaultPointSize;
185   FontId mFontId;
186 };
187
188 struct Controller::Impl
189 {
190   Impl( ControlInterface& controlInterface )
191   : mControlInterface( controlInterface ),
192     mLogicalModel(),
193     mVisualModel(),
194     mFontDefaults( NULL ),
195     mEventData( NULL ),
196     mFontClient(),
197     mView(),
198     mLayoutEngine(),
199     mModifyEvents(),
200     mControlSize(),
201     mTextColor( Color::BLACK ),
202     mAlignmentOffset(),
203     mOperationsPending( NO_OPERATION ),
204     mMaximumNumberOfCharacters( 50 ),
205     mRecalculateNaturalSize( true )
206   {
207     mLogicalModel = LogicalModel::New();
208     mVisualModel  = VisualModel::New();
209
210     mFontClient = TextAbstraction::FontClient::Get();
211
212     mView.SetVisualModel( mVisualModel );
213
214     // Set the text properties to default
215     mVisualModel->SetUnderlineEnabled( false );
216     mVisualModel->SetUnderlineHeight( 0.0f );
217   }
218
219   ~Impl()
220   {
221     delete mEventData;
222   }
223
224   /**
225    * @brief Request a relayout using the ControlInterface.
226    */
227   void RequestRelayout();
228
229   /**
230    * @brief Request a relayout using the ControlInterface.
231    */
232   void QueueModifyEvent( ModifyEvent::Type type )
233   {
234     if( ModifyEvent::TEXT_REPLACED == type)
235     {
236       // Cancel previously queued inserts etc.
237       mModifyEvents.clear();
238     }
239
240     ModifyEvent event;
241     event.type = type;
242     mModifyEvents.push_back( event );
243
244     // The event will be processed during relayout
245     RequestRelayout();
246   }
247
248   /**
249    * @brief Helper to move the cursor, grab handle etc.
250    */
251   bool ProcessInputEvents();
252
253   /**
254    * @brief Helper to check whether any place-holder text is available.
255    */
256   bool IsPlaceholderAvailable() const
257   {
258     return ( mEventData &&
259              ( !mEventData->mPlaceholderTextInactive.empty() ||
260                !mEventData->mPlaceholderTextActive.empty() )
261            );
262   }
263
264   bool IsShowingPlaceholderText() const
265   {
266     return ( mEventData && mEventData->mIsShowingPlaceholderText );
267   }
268
269   /**
270    * @brief Called when placeholder-text is hidden
271    */
272   void PlaceholderCleared()
273   {
274     if( mEventData )
275     {
276       mEventData->mIsShowingPlaceholderText = false;
277
278       // Remove mPlaceholderTextColor
279       mVisualModel->SetTextColor( mTextColor );
280     }
281   }
282
283   void ClearPreEditFlag()
284   {
285     if( mEventData )
286     {
287       mEventData->mPreEditFlag = false;
288       mEventData->mPreEditStartPosition = 0;
289       mEventData->mPreEditLength = 0;
290     }
291   }
292
293   void ResetImfManager()
294   {
295     // Reset incase we are in a pre-edit state.
296     ImfManager imfManager = ImfManager::Get();
297     if ( imfManager )
298     {
299       imfManager.Reset(); // Will trigger a commit message
300     }
301
302     ClearPreEditFlag();
303   }
304
305   void UpdateModel( OperationsMask operationsRequired );
306
307   /**
308    * @brief Retrieve the default fonts.
309    *
310    * @param[out] fonts The default font family, style and point sizes.
311    * @param[in] numberOfCharacters The number of characters in the logical model.
312    */
313   void GetDefaultFonts( Dali::Vector<FontRun>& fonts, Length numberOfCharacters );
314
315   void OnCursorKeyEvent( const Event& event );
316
317   void OnTapEvent( const Event& event );
318
319   void OnPanEvent( const Event& event );
320
321   void OnHandleEvent( const Event& event );
322
323   void RepositionSelectionHandles( float visualX, float visualY );
324
325   void ChangeState( EventData::State newState );
326
327   LineIndex GetClosestLine( float y ) const;
328
329   /**
330    * @brief Retrieves the cursor's logical position for a given touch point x,y
331    *
332    * @param[in] visualX The touch point x.
333    * @param[in] visualY The touch point y.
334    *
335    * @return 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.
336    */
337   CharacterIndex GetClosestCursorIndex( float visualX,
338                                         float visualY );
339
340   /**
341    * @brief Calculates the cursor's position for a given character index in the logical order.
342    *
343    * It retrieves as well the line's height and the cursor's height and
344    * if there is a valid alternative cursor, its position and height.
345    *
346    * @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.
347    * @param[out] cursorInfo The line's height, the cursor's height, the cursor's position and whether there is an alternative cursor.
348    */
349   void GetCursorPosition( CharacterIndex logical,
350                           CursorInfo& cursorInfo );
351
352   /**
353    * @brief Calculates the new cursor index.
354    *
355    * It takes into account that in some scripts multiple characters can form a glyph and all of them
356    * need to be jumped with one key event.
357    *
358    * @param[in] index The initial new index.
359    *
360    * @return The new cursor index.
361    */
362   CharacterIndex CalculateNewCursorIndex( CharacterIndex index ) const;
363
364   /**
365    * @brief Updates the cursor position.
366    *
367    * Retrieves the x,y position of the cursor logical position and sets it into the decorator.
368    * It sets the position of the secondary cursor if it's a valid one.
369    * Sets which cursors are active.
370    */
371   void UpdateCursorPosition();
372
373   /**
374    * @brief Updates the position of the given selection handle.
375    *
376    * @param[in] handleType One of the selection handles.
377    */
378   void UpdateSelectionHandle( HandleType handleType );
379
380   /**
381    * @biref Clamps the horizontal scrolling to get the control always filled with text.
382    *
383    * @param[in] actualSize The size of the laid out text.
384    */
385   void ClampHorizontalScroll( const Vector2& actualSize );
386
387   /**
388    * @biref Clamps the vertical scrolling to get the control always filled with text.
389    *
390    * @param[in] actualSize The size of the laid out text.
391    */
392   void ClampVerticalScroll( const Vector2& actualSize );
393
394   /**
395    * @brief Scrolls the text to make the cursor visible.
396    *
397    * This method is called after inserting, deleting or moving the cursor with the keypad.
398    */
399   void ScrollToMakeCursorVisible();
400
401   ControlInterface& mControlInterface;     ///< Reference to the text controller.
402   LogicalModelPtr mLogicalModel;           ///< Pointer to the logical model.
403   VisualModelPtr  mVisualModel;            ///< Pointer to the visual model.
404   FontDefaults* mFontDefaults;             ///< Avoid allocating this when the user does not specify a font.
405   EventData* mEventData;                   ///< Avoid allocating everything for text input until EnableTextInput().
406   TextAbstraction::FontClient mFontClient; ///< Handle to the font client.
407   View mView;                              ///< The view interface to the rendering back-end.
408   LayoutEngine mLayoutEngine;              ///< The layout engine.
409   std::vector<ModifyEvent> mModifyEvents;  ///< Temporary stores the text set until the next relayout.
410   Size mControlSize;                       ///< The size of the control.
411   Vector4 mTextColor;                      ///< The regular text color
412   Vector2 mAlignmentOffset;                ///< Vertical and horizontal offset of the whole text inside the control due to alignment.
413   OperationsMask mOperationsPending;       ///< Operations pending to be done to layout the text.
414   Length mMaximumNumberOfCharacters;       ///< Maximum number of characters that can be inserted.
415   bool mRecalculateNaturalSize:1;          ///< Whether the natural size needs to be recalculated.
416 };
417
418 } // namespace Text
419
420 } // namespace Toolkit
421
422 } // namespace Dali
423
424 #endif // __DALI_TOOLKIT_TEXT_CONTROLLER_H__