7f0a5d91350ad93aa2646fc9d9eac9d1157bbcd0
[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) 2017 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-controller.h>
33 #include <dali-toolkit/internal/text/rendering/text-renderer.h>
34
35 namespace Dali
36 {
37
38 namespace Toolkit
39 {
40
41 namespace Internal
42 {
43 /**
44  * @brief A control which renders a short text string.
45  */
46 class TextField : public Control, public Text::ControlInterface, public Text::EditableControlInterface
47 {
48 public:
49
50   /**
51    * @copydoc Dali::Toollkit::TextField::New()
52    */
53   static Toolkit::TextField New();
54
55   // Properties
56
57   /**
58    * @brief Called when a property of an object of this type is set.
59    *
60    * @param[in] object The object whose property is set.
61    * @param[in] index The property index.
62    * @param[in] value The new property value.
63    */
64   static void SetProperty( BaseObject* object, Property::Index index, const Property::Value& value );
65
66   /**
67    * @brief Called to retrieve a property of an object of this type.
68    *
69    * @param[in] object The object whose property is to be retrieved.
70    * @param[in] index The property index.
71    * @return The current value of the property.
72    */
73   static Property::Value GetProperty( BaseObject* object, Property::Index index );
74
75   /**
76    * @copydoc Dali::Toollkit::TextField::GetInputMethodContext()
77    */
78   InputMethodContext GetInputMethodContext();
79
80   /**
81    * Connects a callback function with the object's signals.
82    * @param[in] object The object providing the signal.
83    * @param[in] tracker Used to disconnect the signal.
84    * @param[in] signalName The signal to connect to.
85    * @param[in] functor A newly allocated FunctorDelegate.
86    * @return True if the signal was connected.
87    * @post If a signal was connected, ownership of functor was passed to CallbackBase. Otherwise the caller is responsible for deleting the unused functor.
88    */
89   static bool DoConnectSignal( BaseObject* object, ConnectionTrackerInterface* tracker, const std::string& signalName, FunctorDelegate* functor );
90
91   /**
92    * @copydoc TextField::TextChangedSignal()
93    */
94   Toolkit::TextField::TextChangedSignalType&  TextChangedSignal();
95
96   /**
97    * @copydoc TextField::MaxLengthReachedSignal()
98    */
99   Toolkit::TextField::MaxLengthReachedSignalType&  MaxLengthReachedSignal();
100
101   /**
102    * @copydoc TextField::TextChangedSignal()
103    */
104   Toolkit::TextField::InputStyleChangedSignalType& InputStyleChangedSignal();
105
106   /**
107    * @brief Called to select the whole texts.
108    */
109   void SelectWholeText();
110
111 private: // From Control
112
113   /**
114    * @copydoc Control::OnInitialize()
115    */
116   virtual void OnInitialize();
117
118   /**
119    * @copydoc Control::OnStyleChange()
120    */
121   virtual void OnStyleChange( Toolkit::StyleManager styleManager, StyleChange::Type change );
122
123   /**
124    * @copydoc Control::GetNaturalSize()
125    */
126   virtual Vector3 GetNaturalSize();
127
128   /**
129    * @copydoc Control::GetHeightForWidth()
130    */
131   virtual float GetHeightForWidth( float width );
132
133   /**
134    * @copydoc Control::OnInitialize()
135    */
136   virtual void OnRelayout( const Vector2& size, RelayoutContainer& container );
137
138   /**
139    * @copydoc Control::OnKeyInputFocusGained()
140    */
141   virtual void OnKeyInputFocusGained();
142
143   /**
144    * @copydoc Control::OnKeyInputFocusLost()
145    */
146   virtual void OnKeyInputFocusLost();
147
148   /**
149    * @copydoc Control::OnTap()
150    */
151   virtual void OnTap( const TapGesture& tap );
152
153   /**
154    * @copydoc Control::OnPan()
155    */
156   virtual void OnPan( const PanGesture& gesture );
157
158   /**
159    * @copydoc Control::OnLongPress()
160    */
161   virtual void OnLongPress( const LongPressGesture& gesture );
162
163   /**
164    * @copydoc Control::OnStageConnection()
165    */
166   virtual void OnStageConnection( int depth );
167
168   /**
169    * @copydoc Dali::CustomActorImpl::OnKeyEvent(const KeyEvent&)
170    */
171   virtual bool OnKeyEvent(const KeyEvent& event);
172
173 // From ControlInterface
174
175   /**
176    * @copydoc Text::ControlInterface::RequestTextRelayout()
177    */
178   virtual void RequestTextRelayout();
179
180 // From EditableControlInterface
181
182   /**
183    * @copydoc Text::ControlInterface::TextChanged()
184    */
185   virtual void TextChanged();
186
187   /**
188    * @copydoc Text::ControlInterface::MaxLengthReached()
189    */
190   virtual void MaxLengthReached();
191
192   /**
193    * @copydoc Text::ControlInterface::InputStyleChanged()
194    */
195   virtual void InputStyleChanged( Text::InputStyle::Mask inputStyleMask );
196
197   /**
198    * @copydoc Text::ControlInterface::AddDecoration()
199    */
200   virtual void AddDecoration( Actor& actor, bool needsClipping );
201
202 private: // Implementation
203
204   /**
205    * @copydoc Dali::Toolkit::Text::Controller::(InputMethodContext& inputMethodContext, const InputMethodContext::EventData& inputMethodContextEvent)
206    */
207   InputMethodContext::CallbackData OnInputMethodContextEvent( InputMethodContext& inputMethodContext, const InputMethodContext::EventData& inputMethodContextEvent );
208
209   /**
210    * @brief Callback when Clipboard signals an item should be pasted
211    * @param[in] clipboard handle to Clipboard Event Notifier
212    */
213   void OnClipboardTextSelected( ClipboardEventNotifier& clipboard );
214
215   /**
216    * @brief Get a Property Map for the image used for the required Handle Image
217    * @param[out] value the returned image property
218    * @param[in] handleType the type of handle
219    * @param[in] handleImageType the type of image for the given handleType
220    */
221   void GetHandleImagePropertyValue(  Property::Value& value, Text::HandleType handleType, Text::HandleImageType handleImageType );
222
223   /**
224    * @brief Enable or disable clipping.
225    */
226   void EnableClipping();
227
228   /**
229    * @brief Callback when keyboard is shown/hidden.
230    *
231    * @param[in] keyboardShown True if keyboard is shown.
232    */
233   void KeyboardStatusChanged( bool keyboardShown );
234
235   /**
236    * @brief Callback when TextField is touched
237    *
238    * @param[in] actor TextField touched
239    * @param[in] touch Touch information
240    */
241   bool OnTouched( Actor actor, const TouchData& touch );
242
243   /**
244    * @brief Callbacks called on idle.
245    *
246    * If there are notifications of change of input style on the queue, Toolkit::TextField::InputStyleChangedSignal() are emitted.
247    */
248   void OnIdleSignal();
249
250   /**
251    * Construct a new TextField.
252    */
253   TextField();
254
255   /**
256    * A reference counted object may only be deleted by calling Unreference()
257    */
258   virtual ~TextField();
259
260   // Undefined copy constructor and assignment operators
261   TextField(const TextField&);
262   TextField& operator=(const TextField& rhs);
263
264   /**
265    * @brief Render view, create and attach actor(s) to this Text Field.
266    */
267   void RenderText( Text::Controller::UpdateTextType updateTextType );
268
269   // Connection needed to re-render text, when a Text Field returns to the stage.
270   void OnStageConnect( Dali::Actor actor );
271
272 private: // Data
273
274   // Signals
275   Toolkit::TextField::TextChangedSignalType mTextChangedSignal;
276   Toolkit::TextField::MaxLengthReachedSignalType mMaxLengthReachedSignal;
277   Toolkit::TextField::InputStyleChangedSignalType mInputStyleChangedSignal;
278
279   InputMethodContext mInputMethodContext;
280   Text::ControllerPtr mController;
281   Text::RendererPtr mRenderer;
282   Text::DecoratorPtr mDecorator;
283   Toolkit::Control mStencil; ///< For EXCEED_POLICY_CLIP
284   std::vector<Actor> mClippingDecorationActors;   ///< Decoration actors which need clipping.
285   Dali::InputMethodOptions mInputMethodOptions;
286   Dali::AutofillItem mAutofillItem;
287
288   Actor mRenderableActor;
289   Actor mActiveLayer;
290   CallbackBase* mIdleCallback;
291
292   float mAlignmentOffset;
293   int mRenderingBackend;
294   int mExceedPolicy;
295   bool mHasBeenStaged:1;
296 };
297
298 } // namespace Internal
299
300 // Helpers for public-api forwarding methods
301
302 inline Toolkit::Internal::TextField& GetImpl( Toolkit::TextField& textField )
303 {
304   DALI_ASSERT_ALWAYS(textField);
305
306   Dali::RefObject& handle = textField.GetImplementation();
307
308   return static_cast<Toolkit::Internal::TextField&>(handle);
309 }
310
311 inline const Toolkit::Internal::TextField& GetImpl( const Toolkit::TextField& textField )
312 {
313   DALI_ASSERT_ALWAYS(textField);
314
315   const Dali::RefObject& handle = textField.GetImplementation();
316
317   return static_cast<const Toolkit::Internal::TextField&>(handle);
318 }
319
320 } // namespace Toolkit
321
322 } // namespace Dali
323
324 #endif // DALI_TOOLKIT_INTERNAL_TEXT_FIELD_H