a9cc0df3570cae7fb6406712d703af3e88d0e4eb
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / internal / text / text-controller.h
1 #ifndef __DALI_TOOLKIT_TEXT_CONTROLLER_H__
2 #define __DALI_TOOLKIT_TEXT_CONTROLLER_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/adaptor-framework/imf-manager.h>
23 #include <dali/public-api/events/gesture.h>
24
25 // INTERNAL INCLUDES
26 #include <dali-toolkit/devel-api/controls/text-controls/text-selection-popup-callback-interface.h>
27 #include <dali-toolkit/internal/text/decorator/text-decorator.h>
28 #include <dali-toolkit/internal/text/layouts/layout-engine.h>
29 #include <dali-toolkit/internal/text/text-control-interface.h>
30
31 namespace Dali
32 {
33
34 namespace Toolkit
35 {
36
37 namespace Text
38 {
39
40 class Controller;
41 class View;
42
43 typedef IntrusivePtr<Controller> ControllerPtr;
44 typedef Dali::Toolkit::Text::ControlInterface ControlInterface;
45
46 /**
47  * @brief Different placeholder-text can be shown when the control is active/inactive.
48  */
49 enum PlaceholderType
50 {
51   PLACEHOLDER_TYPE_ACTIVE,
52   PLACEHOLDER_TYPE_INACTIVE,
53 };
54
55 /**
56  * @brief A Text Controller is used by UI Controls which display text.
57  *
58  * It manipulates the Logical & Visual text models on behalf of the UI Controls.
59  * It provides a view of the text that can be used by rendering back-ends.
60  *
61  * For selectable/editable UI controls, the controller handles input events from the UI control
62  * and decorations (grab handles etc) via the Decorator::ControllerInterface interface.
63  *
64  * The text selection popup button callbacks are as well handled via the TextSelectionPopupCallbackInterface interface.
65  */
66 class Controller : public RefObject, public Decorator::ControllerInterface, public TextSelectionPopupCallbackInterface
67 {
68 public:
69
70   /**
71    * @brief Text related operations to be done in the relayout process.
72    */
73   enum OperationsMask
74   {
75     NO_OPERATION       = 0x0000,
76     CONVERT_TO_UTF32   = 0x0001,
77     GET_SCRIPTS        = 0x0002,
78     VALIDATE_FONTS     = 0x0004,
79     GET_LINE_BREAKS    = 0x0008,
80     GET_WORD_BREAKS    = 0x0010,
81     BIDI_INFO          = 0x0020,
82     SHAPE_TEXT         = 0x0040,
83     GET_GLYPH_METRICS  = 0x0080,
84     LAYOUT             = 0x0100,
85     UPDATE_ACTUAL_SIZE = 0x0200,
86     REORDER            = 0x0400,
87     ALIGN              = 0x0800,
88     COLOR              = 0x1000,
89     ALL_OPERATIONS     = 0xFFFF
90   };
91
92   /**
93    * @brief Used to distinguish between regular key events and IMF events
94    */
95   enum InsertType
96   {
97     COMMIT,
98     PRE_EDIT
99   };
100
101   /**
102    * @brief Create a new instance of a Controller.
103    *
104    * @param[in] controlInterface An interface used to request a text relayout.
105    * @return A pointer to a new Controller.
106    */
107   static ControllerPtr New( ControlInterface& controlInterface );
108
109   /**
110    * @brief Called to enable text input.
111    *
112    * @note Selectable or editable controls should call this once after Controller::New().
113    * @param[in] decorator Used to create cursor, selection handle decorations etc.
114    */
115   void EnableTextInput( DecoratorPtr decorator );
116
117   /**
118    * @brief Enables/disables the mark-up processor.
119    *
120    * By default is disabled.
121    *
122    * @param[in] enable Whether to enable the mark-up processor.
123    */
124   void SetMarkupProcessorEnabled( bool enable );
125
126   /**
127    * @brief Retrieves whether the mark-up processor is enabled.
128    *
129    * By default is disabled.
130    *
131    * @return @e true if the mark-up processor is enabled, otherwise returns @e false.
132    */
133   bool IsMarkupProcessorEnabled() const;
134
135   /**
136    * @brief Replaces any text previously set.
137    *
138    * @note This will be converted into UTF-32 when stored in the text model.
139    * @param[in] text A string of UTF-8 characters.
140    */
141   void SetText( const std::string& text );
142
143   /**
144    * @brief Retrieve any text previously set.
145    *
146    * @return A string of UTF-8 characters.
147    */
148   void GetText( std::string& text ) const;
149
150   /**
151    * @brief Remove a given number of characters
152    *
153    * @param[in] cursorOffset Start position from the current cursor position to start deleting characters.
154    * @param[in] numberOfChars The number of characters to delete from the cursorOffset.
155    * @return True if the remove was successful.
156    */
157   bool RemoveText( int cursorOffset, int numberOfChars );
158
159   /**
160    * @brief Retrieve the current cursor position.
161    *
162    * @return The cursor position.
163    */
164   unsigned int GetLogicalCursorPosition() const;
165
166   /**
167    * @brief Replaces any placeholder text previously set.
168    *
169    * @param[in] type Different placeholder-text can be shown when the control is active/inactive.
170    * @param[in] text A string of UTF-8 characters.
171    */
172   void SetPlaceholderText( PlaceholderType type, const std::string& text );
173
174   /**
175    * @brief Retrieve any placeholder text previously set.
176    *
177    * @param[in] type Different placeholder-text can be shown when the control is active/inactive.
178    * @param[out] A string of UTF-8 characters.
179    */
180   void GetPlaceholderText( PlaceholderType type, std::string& text ) const;
181
182   /**
183    * @brief Sets the maximum number of characters that can be inserted into the TextModel
184    *
185    * @param[in] maxCharacters maximum number of characters to be accepted
186    */
187   void SetMaximumNumberOfCharacters( int maxCharacters );
188
189   /**
190    * @brief Sets the maximum number of characters that can be inserted into the TextModel
191    *
192    * @param[in] maxCharacters maximum number of characters to be accepted
193    */
194   int GetMaximumNumberOfCharacters();
195
196   /**
197    * @brief Set the default font family.
198    *
199    * @param[in] defaultFontFamily The default font family.
200    */
201   void SetDefaultFontFamily( const std::string& defaultFontFamily );
202
203   /**
204    * @brief Retrieve the default font family.
205    *
206    * @return The default font family.
207    */
208   const std::string& GetDefaultFontFamily() const;
209
210   /**
211    * @brief Sets the font's style string.
212    *
213    * @note The style set may be changed by the underlying font system. The string is stored to be recovered.
214    *
215    * @param[in] style The font's style string.
216    */
217   void SetDefaultFontStyle( const std::string& style );
218
219   /**
220    * @brief Retrieves the font's style.
221    *
222    * @return The font's style.
223    */
224   const std::string& GetDefaultFontStyle() const;
225
226   /**
227    * @brief Sets the default font weight.
228    *
229    * @param[in] weight The font weight.
230    */
231   void SetDefaultFontWeight( FontWeight weight );
232
233   /**
234    * @brief Retrieves the default font weight.
235    *
236    * @return The default font weight.
237    */
238   FontWeight GetDefaultFontWeight() const;
239
240   /**
241    * @brief Sets the default font width.
242    *
243    * @param[in] width The font width.
244    */
245   void SetDefaultFontWidth( FontWidth width );
246
247   /**
248    * @brief Retrieves the default font width.
249    *
250    * @return The default font width.
251    */
252   FontWidth GetDefaultFontWidth() const;
253
254   /**
255    * @brief Sets the default font slant.
256    *
257    * @param[in] slant The font slant.
258    */
259   void SetDefaultFontSlant( FontSlant slant );
260
261   /**
262    * @brief Retrieves the default font slant.
263    *
264    * @return The default font slant.
265    */
266   FontSlant GetDefaultFontSlant() const;
267
268   /**
269    * @brief Set the default point size.
270    *
271    * @param[in] pointSize The default point size.
272    */
273   void SetDefaultPointSize( float pointSize );
274
275   /**
276    * @brief Retrieve the default point size.
277    *
278    * @return The default point size.
279    */
280   float GetDefaultPointSize() const;
281
282   /**
283    * @ brief Update the text after a font change
284    * @param[in] newDefaultFont The new font to change to
285    */
286   void UpdateAfterFontChange( std::string& newDefaultFont );
287
288   /**
289    * @brief Set the text color
290    *
291    * @param textColor The text color
292    */
293   void SetTextColor( const Vector4& textColor );
294
295   /**
296    * @brief Retrieve the text color
297    *
298    * @return The text color
299    */
300   const Vector4& GetTextColor() const;
301
302   /**
303    * @brief Set the text color
304    *
305    * @param textColor The text color
306    */
307   void SetPlaceholderTextColor( const Vector4& textColor );
308
309   /**
310    * @brief Retrieve the text color
311    *
312    * @return The text color
313    */
314   const Vector4& GetPlaceholderTextColor() const;
315
316   /**
317    * @brief Set the shadow offset.
318    *
319    * @param[in] shadowOffset The shadow offset, 0,0 indicates no shadow.
320    */
321   void SetShadowOffset( const Vector2& shadowOffset );
322
323   /**
324    * @brief Retrieve the shadow offset.
325    *
326    * @return The shadow offset.
327    */
328   const Vector2& GetShadowOffset() const;
329
330   /**
331    * @brief Set the shadow color.
332    *
333    * @param[in] shadowColor The shadow color.
334    */
335   void SetShadowColor( const Vector4& shadowColor );
336
337   /**
338    * @brief Retrieve the shadow color.
339    *
340    * @return The shadow color.
341    */
342   const Vector4& GetShadowColor() const;
343
344   /**
345    * @brief Set the underline color.
346    *
347    * @param[in] color color of underline.
348    */
349   void SetUnderlineColor( const Vector4& color );
350
351   /**
352    * @brief Retrieve the underline color.
353    *
354    * @return The underline color.
355    */
356   const Vector4& GetUnderlineColor() const;
357
358   /**
359    * @brief Set the underline enabled flag.
360    *
361    * @param[in] enabled The underline enabled flag.
362    */
363   void SetUnderlineEnabled( bool enabled );
364
365   /**
366    * @brief Returns whether the text is underlined or not.
367    *
368    * @return The underline state.
369    */
370   bool IsUnderlineEnabled() const;
371
372   /**
373    * @brief Set the override used for underline height, 0 indicates height will be supplied by font metrics
374    *
375    * @param[in] height The height in pixels of the underline
376    */
377   void SetUnderlineHeight( float height );
378
379   /**
380    * @brief Retrieves the override height of an underline, 0 indicates height is supplied by font metrics
381    *
382    * @return The height of the underline, or 0 if height is not overrided.
383    */
384   float GetUnderlineHeight() const;
385
386   /**
387    * @brief Sets the input text's color.
388    *
389    * @param[in] color The input text's color.
390    */
391   void SetInputColor( const Vector4& color );
392
393   /**
394    * @brief Retrieves the input text's color.
395    *
396    * @return The input text's color.
397    */
398   const Vector4& GetInputColor() const;
399
400   /**
401    * @brief Sets the input text's font family name.
402    *
403    * @param[in] fontFamily The text's font family name.
404    */
405   void SetInputFontFamily( const std::string& fontFamily );
406
407   /**
408    * @brief Retrieves the input text's font family name.
409    *
410    * @return The input text's font family name.
411    */
412   const std::string& GetInputFontFamily() const;
413
414   /**
415    * @brief Sets the input text's font style.
416    *
417    * @param[in] fontStyle The input text's font style.
418    */
419   void SetInputFontStyle( const std::string& fontStyle );
420
421   /**
422    * @brief Retrieves the input text's font style.
423    *
424    * @return The input text's font style.
425    */
426   const std::string& GetInputFontStyle() const;
427
428   /**
429    * @brief Sets the input font's weight.
430    *
431    * @param[in] weight The input font's weight.
432    */
433   void SetInputFontWeight( FontWeight weight );
434
435   /**
436    * @brief Retrieves the input font's weight.
437    *
438    * @return The input font's weight.
439    */
440   FontWeight GetInputFontWeight() const;
441
442   /**
443    * @brief Sets the input font's width.
444    *
445    * @param[in] width The input font's width.
446    */
447   void SetInputFontWidth( FontWidth width );
448
449   /**
450    * @brief Retrieves the input font's width.
451    *
452    * @return The input font's width.
453    */
454   FontWidth GetInputFontWidth() const;
455
456   /**
457    * @brief Sets the input font's slant.
458    *
459    * @param[in] slant The input font's slant.
460    */
461   void SetInputFontSlant( FontSlant slant );
462
463   /**
464    * @brief Retrieves the input font's slant.
465    *
466    * @return The input font's slant.
467    */
468   FontSlant GetInputFontSlant() const;
469
470   /**
471    * @brief Sets the input font's point size.
472    *
473    * @param[in] size The input font's point size.
474    */
475   void SetInputFontPointSize( float size );
476
477   /**
478    * @brief Retrieves the input font's point size.
479    *
480    * @return The input font's point size.
481    */
482   float GetInputFontPointSize() const;
483
484   /**
485    * @brief Called to enable/disable cursor blink.
486    *
487    * @note Only editable controls should calls this.
488    * @param[in] enabled Whether the cursor should blink or not.
489    */
490   void SetEnableCursorBlink( bool enable );
491
492   /**
493    * @brief Query whether cursor blink is enabled.
494    *
495    * @return Whether the cursor should blink or not.
496    */
497   bool GetEnableCursorBlink() const;
498
499   /**
500    * @brief Query the current scroll position; the UI control is responsible for moving actors to this position.
501    *
502    * @return The scroll position.
503    */
504   const Vector2& GetScrollPosition() const;
505
506   /**
507    * @brief Query the alignment offset.
508    *
509    * @return The alignmnet offset.
510    */
511   const Vector2& GetAlignmentOffset() const;
512
513   /**
514    * @copydoc Control::GetNaturalSize()
515    */
516   Vector3 GetNaturalSize();
517
518   /**
519    * @copydoc Control::GetHeightForWidth()
520    */
521   float GetHeightForWidth( float width );
522
523   /**
524    * @brief Triggers a relayout which updates View (if necessary).
525    *
526    * @note UI Controls are expected to minimize calls to this method e.g. call once after size negotiation.
527    * @param[in] size A the size of a bounding box to layout text within.
528    * @return True if the text model or decorations were updated.
529    */
530   bool Relayout( const Size& size );
531
532   /**
533    * @brief Process queued events which modify the model.
534    */
535   void ProcessModifyEvents();
536
537   /**
538    * @brief Used to remove placeholder text.
539    */
540   void ResetText();
541
542   /**
543    * @brief Used to reset the cursor position after setting a new text.
544    *
545    * @param[in] cursorIndex Where to place the cursor.
546    */
547   void ResetCursorPosition( CharacterIndex cursorIndex );
548
549   /**
550    * @brief Used to reset the scroll position after setting a new text.
551    */
552   void ResetScrollPosition();
553
554   /**
555    * @brief Used to process an event queued from SetText()
556    */
557   void TextReplacedEvent();
558
559   /**
560    * @brief Used to process an event queued from key events etc.
561    */
562   void TextInsertedEvent();
563
564   /**
565    * @brief Used to process an event queued from backspace key etc.
566    */
567   void TextDeletedEvent();
568
569   /**
570    * @brief Lays-out the text.
571    *
572    * GetNaturalSize(), GetHeightForWidth() and Relayout() calls this method.
573    *
574    * @param[in] size A the size of a bounding box to layout text within.
575    * @param[in] operations The layout operations which need to be done.
576    * @param[out] layoutSize The size of the laid-out text.
577    */
578   bool DoRelayout( const Size& size,
579                    OperationsMask operations,
580                    Size& layoutSize );
581
582   /**
583    * @brief Whether to enable the multi-line layout.
584    *
585    * @param[in] enable \e true enables the multi-line (by default)
586    */
587   void SetMultiLineEnabled( bool enable );
588
589   /**
590    * @return Whether the multi-line layout is enabled.
591    */
592   bool IsMultiLineEnabled() const;
593
594   /**
595    * @copydoc Dali::Toolkit::Text::LayoutEngine::SetHorizontalAlignment()
596    */
597   void SetHorizontalAlignment( LayoutEngine::HorizontalAlignment alignment );
598
599   /**
600    * @copydoc Dali::Toolkit::Text::LayoutEngine::GetHorizontalAlignment()
601    */
602   LayoutEngine::HorizontalAlignment GetHorizontalAlignment() const;
603
604   /**
605    * @copydoc Dali::Toolkit::Text::LayoutEngine::SetVerticalAlignment()
606    */
607   void SetVerticalAlignment( LayoutEngine::VerticalAlignment alignment );
608
609   /**
610    * @copydoc Dali::Toolkit::Text::LayoutEngine::GetVerticalAlignment()
611    */
612   LayoutEngine::VerticalAlignment GetVerticalAlignment() const;
613
614   /**
615    * @brief Calulates the alignment of the whole text inside the bounding box.
616    *
617    * @param[in] size The size of the bounding box.
618    */
619   void CalculateTextAlignment( const Size& size );
620
621   /**
622    * @brief Return the layout engine.
623    *
624    * @return A reference to the layout engine.
625    */
626   LayoutEngine& GetLayoutEngine();
627
628   /**
629    * @brief Return a view of the text.
630    *
631    * @return A reference to the view.
632    */
633   View& GetView();
634
635   // Text-input Event Queuing
636
637   /**
638    * @brief Called by editable UI controls when keyboard focus is gained.
639    */
640   void KeyboardFocusGainEvent();
641
642   /**
643    * @brief Called by editable UI controls when focus is lost.
644    */
645   void KeyboardFocusLostEvent();
646
647   /**
648    * @brief Called by editable UI controls when key events are received.
649    *
650    * @param[in] event The key event.
651    * @param[in] type Used to distinguish between regular key events and IMF events.
652    */
653   bool KeyEvent( const Dali::KeyEvent& event );
654
655   /**
656    * @brief Called by editable UI controls when key events are received.
657    *
658    * @param[in] text The text to insert.
659    * @param[in] type Used to distinguish between regular key events and IMF events.
660    */
661   void InsertText( const std::string& text, InsertType type );
662
663   /**
664    * @brief Checks if text is selected and if so removes it.
665    * @return true if text was removed
666    */
667   bool RemoveSelectedText();
668
669   /**
670    * @brief Called by editable UI controls when a tap gesture occurs.
671    * @param[in] tapCount The number of taps.
672    * @param[in] x The x position relative to the top-left of the parent control.
673    * @param[in] y The y position relative to the top-left of the parent control.
674    */
675   void TapEvent( unsigned int tapCount, float x, float y );
676
677   /**
678    * @brief Called by editable UI controls when a pan gesture occurs.
679    *
680    * @param[in] state The state of the gesture.
681    * @param[in] displacement This distance panned since the last pan gesture.
682    */
683   void PanEvent( Gesture::State state, const Vector2& displacement );
684
685   /**
686    * @brief Called by editable UI controls when a long press gesture occurs.
687    *
688    * @param[in] state The state of the gesture.
689    * @param[in] x The x position relative to the top-left of the parent control.
690    * @param[in] y The y position relative to the top-left of the parent control.
691    */
692   void LongPressEvent( Gesture::State state, float x, float y );
693
694   /**
695    * @brief Creates a selection event.
696    *
697    * It could be called from the TapEvent (double tap) or when the text selection popup's sellect all button is pressed.
698    *
699    * @param[in] x The x position relative to the top-left of the parent control.
700    * @param[in] y The y position relative to the top-left of the parent control.
701    * @param[in] selectAll Whether the whole text is selected.
702    */
703   void SelectEvent( float x, float y, bool selectAll );
704
705   /**
706    * @brief Event received from IMF manager
707    *
708    * @param[in] imfManager The IMF manager.
709    * @param[in] imfEvent The event received.
710    * @return A data struture indicating if update is needed, cursor position and current text.
711    */
712   ImfManager::ImfCallbackData OnImfEvent( ImfManager& imfManager, const ImfManager::ImfEventData& imfEvent );
713
714   /**
715    * @brief Paste given string into Text model
716    * @param[in] stringToPaste this string will be inserted into the text model
717    */
718   void PasteText( const std::string& stringToPaste );
719
720   /**
721    * @brief Event from Clipboard notifying an Item has been selected for pasting
722    */
723   void PasteClipboardItemEvent();
724
725   /**
726    * @copydoc Dali::Toolkit::Text::Decorator::ControllerInterface::GetTargetSize()
727    */
728   virtual void GetTargetSize( Vector2& targetSize );
729
730   /**
731    * @copydoc Dali::Toolkit::Text::Decorator::ControllerInterface::AddDecoration()
732    */
733   virtual void AddDecoration( Actor& actor, bool needsClipping );
734
735   /**
736    * @copydoc Dali::Toolkit::Text::Decorator::ControllerInterface::DecorationEvent()
737    */
738   virtual void DecorationEvent( HandleType handle, HandleState state, float x, float y );
739
740   /**
741    * @copydoc Dali::Toolkit::TextSelectionPopup::TextPopupButtonCallbackInterface::TextPopupButtonTouched()
742    */
743   virtual void TextPopupButtonTouched( Dali::Toolkit::TextSelectionPopup::Buttons button );
744
745 protected:
746
747   /**
748    * @brief A reference counted object may only be deleted by calling Unreference().
749    */
750   virtual ~Controller();
751
752 private:
753
754   /**
755    * @brief Helper to KeyEvent() to handle the backspace case.
756    *
757    * @return True if a character was deleted.
758    */
759   bool BackspaceKeyEvent();
760
761   /**
762    * @brief Helper to notify IMF manager with surrounding text & cursor changes.
763    */
764   void NotifyImfManager();
765
766   /**
767    * @brief Helper to clear font-specific data.
768    */
769   void ShowPlaceholderText();
770
771   /**
772    * @brief Helper to clear all the model data except for LogicalModel::mText.
773    */
774   void ClearModelData();
775
776   /**
777    * @brief Helper to clear font-specific data (only).
778    */
779   void ClearFontData();
780
781   /**
782    * @brief Helper to clear text's style data.
783    */
784   void ClearStyleData();
785
786   /**
787    * @brief Private constructor.
788    */
789   Controller( ControlInterface& controlInterface );
790
791   // Undefined
792   Controller( const Controller& handle );
793
794   // Undefined
795   Controller& operator=( const Controller& handle );
796
797 private:
798
799   struct Impl;
800   Impl* mImpl;
801 };
802
803 } // namespace Text
804
805 } // namespace Toolkit
806
807 } // namespace Dali
808
809 #endif // __DALI_TOOLKIT_TEXT_CONTROLLER_H__