[Tizen] Add AutofillContainer class and autofill 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 #include <dali/devel-api/adaptor-framework/autofill-item.h>
25
26 // INTERNAL INCLUDES
27 #include <dali-toolkit/public-api/controls/control-impl.h>
28 #include <dali-toolkit/public-api/controls/text-controls/text-field.h>
29 #include <dali-toolkit/internal/text/decorator/text-decorator.h>
30 #include <dali-toolkit/internal/text/text-control-interface.h>
31 #include <dali-toolkit/internal/text/text-editable-control-interface.h>
32 #include <dali-toolkit/internal/text/text-selectable-control-interface.h>
33 #include <dali-toolkit/internal/text/text-controller.h>
34 #include <dali-toolkit/internal/text/rendering/text-renderer.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   /**
108    * @brief Called to select the whole texts.
109    */
110   void SelectWholeText();
111
112   /**
113    * @brief Called to unselect the whole texts.
114    */
115   void SelectNone();
116
117 private: // From Control
118
119   /**
120    * @copydoc Control::OnInitialize()
121    */
122   void OnInitialize() override;
123
124   /**
125    * @copydoc Control::OnStyleChange()
126    */
127   void OnStyleChange( Toolkit::StyleManager styleManager, StyleChange::Type change ) override;
128
129   /**
130    * @copydoc Control::GetNaturalSize()
131    */
132   Vector3 GetNaturalSize() override;
133
134   /**
135    * @copydoc Control::GetHeightForWidth()
136    */
137   float GetHeightForWidth( float width ) override;
138
139   /**
140    * @copydoc Control::OnInitialize()
141    */
142   void OnRelayout( const Vector2& size, RelayoutContainer& container ) override;
143
144   /**
145    * @copydoc Control::OnKeyInputFocusGained()
146    */
147   void OnKeyInputFocusGained() override;
148
149   /**
150    * @copydoc Control::OnKeyInputFocusLost()
151    */
152   void OnKeyInputFocusLost() override;
153
154   /**
155    * @copydoc Control::OnTap()
156    */
157   void OnTap( const TapGesture& tap ) override;
158
159   /**
160    * @copydoc Control::OnPan()
161    */
162   void OnPan( const PanGesture& gesture ) override;
163
164   /**
165    * @copydoc Control::OnLongPress()
166    */
167   void OnLongPress( const LongPressGesture& gesture ) override;
168
169   /**
170    * @copydoc Control::OnSceneConnection()
171    */
172   void OnSceneConnection( int depth ) override;
173
174   /**
175    * @copydoc Dali::CustomActorImpl::OnKeyEvent(const KeyEvent&)
176    */
177   bool OnKeyEvent(const KeyEvent& event) override;
178
179 // From ControlInterface
180
181   /**
182    * @copydoc Text::ControlInterface::RequestTextRelayout()
183    */
184   void RequestTextRelayout() override;
185
186 // From EditableControlInterface
187
188   /**
189    * @copydoc Text::ControlInterface::TextChanged()
190    */
191   void TextChanged() override;
192
193   /**
194    * @copydoc Text::ControlInterface::MaxLengthReached()
195    */
196   void MaxLengthReached() override;
197
198   /**
199    * @copydoc Text::ControlInterface::InputStyleChanged()
200    */
201   void InputStyleChanged( Text::InputStyle::Mask inputStyleMask ) override;
202
203   /**
204    * @copydoc Text::ControlInterface::AddDecoration()
205    */
206   void AddDecoration( Actor& actor, bool needsClipping ) override;
207
208
209 // From SelectableControlInterface
210 public:
211   /**
212    * @copydoc Text::SelectableControlInterface::SetTextSelectionRange()
213    */
214   void SetTextSelectionRange(const uint32_t *start, const uint32_t *end) override;
215
216   /**
217    * @copydoc Text::SelectableControlInterface::GetTextSelectionRange()
218    */
219   Uint32Pair GetTextSelectionRange() const override;
220
221 private: // Implementation
222
223   /**
224    * @copydoc Dali::Toolkit::Text::Controller::(InputMethodContext& inputMethodContext, const InputMethodContext::EventData& inputMethodContextEvent)
225    */
226   InputMethodContext::CallbackData OnInputMethodContextEvent( InputMethodContext& inputMethodContext, const InputMethodContext::EventData& inputMethodContextEvent );
227
228   /**
229    * @brief Callback when Clipboard signals an item should be pasted
230    * @param[in] clipboard handle to Clipboard Event Notifier
231    */
232   void OnClipboardTextSelected( ClipboardEventNotifier& clipboard );
233
234   /**
235    * @brief Get a Property Map for the image used for the required Handle Image
236    * @param[out] value the returned image property
237    * @param[in] handleType the type of handle
238    * @param[in] handleImageType the type of image for the given handleType
239    */
240   void GetHandleImagePropertyValue(  Property::Value& value, Text::HandleType handleType, Text::HandleImageType handleImageType );
241
242   /**
243    * @brief Enable or disable clipping.
244    */
245   void EnableClipping();
246
247   /**
248    * @brief Callback when keyboard is shown/hidden.
249    *
250    * @param[in] keyboardShown True if keyboard is shown.
251    */
252   void KeyboardStatusChanged( bool keyboardShown );
253
254   /**
255    * @brief Callback when TextField is touched
256    *
257    * @param[in] actor TextField touched
258    * @param[in] touch Touch information
259    */
260   bool OnTouched( Actor actor, const TouchEvent& touch );
261
262   /**
263    * @brief Callbacks called on idle.
264    *
265    * If there are notifications of change of input style on the queue, Toolkit::TextField::InputStyleChangedSignal() are emitted.
266    */
267   void OnIdleSignal();
268
269   /**
270    * Construct a new TextField.
271    */
272   TextField();
273
274   /**
275    * A reference counted object may only be deleted by calling Unreference()
276    */
277   virtual ~TextField();
278
279   // Undefined copy constructor and assignment operators
280   TextField(const TextField&);
281   TextField& operator=(const TextField& rhs);
282
283   /**
284    * @brief Render view, create and attach actor(s) to this Text Field.
285    */
286   void RenderText( Text::Controller::UpdateTextType updateTextType );
287
288   // Connection needed to re-render text, when a Text Field returns to the scene.
289   void OnSceneConnect( Dali::Actor actor );
290
291 public: // For UTC only
292
293   Text::ControllerPtr GetTextController() { return mController; }
294
295 private: // Data
296
297   // Signals
298   Toolkit::TextField::TextChangedSignalType mTextChangedSignal;
299   Toolkit::TextField::MaxLengthReachedSignalType mMaxLengthReachedSignal;
300   Toolkit::TextField::InputStyleChangedSignalType mInputStyleChangedSignal;
301
302   InputMethodContext mInputMethodContext;
303   Text::ControllerPtr mController;
304   Text::RendererPtr mRenderer;
305   Text::DecoratorPtr mDecorator;
306   Toolkit::Control mStencil; ///< For EXCEED_POLICY_CLIP
307   std::vector<Actor> mClippingDecorationActors;   ///< Decoration actors which need clipping.
308   Dali::InputMethodOptions mInputMethodOptions;
309   Dali::AutofillItem mAutofillItem;
310
311   Actor mRenderableActor;
312   Actor mActiveLayer;
313   Actor mBackgroundActor;
314   CallbackBase* mIdleCallback;
315
316   float mAlignmentOffset;
317   int mRenderingBackend;
318   int mExceedPolicy;
319   bool mHasBeenStaged:1;
320 };
321
322 } // namespace Internal
323
324 // Helpers for public-api forwarding methods
325
326 inline Toolkit::Internal::TextField& GetImpl( Toolkit::TextField& textField )
327 {
328   DALI_ASSERT_ALWAYS(textField);
329
330   Dali::RefObject& handle = textField.GetImplementation();
331
332   return static_cast<Toolkit::Internal::TextField&>(handle);
333 }
334
335 inline const Toolkit::Internal::TextField& GetImpl( const Toolkit::TextField& textField )
336 {
337   DALI_ASSERT_ALWAYS(textField);
338
339   const Dali::RefObject& handle = textField.GetImplementation();
340
341   return static_cast<const Toolkit::Internal::TextField&>(handle);
342 }
343
344 } // namespace Toolkit
345
346 } // namespace Dali
347
348 #endif // DALI_TOOLKIT_INTERNAL_TEXT_FIELD_H