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