5cc7e78b057b05885d53d77e84c876a683459be6
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / internal / controls / text-controls / text-field-impl.h
1 #ifndef DALI_TOOLKIT_INTERNAL_TEXT_FIELD_H
2 #define DALI_TOOLKIT_INTERNAL_TEXT_FIELD_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/clipboard-event-notifier.h>
23 #include <dali/devel-api/adaptor-framework/input-method-context.h>
24
25 // INTERNAL INCLUDES
26 #include <dali-toolkit/devel-api/controls/control-devel.h>
27 #include <dali-toolkit/devel-api/controls/text-controls/text-field-devel.h>
28 #include <dali-toolkit/internal/controls/control/control-data-impl.h>
29 #include <dali-toolkit/internal/text/decorator/text-decorator.h>
30 #include <dali-toolkit/internal/text/rendering/text-renderer.h>
31 #include <dali-toolkit/internal/text/text-anchor-control-interface.h>
32 #include <dali-toolkit/internal/text/text-control-interface.h>
33 #include <dali-toolkit/internal/text/text-controller.h>
34 #include <dali-toolkit/internal/text/text-editable-control-interface.h>
35 #include <dali-toolkit/internal/text/text-selectable-control-interface.h>
36 #include <dali-toolkit/public-api/controls/control-impl.h>
37 #include <dali-toolkit/public-api/controls/text-controls/text-field.h>
38
39 namespace Dali
40 {
41 namespace Toolkit
42 {
43 namespace Internal
44 {
45 /**
46  * @brief A control which renders a short text string.
47  */
48 class TextField : public Control, public Text::ControlInterface, public Text::EditableControlInterface, public Text::SelectableControlInterface, public Text::AnchorControlInterface
49 {
50 public:
51   /**
52    * @copydoc Dali::Toollkit::TextField::New()
53    */
54   static Toolkit::TextField New();
55
56   // Properties
57
58   /**
59    * @brief Called when a property of an object of this type is set.
60    *
61    * @param[in] object The object whose property is set.
62    * @param[in] index The property index.
63    * @param[in] value The new property value.
64    */
65   static void SetProperty(BaseObject* object, Property::Index index, const Property::Value& value);
66
67   /**
68    * @brief Called to retrieve a property of an object of this type.
69    *
70    * @param[in] object The object whose property is to be retrieved.
71    * @param[in] index The property index.
72    * @return The current value of the property.
73    */
74   static Property::Value GetProperty(BaseObject* object, Property::Index index);
75
76   /**
77    * @copydoc Dali::Toollkit::TextField::GetInputMethodContext()
78    */
79   InputMethodContext GetInputMethodContext();
80
81   /**
82    * Connects a callback function with the object's signals.
83    * @param[in] object The object providing the signal.
84    * @param[in] tracker Used to disconnect the signal.
85    * @param[in] signalName The signal to connect to.
86    * @param[in] functor A newly allocated FunctorDelegate.
87    * @return True if the signal was connected.
88    * @post If a signal was connected, ownership of functor was passed to CallbackBase. Otherwise the caller is responsible for deleting the unused functor.
89    */
90   static bool DoConnectSignal(BaseObject* object, ConnectionTrackerInterface* tracker, const std::string& signalName, FunctorDelegate* functor);
91
92   /**
93    * @brief Gets text controller
94    *
95    * @return The text controller
96    */
97   Text::ControllerPtr GetTextController();
98
99   /**
100    * @copydoc TextField::TextChangedSignal()
101    */
102   Toolkit::TextField::TextChangedSignalType& TextChangedSignal();
103
104   /**
105    * @copydoc TextField::MaxLengthReachedSignal()
106    */
107   Toolkit::TextField::MaxLengthReachedSignalType& MaxLengthReachedSignal();
108
109   /**
110    * @copydoc TextField::TextChangedSignal()
111    */
112   Toolkit::TextField::InputStyleChangedSignalType& InputStyleChangedSignal();
113
114   /**
115    * @copydoc TextField::AnchorClickedSignal()
116    */
117   DevelTextField::AnchorClickedSignalType& AnchorClickedSignal();
118
119   /**
120    * @copydoc TextField::CursorPositionChangedSignal()
121    */
122   DevelTextField::CursorPositionChangedSignalType& CursorPositionChangedSignal();
123
124   /**
125    * @copydoc TextField::InputFilteredSignal()
126    */
127   DevelTextField::InputFilteredSignalType& InputFilteredSignal();
128
129   /**
130    * @copydoc TextField::SelectionChangedSignal()
131    */
132   DevelTextField::SelectionChangedSignalType& SelectionChangedSignal();
133
134 private: // From Control
135   /**
136    * @copydoc Control::OnInitialize()
137    */
138   void OnInitialize() override;
139
140   /**
141    * @copydoc Control::OnStyleChange()
142    */
143   void OnStyleChange(Toolkit::StyleManager styleManager, StyleChange::Type change) override;
144
145   /**
146    * @copydoc Control::GetNaturalSize()
147    */
148   Vector3 GetNaturalSize() override;
149
150   /**
151    * @copydoc Control::GetHeightForWidth()
152    */
153   float GetHeightForWidth(float width) override;
154
155   /**
156    * @copydoc Control::OnInitialize()
157    */
158   void OnRelayout(const Vector2& size, RelayoutContainer& container) override;
159
160   /**
161    * @copydoc Control::OnKeyInputFocusGained()
162    */
163   void OnKeyInputFocusGained() override;
164
165   /**
166    * @copydoc Control::OnKeyInputFocusLost()
167    */
168   void OnKeyInputFocusLost() override;
169
170   /**
171    * @copydoc Control::OnAccessibilityActivated()
172    */
173   bool OnAccessibilityActivated() override;
174
175   /**
176    * @copydoc Control::OnTap()
177    */
178   void OnTap(const TapGesture& tap) override;
179
180   /**
181    * @copydoc Control::OnPan()
182    */
183   void OnPan(const PanGesture& gesture) override;
184
185   /**
186    * @copydoc Control::OnLongPress()
187    */
188   void OnLongPress(const LongPressGesture& gesture) override;
189
190   /**
191    * @copydoc Control::OnSceneConnection()
192    */
193   void OnSceneConnection(int depth) override;
194
195   /**
196    * @copydoc Dali::CustomActorImpl::OnKeyEvent(const KeyEvent&)
197    */
198   bool OnKeyEvent(const KeyEvent& event) override;
199
200   // From ControlInterface
201
202   /**
203    * @copydoc Text::ControlInterface::RequestTextRelayout()
204    */
205   void RequestTextRelayout() override;
206
207   // From EditableControlInterface
208
209   /**
210    * @copydoc Text::EditableControlInterface::TextChanged()
211    */
212   void TextInserted(unsigned int position, unsigned int length, const std::string& content) override;
213
214   /**
215    * @copydoc Text::EditableControlInterface::TextDeleted()
216    */
217   void TextDeleted(unsigned int position, unsigned int length, const std::string& content) override;
218
219   /**
220    * @copydoc Text::EditableControlInterface::CursorPositionChanged()
221    */
222   void CursorPositionChanged(unsigned int oldPosition, unsigned int newPosition) override;
223
224   /**
225    * @copydoc Text::EditableControlInterface::TextChanged()
226    */
227   void TextChanged(bool immediate) override;
228
229   /**
230    * @copydoc Text::EditableControlInterface::MaxLengthReached()
231    */
232   void MaxLengthReached() override;
233
234   /**
235    * @copydoc Text::EditableControlInterface::InputStyleChanged()
236    */
237   void InputStyleChanged(Text::InputStyle::Mask inputStyleMask) override;
238
239   /**
240    * @copydoc Text::SelectableControlInterface::SelectionChanged()
241    */
242   void SelectionChanged(uint32_t oldStart, uint32_t oldEnd, uint32_t newStart, uint32_t newEnd) override;
243
244   /**
245    * @copydoc Text::EditableControlInterface::AddDecoration()
246    */
247   void AddDecoration(Actor& actor, bool needsClipping) override;
248
249   /**
250    * @copydoc Text::EditableControlInterface::InputFiltered()
251    */
252   void InputFiltered(Toolkit::InputFilter::Property::Type type) override;
253
254   /**
255    * @copydoc Text::EditableControlInterface::GetControlBackgroundColor()
256    */
257   void GetControlBackgroundColor(Vector4& color) const override;
258
259   // From SelectableControlInterface
260 public:
261   /**
262    * @copydoc Text::SelectableControlInterface::SetTextSelectionRange()
263    */
264   void SetTextSelectionRange(const uint32_t* start, const uint32_t* end) override;
265
266   /**
267    * @copydoc Text::SelectableControlInterface::GetTextSelectionRange()
268    */
269   Uint32Pair GetTextSelectionRange() const override;
270
271   /**
272    * @copydoc Text::SelectableControlInterface::SelectWholeText()
273    */
274   void SelectWholeText() override;
275
276   /**
277    * @copydoc Text::SelectableControlInterface::SelectNone()
278    */
279   void SelectNone() override;
280
281   /**
282    * @copydoc Text::SelectableControlInterface::SelectText()
283    */
284   void SelectText(const uint32_t start, const uint32_t end) override;
285
286   /**
287    * @copydoc Text::SelectableControlInterface::GetSelectedText()
288    */
289   string GetSelectedText() const override;
290
291   /**
292    * @copydoc Text::EditableControlInterface::IsEditable()
293    */
294   bool IsEditable() const override;
295
296   /**
297    * @copydoc Text::EditableControlInterface::SetEditable()
298    */
299   void SetEditable(bool editable) override;
300
301   // From AnchorControlInterface
302
303   /**
304    * @copydoc Text::AnchorControlInterface::AnchorClicked()
305    */
306   void AnchorClicked(const std::string& href) override;
307
308 private: // Implementation
309   /**
310    * @copydoc Dali::Toolkit::Text::Controller::(InputMethodContext& inputMethodContext, const InputMethodContext::EventData& inputMethodContextEvent)
311    */
312   InputMethodContext::CallbackData OnInputMethodContextEvent(InputMethodContext& inputMethodContext, const InputMethodContext::EventData& inputMethodContextEvent);
313
314   /**
315    * @brief Callback when Clipboard signals an item should be pasted
316    * @param[in] clipboard handle to Clipboard Event Notifier
317    */
318   void OnClipboardTextSelected(ClipboardEventNotifier& clipboard);
319
320   /**
321    * @brief Get a Property Map for the image used for the required Handle Image
322    * @param[out] value the returned image property
323    * @param[in] handleType the type of handle
324    * @param[in] handleImageType the type of image for the given handleType
325    */
326   void GetHandleImagePropertyValue(Property::Value& value, Text::HandleType handleType, Text::HandleImageType handleImageType);
327
328   /**
329    * @brief Enable or disable clipping.
330    */
331   void EnableClipping();
332
333   /**
334    * @brief Callback when keyboard is shown/hidden.
335    *
336    * @param[in] keyboardShown True if keyboard is shown.
337    */
338   void KeyboardStatusChanged(bool keyboardShown);
339
340   /**
341    * @brief Callback when TextField is touched
342    *
343    * @param[in] actor TextField touched
344    * @param[in] touch Touch information
345    */
346   bool OnTouched(Actor actor, const TouchEvent& touch);
347
348   /**
349    * @brief Callbacks called on idle.
350    *
351    * If there are notifications of change of input style on the queue, Toolkit::TextField::InputStyleChangedSignal() are emitted.
352    */
353   void OnIdleSignal();
354
355   /**
356    * @brief Emits TextChanged signal.
357    */
358   void EmitTextChangedSignal();
359
360   /**
361    * @brief Emits CursorPositionChanged signal.
362    */
363   void EmitCursorPositionChangedSignal();
364
365   /**
366    * @brief Emits SelectionChanged signal.
367    */
368   void EmitSelectionChangedSignal();
369
370   /**
371    * @brief Callback function for when the layout is changed.
372    * @param[in] actor The actor whose layoutDirection is changed.
373    * @param[in] type  The layoutDirection.
374    */
375   void OnLayoutDirectionChanged(Actor actor, LayoutDirection::Type type);
376
377   /**
378    * Construct a new TextField.
379    */
380   TextField();
381
382   /**
383    * A reference counted object may only be deleted by calling Unreference()
384    */
385   virtual ~TextField();
386
387   // Undefined copy constructor and assignment operators
388   TextField(const TextField&);
389   TextField& operator=(const TextField& rhs);
390
391   /**
392    * @brief Resize actor to the given size.
393    *
394    * @param[in] actor The actor to be resized.
395    * @param[in] size Size to change.
396    */
397   void ResizeActor(Actor& actor, const Vector2& size);
398
399   /**
400    * @brief Render view, create and attach actor(s) to this Text Field.
401    */
402   void RenderText(Text::Controller::UpdateTextType updateTextType);
403
404   // Connection needed to re-render text, when a Text Field returns to the scene.
405   void OnSceneConnect(Dali::Actor actor);
406
407 private: // Data
408   // Signals
409   Toolkit::TextField::TextChangedSignalType                mTextChangedSignal;
410   Toolkit::TextField::MaxLengthReachedSignalType           mMaxLengthReachedSignal;
411   Toolkit::TextField::InputStyleChangedSignalType          mInputStyleChangedSignal;
412   Toolkit::DevelTextField::AnchorClickedSignalType         mAnchorClickedSignal;
413   Toolkit::DevelTextField::InputFilteredSignalType         mInputFilteredSignal;
414   Toolkit::DevelTextField::CursorPositionChangedSignalType mCursorPositionChangedSignal;
415   Toolkit::DevelTextField::SelectionChangedSignalType      mSelectionChangedSignal;
416
417   InputMethodContext       mInputMethodContext;
418   Text::ControllerPtr      mController;
419   Text::RendererPtr        mRenderer;
420   Text::DecoratorPtr       mDecorator;
421   Toolkit::Control         mStencil;                  ///< For EXCEED_POLICY_CLIP
422   std::vector<Actor>       mClippingDecorationActors; ///< Decoration actors which need clipping.
423   Dali::InputMethodOptions mInputMethodOptions;
424
425   Actor         mRenderableActor;
426   Actor         mActiveLayer;
427   Actor         mBackgroundActor;
428   CallbackBase* mIdleCallback;
429
430   float mAlignmentOffset;
431   int   mRenderingBackend;
432   int   mExceedPolicy;
433   bool  mHasBeenStaged : 1;
434   bool  mTextChanged : 1;           ///< If true, emits TextChangedSignal in next OnRelayout().
435   bool  mCursorPositionChanged : 1; ///< If true, emits CursorPositionChangedSignal at the end of OnRelayout().
436   bool  mSelectionChanged : 1;      ///< If true, emits SelectionChangedSignal at the end of OnRelayout().
437
438   //args for cursor position changed event
439   unsigned int mOldPosition;
440
441   //args for selection changed event
442   uint32_t mOldSelectionStart;
443   uint32_t mOldSelectionEnd;
444
445 protected:
446   /**
447    * @brief This structure is to connect TextField with Accessible functions.
448    */
449   struct AccessibleImpl : public DevelControl::AccessibleImpl,
450                           public virtual Dali::Accessibility::Text,
451                           public virtual Dali::Accessibility::EditableText
452   {
453     using DevelControl::AccessibleImpl::AccessibleImpl;
454
455     /**
456      * @copydoc Dali::Accessibility::Accessible::GetName()
457      */
458     std::string GetName() override;
459
460     /**
461      * @copydoc Dali::Accessibility::Text::GetText()
462      */
463     std::string GetText(size_t startOffset, size_t endOffset) override;
464
465     /**
466      * @copydoc Dali::Accessibility::Text::GetCharacterCount()
467      */
468     size_t GetCharacterCount() override;
469
470     /**
471      * @copydoc Dali::Accessibility::Text::GetCursorOffset()
472      */
473     size_t GetCursorOffset() override;
474
475     /**
476      * @copydoc Dali::Accessibility::Text::SetCursorOffset()
477      */
478     bool SetCursorOffset(size_t offset) override;
479
480     /**
481      * @copydoc Dali::Accessibility::Text::GetTextAtOffset()
482      */
483     Accessibility::Range GetTextAtOffset(size_t offset, Accessibility::TextBoundary boundary) override;
484
485     /**
486      * @copydoc Dali::Accessibility::Text::GetRangeOfSelection()
487      */
488     Accessibility::Range GetRangeOfSelection(size_t selectionIndex) override;
489
490     /**
491      * @copydoc Dali::Accessibility::Text::RemoveSelection()
492      */
493     bool RemoveSelection(size_t selectionIndex) override;
494
495     /**
496      * @copydoc Dali::Accessibility::Text::SetRangeOfSelection()
497      */
498     bool SetRangeOfSelection(size_t selectionIndex, size_t startOffset, size_t endOffset) override;
499
500     /**
501      * @copydoc Dali::Accessibility::EditableText::CopyText()
502      */
503     bool CopyText(size_t startPosition, size_t endPosition) override;
504
505     /**
506      * @copydoc Dali::Accessibility::EditableText::CutText()
507      */
508     bool CutText(size_t startPosition, size_t endPosition) override;
509
510     /**
511      * @copydoc Dali::Accessibility::Accessible::GetStates()
512      */
513     Accessibility::States CalculateStates() override;
514
515     /**
516      * @copydoc Dali::Accessibility::EditableText::InsertText()
517      */
518     bool InsertText(size_t startPosition, std::string text) override;
519
520     /**
521      * @copydoc Dali::Accessibility::EditableText::SetTextContents()
522      */
523     bool SetTextContents(std::string newContents) override;
524
525     /**
526      * @copydoc Dali::Accessibility::EditableText::DeleteText()
527      */
528     bool DeleteText(size_t startPosition, size_t endPosition) override;
529   };
530 };
531
532 } // namespace Internal
533
534 // Helpers for public-api forwarding methods
535
536 inline Toolkit::Internal::TextField& GetImpl(Toolkit::TextField& textField)
537 {
538   DALI_ASSERT_ALWAYS(textField);
539
540   Dali::RefObject& handle = textField.GetImplementation();
541
542   return static_cast<Toolkit::Internal::TextField&>(handle);
543 }
544
545 inline const Toolkit::Internal::TextField& GetImpl(const Toolkit::TextField& textField)
546 {
547   DALI_ASSERT_ALWAYS(textField);
548
549   const Dali::RefObject& handle = textField.GetImplementation();
550
551   return static_cast<const Toolkit::Internal::TextField&>(handle);
552 }
553
554 } // namespace Toolkit
555
556 } // namespace Dali
557
558 #endif // DALI_TOOLKIT_INTERNAL_TEXT_FIELD_H