9d417356e1c1097fc6bbe1dd98d8bee08711cf16
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / internal / controls / text-controls / text-editor-impl.h
1 #ifndef DALI_TOOLKIT_INTERNAL_TEXT_EDITOR_H
2 #define DALI_TOOLKIT_INTERNAL_TEXT_EDITOR_H
3
4 /*
5  * Copyright (c) 2021 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/accessibility.h>
23 #include <dali/devel-api/adaptor-framework/clipboard-event-notifier.h>
24 #include <dali/devel-api/adaptor-framework/input-method-context.h>
25 #include <dali/public-api/animation/animation.h>
26
27 // INTERNAL INCLUDES
28 #include <dali-toolkit/devel-api/controls/control-devel.h>
29 #include <dali-toolkit/devel-api/controls/scroll-bar/scroll-bar.h>
30 #include <dali-toolkit/devel-api/controls/text-controls/text-editor-devel.h>
31 #include <dali-toolkit/internal/controls/control/control-data-impl.h>
32 #include <dali-toolkit/internal/text/decorator/text-decorator.h>
33 #include <dali-toolkit/internal/text/rendering/text-renderer.h>
34 #include <dali-toolkit/internal/text/text-anchor-control-interface.h>
35 #include <dali-toolkit/internal/text/text-control-interface.h>
36 #include <dali-toolkit/internal/text/text-controller.h>
37 #include <dali-toolkit/internal/text/text-editable-control-interface.h>
38 #include <dali-toolkit/internal/text/text-selectable-control-interface.h>
39 #include <dali-toolkit/internal/text/text-vertical-scroller.h>
40 #include <dali-toolkit/public-api/controls/control-impl.h>
41 #include <dali-toolkit/public-api/controls/text-controls/text-editor.h>
42
43 namespace Dali
44 {
45 namespace Toolkit
46 {
47 namespace Internal
48 {
49 /**
50  * @brief A control which renders a long text string with styles.
51  */
52 class TextEditor : public Control, public Text::ControlInterface, public Text::EditableControlInterface, public Text::SelectableControlInterface, public Text::AnchorControlInterface
53 {
54 public:
55   /**
56    * @copydoc Dali::Toollkit::TextEditor::New()
57    */
58   static Toolkit::TextEditor New();
59
60   // Properties
61
62   /**
63    * @brief Called when a property of an object of this type is set.
64    *
65    * @param[in] object The object whose property is set.
66    * @param[in] index The property index.
67    * @param[in] value The new property value.
68    */
69   static void SetProperty(BaseObject* object, Property::Index index, const Property::Value& value);
70
71   /**
72    * @brief Called to retrieve a property of an object of this type.
73    *
74    * @param[in] object The object whose property is to be retrieved.
75    * @param[in] index The property index.
76    * @return The current value of the property.
77    */
78   static Property::Value GetProperty(BaseObject* object, Property::Index index);
79
80   /**
81    * @copydoc Dali::Toollkit::TextEditor::GetInputMethodContext()
82    */
83   InputMethodContext GetInputMethodContext();
84
85   /**
86    * @copydoc Dali::Toollkit::TextEditor::MaxLengthReachedSignal()
87    */
88   DevelTextEditor::MaxLengthReachedSignalType& MaxLengthReachedSignal();
89
90   /**
91    * @copydoc Dali::Toollkit::TextEditor::AnchorClickedSignal()
92    */
93   DevelTextEditor::AnchorClickedSignalType& AnchorClickedSignal();
94
95   /**
96    * @copydoc Dali::Toollkit::TextEditor::CursorPositionChangedSignal()
97    */
98   DevelTextEditor::CursorPositionChangedSignalType& CursorPositionChangedSignal();
99
100   /**
101    * @copydoc Dali::Toollkit::TextEditor::InputFilteredSignal()
102    */
103   DevelTextEditor::InputFilteredSignalType& InputFilteredSignal();
104
105   /**
106    * @copydoc Dali::Toollkit::TextEditor::SelectionChangedSignal()
107    */
108   DevelTextEditor::SelectionChangedSignalType& SelectionChangedSignal();
109
110   /**
111    * @copydoc Dali::Toollkit::TextEditor::SelectionClearedSignal()
112    */
113   DevelTextEditor::SelectionClearedSignalType& SelectionClearedSignal();
114
115   /**
116    * Connects a callback function with the object's signals.
117    * @param[in] object The object providing the signal.
118    * @param[in] tracker Used to disconnect the signal.
119    * @param[in] signalName The signal to connect to.
120    * @param[in] functor A newly allocated FunctorDelegate.
121    * @return True if the signal was connected.
122    * @post If a signal was connected, ownership of functor was passed to CallbackBase. Otherwise the caller is responsible for deleting the unused functor.
123    */
124   static bool DoConnectSignal(BaseObject* object, ConnectionTrackerInterface* tracker, const std::string& signalName, FunctorDelegate* functor);
125
126   /**
127    * @brief Gets text controller
128    *
129    * @return The text controller
130    */
131   Text::ControllerPtr GetTextController();
132
133   /**
134    * @copydoc TextEditor::TextChangedSignal()
135    */
136   Toolkit::TextEditor::TextChangedSignalType& TextChangedSignal();
137
138   /**
139    * @copydoc TextEditor::TextChangedSignal()
140    */
141   Toolkit::TextEditor::InputStyleChangedSignalType& InputStyleChangedSignal();
142
143   /**
144    * @copydoc TextEditor::ScrollStateChangedSignal()
145    */
146   Toolkit::TextEditor::ScrollStateChangedSignalType& ScrollStateChangedSignal();
147
148 private: // From Control
149   /**
150    * @copydoc Control::OnInitialize()
151    */
152   void OnInitialize() override;
153
154   /**
155    * @copydoc Control::OnStyleChange()
156    */
157   void OnStyleChange(Toolkit::StyleManager styleManager, StyleChange::Type change) override;
158
159   /**
160    * @copydoc Control::GetNaturalSize()
161    */
162   Vector3 GetNaturalSize() override;
163
164   /**
165    * @copydoc Control::GetHeightForWidth()
166    */
167   float GetHeightForWidth(float width) override;
168
169   /**
170    * @copydoc Control::OnInitialize()
171    */
172   void OnRelayout(const Vector2& size, RelayoutContainer& container) override;
173
174   /**
175    * @copydoc Control::OnKeyInputFocusGained()
176    */
177   void OnKeyInputFocusGained() override;
178
179   /**
180    * @copydoc Control::OnKeyInputFocusLost()
181    */
182   void OnKeyInputFocusLost() override;
183
184   /**
185    * @copydoc Control::OnAccessibilityActivated()
186    */
187   bool OnAccessibilityActivated() override;
188
189   /**
190    * @copydoc Control::OnTap()
191    */
192   void OnTap(const TapGesture& tap) override;
193
194   /**
195    * @copydoc Control::OnPan()
196    */
197   void OnPan(const PanGesture& gesture) override;
198
199   /**
200    * @copydoc Control::OnLongPress()
201    */
202   void OnLongPress(const LongPressGesture& gesture) override;
203
204   /**
205    * @copydoc Control::OnSceneConnection()
206    */
207   void OnSceneConnection(int depth) override;
208
209   /**
210    * @copydoc Dali::CustomActorImpl::OnKeyEvent(const KeyEvent&)
211    */
212   bool OnKeyEvent(const KeyEvent& event) override;
213
214   // From ControlInterface
215
216   /**
217    * @copydoc Text::ControlInterface::RequestTextRelayout()
218    */
219   void RequestTextRelayout() override;
220
221   // From EditableControlInterface
222
223   /**
224    * @copydoc Text::EditableControlInterface::TextChanged()
225    */
226   void TextInserted(unsigned int position, unsigned int length, const std::string& content) override;
227
228   /**
229    * @copydoc Text::EditableControlInterface::TextDeleted()
230    */
231   void TextDeleted(unsigned int position, unsigned int length, const std::string& content) override;
232
233   /**
234    * @copydoc Text::EditableControlInterface::CursorPositionChanged()
235    */
236   void CursorPositionChanged(unsigned int oldPosition, unsigned int newPosition) override;
237
238   /**
239    * @copydoc Text::EditableControlInterface::TextChanged()
240    */
241   void TextChanged(bool immediate) override;
242
243   /**
244    * @copydoc Text::EditableControlInterface::MaxLengthReached()
245    */
246   void MaxLengthReached() override;
247
248   /**
249    * @copydoc Text::EditableControlInterface::InputStyleChanged()
250    */
251   void InputStyleChanged(Text::InputStyle::Mask inputStyleMask) override;
252
253   /**
254    * @copydoc Text::SelectableControlInterface::SelectionChanged()
255    */
256   void SelectionChanged(uint32_t oldStart, uint32_t oldEnd, uint32_t newStart, uint32_t newEnd) override;
257
258   /**
259    * @copydoc Text::EditableControlInterface::AddDecoration()
260    */
261   void AddDecoration(Actor& actor, bool needsClipping) override;
262
263   /**
264    * @copydoc Text::EditableControlInterface::InputFiltered()
265    */
266   void InputFiltered(Toolkit::InputFilter::Property::Type type) override;
267
268   /**
269    * @copydoc Text::EditableControlInterface::GetControlBackgroundColor()
270    */
271   void GetControlBackgroundColor(Vector4& color) const override;
272
273   // From SelectableControlInterface
274 public:
275   /**
276    * @copydoc Text::SelectableControlInterface::SetTextSelectionRange()
277    */
278   void SetTextSelectionRange(const uint32_t* start, const uint32_t* end) override;
279
280   /**
281    * @copydoc Text::SelectableControlInterface::GetTextSelectionRange()
282    */
283   Uint32Pair GetTextSelectionRange() const override;
284
285   /**
286    * @copydoc Text::SelectableControlInterface::SelectWholeText()
287    */
288   void SelectWholeText() override;
289
290   /**
291    * @copydoc Text::SelectableControlInterface::SelectNone()
292    */
293   void SelectNone() override;
294
295   /**
296    * @copydoc Text::SelectableControlInterface::SelectText()
297    */
298   void SelectText(const uint32_t start, const uint32_t end) override;
299
300   /**
301    * @copydoc Dali::Toolkit::DevelTextEditor::ScrollBy()
302    */
303   void ScrollBy(Vector2 Scroll);
304
305   /**
306    * @brief Get Horizontal scroll position of TextEditor.
307    *
308    * @return Horizontal scroll position (in pixels) of TextEditor.
309    */
310   float GetHorizontalScrollPosition();
311
312   /**
313    * @brief Get Vertical scroll position of TextEditor.
314    *
315    * @return Vertical scroll position (in pixels) of TextEditor.
316    */
317   float GetVerticalScrollPosition();
318
319   /**
320    * @brief Get the rendered size of a specific text range.
321    * if the requested text is at multilines, multiple sizes will be returned for each text located in a separate line.
322    * if a line contains characters with different directions, multiple sizes will be returned for each block of contiguous characters with the same direction.
323    *
324    * @param[in] startIndex start index of the text requested to calculate size for.
325    * @param[in] endIndex end index(included) of the text requested to calculate size for.
326    * @return list of sizes of the reuested text.
327    */
328   Vector<Vector2> GetTextSize(const uint32_t startIndex, const uint32_t endIndex) const;
329
330   /**
331    * @brief Get the top/left rendered position of a specific text range.
332    * if the requested text is at multilines, multiple positions will be returned for each text located in a separate line.
333    * if a line contains characters with different directions, multiple positions will be returned for each block of contiguous characters with the same direction.
334    *
335    * @param[in] startIndex start index of the text requested to get position to.
336    * @param[in] endIndex end index(included) of the text requested to get position to.
337    * @return list of positions of the requested text.
338    */
339   Vector<Vector2> GetTextPosition(const uint32_t startIndex, const uint32_t endIndex) const;
340
341   /**
342    * @copydoc Text::SelectableControlInterface::GetSelectedText()
343    */
344   string GetSelectedText() const override;
345
346   /**
347    * @copydoc Text::EditableControlInterface::IsEditable()
348    */
349   bool IsEditable() const override;
350
351   /**
352    * @copydoc Text::EditableControlInterface::SetEditable()
353    */
354   void SetEditable(bool editable) override;
355
356   /**
357    * @copydoc Text::EditableControlInterface::CopyText()
358    */
359   string CopyText() override;
360
361   /**
362    * @copydoc Text::EditableControlInterface::CutText()
363    */
364   string CutText() override;
365
366   /**
367    * @copydoc Text::EditableControlInterface::PasteText()
368    */
369   void PasteText() override;
370
371   // From AnchorControlInterface
372
373   /**
374    * @copydoc Text::AnchorControlInterface::AnchorClicked()
375    */
376   void AnchorClicked(const std::string& href) override;
377
378 private: // Implementation
379   /**
380    * @copydoc Dali::Toolkit::Text::Controller::(InputMethodContext& inputMethodContext, const InputMethodContext::EventData& inputMethodContextEvent)
381    */
382   InputMethodContext::CallbackData OnInputMethodContextEvent(InputMethodContext& inputMethodContext, const InputMethodContext::EventData& inputMethodContextEvent);
383
384   /**
385    * @brief Callback when Clipboard signals an item should be pasted
386    * @param[in] clipboard handle to Clipboard Event Notifier
387    */
388   void OnClipboardTextSelected(ClipboardEventNotifier& clipboard);
389
390   /**
391    * @brief Get a Property Map for the image used for the required Handle Image
392    * @param[out] value the returned image property
393    * @param[in] handleType the type of handle
394    * @param[in] handleImageType the type of image for the given handleType
395    */
396   void GetHandleImagePropertyValue(Property::Value& value, Text::HandleType handleType, Text::HandleImageType handleImageType);
397
398   /**
399    * @brief Callback when keyboard is shown/hidden.
400    *
401    * @param[in] keyboardShown True if keyboard is shown.
402    */
403   void KeyboardStatusChanged(bool keyboardShown);
404
405   /**
406    * @brief update scroll bar position
407    *
408    * If text scroll is occurred, create or update scroll bar position
409    */
410   void UpdateScrollBar();
411
412   /**
413    * @brief Callback when TextEditor is touched
414    *
415    * @param[in] actor TextEditor touched
416    * @param[in] touch Touch information
417    */
418   bool OnTouched(Actor actor, const TouchEvent& touch);
419
420   /**
421    * @brief Callbacks called on idle.
422    *
423    * If there are notifications of change of input style on the queue, Toolkit::TextEditor::InputStyleChangedSignal() are emitted.
424    */
425   void OnIdleSignal();
426
427   /**
428    * @brief Emits CursorPositionChanged signal.
429    */
430   void EmitCursorPositionChangedSignal();
431
432   /**
433    * @brief Emits TextChanged signal.
434    */
435   void EmitTextChangedSignal();
436
437   /**
438    * @brief Emits SelectionChanged signal.
439    */
440   void EmitSelectionChangedSignal();
441
442   /**
443    * @brief Emits SelectionCleared signal.
444    */
445   void EmitSelectionClearedSignal();
446
447   /**
448    * @brief set RenderActor's position with new scrollPosition
449    *
450    * Apply updated scroll position or start scroll animation if VerticalScrollAnimation is enabled
451    */
452   void ApplyScrollPosition();
453
454   /**
455    * @brief Callback function for ScrollBar indicator animation finished signal
456    *
457    * Emit ScrollBarStateChanged Signal and toggle mScrollStarted flag to false
458    */
459   void OnScrollIndicatorAnimationFinished(Animation& animation);
460
461   /**
462   * @brief Callback function for when the layout is changed.
463   * @param[in] actor The actor whose layoutDirection is changed.
464   * @param[in] type  The layoutDirection.
465   */
466   void OnLayoutDirectionChanged(Actor actor, LayoutDirection::Type type);
467
468   /**
469    * Construct a new TextEditor.
470    */
471   TextEditor();
472
473   /**
474    * A reference counted object may only be deleted by calling Unreference()
475    */
476   virtual ~TextEditor();
477
478   // Undefined copy constructor and assignment operators
479   TextEditor(const TextEditor&);
480   TextEditor& operator=(const TextEditor& rhs);
481
482   /**
483    * @brief Resize actor to the given size.
484    *
485    * @param[in] actor The actor to be resized.
486    * @param[in] size Size to change.
487    */
488   void ResizeActor(Actor& actor, const Vector2& size);
489
490   /**
491    * @brief Render view, create and attach actor(s) to this text editor.
492    */
493   void RenderText(Text::Controller::UpdateTextType updateTextType);
494
495   // Connection needed to re-render text, when a text editor returns to the scene.
496   void OnSceneConnect(Dali::Actor actor);
497
498   // Needed to synchronize TextAnchor actors with Anchor objects in text's logical model
499   void OnAccessibilityStatusChanged();
500
501 private: // Data
502   // Signals
503   Toolkit::TextEditor::TextChangedSignalType                mTextChangedSignal;
504   Toolkit::TextEditor::InputStyleChangedSignalType          mInputStyleChangedSignal;
505   Toolkit::TextEditor::ScrollStateChangedSignalType         mScrollStateChangedSignal;
506   Toolkit::DevelTextEditor::MaxLengthReachedSignalType      mMaxLengthReachedSignal;
507   Toolkit::DevelTextEditor::AnchorClickedSignalType         mAnchorClickedSignal;
508   Toolkit::DevelTextEditor::InputFilteredSignalType         mInputFilteredSignal;
509   Toolkit::DevelTextEditor::CursorPositionChangedSignalType mCursorPositionChangedSignal;
510   Toolkit::DevelTextEditor::SelectionChangedSignalType      mSelectionChangedSignal;
511   Toolkit::DevelTextEditor::SelectionClearedSignalType      mSelectionClearedSignal;
512
513   InputMethodContext               mInputMethodContext;
514   Text::ControllerPtr              mController;
515   Text::RendererPtr                mRenderer;
516   Text::DecoratorPtr               mDecorator;
517   Text::TextVerticalScrollerPtr    mTextVerticalScroller;
518   Toolkit::Control                 mStencil;
519   Toolkit::ScrollBar               mScrollBar;
520   Dali::Animation                  mAnimation; ///< Scroll indicator Show/Hide Animation.
521   Dali::TimePeriod                 mAnimationPeriod;
522   std::vector<Actor>               mClippingDecorationActors; ///< Decoration actors which need clipping.
523   std::vector<Toolkit::TextAnchor> mAnchorActors;
524   Dali::InputMethodOptions         mInputMethodOptions;
525
526   Actor         mRenderableActor;
527   Actor         mActiveLayer;
528   Actor         mBackgroundActor;
529   CallbackBase* mIdleCallback;
530
531   float mAlignmentOffset;
532   float mScrollAnimationDuration;
533   float mLineSpacing;
534   int   mRenderingBackend;
535   bool  mHasBeenStaged : 1;
536   bool  mScrollAnimationEnabled : 1;
537   bool  mScrollBarEnabled : 1;
538   bool  mScrollStarted : 1;
539   bool  mTextChanged : 1;           ///< If true, emits TextChangedSignal in next OnRelayout().
540   bool  mCursorPositionChanged : 1; ///< If true, emits CursorPositionChangedSignal at the end of OnRelayout().
541   bool  mSelectionChanged : 1;      ///< If true, emits SelectionChangedSignal at the end of OnRelayout().
542   bool  mSelectionCleared : 1;      ///< If true, emits SelectionClearedSignal at the end of OnRelayout().
543
544   //args for cursor PositionChanged event
545   unsigned int mOldPosition;
546
547   //args for selection changed event
548   uint32_t mOldSelectionStart;
549   uint32_t mOldSelectionEnd;
550
551   struct PropertyHandler;
552
553   /**
554    * @brief This structure is to connect TextEditor with Accessible functions.
555    */
556   struct AccessibleImpl : public DevelControl::AccessibleImpl,
557                           public virtual Dali::Accessibility::Text,
558                           public virtual Dali::Accessibility::EditableText,
559                           public virtual Dali::Accessibility::Hypertext
560   {
561     using DevelControl::AccessibleImpl::AccessibleImpl;
562
563     /**
564      * @copydoc Dali::Accessibility::Accessible::GetName()
565      */
566     std::string GetName() override;
567
568     /**
569      * @copydoc Dali::Accessibility::Text::GetText()
570      */
571     std::string GetText(size_t startOffset, size_t endOffset) override;
572
573     /**
574      * @copydoc Dali::Accessibility::Text::GetCharacterCount()
575      */
576     size_t GetCharacterCount() override;
577
578     /**
579      * @copydoc Dali::Accessibility::Text::GetCursorOffset()
580      */
581     size_t GetCursorOffset() override;
582
583     /**
584      * @copydoc Dali::Accessibility::Text::SetCursorOffset()
585      */
586     bool SetCursorOffset(size_t offset) override;
587
588     /**
589      * @copydoc Dali::Accessibility::Text::GetTextAtOffset()
590      */
591     Accessibility::Range GetTextAtOffset(size_t offset, Accessibility::TextBoundary boundary) override;
592
593     /**
594      * @copydoc Dali::Accessibility::Text::GetRangeOfSelection()
595      */
596     Accessibility::Range GetRangeOfSelection(size_t selectionIndex) override;
597
598     /**
599      * @copydoc Dali::Accessibility::Text::RemoveSelection()
600      */
601     bool RemoveSelection(size_t selectionIndex) override;
602
603     /**
604      * @copydoc Dali::Accessibility::Text::SetRangeOfSelection()
605      */
606     bool SetRangeOfSelection(size_t selectionIndex, size_t startOffset, size_t endOffset) override;
607
608     /**
609      * @copydoc Dali::Accessibility::EditableText::CopyText()
610      */
611     bool CopyText(size_t startPosition, size_t endPosition) override;
612
613     /**
614      * @copydoc Dali::Accessibility::EditableText::CutText()
615      */
616     bool CutText(size_t startPosition, size_t endPosition) override;
617
618     /**
619      * @copydoc Dali::Accessibility::Accessible::GetStates()
620      */
621     Accessibility::States CalculateStates() override;
622
623     /**
624      * @copydoc Dali::Accessibility::EditableText::InsertText()
625      */
626     bool InsertText(size_t startPosition, std::string text) override;
627
628     /**
629      * @copydoc Dali::Accessibility::EditableText::SetTextContents()
630      */
631     bool SetTextContents(std::string newContents) override;
632
633     /**
634      * @copydoc Dali::Accessibility::EditableText::DeleteText()
635      */
636     bool DeleteText(size_t startPosition, size_t endPosition) override;
637
638     /**
639      * @copydoc Dali::Accessibility::Hypertext::GetLink()
640      */
641     Accessibility::Hyperlink* GetLink(int32_t linkIndex) const override;
642
643     /**
644      * @copydoc Dali::Accessibility::Hypertext::GetLinkIndex()
645      */
646     int32_t GetLinkIndex(int32_t characterOffset) const override;
647
648     /**
649      * @copydoc Dali::Accessibility::Hypertext::GetLinkCount()
650      */
651     int32_t GetLinkCount() const override;
652   };
653 };
654
655 } // namespace Internal
656
657 // Helpers for public-api forwarding methods
658
659 inline Toolkit::Internal::TextEditor& GetImpl(Toolkit::TextEditor& textEditor)
660 {
661   DALI_ASSERT_ALWAYS(textEditor);
662
663   Dali::RefObject& handle = textEditor.GetImplementation();
664
665   return static_cast<Toolkit::Internal::TextEditor&>(handle);
666 }
667
668 inline const Toolkit::Internal::TextEditor& GetImpl(const Toolkit::TextEditor& textEditor)
669 {
670   DALI_ASSERT_ALWAYS(textEditor);
671
672   const Dali::RefObject& handle = textEditor.GetImplementation();
673
674   return static_cast<const Toolkit::Internal::TextEditor&>(handle);
675 }
676
677 } // namespace Toolkit
678
679 } // namespace Dali
680
681 #endif // DALI_TOOLKIT_INTERNAL_TEXT_EDITOR_H