Fix doxygen comments
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / internal / controls / text-controls / text-editor-impl.h
1 #ifndef DALI_TOOLKIT_INTERNAL_TEXT_EDITOR_H
2 #define DALI_TOOLKIT_INTERNAL_TEXT_EDITOR_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/public-api/animation/animation.h>
25
26 // INTERNAL INCLUDES
27 #include <dali-toolkit/public-api/controls/control-impl.h>
28 #include <dali-toolkit/devel-api/controls/scroll-bar/scroll-bar.h>
29 #include <dali-toolkit/public-api/controls/text-controls/text-editor.h>
30 #include <dali-toolkit/devel-api/controls/text-controls/text-editor-devel.h>
31 #include <dali-toolkit/internal/text/decorator/text-decorator.h>
32 #include <dali-toolkit/internal/text/text-control-interface.h>
33 #include <dali-toolkit/internal/text/text-editable-control-interface.h>
34 #include <dali-toolkit/internal/text/text-selectable-control-interface.h>
35 #include <dali-toolkit/internal/text/text-controller.h>
36 #include <dali-toolkit/internal/text/text-vertical-scroller.h>
37 #include <dali-toolkit/internal/text/rendering/text-renderer.h>
38
39 namespace Dali
40 {
41
42 namespace Toolkit
43 {
44
45 namespace Internal
46 {
47 /**
48  * @brief A control which renders a long text string with styles.
49  */
50 class TextEditor : public Control, public Text::ControlInterface, public Text::EditableControlInterface, public Text::SelectableControlInterface
51 {
52 public:
53
54   /**
55    * @copydoc Dali::Toollkit::TextEditor::New()
56    */
57   static Toolkit::TextEditor New();
58
59   // Properties
60
61   /**
62    * @brief Called when a property of an object of this type is set.
63    *
64    * @param[in] object The object whose property is set.
65    * @param[in] index The property index.
66    * @param[in] value The new property value.
67    */
68   static void SetProperty( BaseObject* object, Property::Index index, const Property::Value& value );
69
70   /**
71    * @brief Called to retrieve a property of an object of this type.
72    *
73    * @param[in] object The object whose property is to be retrieved.
74    * @param[in] index The property index.
75    * @return The current value of the property.
76    */
77   static Property::Value GetProperty( BaseObject* object, Property::Index index );
78
79   /**
80    * @copydoc Dali::Toollkit::TextEditor::GetInputMethodContext()
81    */
82   InputMethodContext GetInputMethodContext();
83
84   /**
85    * @copydoc Dali::Toollkit::TextEditor::MaxLengthReachedSignal()
86    */
87   DevelTextEditor::MaxLengthReachedSignalType&  MaxLengthReachedSignal();
88
89   /**
90    * Connects a callback function with the object's signals.
91    * @param[in] object The object providing the signal.
92    * @param[in] tracker Used to disconnect the signal.
93    * @param[in] signalName The signal to connect to.
94    * @param[in] functor A newly allocated FunctorDelegate.
95    * @return True if the signal was connected.
96    * @post If a signal was connected, ownership of functor was passed to CallbackBase. Otherwise the caller is responsible for deleting the unused functor.
97    */
98   static bool DoConnectSignal( BaseObject* object, ConnectionTrackerInterface* tracker, const std::string& signalName, FunctorDelegate* functor );
99
100   /**
101    * @copydoc TextEditor::TextChangedSignal()
102    */
103   Toolkit::TextEditor::TextChangedSignalType&  TextChangedSignal();
104
105   /**
106    * @copydoc TextEditor::TextChangedSignal()
107    */
108   Toolkit::TextEditor::InputStyleChangedSignalType& InputStyleChangedSignal();
109
110   /**
111    * @copydoc TextEditor::ScrollStateChangedSignal()
112    */
113   Toolkit::TextEditor::ScrollStateChangedSignalType& ScrollStateChangedSignal();
114
115 private: // From Control
116
117   /**
118    * @copydoc Control::OnInitialize()
119    */
120   void OnInitialize() override;
121
122   /**
123    * @copydoc Control::OnStyleChange()
124    */
125   void OnStyleChange( Toolkit::StyleManager styleManager, StyleChange::Type change ) override;
126
127   /**
128    * @copydoc Control::GetNaturalSize()
129    */
130   Vector3 GetNaturalSize() override;
131
132   /**
133    * @copydoc Control::GetHeightForWidth()
134    */
135   float GetHeightForWidth( float width ) override;
136
137   /**
138    * @copydoc Control::OnInitialize()
139    */
140   void OnRelayout( const Vector2& size, RelayoutContainer& container ) override;
141
142   /**
143    * @copydoc Control::OnKeyInputFocusGained()
144    */
145   void OnKeyInputFocusGained() override;
146
147   /**
148    * @copydoc Control::OnKeyInputFocusLost()
149    */
150   void OnKeyInputFocusLost() override;
151
152   /**
153    * @copydoc Control::OnTap()
154    */
155   void OnTap( const TapGesture& tap ) override;
156
157   /**
158    * @copydoc Control::OnPan()
159    */
160   void OnPan( const PanGesture& gesture ) override;
161
162   /**
163    * @copydoc Control::OnLongPress()
164    */
165   void OnLongPress( const LongPressGesture& gesture ) override;
166
167   /**
168    * @copydoc Control::OnSceneConnection()
169    */
170   void OnSceneConnection( int depth ) override;
171
172   /**
173    * @copydoc Dali::CustomActorImpl::OnKeyEvent(const KeyEvent&)
174    */
175   bool OnKeyEvent(const KeyEvent& event) override;
176
177 // From ControlInterface
178
179   /**
180    * @copydoc Text::ControlInterface::RequestTextRelayout()
181    */
182   void RequestTextRelayout() override;
183
184 // From EditableControlInterface
185
186   /**
187    * @copydoc Text::EditableControlInterface::TextChanged()
188    */
189   void TextChanged() override;
190
191   /**
192    * @copydoc Text::EditableControlInterface::MaxLengthReached()
193    */
194   void MaxLengthReached() override;
195
196   /**
197    * @copydoc Text::EditableControlInterface::InputStyleChanged()
198    */
199   void InputStyleChanged( Text::InputStyle::Mask inputStyleMask ) override;
200
201   /**
202    * @copydoc Text::EditableControlInterface::AddDecoration()
203    */
204   void AddDecoration( Actor& actor, bool needsClipping ) override;
205
206 // From SelectableControlInterface
207 public:
208   /**
209    * @copydoc Text::SelectableControlInterface::SetTextSelectionRange()
210    */
211   void SetTextSelectionRange(const uint32_t *start, const uint32_t *end) override;
212
213   /**
214    * @copydoc Text::SelectableControlInterface::GetTextSelectionRange()
215    */
216   Uint32Pair GetTextSelectionRange() const override;
217
218   /**
219    * @copydoc Text::EditableControlInterface::IsEditable()
220    */
221   bool IsEditable() const override;
222
223   /**
224    * @copydoc Text::EditableControlInterface::SetEditable()
225    */
226   void SetEditable( bool editable ) override;
227
228 private: // Implementation
229
230   /**
231    * @copydoc Dali::Toolkit::Text::Controller::(InputMethodContext& inputMethodContext, const InputMethodContext::EventData& inputMethodContextEvent)
232    */
233   InputMethodContext::CallbackData OnInputMethodContextEvent( InputMethodContext& inputMethodContext, const InputMethodContext::EventData& inputMethodContextEvent );
234
235   /**
236    * @brief Callback when Clipboard signals an item should be pasted
237    * @param[in] clipboard handle to Clipboard Event Notifier
238    */
239   void OnClipboardTextSelected( ClipboardEventNotifier& clipboard );
240
241   /**
242    * @brief Get a Property Map for the image used for the required Handle Image
243    * @param[out] value the returned image property
244    * @param[in] handleType the type of handle
245    * @param[in] handleImageType the type of image for the given handleType
246    */
247   void GetHandleImagePropertyValue(  Property::Value& value, Text::HandleType handleType, Text::HandleImageType handleImageType );
248
249   /**
250    * @brief Callback when keyboard is shown/hidden.
251    *
252    * @param[in] keyboardShown True if keyboard is shown.
253    */
254   void KeyboardStatusChanged( bool keyboardShown );
255
256   /**
257    * @brief update scroll bar position
258    *
259    * If text scroll is occurred, create or update scroll bar position
260    */
261   void UpdateScrollBar();
262
263   /**
264    * @brief Callback when TextEditor is touched
265    *
266    * @param[in] actor TextEditor touched
267    * @param[in] touch Touch information
268    */
269   bool OnTouched( Actor actor, const TouchEvent& touch );
270
271   /**
272    * @brief Callbacks called on idle.
273    *
274    * If there are notifications of change of input style on the queue, Toolkit::TextEditor::InputStyleChangedSignal() are emitted.
275    */
276   void OnIdleSignal();
277
278   /**
279    * @brief set RenderActor's position with new scrollPosition
280    *
281    * Apply updated scroll position or start scroll animation if VerticalScrollAnimation is enabled
282    */
283   void ApplyScrollPosition();
284
285   /**
286    * @brief Callback function for ScrollBar indicator animation finished signal
287    *
288    * Emit ScrollBarStateChanged Signal and toggle mScrollStarted flag to false
289    */
290   void OnScrollIndicatorAnimationFinished( Animation& animation );
291
292   /**
293    * Construct a new TextEditor.
294    */
295   TextEditor();
296
297   /**
298    * A reference counted object may only be deleted by calling Unreference()
299    */
300   virtual ~TextEditor();
301
302   // Undefined copy constructor and assignment operators
303   TextEditor(const TextEditor&);
304   TextEditor& operator=(const TextEditor& rhs);
305
306   /**
307    * @brief Render view, create and attach actor(s) to this text editor.
308    */
309   void RenderText( Text::Controller::UpdateTextType updateTextType );
310
311   // Connection needed to re-render text, when a text editor returns to the scene.
312   void OnSceneConnect( Dali::Actor actor );
313
314 private: // Data
315   // Signals
316   Toolkit::TextEditor::TextChangedSignalType mTextChangedSignal;
317   Toolkit::TextEditor::InputStyleChangedSignalType mInputStyleChangedSignal;
318   Toolkit::TextEditor::ScrollStateChangedSignalType mScrollStateChangedSignal;
319   Toolkit::DevelTextEditor::MaxLengthReachedSignalType mMaxLengthReachedSignal;
320
321   InputMethodContext mInputMethodContext;
322   Text::ControllerPtr mController;
323   Text::RendererPtr mRenderer;
324   Text::DecoratorPtr mDecorator;
325   Text::TextVerticalScrollerPtr mTextVerticalScroller;
326   Toolkit::Control mStencil;
327   Toolkit::ScrollBar mScrollBar;
328   Dali::Animation mAnimation;                                              ///< Scroll indicator Show/Hide Animation.
329   Dali::TimePeriod mAnimationPeriod;
330   std::vector<Actor> mClippingDecorationActors;   ///< Decoration actors which need clipping.
331
332   Actor mRenderableActor;
333   Actor mActiveLayer;
334   CallbackBase* mIdleCallback;
335
336   float mAlignmentOffset;
337   float mScrollAnimationDuration;
338   float mLineSpacing;
339   int mRenderingBackend;
340   bool mHasBeenStaged:1;
341   bool mScrollAnimationEnabled:1;
342   bool mScrollBarEnabled:1;
343   bool mScrollStarted:1;
344 };
345
346 } // namespace Internal
347
348 // Helpers for public-api forwarding methods
349
350 inline Toolkit::Internal::TextEditor& GetImpl( Toolkit::TextEditor& textEditor )
351 {
352   DALI_ASSERT_ALWAYS(textEditor);
353
354   Dali::RefObject& handle = textEditor.GetImplementation();
355
356   return static_cast<Toolkit::Internal::TextEditor&>(handle);
357 }
358
359 inline const Toolkit::Internal::TextEditor& GetImpl( const Toolkit::TextEditor& textEditor )
360 {
361   DALI_ASSERT_ALWAYS(textEditor);
362
363   const Dali::RefObject& handle = textEditor.GetImplementation();
364
365   return static_cast<const Toolkit::Internal::TextEditor&>(handle);
366 }
367
368 } // namespace Toolkit
369
370 } // namespace Dali
371
372 #endif // DALI_TOOLKIT_INTERNAL_TEXT_EDITOR_H