1.[NUI 276] c# nui visual high level class refactorying.
[platform/core/csapi/nui.git] / Tizen.NUI / src / public / UIComponents / TextField.cs
1 /** Copyright (c) 2017 Samsung Electronics Co., Ltd.
2 *
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 *
15 */
16 // This File has been auto-generated by SWIG and then modified using DALi Ruby Scripts
17 //------------------------------------------------------------------------------
18 // <auto-generated />
19 //
20 // This file was automatically generated by SWIG (http://www.swig.org).
21 // Version 3.0.9
22 //
23 // Do not make changes to this file unless you know what you are doing--modify
24 // the SWIG interface file instead.
25 //------------------------------------------------------------------------------
26
27 namespace Tizen.NUI.UIComponents
28 {
29
30     using System;
31     using System.Runtime.InteropServices;
32
33     /// <summary>
34     /// A control which provides a single-line editable text field.
35     /// </summary>
36     public class TextField : View
37     {
38         private global::System.Runtime.InteropServices.HandleRef swigCPtr;
39
40         internal TextField(global::System.IntPtr cPtr, bool cMemoryOwn) : base(NDalicPINVOKE.TextField_SWIGUpcast(cPtr), cMemoryOwn)
41         {
42             swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr);
43         }
44
45         internal static global::System.Runtime.InteropServices.HandleRef getCPtr(TextField obj)
46         {
47             return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr;
48         }
49
50         ~TextField()
51         {
52             DisposeQueue.Instance.Add(this);
53         }
54
55         /// <summary>
56         /// Dispose
57         /// </summary>
58         public override void Dispose()
59         {
60             if (!Stage.IsInstalled())
61             {
62                 DisposeQueue.Instance.Add(this);
63                 return;
64             }
65
66             lock (this)
67             {
68                 if (swigCPtr.Handle != global::System.IntPtr.Zero)
69                 {
70                     if (swigCMemOwn)
71                     {
72                         swigCMemOwn = false;
73                         NDalicPINVOKE.delete_TextField(swigCPtr);
74                     }
75                     swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero);
76                 }
77                 global::System.GC.SuppressFinalize(this);
78                 base.Dispose();
79             }
80         }
81
82         /// <summary>
83         /// Text changed event arguments.
84         /// </summary>
85         public class TextChangedEventArgs : EventArgs
86         {
87             private TextField _textField;
88
89             /// <summary>
90             /// TextField.
91             /// </summary>
92             public TextField TextField
93             {
94                 get
95                 {
96                     return _textField;
97                 }
98                 set
99                 {
100                     _textField = value;
101                 }
102             }
103         }
104
105         /// <summary>
106         /// MaxLengthReached event arguments.
107         /// </summary>
108         public class MaxLengthReachedEventArgs : EventArgs
109         {
110             private TextField _textField;
111
112             /// <summary>
113             /// TextField.
114             /// </summary>
115             public TextField TextField
116             {
117                 get
118                 {
119                     return _textField;
120                 }
121                 set
122                 {
123                     _textField = value;
124                 }
125             }
126         }
127
128
129         [UnmanagedFunctionPointer(CallingConvention.StdCall)]
130         private delegate void TextChangedCallbackDelegate(IntPtr textField);
131         private EventHandler<TextChangedEventArgs> _textFieldTextChangedEventHandler;
132         private TextChangedCallbackDelegate _textFieldTextChangedCallbackDelegate;
133
134         [UnmanagedFunctionPointer(CallingConvention.StdCall)]
135         private delegate void MaxLengthReachedCallbackDelegate(IntPtr textField);
136         private EventHandler<MaxLengthReachedEventArgs> _textFieldMaxLengthReachedEventHandler;
137         private MaxLengthReachedCallbackDelegate _textFieldMaxLengthReachedCallbackDelegate;
138
139         /// <summary>
140         /// TextChanged event.
141         /// </summary>
142         public event EventHandler<TextChangedEventArgs> TextChanged
143         {
144             add
145             {
146                 if (_textFieldTextChangedEventHandler == null)
147                 {
148                     _textFieldTextChangedCallbackDelegate = (OnTextChanged);
149                     TextChangedSignal().Connect(_textFieldTextChangedCallbackDelegate);
150                 }
151                 _textFieldTextChangedEventHandler += value;
152             }
153             remove
154             {
155                 _textFieldTextChangedEventHandler -= value;
156                 if (_textFieldTextChangedEventHandler == null && TextChangedSignal().Empty() == false)
157                 {
158                     TextChangedSignal().Disconnect(_textFieldTextChangedCallbackDelegate);
159                 }
160             }
161         }
162
163         private void OnTextChanged(IntPtr textField)
164         {
165             TextChangedEventArgs e = new TextChangedEventArgs();
166
167             // Populate all members of "e" (TextChangedEventArgs) with real data
168             e.TextField = Tizen.NUI.UIComponents.TextField.GetTextFieldFromPtr(textField);
169
170             if (_textFieldTextChangedEventHandler != null)
171             {
172                 //here we send all data to user event handlers
173                 _textFieldTextChangedEventHandler(this, e);
174             }
175
176         }
177
178         /// <summary>
179         /// MaxLengthReached event.
180         /// </summary>
181         public event EventHandler<MaxLengthReachedEventArgs> MaxLengthReached
182         {
183             add
184             {
185                 if (_textFieldMaxLengthReachedEventHandler == null)
186                 {
187                     _textFieldMaxLengthReachedCallbackDelegate = (OnMaxLengthReached);
188                     MaxLengthReachedSignal().Connect(_textFieldMaxLengthReachedCallbackDelegate);
189                 }
190                 _textFieldMaxLengthReachedEventHandler += value;
191             }
192             remove
193             {
194                 if (_textFieldMaxLengthReachedEventHandler == null && MaxLengthReachedSignal().Empty() == false)
195                 {
196                     this.MaxLengthReachedSignal().Disconnect(_textFieldMaxLengthReachedCallbackDelegate);
197                 }
198                 _textFieldMaxLengthReachedEventHandler -= value;
199             }
200         }
201
202         private void OnMaxLengthReached(IntPtr textField)
203         {
204             MaxLengthReachedEventArgs e = new MaxLengthReachedEventArgs();
205
206             // Populate all members of "e" (MaxLengthReachedEventArgs) with real data
207             e.TextField = Tizen.NUI.UIComponents.TextField.GetTextFieldFromPtr(textField);
208
209             if (_textFieldMaxLengthReachedEventHandler != null)
210             {
211                 //here we send all data to user event handlers
212                 _textFieldMaxLengthReachedEventHandler(this, e);
213             }
214
215         }
216
217         internal static TextField GetTextFieldFromPtr(global::System.IntPtr cPtr)
218         {
219             TextField ret = new TextField(cPtr, false);
220             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
221             return ret;
222         }
223
224
225         internal class Property : global::System.IDisposable
226         {
227             private global::System.Runtime.InteropServices.HandleRef swigCPtr;
228             protected bool swigCMemOwn;
229
230             internal Property(global::System.IntPtr cPtr, bool cMemoryOwn)
231             {
232                 swigCMemOwn = cMemoryOwn;
233                 swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr);
234             }
235
236             internal static global::System.Runtime.InteropServices.HandleRef getCPtr(Property obj)
237             {
238                 return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr;
239             }
240
241             ~Property()
242             {
243                 Dispose();
244             }
245
246             public virtual void Dispose()
247             {
248                 lock (this)
249                 {
250                     if (swigCPtr.Handle != global::System.IntPtr.Zero)
251                     {
252                         if (swigCMemOwn)
253                         {
254                             swigCMemOwn = false;
255                             NDalicPINVOKE.delete_TextField_Property(swigCPtr);
256                         }
257                         swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero);
258                     }
259                     global::System.GC.SuppressFinalize(this);
260                 }
261             }
262
263             internal Property() : this(NDalicPINVOKE.new_TextField_Property(), true)
264             {
265                 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
266             }
267
268             internal static readonly int RENDERING_BACKEND = NDalicPINVOKE.TextField_Property_RENDERING_BACKEND_get();
269             internal static readonly int TEXT = NDalicPINVOKE.TextField_Property_TEXT_get();
270             internal static readonly int PLACEHOLDER_TEXT = NDalicPINVOKE.TextField_Property_PLACEHOLDER_TEXT_get();
271             internal static readonly int PLACEHOLDER_TEXT_FOCUSED = NDalicPINVOKE.TextField_Property_PLACEHOLDER_TEXT_FOCUSED_get();
272             internal static readonly int FONT_FAMILY = NDalicPINVOKE.TextField_Property_FONT_FAMILY_get();
273             internal static readonly int FONT_STYLE = NDalicPINVOKE.TextField_Property_FONT_STYLE_get();
274             internal static readonly int POINT_SIZE = NDalicPINVOKE.TextField_Property_POINT_SIZE_get();
275             internal static readonly int MAX_LENGTH = NDalicPINVOKE.TextField_Property_MAX_LENGTH_get();
276             internal static readonly int EXCEED_POLICY = NDalicPINVOKE.TextField_Property_EXCEED_POLICY_get();
277             internal static readonly int HORIZONTAL_ALIGNMENT = NDalicPINVOKE.TextField_Property_HORIZONTAL_ALIGNMENT_get();
278             internal static readonly int VERTICAL_ALIGNMENT = NDalicPINVOKE.TextField_Property_VERTICAL_ALIGNMENT_get();
279             internal static readonly int TEXT_COLOR = NDalicPINVOKE.TextField_Property_TEXT_COLOR_get();
280             internal static readonly int PLACEHOLDER_TEXT_COLOR = NDalicPINVOKE.TextField_Property_PLACEHOLDER_TEXT_COLOR_get();
281             internal static readonly int SHADOW_OFFSET = NDalicPINVOKE.TextField_Property_SHADOW_OFFSET_get();
282             internal static readonly int SHADOW_COLOR = NDalicPINVOKE.TextField_Property_SHADOW_COLOR_get();
283             internal static readonly int PRIMARY_CURSOR_COLOR = NDalicPINVOKE.TextField_Property_PRIMARY_CURSOR_COLOR_get();
284             internal static readonly int SECONDARY_CURSOR_COLOR = NDalicPINVOKE.TextField_Property_SECONDARY_CURSOR_COLOR_get();
285             internal static readonly int ENABLE_CURSOR_BLINK = NDalicPINVOKE.TextField_Property_ENABLE_CURSOR_BLINK_get();
286             internal static readonly int CURSOR_BLINK_INTERVAL = NDalicPINVOKE.TextField_Property_CURSOR_BLINK_INTERVAL_get();
287             internal static readonly int CURSOR_BLINK_DURATION = NDalicPINVOKE.TextField_Property_CURSOR_BLINK_DURATION_get();
288             internal static readonly int CURSOR_WIDTH = NDalicPINVOKE.TextField_Property_CURSOR_WIDTH_get();
289             internal static readonly int GRAB_HANDLE_IMAGE = NDalicPINVOKE.TextField_Property_GRAB_HANDLE_IMAGE_get();
290             internal static readonly int GRAB_HANDLE_PRESSED_IMAGE = NDalicPINVOKE.TextField_Property_GRAB_HANDLE_PRESSED_IMAGE_get();
291             internal static readonly int SCROLL_THRESHOLD = NDalicPINVOKE.TextField_Property_SCROLL_THRESHOLD_get();
292             internal static readonly int SCROLL_SPEED = NDalicPINVOKE.TextField_Property_SCROLL_SPEED_get();
293             internal static readonly int SELECTION_HANDLE_IMAGE_LEFT = NDalicPINVOKE.TextField_Property_SELECTION_HANDLE_IMAGE_LEFT_get();
294             internal static readonly int SELECTION_HANDLE_IMAGE_RIGHT = NDalicPINVOKE.TextField_Property_SELECTION_HANDLE_IMAGE_RIGHT_get();
295             internal static readonly int SELECTION_HANDLE_PRESSED_IMAGE_LEFT = NDalicPINVOKE.TextField_Property_SELECTION_HANDLE_PRESSED_IMAGE_LEFT_get();
296             internal static readonly int SELECTION_HANDLE_PRESSED_IMAGE_RIGHT = NDalicPINVOKE.TextField_Property_SELECTION_HANDLE_PRESSED_IMAGE_RIGHT_get();
297             internal static readonly int SELECTION_HANDLE_MARKER_IMAGE_LEFT = NDalicPINVOKE.TextField_Property_SELECTION_HANDLE_MARKER_IMAGE_LEFT_get();
298             internal static readonly int SELECTION_HANDLE_MARKER_IMAGE_RIGHT = NDalicPINVOKE.TextField_Property_SELECTION_HANDLE_MARKER_IMAGE_RIGHT_get();
299             internal static readonly int SELECTION_HIGHLIGHT_COLOR = NDalicPINVOKE.TextField_Property_SELECTION_HIGHLIGHT_COLOR_get();
300             internal static readonly int DECORATION_BOUNDING_BOX = NDalicPINVOKE.TextField_Property_DECORATION_BOUNDING_BOX_get();
301             internal static readonly int INPUT_METHOD_SETTINGS = NDalicPINVOKE.TextField_Property_INPUT_METHOD_SETTINGS_get();
302             internal static readonly int INPUT_COLOR = NDalicPINVOKE.TextField_Property_INPUT_COLOR_get();
303             internal static readonly int ENABLE_MARKUP = NDalicPINVOKE.TextField_Property_ENABLE_MARKUP_get();
304             internal static readonly int INPUT_FONT_FAMILY = NDalicPINVOKE.TextField_Property_INPUT_FONT_FAMILY_get();
305             internal static readonly int INPUT_FONT_STYLE = NDalicPINVOKE.TextField_Property_INPUT_FONT_STYLE_get();
306             internal static readonly int INPUT_POINT_SIZE = NDalicPINVOKE.TextField_Property_INPUT_POINT_SIZE_get();
307             internal static readonly int UNDERLINE = NDalicPINVOKE.TextField_Property_UNDERLINE_get();
308             internal static readonly int INPUT_UNDERLINE = NDalicPINVOKE.TextField_Property_INPUT_UNDERLINE_get();
309             internal static readonly int SHADOW = NDalicPINVOKE.TextField_Property_SHADOW_get();
310             internal static readonly int INPUT_SHADOW = NDalicPINVOKE.TextField_Property_INPUT_SHADOW_get();
311             internal static readonly int EMBOSS = NDalicPINVOKE.TextField_Property_EMBOSS_get();
312             internal static readonly int INPUT_EMBOSS = NDalicPINVOKE.TextField_Property_INPUT_EMBOSS_get();
313             internal static readonly int OUTLINE = NDalicPINVOKE.TextField_Property_OUTLINE_get();
314             internal static readonly int INPUT_OUTLINE = NDalicPINVOKE.TextField_Property_INPUT_OUTLINE_get();
315
316         }
317
318         internal class InputStyle : global::System.IDisposable
319         {
320             private global::System.Runtime.InteropServices.HandleRef swigCPtr;
321             protected bool swigCMemOwn;
322
323             internal InputStyle(global::System.IntPtr cPtr, bool cMemoryOwn)
324             {
325                 swigCMemOwn = cMemoryOwn;
326                 swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr);
327             }
328
329             internal static global::System.Runtime.InteropServices.HandleRef getCPtr(InputStyle obj)
330             {
331                 return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr;
332             }
333
334             ~InputStyle()
335             {
336                 Dispose();
337             }
338
339             public virtual void Dispose()
340             {
341                 lock (this)
342                 {
343                     if (swigCPtr.Handle != global::System.IntPtr.Zero)
344                     {
345                         if (swigCMemOwn)
346                         {
347                             swigCMemOwn = false;
348                             NDalicPINVOKE.delete_TextField_InputStyle(swigCPtr);
349                         }
350                         swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero);
351                     }
352                     global::System.GC.SuppressFinalize(this);
353                 }
354             }
355
356             internal InputStyle() : this(NDalicPINVOKE.new_TextField_InputStyle(), true)
357             {
358                 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
359             }
360
361             internal enum Mask
362             {
363                 None = 0x0000,
364                 Color = 0x0001,
365                 FontFamily = 0x0002,
366                 PointSize = 0x0004,
367                 FontStyle = 0x0008,
368                 Underline = 0x0010,
369                 Shadow = 0x0020,
370                 Emboss = 0x0040,
371                 Outline = 0x0080
372             }
373
374         }
375
376         /// <summary>
377         /// Creates the TextField control.
378         /// </summary>
379         public TextField() : this(NDalicPINVOKE.TextField_New(), true)
380         {
381             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
382
383         }
384         internal TextField(TextField handle) : this(NDalicPINVOKE.new_TextField__SWIG_1(TextField.getCPtr(handle)), true)
385         {
386             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
387         }
388
389         internal TextField Assign(TextField handle)
390         {
391             TextField ret = new TextField(NDalicPINVOKE.TextField_Assign(swigCPtr, TextField.getCPtr(handle)), false);
392             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
393             return ret;
394         }
395
396         /// <summary>
397         /// Downcasts a handle to TextField.
398         /// </summary>
399         /// <param name="handle">Handle to an object</param>
400         /// <returns>Handle to a TextField or an empty handle</returns>
401         public new static TextField DownCast(BaseHandle handle)
402         {
403             TextField ret = new TextField(NDalicPINVOKE.TextField_DownCast(BaseHandle.getCPtr(handle)), true);
404             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
405             return ret;
406         }
407
408         internal TextFieldSignal TextChangedSignal()
409         {
410             TextFieldSignal ret = new TextFieldSignal(NDalicPINVOKE.TextField_TextChangedSignal(swigCPtr), false);
411             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
412             return ret;
413         }
414
415         internal TextFieldSignal MaxLengthReachedSignal()
416         {
417             TextFieldSignal ret = new TextFieldSignal(NDalicPINVOKE.TextField_MaxLengthReachedSignal(swigCPtr), false);
418             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
419             return ret;
420         }
421
422         internal SWIGTYPE_p_Dali__SignalT_void_fDali__Toolkit__TextField_Dali__Toolkit__TextField__InputStyle__MaskF_t InputStyleChangedSignal()
423         {
424             SWIGTYPE_p_Dali__SignalT_void_fDali__Toolkit__TextField_Dali__Toolkit__TextField__InputStyle__MaskF_t ret = new SWIGTYPE_p_Dali__SignalT_void_fDali__Toolkit__TextField_Dali__Toolkit__TextField__InputStyle__MaskF_t(NDalicPINVOKE.TextField_InputStyleChangedSignal(swigCPtr), false);
425             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
426             return ret;
427         }
428
429         internal enum PropertyRange
430         {
431             PROPERTY_START_INDEX = PropertyRanges.PROPERTY_REGISTRATION_START_INDEX,
432             PROPERTY_END_INDEX = View.PropertyRange.PROPERTY_START_INDEX + 1000
433         }
434
435         internal enum ExceedPolicyType
436         {
437             ExceedPolicyOriginal,
438             ExceedPolicyClip
439         }
440
441         /// <summary>
442         /// RenderingBackend property.
443         /// </summary>
444         public int RenderingBackend
445         {
446             get
447             {
448                 int temp = 0;
449                 GetProperty(TextField.Property.RENDERING_BACKEND).Get(ref temp);
450                 return temp;
451             }
452             set
453             {
454                 SetProperty(TextField.Property.RENDERING_BACKEND, new Tizen.NUI.PropertyValue(value));
455             }
456         }
457
458         /// <summary>
459         /// Text property.
460         /// </summary>
461         public string Text
462         {
463             get
464             {
465                 string temp;
466                 GetProperty(TextField.Property.TEXT).Get(out temp);
467                 return temp;
468             }
469             set
470             {
471                 SetProperty(TextField.Property.TEXT, new Tizen.NUI.PropertyValue(value));
472             }
473         }
474
475         /// <summary>
476         /// PlaceholderText property.
477         /// </summary>
478         public string PlaceholderText
479         {
480             get
481             {
482                 string temp;
483                 GetProperty(TextField.Property.PLACEHOLDER_TEXT).Get(out temp);
484                 return temp;
485             }
486             set
487             {
488                 SetProperty(TextField.Property.PLACEHOLDER_TEXT, new Tizen.NUI.PropertyValue(value));
489             }
490         }
491
492         /// <summary>
493         /// PlaceholderTextFocused property.
494         /// </summary>
495         public string PlaceholderTextFocused
496         {
497             get
498             {
499                 string temp;
500                 GetProperty(TextField.Property.PLACEHOLDER_TEXT_FOCUSED).Get(out temp);
501                 return temp;
502             }
503             set
504             {
505                 SetProperty(TextField.Property.PLACEHOLDER_TEXT_FOCUSED, new Tizen.NUI.PropertyValue(value));
506             }
507         }
508
509         /// <summary>
510         /// FontFamily property.
511         /// </summary>
512         public string FontFamily
513         {
514             get
515             {
516                 string temp;
517                 GetProperty(TextField.Property.FONT_FAMILY).Get(out temp);
518                 return temp;
519             }
520             set
521             {
522                 SetProperty(TextField.Property.FONT_FAMILY, new Tizen.NUI.PropertyValue(value));
523             }
524         }
525
526         /// <summary>
527         /// FontStyle property.
528         /// </summary>
529         public PropertyMap FontStyle
530         {
531             get
532             {
533                 PropertyMap temp = new PropertyMap();
534                 GetProperty(TextField.Property.FONT_STYLE).Get(temp);
535                 return temp;
536             }
537             set
538             {
539                 SetProperty(TextField.Property.FONT_STYLE, new Tizen.NUI.PropertyValue(value));
540             }
541         }
542
543         /// <summary>
544         /// PointSize property.
545         /// </summary>
546         public float PointSize
547         {
548             get
549             {
550                 float temp = 0.0f;
551                 GetProperty(TextField.Property.POINT_SIZE).Get(ref temp);
552                 return temp;
553             }
554             set
555             {
556                 SetProperty(TextField.Property.POINT_SIZE, new Tizen.NUI.PropertyValue(value));
557             }
558         }
559
560         /// <summary>
561         /// MaxLength property.
562         /// </summary>
563         public int MaxLength
564         {
565             get
566             {
567                 int temp = 0;
568                 GetProperty(TextField.Property.MAX_LENGTH).Get(ref temp);
569                 return temp;
570             }
571             set
572             {
573                 SetProperty(TextField.Property.MAX_LENGTH, new Tizen.NUI.PropertyValue(value));
574             }
575         }
576
577         /// <summary>
578         /// ExceedPolicy property.
579         /// </summary>
580         public int ExceedPolicy
581         {
582             get
583             {
584                 int temp = 0;
585                 GetProperty(TextField.Property.EXCEED_POLICY).Get(ref temp);
586                 return temp;
587             }
588             set
589             {
590                 SetProperty(TextField.Property.EXCEED_POLICY, new Tizen.NUI.PropertyValue(value));
591             }
592         }
593
594         /// <summary>
595         /// HorizontalAlignment property.
596         /// </summary>
597         public HorizontalAlignment HorizontalAlignment
598         {
599             get
600             {
601                 string temp;
602                 if (GetProperty(TextField.Property.HORIZONTAL_ALIGNMENT).Get(out temp) == false)
603                 {
604 #if DEBUG_ON
605                     Tizen.Log.Error("NUI", "HorizontalAlignment get error!");
606 #endif
607                 }
608
609                 switch (temp)
610                 {
611                     case "BEGIN":
612                         return HorizontalAlignment.Begin;
613                     case "CENTER":
614                         return HorizontalAlignment.Center;
615                     case "END":
616                         return HorizontalAlignment.End;
617                     default:
618                         return HorizontalAlignment.Begin;
619                 }
620             }
621             set
622             {
623                 string valueToString = "";
624                 switch (value)
625                 {
626                     case HorizontalAlignment.Begin:
627                     {
628                         valueToString = "BEGIN";
629                         break;
630                     }
631                     case HorizontalAlignment.Center:
632                     {
633                         valueToString = "CENTER";
634                         break;
635                     }
636                     case HorizontalAlignment.End:
637                     {
638                         valueToString = "END";
639                         break;
640                     }
641                     default:
642                     {
643                         valueToString = "BEGIN";
644                         break;
645                     }
646                 }
647                 SetProperty(TextField.Property.HORIZONTAL_ALIGNMENT, new Tizen.NUI.PropertyValue(valueToString));
648             }
649         }
650
651         /// <summary>
652         /// VerticalAlignment property.
653         /// </summary>
654         public VerticalAlignment VerticalAlignment
655         {
656             get
657             {
658                 string temp;
659                 if (GetProperty(TextField.Property.VERTICAL_ALIGNMENT).Get(out temp) == false)
660                 {
661 #if DEBUG_ON
662                     Tizen.Log.Error("NUI", "VerticalAlignment get error!");
663 #endif
664                 }
665
666                 switch (temp)
667                 {
668                     case "TOP":
669                         return VerticalAlignment.Top;
670                     case "CENTER":
671                         return VerticalAlignment.Center;
672                     case "BOTTOM":
673                         return VerticalAlignment.Bottom;
674                     default:
675                         return VerticalAlignment.Bottom;
676                 }
677             }
678             set
679             {
680                 string valueToString = "";
681                 switch (value)
682                 {
683                     case VerticalAlignment.Top:
684                     {
685                         valueToString = "TOP";
686                         break;
687                     }
688                     case VerticalAlignment.Center:
689                     {
690                         valueToString = "CENTER";
691                         break;
692                     }
693                     case VerticalAlignment.Bottom:
694                     {
695                         valueToString = "BOTTOM";
696                         break;
697                     }
698                     default:
699                     {
700                         valueToString = "BOTTOM";
701                         break;
702                     }
703                 }
704                 SetProperty(TextField.Property.VERTICAL_ALIGNMENT, new Tizen.NUI.PropertyValue(valueToString));
705             }
706         }
707
708         /// <summary>
709         /// TextColor property.
710         /// </summary>
711         public Color TextColor
712         {
713             get
714             {
715                 Color temp = new Color(0.0f, 0.0f, 0.0f, 0.0f);
716                 GetProperty(TextField.Property.TEXT_COLOR).Get(temp);
717                 return temp;
718             }
719             set
720             {
721                 SetProperty(TextField.Property.TEXT_COLOR, new Tizen.NUI.PropertyValue(value));
722             }
723         }
724
725         /// <summary>
726         /// PlaceholderTextColor property.
727         /// </summary>
728         public Vector4 PlaceholderTextColor
729         {
730             get
731             {
732                 Vector4 temp = new Vector4(0.0f, 0.0f, 0.0f, 0.0f);
733                 GetProperty(TextField.Property.PLACEHOLDER_TEXT_COLOR).Get(temp);
734                 return temp;
735             }
736             set
737             {
738                 SetProperty(TextField.Property.PLACEHOLDER_TEXT_COLOR, new Tizen.NUI.PropertyValue(value));
739             }
740         }
741
742         /// <summary>
743         /// ShadowOffset property.
744         /// </summary>
745         public Vector2 ShadowOffset
746         {
747             get
748             {
749                 Vector2 temp = new Vector2(0.0f, 0.0f);
750                 GetProperty(TextField.Property.SHADOW_OFFSET).Get(temp);
751                 return temp;
752             }
753             set
754             {
755                 SetProperty(TextField.Property.SHADOW_OFFSET, new Tizen.NUI.PropertyValue(value));
756             }
757         }
758
759         /// <summary>
760         /// ShadowColor property.
761         /// </summary>
762         public Vector4 ShadowColor
763         {
764             get
765             {
766                 Vector4 temp = new Vector4(0.0f, 0.0f, 0.0f, 0.0f);
767                 GetProperty(TextField.Property.SHADOW_COLOR).Get(temp);
768                 return temp;
769             }
770             set
771             {
772                 SetProperty(TextField.Property.SHADOW_COLOR, new Tizen.NUI.PropertyValue(value));
773             }
774         }
775
776         /// <summary>
777         /// PrimaryCursorColor property.
778         /// </summary>
779         public Vector4 PrimaryCursorColor
780         {
781             get
782             {
783                 Vector4 temp = new Vector4(0.0f, 0.0f, 0.0f, 0.0f);
784                 GetProperty(TextField.Property.PRIMARY_CURSOR_COLOR).Get(temp);
785                 return temp;
786             }
787             set
788             {
789                 SetProperty(TextField.Property.PRIMARY_CURSOR_COLOR, new Tizen.NUI.PropertyValue(value));
790             }
791         }
792
793         /// <summary>
794         /// SecondaryCursorColor property.
795         /// </summary>
796         public Vector4 SecondaryCursorColor
797         {
798             get
799             {
800                 Vector4 temp = new Vector4(0.0f, 0.0f, 0.0f, 0.0f);
801                 GetProperty(TextField.Property.SECONDARY_CURSOR_COLOR).Get(temp);
802                 return temp;
803             }
804             set
805             {
806                 SetProperty(TextField.Property.SECONDARY_CURSOR_COLOR, new Tizen.NUI.PropertyValue(value));
807             }
808         }
809
810         /// <summary>
811         /// EnableCursorBlink property.
812         /// </summary>
813         public bool EnableCursorBlink
814         {
815             get
816             {
817                 bool temp = false;
818                 GetProperty(TextField.Property.ENABLE_CURSOR_BLINK).Get(ref temp);
819                 return temp;
820             }
821             set
822             {
823                 SetProperty(TextField.Property.ENABLE_CURSOR_BLINK, new Tizen.NUI.PropertyValue(value));
824             }
825         }
826
827         /// <summary>
828         /// CursorBlinkInterval property.
829         /// </summary>
830         public float CursorBlinkInterval
831         {
832             get
833             {
834                 float temp = 0.0f;
835                 GetProperty(TextField.Property.CURSOR_BLINK_INTERVAL).Get(ref temp);
836                 return temp;
837             }
838             set
839             {
840                 SetProperty(TextField.Property.CURSOR_BLINK_INTERVAL, new Tizen.NUI.PropertyValue(value));
841             }
842         }
843
844         /// <summary>
845         /// CursorBlinkDuration property.
846         /// </summary>
847         public float CursorBlinkDuration
848         {
849             get
850             {
851                 float temp = 0.0f;
852                 GetProperty(TextField.Property.CURSOR_BLINK_DURATION).Get(ref temp);
853                 return temp;
854             }
855             set
856             {
857                 SetProperty(TextField.Property.CURSOR_BLINK_DURATION, new Tizen.NUI.PropertyValue(value));
858             }
859         }
860
861         /// <summary>
862         /// CursorWidth property.
863         /// </summary>
864         public int CursorWidth
865         {
866             get
867             {
868                 int temp = 0;
869                 GetProperty(TextField.Property.CURSOR_WIDTH).Get(ref temp);
870                 return temp;
871             }
872             set
873             {
874                 SetProperty(TextField.Property.CURSOR_WIDTH, new Tizen.NUI.PropertyValue(value));
875             }
876         }
877
878         /// <summary>
879         /// GrabHandleImage property.
880         /// </summary>
881         public string GrabHandleImage
882         {
883             get
884             {
885                 string temp;
886                 GetProperty(TextField.Property.GRAB_HANDLE_IMAGE).Get(out temp);
887                 return temp;
888             }
889             set
890             {
891                 SetProperty(TextField.Property.GRAB_HANDLE_IMAGE, new Tizen.NUI.PropertyValue(value));
892             }
893         }
894
895         /// <summary>
896         /// GrabHandlePressedImage property.
897         /// </summary>
898         public string GrabHandlePressedImage
899         {
900             get
901             {
902                 string temp;
903                 GetProperty(TextField.Property.GRAB_HANDLE_PRESSED_IMAGE).Get(out temp);
904                 return temp;
905             }
906             set
907             {
908                 SetProperty(TextField.Property.GRAB_HANDLE_PRESSED_IMAGE, new Tizen.NUI.PropertyValue(value));
909             }
910         }
911
912         /// <summary>
913         /// ScrollThreshold property.
914         /// </summary>
915         public float ScrollThreshold
916         {
917             get
918             {
919                 float temp = 0.0f;
920                 GetProperty(TextField.Property.SCROLL_THRESHOLD).Get(ref temp);
921                 return temp;
922             }
923             set
924             {
925                 SetProperty(TextField.Property.SCROLL_THRESHOLD, new Tizen.NUI.PropertyValue(value));
926             }
927         }
928
929         /// <summary>
930         /// ScrollSpeed property.
931         /// </summary>
932         public float ScrollSpeed
933         {
934             get
935             {
936                 float temp = 0.0f;
937                 GetProperty(TextField.Property.SCROLL_SPEED).Get(ref temp);
938                 return temp;
939             }
940             set
941             {
942                 SetProperty(TextField.Property.SCROLL_SPEED, new Tizen.NUI.PropertyValue(value));
943             }
944         }
945
946         /// <summary>
947         /// SelectionHandleImageLeft property.
948         /// </summary>
949         public PropertyMap SelectionHandleImageLeft
950         {
951             get
952             {
953                 PropertyMap temp = new PropertyMap();
954                 GetProperty(TextField.Property.SELECTION_HANDLE_IMAGE_LEFT).Get(temp);
955                 return temp;
956             }
957             set
958             {
959                 SetProperty(TextField.Property.SELECTION_HANDLE_IMAGE_LEFT, new Tizen.NUI.PropertyValue(value));
960             }
961         }
962
963         /// <summary>
964         /// SelectionHandleImageRight property.
965         /// </summary>
966         public PropertyMap SelectionHandleImageRight
967         {
968             get
969             {
970                 PropertyMap temp = new PropertyMap();
971                 GetProperty(TextField.Property.SELECTION_HANDLE_IMAGE_RIGHT).Get(temp);
972                 return temp;
973             }
974             set
975             {
976                 SetProperty(TextField.Property.SELECTION_HANDLE_IMAGE_RIGHT, new Tizen.NUI.PropertyValue(value));
977             }
978         }
979
980         /// <summary>
981         /// SelectionHandlePressedImageLeft property.
982         /// </summary>
983         public PropertyMap SelectionHandlePressedImageLeft
984         {
985             get
986             {
987                 PropertyMap temp = new PropertyMap();
988                 GetProperty(TextField.Property.SELECTION_HANDLE_PRESSED_IMAGE_LEFT).Get(temp);
989                 return temp;
990             }
991             set
992             {
993                 SetProperty(TextField.Property.SELECTION_HANDLE_PRESSED_IMAGE_LEFT, new Tizen.NUI.PropertyValue(value));
994             }
995         }
996
997         /// <summary>
998         /// SelectionHandlePressedImageRight property.
999         /// </summary>
1000         public PropertyMap SelectionHandlePressedImageRight
1001         {
1002             get
1003             {
1004                 PropertyMap temp = new PropertyMap();
1005                 GetProperty(TextField.Property.SELECTION_HANDLE_PRESSED_IMAGE_RIGHT).Get(temp);
1006                 return temp;
1007             }
1008             set
1009             {
1010                 SetProperty(TextField.Property.SELECTION_HANDLE_PRESSED_IMAGE_RIGHT, new Tizen.NUI.PropertyValue(value));
1011             }
1012         }
1013
1014         /// <summary>
1015         /// SelectionHandleMarkerImageLeft property.
1016         /// </summary>
1017         public PropertyMap SelectionHandleMarkerImageLeft
1018         {
1019             get
1020             {
1021                 PropertyMap temp = new PropertyMap();
1022                 GetProperty(TextField.Property.SELECTION_HANDLE_MARKER_IMAGE_LEFT).Get(temp);
1023                 return temp;
1024             }
1025             set
1026             {
1027                 SetProperty(TextField.Property.SELECTION_HANDLE_MARKER_IMAGE_LEFT, new Tizen.NUI.PropertyValue(value));
1028             }
1029         }
1030
1031         /// <summary>
1032         /// SelectionHandleMarkerImageRight property.
1033         /// </summary>
1034         public PropertyMap SelectionHandleMarkerImageRight
1035         {
1036             get
1037             {
1038                 PropertyMap temp = new PropertyMap();
1039                 GetProperty(TextField.Property.SELECTION_HANDLE_MARKER_IMAGE_RIGHT).Get(temp);
1040                 return temp;
1041             }
1042             set
1043             {
1044                 SetProperty(TextField.Property.SELECTION_HANDLE_MARKER_IMAGE_RIGHT, new Tizen.NUI.PropertyValue(value));
1045             }
1046         }
1047
1048         /// <summary>
1049         /// SelectionHighlightColor property.
1050         /// </summary>
1051         public Vector4 SelectionHighlightColor
1052         {
1053             get
1054             {
1055                 Vector4 temp = new Vector4(0.0f, 0.0f, 0.0f, 0.0f);
1056                 GetProperty(TextField.Property.SELECTION_HIGHLIGHT_COLOR).Get(temp);
1057                 return temp;
1058             }
1059             set
1060             {
1061                 SetProperty(TextField.Property.SELECTION_HIGHLIGHT_COLOR, new Tizen.NUI.PropertyValue(value));
1062             }
1063         }
1064
1065         /// <summary>
1066         /// DecorationBoundingBox property.
1067         /// </summary>
1068         public Rectangle DecorationBoundingBox
1069         {
1070             get
1071             {
1072                 Rectangle temp = new Rectangle(0, 0, 0, 0);
1073                 GetProperty(TextField.Property.DECORATION_BOUNDING_BOX).Get(temp);
1074                 return temp;
1075             }
1076             set
1077             {
1078                 SetProperty(TextField.Property.DECORATION_BOUNDING_BOX, new Tizen.NUI.PropertyValue(value));
1079             }
1080         }
1081
1082         /// <summary>
1083         /// InputMethodSettings property.
1084         /// </summary>
1085         public PropertyMap InputMethodSettings
1086         {
1087             get
1088             {
1089                 PropertyMap temp = new PropertyMap();
1090                 GetProperty(TextField.Property.INPUT_METHOD_SETTINGS).Get(temp);
1091                 return temp;
1092             }
1093             set
1094             {
1095                 SetProperty(TextField.Property.INPUT_METHOD_SETTINGS, new Tizen.NUI.PropertyValue(value));
1096             }
1097         }
1098
1099         /// <summary>
1100         /// InputColor property.
1101         /// </summary>
1102         public Vector4 InputColor
1103         {
1104             get
1105             {
1106                 Vector4 temp = new Vector4(0.0f, 0.0f, 0.0f, 0.0f);
1107                 GetProperty(TextField.Property.INPUT_COLOR).Get(temp);
1108                 return temp;
1109             }
1110             set
1111             {
1112                 SetProperty(TextField.Property.INPUT_COLOR, new Tizen.NUI.PropertyValue(value));
1113             }
1114         }
1115
1116         /// <summary>
1117         /// EnableMarkup property.
1118         /// </summary>
1119         public bool EnableMarkup
1120         {
1121             get
1122             {
1123                 bool temp = false;
1124                 GetProperty(TextField.Property.ENABLE_MARKUP).Get(ref temp);
1125                 return temp;
1126             }
1127             set
1128             {
1129                 SetProperty(TextField.Property.ENABLE_MARKUP, new Tizen.NUI.PropertyValue(value));
1130             }
1131         }
1132
1133         /// <summary>
1134         /// InputFontFamily property.
1135         /// </summary>
1136         public string InputFontFamily
1137         {
1138             get
1139             {
1140                 string temp;
1141                 GetProperty(TextField.Property.INPUT_FONT_FAMILY).Get(out temp);
1142                 return temp;
1143             }
1144             set
1145             {
1146                 SetProperty(TextField.Property.INPUT_FONT_FAMILY, new Tizen.NUI.PropertyValue(value));
1147             }
1148         }
1149
1150         /// <summary>
1151         /// InputFontStyle property.
1152         /// </summary>
1153         public PropertyMap InputFontStyle
1154         {
1155             get
1156             {
1157                 PropertyMap temp = new PropertyMap();
1158                 GetProperty(TextField.Property.INPUT_FONT_STYLE).Get(temp);
1159                 return temp;
1160             }
1161             set
1162             {
1163                 SetProperty(TextField.Property.INPUT_FONT_STYLE, new Tizen.NUI.PropertyValue(value));
1164             }
1165         }
1166
1167         /// <summary>
1168         /// InputPointSize property.
1169         /// </summary>
1170         public float InputPointSize
1171         {
1172             get
1173             {
1174                 float temp = 0.0f;
1175                 GetProperty(TextField.Property.INPUT_POINT_SIZE).Get(ref temp);
1176                 return temp;
1177             }
1178             set
1179             {
1180                 SetProperty(TextField.Property.INPUT_POINT_SIZE, new Tizen.NUI.PropertyValue(value));
1181             }
1182         }
1183
1184         /// <summary>
1185         /// Underline property.
1186         /// </summary>
1187         public PropertyMap Underline
1188         {
1189             get
1190             {
1191                 PropertyMap temp = new PropertyMap();
1192                 GetProperty(TextField.Property.UNDERLINE).Get(temp);
1193                 return temp;
1194             }
1195             set
1196             {
1197                 SetProperty(TextField.Property.UNDERLINE, new Tizen.NUI.PropertyValue(value));
1198             }
1199         }
1200
1201         /// <summary>
1202         /// InputUnderline property.
1203         /// </summary>
1204         public string InputUnderline
1205         {
1206             get
1207             {
1208                 string temp;
1209                 GetProperty(TextField.Property.INPUT_UNDERLINE).Get(out temp);
1210                 return temp;
1211             }
1212             set
1213             {
1214                 SetProperty(TextField.Property.INPUT_UNDERLINE, new Tizen.NUI.PropertyValue(value));
1215             }
1216         }
1217
1218         /// <summary>
1219         /// Shadow property.
1220         /// </summary>
1221         public PropertyMap Shadow
1222         {
1223             get
1224             {
1225                 PropertyMap temp = new PropertyMap();
1226                 GetProperty(TextField.Property.SHADOW).Get(temp);
1227                 return temp;
1228             }
1229             set
1230             {
1231                 SetProperty(TextField.Property.SHADOW, new Tizen.NUI.PropertyValue(value));
1232             }
1233         }
1234
1235         /// <summary>
1236         /// InputShadow property.
1237         /// </summary>
1238         public string InputShadow
1239         {
1240             get
1241             {
1242                 string temp;
1243                 GetProperty(TextField.Property.INPUT_SHADOW).Get(out temp);
1244                 return temp;
1245             }
1246             set
1247             {
1248                 SetProperty(TextField.Property.INPUT_SHADOW, new Tizen.NUI.PropertyValue(value));
1249             }
1250         }
1251
1252         /// <summary>
1253         /// Emboss property.
1254         /// </summary>
1255         public string Emboss
1256         {
1257             get
1258             {
1259                 string temp;
1260                 GetProperty(TextField.Property.EMBOSS).Get(out temp);
1261                 return temp;
1262             }
1263             set
1264             {
1265                 SetProperty(TextField.Property.EMBOSS, new Tizen.NUI.PropertyValue(value));
1266             }
1267         }
1268
1269         /// <summary>
1270         /// InputEmboss property.
1271         /// </summary>
1272         public string InputEmboss
1273         {
1274             get
1275             {
1276                 string temp;
1277                 GetProperty(TextField.Property.INPUT_EMBOSS).Get(out temp);
1278                 return temp;
1279             }
1280             set
1281             {
1282                 SetProperty(TextField.Property.INPUT_EMBOSS, new Tizen.NUI.PropertyValue(value));
1283             }
1284         }
1285
1286         /// <summary>
1287         /// Outline property.
1288         /// </summary>
1289         public string Outline
1290         {
1291             get
1292             {
1293                 string temp;
1294                 GetProperty(TextField.Property.OUTLINE).Get(out temp);
1295                 return temp;
1296             }
1297             set
1298             {
1299                 SetProperty(TextField.Property.OUTLINE, new Tizen.NUI.PropertyValue(value));
1300             }
1301         }
1302
1303         /// <summary>
1304         /// InputOutline property.
1305         /// </summary>
1306         public string InputOutline
1307         {
1308             get
1309             {
1310                 string temp;
1311                 GetProperty(TextField.Property.INPUT_OUTLINE).Get(out temp);
1312                 return temp;
1313             }
1314             set
1315             {
1316                 SetProperty(TextField.Property.INPUT_OUTLINE, new Tizen.NUI.PropertyValue(value));
1317             }
1318         }
1319
1320     }
1321
1322 }