[AT-SPI] Squashed implementation
[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) 2020 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/public-api/controls/control-impl.h>
27 #include <dali-toolkit/public-api/controls/text-controls/text-field.h>
28 #include <dali-toolkit/internal/text/decorator/text-decorator.h>
29 #include <dali-toolkit/internal/text/text-control-interface.h>
30 #include <dali-toolkit/internal/text/text-editable-control-interface.h>
31 #include <dali-toolkit/internal/text/text-selectable-control-interface.h>
32 #include <dali-toolkit/internal/text/text-controller.h>
33 #include <dali-toolkit/internal/text/rendering/text-renderer.h>
34 #include <dali-toolkit/internal/controls/control/control-data-impl.h>
35
36 namespace Dali
37 {
38
39 namespace Toolkit
40 {
41
42 namespace Internal
43 {
44 /**
45  * @brief A control which renders a short text string.
46  */
47 class TextField : public Control, public Text::ControlInterface, public Text::EditableControlInterface, public Text::SelectableControlInterface
48 {
49 public:
50
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    * @copydoc TextField::TextChangedSignal()
94    */
95   Toolkit::TextField::TextChangedSignalType&  TextChangedSignal();
96
97   /**
98    * @copydoc TextField::MaxLengthReachedSignal()
99    */
100   Toolkit::TextField::MaxLengthReachedSignalType&  MaxLengthReachedSignal();
101
102   /**
103    * @copydoc TextField::TextChangedSignal()
104    */
105   Toolkit::TextField::InputStyleChangedSignalType& InputStyleChangedSignal();
106
107   Text::ControllerPtr getController();
108
109 private: // From Control
110
111   /**
112    * @copydoc Control::OnInitialize()
113    */
114   void OnInitialize() override;
115
116   /**
117    * @copydoc Control::OnStyleChange()
118    */
119   void OnStyleChange( Toolkit::StyleManager styleManager, StyleChange::Type change ) override;
120
121   /**
122    * @copydoc Control::GetNaturalSize()
123    */
124   Vector3 GetNaturalSize() override;
125
126   /**
127    * @copydoc Control::GetHeightForWidth()
128    */
129   float GetHeightForWidth( float width ) override;
130
131   /**
132    * @copydoc Control::OnInitialize()
133    */
134   void OnRelayout( const Vector2& size, RelayoutContainer& container ) override;
135
136   /**
137    * @copydoc Control::OnKeyInputFocusGained()
138    */
139   void OnKeyInputFocusGained() override;
140
141   /**
142    * @copydoc Control::OnKeyInputFocusLost()
143    */
144   void OnKeyInputFocusLost() override;
145
146   /**
147    * @copydoc Control::OnTap()
148    */
149   void OnTap( const TapGesture& tap ) override;
150
151   /**
152    * @copydoc Control::OnPan()
153    */
154   void OnPan( const PanGesture& gesture ) override;
155
156   /**
157    * @copydoc Control::OnLongPress()
158    */
159   void OnLongPress( const LongPressGesture& gesture ) override;
160
161   /**
162    * @copydoc Control::OnSceneConnection()
163    */
164   void OnSceneConnection( int depth ) override;
165
166   /**
167    * @copydoc Dali::CustomActorImpl::OnKeyEvent(const KeyEvent&)
168    */
169   bool OnKeyEvent(const KeyEvent& event) override;
170
171 // From ControlInterface
172
173   /**
174    * @copydoc Text::ControlInterface::RequestTextRelayout()
175    */
176   void RequestTextRelayout() override;
177
178 // From EditableControlInterface
179
180   /**
181    * @copydoc Text::EditableControlInterface::TextChanged()
182    */
183   void TextInserted( unsigned int position, unsigned int length, const std::string &content ) override;
184
185   /**
186    * @copydoc Text::EditableControlInterface::TextDeleted()
187    */
188   void TextDeleted( unsigned int position, unsigned int length, const std::string &content ) override;
189
190   /**
191    * @copydoc Text::EditableControlInterface::CaretMoved()
192    */
193   void CaretMoved( unsigned int position ) override;
194
195   /**
196    * @copydoc Text::EditableControlInterface::TextChanged()
197    */
198   void TextChanged() override;
199
200   /**
201    * @copydoc Text::EditableControlInterface::MaxLengthReached()
202    */
203   void MaxLengthReached() override;
204
205   /**
206    * @copydoc Text::EditableControlInterface::InputStyleChanged()
207    */
208   void InputStyleChanged( Text::InputStyle::Mask inputStyleMask ) override;
209
210   /**
211    * @copydoc Text::EditableControlInterface::AddDecoration()
212    */
213   void AddDecoration( Actor& actor, bool needsClipping ) override;
214
215 // From SelectableControlInterface
216 public:
217   /**
218    * @copydoc Text::SelectableControlInterface::SetTextSelectionRange()
219    */
220   void SetTextSelectionRange(const uint32_t *start, const uint32_t *end) override;
221
222   /**
223    * @copydoc Text::SelectableControlInterface::GetTextSelectionRange()
224    */
225   Uint32Pair GetTextSelectionRange() const override;
226
227   /**
228    * @copydoc Text::SelectableControlInterface::SelectWholeText()
229    */
230   void SelectWholeText() override;
231
232   /**
233    * @copydoc Text::SelectableControlInterface::SelectNone()
234    */
235   void SelectNone() override;
236
237   /**
238    * @copydoc Text::SelectableControlInterface::GetSelectedText()
239    */
240   string GetSelectedText() const override;
241
242   /**
243    * @copydoc Text::EditableControlInterface::IsEditable()
244    */
245   bool IsEditable() const override;
246
247   /**
248    * @copydoc Text::EditableControlInterface::SetEditable()
249    */
250   void SetEditable( bool editable ) override;
251
252 private: // Implementation
253
254   /**
255    * @copydoc Dali::Toolkit::Text::Controller::(InputMethodContext& inputMethodContext, const InputMethodContext::EventData& inputMethodContextEvent)
256    */
257   InputMethodContext::CallbackData OnInputMethodContextEvent( InputMethodContext& inputMethodContext, const InputMethodContext::EventData& inputMethodContextEvent );
258
259   /**
260    * @brief Callback when Clipboard signals an item should be pasted
261    * @param[in] clipboard handle to Clipboard Event Notifier
262    */
263   void OnClipboardTextSelected( ClipboardEventNotifier& clipboard );
264
265   /**
266    * @brief Get a Property Map for the image used for the required Handle Image
267    * @param[out] value the returned image property
268    * @param[in] handleType the type of handle
269    * @param[in] handleImageType the type of image for the given handleType
270    */
271   void GetHandleImagePropertyValue(  Property::Value& value, Text::HandleType handleType, Text::HandleImageType handleImageType );
272
273   /**
274    * @brief Enable or disable clipping.
275    */
276   void EnableClipping();
277
278   /**
279    * @brief Callback when keyboard is shown/hidden.
280    *
281    * @param[in] keyboardShown True if keyboard is shown.
282    */
283   void KeyboardStatusChanged( bool keyboardShown );
284
285   /**
286    * @brief Callback when TextField is touched
287    *
288    * @param[in] actor TextField touched
289    * @param[in] touch Touch information
290    */
291   bool OnTouched( Actor actor, const TouchEvent& touch );
292
293   /**
294    * @brief Callbacks called on idle.
295    *
296    * If there are notifications of change of input style on the queue, Toolkit::TextField::InputStyleChangedSignal() are emitted.
297    */
298   void OnIdleSignal();
299
300   /**
301    * Construct a new TextField.
302    */
303   TextField();
304
305   /**
306    * A reference counted object may only be deleted by calling Unreference()
307    */
308   virtual ~TextField();
309
310   // Undefined copy constructor and assignment operators
311   TextField(const TextField&);
312   TextField& operator=(const TextField& rhs);
313
314   /**
315    * @brief Render view, create and attach actor(s) to this Text Field.
316    */
317   void RenderText( Text::Controller::UpdateTextType updateTextType );
318
319   // Connection needed to re-render text, when a Text Field returns to the scene.
320   void OnSceneConnect( Dali::Actor actor );
321
322 public: // For UTC only
323
324   Text::ControllerPtr GetTextController() { return mController; }
325
326 private: // Data
327
328   // Signals
329   Toolkit::TextField::TextChangedSignalType mTextChangedSignal;
330   Toolkit::TextField::MaxLengthReachedSignalType mMaxLengthReachedSignal;
331   Toolkit::TextField::InputStyleChangedSignalType mInputStyleChangedSignal;
332
333   InputMethodContext mInputMethodContext;
334   Text::ControllerPtr mController;
335   Text::RendererPtr mRenderer;
336   Text::DecoratorPtr mDecorator;
337   Toolkit::Control mStencil; ///< For EXCEED_POLICY_CLIP
338   std::vector<Actor> mClippingDecorationActors;   ///< Decoration actors which need clipping.
339   Dali::InputMethodOptions mInputMethodOptions;
340
341   Actor mRenderableActor;
342   Actor mActiveLayer;
343   Actor mBackgroundActor;
344   CallbackBase* mIdleCallback;
345
346   float mAlignmentOffset;
347   int mRenderingBackend;
348   int mExceedPolicy;
349   bool mHasBeenStaged:1;
350
351 protected:
352   struct AccessibleImpl : public Control::Impl::AccessibleImpl,
353                           public virtual Dali::Accessibility::Text,
354                           public virtual Dali::Accessibility::EditableText
355   {
356     using Control::Impl::AccessibleImpl::AccessibleImpl;
357
358     std::string GetName() override;
359     std::string GetText( size_t startOffset, size_t endOffset ) override;
360     size_t GetCharacterCount() override;
361     size_t GetCaretOffset() override;
362     bool SetCaretOffset(size_t offset) override;
363     Dali::Accessibility::Range
364     GetTextAtOffset( size_t offset,
365                      Dali::Accessibility::TextBoundary boundary ) override;
366     Dali::Accessibility::Range GetSelection( size_t selectionNum ) override;
367     bool RemoveSelection( size_t selectionNum ) override;
368     bool SetSelection( size_t selectionNum, size_t startOffset,
369                        size_t endOffset ) override;
370     bool CopyText( size_t startPosition, size_t endPosition ) override;
371     bool CutText( size_t startPosition, size_t endPosition ) override;
372     Dali::Accessibility::States CalculateStates() override;
373   };
374 };
375
376 } // namespace Internal
377
378 // Helpers for public-api forwarding methods
379
380 inline Toolkit::Internal::TextField& GetImpl( Toolkit::TextField& textField )
381 {
382   DALI_ASSERT_ALWAYS(textField);
383
384   Dali::RefObject& handle = textField.GetImplementation();
385
386   return static_cast<Toolkit::Internal::TextField&>(handle);
387 }
388
389 inline const Toolkit::Internal::TextField& GetImpl( const Toolkit::TextField& textField )
390 {
391   DALI_ASSERT_ALWAYS(textField);
392
393   const Dali::RefObject& handle = textField.GetImplementation();
394
395   return static_cast<const Toolkit::Internal::TextField&>(handle);
396 }
397
398 } // namespace Toolkit
399
400 } // namespace Dali
401
402 #endif // DALI_TOOLKIT_INTERNAL_TEXT_FIELD_H