Merge "Updating programming guide for control property registration" into devel/master
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / public-api / controls / text-controls / text-field.h
1 #ifndef __DALI_TOOLKIT_TEXT_FIELD_H__
2 #define __DALI_TOOLKIT_TEXT_FIELD_H__
3
4 /*
5  * Copyright (c) 2016 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/public-api/controls/control.h>
23
24 namespace Dali
25 {
26
27 namespace Toolkit
28 {
29
30 namespace Internal DALI_INTERNAL
31 {
32 class TextField;
33 }
34 /**
35  * @addtogroup dali_toolkit_controls_text_controls
36  * @{
37  */
38
39 /**
40  * @brief A control which provides a single-line editable text field.
41  *
42  *  * Signals
43  * | %Signal Name         | Method                         |                    |
44  * |----------------------|--------------------------------|--------------------|
45  * | textChanged          | @ref TextChangedSignal()       | @SINCE_1_0.0       |
46  * | maxLengthReached     | @ref MaxLengthReachedSignal()  | @SINCE_1_0.0       |
47  * | inputStyleChanged    | @ref InputStyleChangedSignal() | @SINCE_1_2_2       |
48  */
49 class DALI_IMPORT_API TextField : public Control
50 {
51 public:
52
53   /**
54    * @brief The start and end property ranges for this control.
55    * @SINCE_1_0.0
56    */
57   enum PropertyRange
58   {
59     PROPERTY_START_INDEX = Control::CONTROL_PROPERTY_END_INDEX + 1, ///< @SINCE_1_0.0
60     PROPERTY_END_INDEX =   PROPERTY_START_INDEX + 1000              ///< Reserve property indices @SINCE_1_0.0
61   };
62
63   /**
64    * @brief An enumeration of properties belonging to the TextField class.
65    * @SINCE_1_0.0
66    */
67   struct Property
68   {
69     /**
70      * @brief An enumeration of properties belonging to the TextField class.
71      * @SINCE_1_0.0
72      */
73     enum
74     {
75       RENDERING_BACKEND = PROPERTY_START_INDEX, ///< name "renderingBackend",                    The type or rendering e.g. bitmap-based,                                           type INT @SINCE_1_0.0
76       TEXT,                                     ///< name "text",                                The text to display in UTF-8 format,                                               type STRING @SINCE_1_0.0
77       PLACEHOLDER_TEXT,                         ///< name "placeholderText",                     The text to display when the TextField is empty and inactive,                      type STRING @SINCE_1_0.0
78       PLACEHOLDER_TEXT_FOCUSED,                 ///< name "placeholderTextFocused",              The text to display when the TextField is empty with key-input focus,              type STRING @SINCE_1_0.0
79       FONT_FAMILY,                              ///< name "fontFamily",                          The requested font family,                                                         type STRING @SINCE_1_0.0
80       FONT_STYLE,                               ///< name "fontStyle",                           The requested font style,                                                          type STRING or MAP @SINCE_1_2.13
81       POINT_SIZE,                               ///< name "pointSize",                           The size of font in points,                                                        type FLOAT @SINCE_1_0.0
82       MAX_LENGTH,                               ///< name "maxLength"                            The maximum number of characters that can be inserted,                             type INTEGER @SINCE_1_0.0
83       EXCEED_POLICY,                            ///< name "exceedPolicy"                         Specifies how the text is truncated when it does not fit,                          type INTEGER @SINCE_1_0.0
84       HORIZONTAL_ALIGNMENT,                     ///< name "horizontalAlignment",                 The line horizontal alignment,                                                     type STRING,  values "BEGIN", "CENTER", "END" @SINCE_1_0.0
85       VERTICAL_ALIGNMENT,                       ///< name "verticalAlignment",                   The line vertical alignment,                                                       type STRING,  values "TOP",   "CENTER", "BOTTOM" @SINCE_1_0.0
86       TEXT_COLOR,                               ///< name "textColor",                           The text color,                                                                    type VECTOR4 @SINCE_1_0.0
87       PLACEHOLDER_TEXT_COLOR,                   ///< name "placeholderTextColor",                The placeholder-text color,                                                        type VECTOR4 @SINCE_1_0.0
88       SHADOW_OFFSET,                            ///< name "shadowOffset",                        The drop shadow offset 0 indicates no shadow,                                      type VECTOR2 @DEPRECATED_1_1.37 Use SHADOW instead.
89       SHADOW_COLOR,                             ///< name "shadowColor",                         The color of a drop shadow,                                                        type VECTOR4 @DEPRECATED_1_1.37 Use SHADOW instead.
90       PRIMARY_CURSOR_COLOR,                     ///< name "primaryCursorColor",                  The color to apply to the primary cursor,                                          type VECTOR4 @SINCE_1_0.0
91       SECONDARY_CURSOR_COLOR,                   ///< name "secondaryCursorColor",                The color to apply to the secondary cursor,                                        type VECTOR4 @SINCE_1_0.0
92       ENABLE_CURSOR_BLINK,                      ///< name "enableCursorBlink",                   Whether the cursor should blink or not,                                            type BOOLEAN @SINCE_1_0.0
93       CURSOR_BLINK_INTERVAL,                    ///< name "cursorBlinkInterval",                 The time interval in seconds between cursor on/off states,                         type FLOAT @SINCE_1_0.0
94       CURSOR_BLINK_DURATION,                    ///< name "cursorBlinkDuration",                 The cursor will stop blinking after this number of seconds (if non-zero),          type FLOAT @SINCE_1_0.0
95       CURSOR_WIDTH,                             ///< name "cursorWidth",                         The cursor width,                                                                  type INTEGER @SINCE_1_0.0
96       GRAB_HANDLE_IMAGE,                        ///< name "grabHandleImage",                     The image to display for the grab handle,                                          type STRING @SINCE_1_0.0
97       GRAB_HANDLE_PRESSED_IMAGE,                ///< name "grabHandlePressedImage",              The image to display when the grab handle is pressed,                              type STRING @SINCE_1_0.0
98       SCROLL_THRESHOLD,                         ///< name "scrollThreshold"                      Horizontal scrolling will occur if the cursor is this close to the control border, type FLOAT @SINCE_1_0.0
99       SCROLL_SPEED,                             ///< name "scrollSpeed"                          The scroll speed in pixels per second,                                             type FLOAT @SINCE_1_0.0
100       SELECTION_HANDLE_IMAGE_LEFT,              ///< name "selectionHandleImageLeft",            The image to display for the left selection handle,                                type MAP @SINCE_1_0.0
101       SELECTION_HANDLE_IMAGE_RIGHT,             ///< name "selectionHandleImageRight",           The image to display for the right selection handle,                               type MAP @SINCE_1_0.0
102       SELECTION_HANDLE_PRESSED_IMAGE_LEFT,      ///< name "selectionHandlePressedImageLeft",     The image to display when the left selection handle is pressed,                    type MAP @SINCE_1_0.0
103       SELECTION_HANDLE_PRESSED_IMAGE_RIGHT,     ///< name "selectionHandlePressedImageRight",    The image to display when the right selection handle is pressed,                   type MAP @SINCE_1_0.0
104       SELECTION_HANDLE_MARKER_IMAGE_LEFT,       ///< name "selectionHandleMarkerImageLeft",      The image to display for the left selection handle marker,                         type MAP @SINCE_1_0.0
105       SELECTION_HANDLE_MARKER_IMAGE_RIGHT,      ///< name "selectionHandleMarkerImageRight",     The image to display for the right selection handle marker,                        type MAP @SINCE_1_0.0
106       SELECTION_HIGHLIGHT_COLOR,                ///< name "selectionHighlightColor",             The color of the selection highlight,                                              type VECTOR4 @SINCE_1_0.0
107       DECORATION_BOUNDING_BOX,                  ///< name "decorationBoundingBox",               The decorations (handles etc) will positioned within this area on-screen,          type RECTANGLE @SINCE_1_0.0
108       INPUT_METHOD_SETTINGS,                    ///< name "inputMethodSettings",                 The settings to relating to the System's Input Method, Key and Value               type MAP @SINCE_1_0.0
109       INPUT_COLOR,                              ///< name "inputColor",                          The color of the new input text,                                                   type VECTOR4 @SINCE_1_0.0
110       ENABLE_MARKUP,                            ///< name "enableMarkup",                        Whether the mark-up processing is enabled.                                         type BOOLEAN @SINCE_1_0.0
111       INPUT_FONT_FAMILY,                        ///< name "inputFontFamily",                     The font's family of the new input text,                                           type STRING @SINCE_1_0.0
112       INPUT_FONT_STYLE,                         ///< name "inputFontStyle",                      The font's style of the new input text,                                            type STRING or MAP @SINCE_1_2.13
113       INPUT_POINT_SIZE,                         ///< name "inputPointSize",                      The font's size of the new input text in points,                                   type FLOAT @SINCE_1_0.0
114       UNDERLINE,                                ///< name "underline"                            The default underline parameters,                                                  type STRING or MAP @SINCE_1_2.13
115       INPUT_UNDERLINE,                          ///< name "inputUnderline"                       The underline parameters of the new input text,                                    type STRING or MAP @SINCE_1_2.13
116       SHADOW,                                   ///< name "shadow"                               The default shadow parameters,                                                     type STRING or MAP @SINCE_1_2.13
117       INPUT_SHADOW,                             ///< name "inputShadow"                          The shadow parameters of the new input text,                                       type STRING or MAP @SINCE_1_2.13
118       EMBOSS,                                   ///< name "emboss"                               The default emboss parameters,                                                     type STRING or MAP @SINCE_1_2.13
119       INPUT_EMBOSS,                             ///< name "inputEmboss"                          The emboss parameters of the new input text,                                       type STRING or MAP @SINCE_1_2.13
120       OUTLINE,                                  ///< name "outline"                              The default outline parameters,                                                    type STRING or MAP @SINCE_1_2.13
121       INPUT_OUTLINE,                            ///< name "inputOutline"                         The outline parameters of the new input text,                                      type STRING or MAP @SINCE_1_2.13
122     };
123   };
124
125   /**
126    * @brief Specifies how the text is truncated when it does not fit
127    *
128    * The default value is \e EXCEED_POLICY_CLIP.
129    * @SINCE_1_0.0
130    */
131   enum ExceedPolicy
132   {
133     EXCEED_POLICY_ORIGINAL,        ///< The text will be display at original size, and may exceed the TextField boundary. @SINCE_1_0.0
134     EXCEED_POLICY_CLIP             ///< The end of text will be clipped to fit within the TextField. @SINCE_1_0.0
135   };
136
137   /**
138    * @brief Mask used by the signal InputStyleChangedSignal(). Notifies which parameters of the input style have changed.
139    *
140    * @SINCE_1_2_2
141    */
142   struct InputStyle
143   {
144   /**
145    * @brief Mask used by the signal InputStyleChangedSignal().
146    *
147    * @SINCE_1_2_2
148    */
149     enum Mask
150     {
151       NONE         = 0x0000, ///< @SINCE_1_2_2
152       COLOR        = 0x0001, ///< @SINCE_1_2_2
153       FONT_FAMILY  = 0x0002, ///< @SINCE_1_2_2
154       POINT_SIZE   = 0x0004, ///< @SINCE_1_2_2
155       FONT_STYLE   = 0x0008, ///< @SINCE_1_2_2
156       UNDERLINE    = 0x0010, ///< @SINCE_1_2_2
157       SHADOW       = 0x0020, ///< @SINCE_1_2_2
158       EMBOSS       = 0x0040, ///< @SINCE_1_2_2
159       OUTLINE      = 0x0080  ///< @SINCE_1_2_2
160     };
161   };
162
163   // Type Defs
164
165   /**
166    * @brief Text changed signal type.
167    * @SINCE_1_0.0
168    */
169   typedef Signal<void ( TextField ) > TextChangedSignalType;
170
171   /**
172    * @brief Max Characters Exceed signal type.
173    * @SINCE_1_0.0
174    */
175   typedef Signal<void ( TextField ) > MaxLengthReachedSignalType;
176
177   /**
178    * @brief Input Style changed signal type.
179    * @SINCE_1_2_2
180    */
181   typedef Signal<void ( TextField, InputStyle::Mask ) > InputStyleChangedSignalType;
182
183   /**
184    * @brief Create the TextField control.
185    * @SINCE_1_0.0
186    * @return A handle to the TextField control.
187    */
188   static TextField New();
189
190   /**
191    * @brief Creates an empty handle.
192    * @SINCE_1_0.0
193    */
194   TextField();
195
196   /**
197    * @brief Copy constructor.
198    *
199    * @SINCE_1_0.0
200    * @param[in] handle The handle to copy from.
201    */
202   TextField( const TextField& handle );
203
204   /**
205    * @brief Assignment operator.
206    *
207    * @SINCE_1_0.0
208    * @param[in] handle The handle to copy from.
209    * @return A reference to this.
210    */
211   TextField& operator=( const TextField& handle );
212
213   /**
214    * @brief Destructor.
215    *
216    * This is non-virtual since derived Handle types must not contain data or virtual methods.
217    * @SINCE_1_0.0
218    */
219   ~TextField();
220
221   /**
222    * @brief Downcast a handle to TextField.
223    *
224    * If the BaseHandle points is a TextField the downcast returns a valid handle.
225    * If not the returned handle is left empty.
226    *
227    * @SINCE_1_0.0
228    * @param[in] handle Handle to an object.
229    * @return handle to a TextField or an empty handle.
230    */
231   static TextField DownCast( BaseHandle handle );
232
233   // Signals
234
235   /**
236    * @brief This signal is emitted when the text changes.
237    *
238    * A callback of the following type may be connected:
239    * @code
240    *   void YourCallbackName( TextField textField );
241    * @endcode
242    * @SINCE_1_0.0
243    * @return The signal to connect to.
244    */
245   TextChangedSignalType& TextChangedSignal();
246
247   /**
248    * @brief This signal is emitted when inserted text exceeds the maximum character limit.
249    *
250    * A callback of the following type may be connected:
251    * @code
252    *   void YourCallbackName( TextField textField );
253    * @endcode
254    * @SINCE_1_0.0
255    * @return The signal to connect to.
256    */
257   MaxLengthReachedSignalType& MaxLengthReachedSignal();
258
259   /**
260    * @brief This signal is emitted when the input style is updated as a consequence of a change in the cursor position.
261    * i.e. The signal is not emitted when the input style is updated through the property system.
262    *
263    * A callback of the following type may be connected. The @p mask parameter notifies which parts of the style have changed.
264    * @code
265    *   void YourCallbackName( TextField textField, TextField::InputStyle::Mask mask );
266    * @endcode
267    *
268    * @SINCE_1_2_2
269    * @return The signal to connect to.
270    */
271   InputStyleChangedSignalType& InputStyleChangedSignal();
272
273 public: // Not intended for application developers
274
275   /**
276    * @brief Creates a handle using the Toolkit::Internal implementation.
277    *
278    * @SINCE_1_0.0
279    * @param[in] implementation The Control implementation.
280    */
281   DALI_INTERNAL TextField( Internal::TextField& implementation );
282
283   /**
284    * @brief Allows the creation of this Control from an Internal::CustomActor pointer.
285    *
286    * @SINCE_1_0.0
287    * @param[in]  internal  A pointer to the internal CustomActor.
288    */
289   explicit DALI_INTERNAL TextField( Dali::Internal::CustomActor* internal );
290 };
291
292 /**
293  * @}
294  */
295 } // namespace Toolkit
296
297 } // namespace Dali
298
299 #endif // __DALI_TOOLKIT_TEXT_FIELD_H__