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