11d212b942a5406b3faf4d3147b6ffc8c2cae2ea
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / internal / text / text-controller.h
1 #ifndef __DALI_TOOLKIT_TEXT_CONTROLLER_H__
2 #define __DALI_TOOLKIT_TEXT_CONTROLLER_H__
3
4 /*
5  * Copyright (c) 2015 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 // INTERNAL INCLUDES
22 #include <dali-toolkit/internal/text/decorator/text-decorator.h>
23 #include <dali-toolkit/internal/text/text-control-interface.h>
24 #include <dali-toolkit/internal/text/text-view.h>
25
26 // EXTERNAL INCLUDES
27 #include <dali/public-api/common/intrusive-ptr.h>
28 #include <dali/public-api/events/key-event.h>
29 #include <dali/public-api/math/vector3.h>
30 #include <dali/public-api/math/vector2.h>
31 #include <dali/public-api/object/ref-object.h>
32 #include <string>
33
34 namespace Dali
35 {
36
37 namespace Toolkit
38 {
39
40 namespace Text
41 {
42
43 class Controller;
44 class LayoutEngine;
45
46 typedef IntrusivePtr<Controller> ControllerPtr;
47 typedef Dali::Toolkit::Text::ControlInterface ControlInterface;
48
49 /**
50  * @brief A Text Controller is used by UI Controls which display text.
51  *
52  * It manipulates the Logical & Visual text models on behalf of the UI Controls.
53  * It provides a view of the text that can be used by rendering back-ends.
54  *
55  * For selectable/editable UI controls, the controller handles input events from the UI control
56  * and decorations (grab handles etc) via an observer interface.
57  */
58 class Controller : public RefObject, public Decorator::Observer
59 {
60 private:
61
62   /**
63    * @brief Text related operations to be done in the relayout process.
64    */
65   enum OperationsMask
66   {
67     NO_OPERATION       = 0x0000,
68     CONVERT_TO_UTF32   = 0x0001,
69     GET_SCRIPTS        = 0x0002,
70     VALIDATE_FONTS     = 0x0004,
71     GET_LINE_BREAKS    = 0x0008,
72     GET_WORD_BREAKS    = 0x0010,
73     SHAPE_TEXT         = 0x0020,
74     GET_GLYPH_METRICS  = 0x0040,
75     LAYOUT             = 0x0080,
76     UPDATE_ACTUAL_SIZE = 0x0100,
77     UPDATE_POSITIONS   = 0x0200,
78     REORDER            = 0x0400,
79     ALIGNMENT          = 0x0800,
80     RENDER             = 0x1000,
81     ALL_OPERATIONS     = 0xFFFF
82   };
83
84 public:
85
86   /**
87    * @brief Create a new instance of a Controller.
88    *
89    * @param[in] controlInterface An interface used to request a text relayout.
90    * @return A pointer to a new Controller.
91    */
92   static ControllerPtr New( ControlInterface& controlInterface );
93
94   /**
95    * @brief Replaces any text previously set.
96    *
97    * @note This will be converted into UTF-32 when stored in the text model.
98    * @param[in] text A string of UTF-8 characters.
99    */
100   void SetText( const std::string& text );
101
102   /**
103    * @brief Retrieve any text previously set.
104    *
105    * @return A string of UTF-8 characters.
106    */
107   void GetText( std::string& text ) const;
108
109   /**
110    * @brief Replaces any placeholder text previously set.
111    *
112    * @param[in] text A string of UTF-8 characters.
113    */
114   void SetPlaceholderText( const std::string& text );
115
116   /**
117    * @brief Retrieve any placeholder text previously set.
118    *
119    * @return A string of UTF-8 characters.
120    */
121   void GetPlaceholderText( std::string& text ) const;
122
123   /**
124    * @brief Set the default font family.
125    *
126    * @param[in] defaultFontFamily The default font family.
127    */
128   void SetDefaultFontFamily( const std::string& defaultFontFamily );
129
130   /**
131    * @brief Retrieve the default font family.
132    *
133    * @return The default font family.
134    */
135    const std::string& GetDefaultFontFamily() const;
136
137   /**
138    * @brief Set the default font style.
139    *
140    * @param[in] defaultFontStyle The default font style.
141    */
142   void SetDefaultFontStyle( const std::string& defaultFontStyle );
143
144   /**
145    * @brief Retrieve the default font style.
146    *
147    * @return The default font style.
148    */
149    const std::string& GetDefaultFontStyle() const;
150
151   /**
152    * @brief Set the default point size.
153    *
154    * @param[in] defaultFontStyle The default point size.
155    */
156   void SetDefaultPointSize( float pointSize );
157
158   /**
159    * @brief Retrieve the default point size.
160    *
161    * @return The default point size.
162    */
163    float GetDefaultPointSize() const;
164
165   /**
166    * @brief Called to enable text input.
167    *
168    * @note Only selectable or editable controls should calls this.
169    * @param[in] decorator Used to create cursor, selection handle decorations etc.
170    */
171   void EnableTextInput( DecoratorPtr decorator );
172
173   /**
174    * @brief Triggers a relayout which updates View (if necessary).
175    *
176    * @note UI Controls are expected to minimize calls to this method e.g. call once after size negotiation.
177    * @param[in] size A the size of a bounding box to layout text within.
178    * @return True if the text model or decorations were updated.
179    */
180   bool Relayout( const Vector2& size );
181
182   /**
183    * @brief Lays-out the text.
184    *
185    * GetNaturalSize(), GetHeightForWidth() and Relayout() calls this method.
186    *
187    * @param[in] size A the size of a bounding box to layout text within.
188    * @param[in] operations The layout operations which need to be done.
189    */
190   bool DoRelayout( const Vector2& size, OperationsMask operations );
191
192   /**
193    * @copydoc Control::GetNaturalSize()
194    */
195   Vector3 GetNaturalSize();
196
197   /**
198    * @copydoc Control::GetHeightForWidth()
199    */
200   float GetHeightForWidth( float width );
201
202   /**
203    * @brief Return the layout engine.
204    *
205    * @return A reference to the layout engine.
206    */
207   LayoutEngine& GetLayoutEngine();
208
209   /**
210    * @brief Return a view of the text.
211    *
212    * @return A reference to the view.
213    */
214   View& GetView();
215
216   /**
217    * @brief Caller by editable UI controls when keyboard focus is gained.
218    */
219   void KeyboardFocusGainEvent();
220
221   /**
222    * @brief Caller by editable UI controls when focus is lost.
223    */
224   void KeyboardFocusLostEvent();
225
226   /**
227    * @brief Caller by editable UI controls when key events are received.
228    *
229    * @param[in] event The key event.
230    */
231   bool KeyEvent( const Dali::KeyEvent& event );
232
233   /**
234    * @brief Caller by editable UI controls when a tap gesture occurs.
235    * @param[in] tapCount The number of taps.
236    * @param[in] x The x position relative to the top-left of the parent control.
237    * @param[in] y The y position relative to the top-left of the parent control.
238    */
239   void TapEvent( unsigned int tapCount, float x, float y );
240
241   /**
242    * @copydoc Dali::Toolkit::Text::Decorator::Observer::GrabHandleEvent()
243    */
244   virtual void GrabHandleEvent( GrabHandleState state, float x, float y );
245
246 protected:
247
248   /**
249    * @brief A reference counted object may only be deleted by calling Unreference().
250    */
251   virtual ~Controller();
252
253 private:
254
255   /**
256    * @brief Request a relayout using the ControlInterface.
257    */
258   void RequestRelayout();
259
260   /**
261    * @brief Private constructor.
262    */
263   Controller( ControlInterface& controlInterface );
264
265   // Undefined
266   Controller( const Controller& handle );
267
268   // Undefined
269   Controller& operator=( const Controller& handle );
270
271 private:
272
273   struct Impl;
274   Impl* mImpl;
275
276   // Avoid allocating this when the user does not specify a font
277   struct FontDefaults;
278
279   // Avoid allocating this for non-editable controls
280   struct TextInput;
281 };
282
283 } // namespace Text
284
285 } // namespace Toolkit
286
287 } // namespace Dali
288
289 #endif // __DALI_TOOLKIT_TEXT_CONTROLLER_H__