Update ATSPI code according to DALi coding rule
[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::InputFilteredSignal()
121    */
122   DevelTextField::InputFilteredSignalType& InputFilteredSignal();
123
124 private: // From Control
125   /**
126    * @copydoc Control::OnInitialize()
127    */
128   void OnInitialize() override;
129
130   /**
131    * @copydoc Control::OnStyleChange()
132    */
133   void OnStyleChange(Toolkit::StyleManager styleManager, StyleChange::Type change) override;
134
135   /**
136    * @copydoc Control::GetNaturalSize()
137    */
138   Vector3 GetNaturalSize() override;
139
140   /**
141    * @copydoc Control::GetHeightForWidth()
142    */
143   float GetHeightForWidth(float width) override;
144
145   /**
146    * @copydoc Control::OnInitialize()
147    */
148   void OnRelayout(const Vector2& size, RelayoutContainer& container) override;
149
150   /**
151    * @copydoc Control::OnKeyInputFocusGained()
152    */
153   void OnKeyInputFocusGained() override;
154
155   /**
156    * @copydoc Control::OnKeyInputFocusLost()
157    */
158   void OnKeyInputFocusLost() override;
159
160   /**
161    * @copydoc Control::OnAccessibilityActivated()
162    */
163   bool OnAccessibilityActivated() override;
164
165   /**
166    * @copydoc Control::OnTap()
167    */
168   void OnTap(const TapGesture& tap) override;
169
170   /**
171    * @copydoc Control::OnPan()
172    */
173   void OnPan(const PanGesture& gesture) override;
174
175   /**
176    * @copydoc Control::OnLongPress()
177    */
178   void OnLongPress(const LongPressGesture& gesture) override;
179
180   /**
181    * @copydoc Control::OnSceneConnection()
182    */
183   void OnSceneConnection(int depth) override;
184
185   /**
186    * @copydoc Dali::CustomActorImpl::OnKeyEvent(const KeyEvent&)
187    */
188   bool OnKeyEvent(const KeyEvent& event) override;
189
190   // From ControlInterface
191
192   /**
193    * @copydoc Text::ControlInterface::RequestTextRelayout()
194    */
195   void RequestTextRelayout() override;
196
197   // From EditableControlInterface
198
199   /**
200    * @copydoc Text::EditableControlInterface::TextChanged()
201    */
202   void TextInserted(unsigned int position, unsigned int length, const std::string& content) override;
203
204   /**
205    * @copydoc Text::EditableControlInterface::TextDeleted()
206    */
207   void TextDeleted(unsigned int position, unsigned int length, const std::string& content) override;
208
209   /**
210    * @copydoc Text::EditableControlInterface::CursorMoved()
211    */
212   void CursorMoved(unsigned int position) override;
213
214   /**
215    * @copydoc Text::EditableControlInterface::TextChanged()
216    */
217   void TextChanged(bool immediate) override;
218
219   /**
220    * @copydoc Text::EditableControlInterface::MaxLengthReached()
221    */
222   void MaxLengthReached() override;
223
224   /**
225    * @copydoc Text::EditableControlInterface::InputStyleChanged()
226    */
227   void InputStyleChanged(Text::InputStyle::Mask inputStyleMask) override;
228
229   /**
230    * @copydoc Text::EditableControlInterface::AddDecoration()
231    */
232   void AddDecoration(Actor& actor, bool needsClipping) override;
233
234   /**
235    * @copydoc Text::EditableControlInterface::InputFiltered()
236    */
237   void InputFiltered(Toolkit::InputFilter::Property::Type type) override;
238
239   /**
240    * @copydoc Text::EditableControlInterface::GetControlBackgroundColor()
241    */
242   void GetControlBackgroundColor(Vector4& color) const override;
243
244   // From SelectableControlInterface
245 public:
246   /**
247    * @copydoc Text::SelectableControlInterface::SetTextSelectionRange()
248    */
249   void SetTextSelectionRange(const uint32_t* start, const uint32_t* end) override;
250
251   /**
252    * @copydoc Text::SelectableControlInterface::GetTextSelectionRange()
253    */
254   Uint32Pair GetTextSelectionRange() const override;
255
256   /**
257    * @copydoc Text::SelectableControlInterface::SelectWholeText()
258    */
259   void SelectWholeText() override;
260
261   /**
262    * @copydoc Text::SelectableControlInterface::SelectNone()
263    */
264   void SelectNone() override;
265
266   /**
267    * @copydoc Text::SelectableControlInterface::GetSelectedText()
268    */
269   string GetSelectedText() const override;
270
271   /**
272    * @copydoc Text::EditableControlInterface::IsEditable()
273    */
274   bool IsEditable() const override;
275
276   /**
277    * @copydoc Text::EditableControlInterface::SetEditable()
278    */
279   void SetEditable(bool editable) override;
280
281   // From AnchorControlInterface
282
283   /**
284    * @copydoc Text::AnchorControlInterface::AnchorClicked()
285    */
286   void AnchorClicked(const std::string& href) override;
287
288 private: // Implementation
289   /**
290    * @copydoc Dali::Toolkit::Text::Controller::(InputMethodContext& inputMethodContext, const InputMethodContext::EventData& inputMethodContextEvent)
291    */
292   InputMethodContext::CallbackData OnInputMethodContextEvent(InputMethodContext& inputMethodContext, const InputMethodContext::EventData& inputMethodContextEvent);
293
294   /**
295    * @brief Callback when Clipboard signals an item should be pasted
296    * @param[in] clipboard handle to Clipboard Event Notifier
297    */
298   void OnClipboardTextSelected(ClipboardEventNotifier& clipboard);
299
300   /**
301    * @brief Get a Property Map for the image used for the required Handle Image
302    * @param[out] value the returned image property
303    * @param[in] handleType the type of handle
304    * @param[in] handleImageType the type of image for the given handleType
305    */
306   void GetHandleImagePropertyValue(Property::Value& value, Text::HandleType handleType, Text::HandleImageType handleImageType);
307
308   /**
309    * @brief Enable or disable clipping.
310    */
311   void EnableClipping();
312
313   /**
314    * @brief Callback when keyboard is shown/hidden.
315    *
316    * @param[in] keyboardShown True if keyboard is shown.
317    */
318   void KeyboardStatusChanged(bool keyboardShown);
319
320   /**
321    * @brief Callback when TextField is touched
322    *
323    * @param[in] actor TextField touched
324    * @param[in] touch Touch information
325    */
326   bool OnTouched(Actor actor, const TouchEvent& touch);
327
328   /**
329    * @brief Callbacks called on idle.
330    *
331    * If there are notifications of change of input style on the queue, Toolkit::TextField::InputStyleChangedSignal() are emitted.
332    */
333   void OnIdleSignal();
334
335   /**
336    * @brief Emits TextChanged signal.
337    */
338   void EmitTextChangedSignal();
339
340   /**
341    * Construct a new TextField.
342    */
343   TextField();
344
345   /**
346    * A reference counted object may only be deleted by calling Unreference()
347    */
348   virtual ~TextField();
349
350   // Undefined copy constructor and assignment operators
351   TextField(const TextField&);
352   TextField& operator=(const TextField& rhs);
353
354   /**
355    * @brief Resize actor to the given size.
356    *
357    * @param[in] actor The actor to be resized.
358    * @param[in] size Size to change.
359    */
360   void ResizeActor(Actor& actor, const Vector2& size);
361
362   /**
363    * @brief Render view, create and attach actor(s) to this Text Field.
364    */
365   void RenderText(Text::Controller::UpdateTextType updateTextType);
366
367   // Connection needed to re-render text, when a Text Field returns to the scene.
368   void OnSceneConnect(Dali::Actor actor);
369
370 private: // Data
371   // Signals
372   Toolkit::TextField::TextChangedSignalType        mTextChangedSignal;
373   Toolkit::TextField::MaxLengthReachedSignalType   mMaxLengthReachedSignal;
374   Toolkit::TextField::InputStyleChangedSignalType  mInputStyleChangedSignal;
375   Toolkit::DevelTextField::AnchorClickedSignalType mAnchorClickedSignal;
376   Toolkit::DevelTextField::InputFilteredSignalType mInputFilteredSignal;
377
378   InputMethodContext       mInputMethodContext;
379   Text::ControllerPtr      mController;
380   Text::RendererPtr        mRenderer;
381   Text::DecoratorPtr       mDecorator;
382   Toolkit::Control         mStencil;                  ///< For EXCEED_POLICY_CLIP
383   std::vector<Actor>       mClippingDecorationActors; ///< Decoration actors which need clipping.
384   Dali::InputMethodOptions mInputMethodOptions;
385
386   Actor         mRenderableActor;
387   Actor         mActiveLayer;
388   Actor         mBackgroundActor;
389   CallbackBase* mIdleCallback;
390
391   float mAlignmentOffset;
392   int   mRenderingBackend;
393   int   mExceedPolicy;
394   bool  mHasBeenStaged : 1;
395   bool  mTextChanged : 1; ///< If true, emits TextChangedSignal in next OnRelayout().
396
397 protected:
398   /**
399    * @brief This structure is to connect TextField with Accessible functions.
400    */
401   struct AccessibleImpl : public DevelControl::AccessibleImpl,
402                           public virtual Dali::Accessibility::Text,
403                           public virtual Dali::Accessibility::EditableText
404   {
405     using DevelControl::AccessibleImpl::AccessibleImpl;
406
407     /**
408      * @copydoc Dali::Accessibility::Accessible::GetName()
409      */
410     std::string GetName() override;
411
412     /**
413      * @copydoc Dali::Accessibility::Text::GetText()
414      */
415     std::string GetText(size_t startOffset, size_t endOffset) override;
416
417     /**
418      * @copydoc Dali::Accessibility::Text::GetCharacterCount()
419      */
420     size_t GetCharacterCount() override;
421
422     /**
423      * @copydoc Dali::Accessibility::Text::GetCursorOffset()
424      */
425     size_t GetCursorOffset() override;
426
427     /**
428      * @copydoc Dali::Accessibility::Text::SetCursorOffset()
429      */
430     bool SetCursorOffset(size_t offset) override;
431
432     /**
433      * @copydoc Dali::Accessibility::Text::GetTextAtOffset()
434      */
435     Accessibility::Range GetTextAtOffset(size_t offset, Accessibility::TextBoundary boundary) override;
436
437     /**
438      * @copydoc Dali::Accessibility::Text::GetRangeOfSelection()
439      */
440     Accessibility::Range GetRangeOfSelection(size_t selectionIndex) override;
441
442     /**
443      * @copydoc Dali::Accessibility::Text::RemoveSelection()
444      */
445     bool RemoveSelection(size_t selectionIndex) override;
446
447     /**
448      * @copydoc Dali::Accessibility::Text::SetRangeOfSelection()
449      */
450     bool SetRangeOfSelection(size_t selectionIndex, size_t startOffset, size_t endOffset) override;
451
452     /**
453      * @copydoc Dali::Accessibility::EditableText::CopyText()
454      */
455     bool CopyText(size_t startPosition, size_t endPosition) override;
456
457     /**
458      * @copydoc Dali::Accessibility::EditableText::CutText()
459      */
460     bool CutText(size_t startPosition, size_t endPosition) override;
461
462     /**
463      * @copydoc Dali::Accessibility::Accessible::GetStates()
464      */
465     Accessibility::States CalculateStates() override;
466
467     /**
468      * @copydoc Dali::Accessibility::EditableText::InsertText()
469      */
470     bool InsertText(size_t startPosition, std::string text) override;
471
472     /**
473      * @copydoc Dali::Accessibility::EditableText::SetTextContents()
474      */
475     bool SetTextContents(std::string newContents) override;
476
477     /**
478      * @copydoc Dali::Accessibility::EditableText::DeleteText()
479      */
480     bool DeleteText(size_t startPosition, size_t endPosition) override;
481   };
482 };
483
484 } // namespace Internal
485
486 // Helpers for public-api forwarding methods
487
488 inline Toolkit::Internal::TextField& GetImpl(Toolkit::TextField& textField)
489 {
490   DALI_ASSERT_ALWAYS(textField);
491
492   Dali::RefObject& handle = textField.GetImplementation();
493
494   return static_cast<Toolkit::Internal::TextField&>(handle);
495 }
496
497 inline const Toolkit::Internal::TextField& GetImpl(const Toolkit::TextField& textField)
498 {
499   DALI_ASSERT_ALWAYS(textField);
500
501   const Dali::RefObject& handle = textField.GetImplementation();
502
503   return static_cast<const Toolkit::Internal::TextField&>(handle);
504 }
505
506 } // namespace Toolkit
507
508 } // namespace Dali
509
510 #endif // DALI_TOOLKIT_INTERNAL_TEXT_FIELD_H