[AT-SPI] Squashed implementation
[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/devel-api/adaptor-framework/accessibility.h>
25 #include <dali/public-api/animation/animation.h>
26
27 // INTERNAL INCLUDES
28 #include <dali-toolkit/public-api/controls/control-impl.h>
29 #include <dali-toolkit/devel-api/controls/scroll-bar/scroll-bar.h>
30 #include <dali-toolkit/public-api/controls/text-controls/text-editor.h>
31 #include <dali-toolkit/devel-api/controls/text-controls/text-editor-devel.h>
32 #include <dali-toolkit/internal/text/decorator/text-decorator.h>
33 #include <dali-toolkit/internal/text/text-control-interface.h>
34 #include <dali-toolkit/internal/text/text-editable-control-interface.h>
35 #include <dali-toolkit/internal/text/text-selectable-control-interface.h>
36 #include <dali-toolkit/internal/text/text-controller.h>
37 #include <dali-toolkit/internal/text/text-vertical-scroller.h>
38 #include <dali-toolkit/internal/text/rendering/text-renderer.h>
39 #include <dali-toolkit/internal/controls/control/control-data-impl.h>
40
41 namespace Dali
42 {
43
44 namespace Toolkit
45 {
46
47 namespace Internal
48 {
49 /**
50  * @brief A control which renders a long text string with styles.
51  */
52 class TextEditor : public Control, public Text::ControlInterface, public Text::EditableControlInterface, public Text::SelectableControlInterface
53 {
54 public:
55
56   /**
57    * @copydoc Dali::Toollkit::TextEditor::New()
58    */
59   static Toolkit::TextEditor New();
60
61   // Properties
62
63   /**
64    * @brief Called when a property of an object of this type is set.
65    *
66    * @param[in] object The object whose property is set.
67    * @param[in] index The property index.
68    * @param[in] value The new property value.
69    */
70   static void SetProperty( BaseObject* object, Property::Index index, const Property::Value& value );
71
72   /**
73    * @brief Called to retrieve a property of an object of this type.
74    *
75    * @param[in] object The object whose property is to be retrieved.
76    * @param[in] index The property index.
77    * @return The current value of the property.
78    */
79   static Property::Value GetProperty( BaseObject* object, Property::Index index );
80
81   /**
82    * @copydoc Dali::Toollkit::TextEditor::GetInputMethodContext()
83    */
84   InputMethodContext GetInputMethodContext();
85
86   /**
87    * @copydoc Dali::Toollkit::TextEditor::MaxLengthReachedSignal()
88    */
89   DevelTextEditor::MaxLengthReachedSignalType&  MaxLengthReachedSignal();
90
91   /**
92    * Connects a callback function with the object's signals.
93    * @param[in] object The object providing the signal.
94    * @param[in] tracker Used to disconnect the signal.
95    * @param[in] signalName The signal to connect to.
96    * @param[in] functor A newly allocated FunctorDelegate.
97    * @return True if the signal was connected.
98    * @post If a signal was connected, ownership of functor was passed to CallbackBase. Otherwise the caller is responsible for deleting the unused functor.
99    */
100   static bool DoConnectSignal( BaseObject* object, ConnectionTrackerInterface* tracker, const std::string& signalName, FunctorDelegate* functor );
101
102   /**
103    * @copydoc TextEditor::TextChangedSignal()
104    */
105   Toolkit::TextEditor::TextChangedSignalType&  TextChangedSignal();
106
107   /**
108    * @copydoc TextEditor::TextChangedSignal()
109    */
110   Toolkit::TextEditor::InputStyleChangedSignalType& InputStyleChangedSignal();
111
112   /**
113    * @copydoc TextEditor::ScrollStateChangedSignal()
114    */
115   Toolkit::TextEditor::ScrollStateChangedSignalType& ScrollStateChangedSignal();
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::EditableControlInterface::TextChanged()
190    */
191   void TextInserted( unsigned int position, unsigned int length, const std::string &content ) override;
192
193   /**
194    * @copydoc Text::EditableControlInterface::TextDeleted()
195    */
196   void TextDeleted( unsigned int position, unsigned int length, const std::string &content ) override;
197
198   /**
199    * @copydoc Text::EditableControlInterface::CaretMoved()
200    */
201   void CaretMoved( unsigned int position ) override;
202
203   /**
204    * @copydoc Text::EditableControlInterface::TextChanged()
205    */
206   void TextChanged() override;
207
208   /**
209    * @copydoc Text::EditableControlInterface::MaxLengthReached()
210    */
211   void MaxLengthReached() override;
212
213   /**
214    * @copydoc Text::EditableControlInterface::InputStyleChanged()
215    */
216   void InputStyleChanged( Text::InputStyle::Mask inputStyleMask ) override;
217
218   /**
219    * @copydoc Text::EditableControlInterface::AddDecoration()
220    */
221   void AddDecoration( Actor& actor, bool needsClipping ) override;
222
223 // From SelectableControlInterface
224 public:
225   /**
226    * @copydoc Text::SelectableControlInterface::SetTextSelectionRange()
227    */
228   void SetTextSelectionRange(const uint32_t *start, const uint32_t *end) override;
229
230   /**
231    * @copydoc Text::SelectableControlInterface::GetTextSelectionRange()
232    */
233   Uint32Pair GetTextSelectionRange() const override;
234
235   /**
236    * @copydoc Text::SelectableControlInterface::SelectWholeText()
237    */
238   void SelectWholeText() override;
239
240   /**
241    * @copydoc Text::SelectableControlInterface::SelectNone()
242    */
243   void SelectNone() override;
244
245   /**
246    * @copydoc Text::SelectableControlInterface::GetSelectedText()
247    */
248   string GetSelectedText() const override;
249
250   /**
251    * @copydoc Text::EditableControlInterface::IsEditable()
252    */
253   bool IsEditable() const override;
254
255   /**
256    * @copydoc Text::EditableControlInterface::SetEditable()
257    */
258   void SetEditable( bool editable ) override;
259   Text::ControllerPtr getController();
260
261 private: // Implementation
262
263   /**
264    * @copydoc Dali::Toolkit::Text::Controller::(InputMethodContext& inputMethodContext, const InputMethodContext::EventData& inputMethodContextEvent)
265    */
266   InputMethodContext::CallbackData OnInputMethodContextEvent( InputMethodContext& inputMethodContext, const InputMethodContext::EventData& inputMethodContextEvent );
267
268   /**
269    * @brief Callback when Clipboard signals an item should be pasted
270    * @param[in] clipboard handle to Clipboard Event Notifier
271    */
272   void OnClipboardTextSelected( ClipboardEventNotifier& clipboard );
273
274   /**
275    * @brief Get a Property Map for the image used for the required Handle Image
276    * @param[out] value the returned image property
277    * @param[in] handleType the type of handle
278    * @param[in] handleImageType the type of image for the given handleType
279    */
280   void GetHandleImagePropertyValue(  Property::Value& value, Text::HandleType handleType, Text::HandleImageType handleImageType );
281
282   /**
283    * @brief Callback when keyboard is shown/hidden.
284    *
285    * @param[in] keyboardShown True if keyboard is shown.
286    */
287   void KeyboardStatusChanged( bool keyboardShown );
288
289   /**
290    * @brief update scroll bar position
291    *
292    * If text scroll is occurred, create or update scroll bar position
293    */
294   void UpdateScrollBar();
295
296   /**
297    * @brief Callback when TextEditor is touched
298    *
299    * @param[in] actor TextEditor touched
300    * @param[in] touch Touch information
301    */
302   bool OnTouched( Actor actor, const TouchEvent& touch );
303
304   /**
305    * @brief Callbacks called on idle.
306    *
307    * If there are notifications of change of input style on the queue, Toolkit::TextEditor::InputStyleChangedSignal() are emitted.
308    */
309   void OnIdleSignal();
310
311   /**
312    * @brief set RenderActor's position with new scrollPosition
313    *
314    * Apply updated scroll position or start scroll animation if VerticalScrollAnimation is enabled
315    */
316   void ApplyScrollPosition();
317
318   /**
319    * @brief Callback function for ScrollBar indicator animation finished signal
320    *
321    * Emit ScrollBarStateChanged Signal and toggle mScrollStarted flag to false
322    */
323   void OnScrollIndicatorAnimationFinished( Animation& animation );
324
325   /**
326    * Construct a new TextEditor.
327    */
328   TextEditor();
329
330   /**
331    * A reference counted object may only be deleted by calling Unreference()
332    */
333   virtual ~TextEditor();
334
335   // Undefined copy constructor and assignment operators
336   TextEditor(const TextEditor&);
337   TextEditor& operator=(const TextEditor& rhs);
338
339   /**
340    * @brief Render view, create and attach actor(s) to this text editor.
341    */
342   void RenderText( Text::Controller::UpdateTextType updateTextType );
343
344   // Connection needed to re-render text, when a text editor returns to the scene.
345   void OnSceneConnect( Dali::Actor actor );
346
347 private: // Data
348   // Signals
349   Toolkit::TextEditor::TextChangedSignalType mTextChangedSignal;
350   Toolkit::TextEditor::InputStyleChangedSignalType mInputStyleChangedSignal;
351   Toolkit::TextEditor::ScrollStateChangedSignalType mScrollStateChangedSignal;
352   Toolkit::DevelTextEditor::MaxLengthReachedSignalType mMaxLengthReachedSignal;
353
354   InputMethodContext mInputMethodContext;
355   Text::ControllerPtr mController;
356   Text::RendererPtr mRenderer;
357   Text::DecoratorPtr mDecorator;
358   Text::TextVerticalScrollerPtr mTextVerticalScroller;
359   Toolkit::Control mStencil;
360   Toolkit::ScrollBar mScrollBar;
361   Dali::Animation mAnimation;                                              ///< Scroll indicator Show/Hide Animation.
362   Dali::TimePeriod mAnimationPeriod;
363   std::vector<Actor> mClippingDecorationActors;   ///< Decoration actors which need clipping.
364
365   Actor mRenderableActor;
366   Actor mActiveLayer;
367   CallbackBase* mIdleCallback;
368
369   float mAlignmentOffset;
370   float mScrollAnimationDuration;
371   float mLineSpacing;
372   int mRenderingBackend;
373   bool mHasBeenStaged:1;
374   bool mScrollAnimationEnabled:1;
375   bool mScrollBarEnabled:1;
376   bool mScrollStarted:1;
377
378   struct AccessibleImpl : public Control::Impl::AccessibleImpl,
379                           public virtual Dali::Accessibility::Text,
380                           public virtual Dali::Accessibility::EditableText
381   {
382     using Control::Impl::AccessibleImpl::AccessibleImpl;
383
384     std::string GetName() override;
385     std::string GetText( size_t startOffset, size_t endOffset ) override;
386     size_t GetCharacterCount() override;
387     size_t GetCaretOffset() override;
388     bool SetCaretOffset(size_t offset) override;
389     Dali::Accessibility::Range
390     GetTextAtOffset( size_t offset,
391                      Dali::Accessibility::TextBoundary boundary ) override;
392     Dali::Accessibility::Range GetSelection( size_t selectionNum ) override;
393     bool RemoveSelection( size_t selectionNum ) override;
394     bool SetSelection( size_t selectionNum, size_t startOffset,
395                        size_t endOffset ) override;
396     bool CopyText( size_t startPosition, size_t endPosition ) override;
397     bool CutText( size_t startPosition, size_t endPosition ) override;
398     Dali::Accessibility::States CalculateStates() override;
399   };
400 };
401
402 } // namespace Internal
403
404 // Helpers for public-api forwarding methods
405
406 inline Toolkit::Internal::TextEditor& GetImpl( Toolkit::TextEditor& textEditor )
407 {
408   DALI_ASSERT_ALWAYS(textEditor);
409
410   Dali::RefObject& handle = textEditor.GetImplementation();
411
412   return static_cast<Toolkit::Internal::TextEditor&>(handle);
413 }
414
415 inline const Toolkit::Internal::TextEditor& GetImpl( const Toolkit::TextEditor& textEditor )
416 {
417   DALI_ASSERT_ALWAYS(textEditor);
418
419   const Dali::RefObject& handle = textEditor.GetImplementation();
420
421   return static_cast<const Toolkit::Internal::TextEditor&>(handle);
422 }
423
424 } // namespace Toolkit
425
426 } // namespace Dali
427
428 #endif // DALI_TOOLKIT_INTERNAL_TEXT_EDITOR_H