[NUI] Remove duplicate getCPtr from Disposable/View subclasses (#3544)
[platform/core/csapi/tizenfx.git] / src / Tizen.NUI / src / public / BaseComponents / TextField.cs
1 /*
2  * Copyright(c) 2021 Samsung Electronics Co., Ltd.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *
16  */
17 extern alias TizenSystemSettings;
18 using TizenSystemSettings.Tizen.System;
19
20 using System;
21 using System.Globalization;
22 using System.ComponentModel;
23 using Tizen.NUI.Binding;
24 using Tizen.NUI.Text;
25
26 namespace Tizen.NUI.BaseComponents
27 {
28     /// <summary>
29     /// A control which provides a single line editable text field.
30     /// </summary>
31     /// <since_tizen> 3 </since_tizen>
32     public partial class TextField : View
33     {
34         private string textFieldTextSid = null;
35         private string textFieldPlaceHolderTextSid = null;
36         private string textFieldPlaceHolderTextFocusedSid = null;
37         private bool systemlangTextFlag = false;
38         private InputMethodContext inputMethodCotext = null;
39         private float fontSizeScale = 1.0f;
40         private bool hasFontSizeChangedCallback = false;
41
42         static TextField() { }
43
44         /// <summary>
45         /// Creates the TextField control.
46         /// </summary>
47         /// <since_tizen> 3 </since_tizen>
48         public TextField() : this(Interop.TextField.New(), true)
49         {
50             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
51         }
52
53         /// <summary>
54         /// Creates the TextField with setting the status of shown or hidden.
55         /// </summary>
56         /// <param name="shown">false : Not displayed (hidden), true : displayed (shown)</param>
57         /// This will be public opened in next release of tizen after ACR done. Before ACR, it is used as HiddenAPI (InhouseAPI).
58         [EditorBrowsable(EditorBrowsableState.Never)]
59         public TextField(bool shown) : this(Interop.TextField.New(), true)
60         {
61             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
62             SetVisible(shown);
63         }
64
65         /// <summary>
66         /// Get attributes, it is abstract function and must be override.
67         /// </summary>
68         [EditorBrowsable(EditorBrowsableState.Never)]
69         protected override ViewStyle CreateViewStyle()
70         {
71             return new TextFieldStyle();
72         }
73
74         internal TextField(global::System.IntPtr cPtr, bool cMemoryOwn, ViewStyle viewStyle, bool shown = true) : base(cPtr, cMemoryOwn, viewStyle)
75         {
76             if (!shown)
77             {
78                 SetVisible(false);
79             }
80         }
81
82         internal TextField(global::System.IntPtr cPtr, bool cMemoryOwn, bool shown = true) : base(cPtr, cMemoryOwn, null)
83         {
84             if (!shown)
85             {
86                 SetVisible(false);
87             }
88         }
89
90         internal TextField(TextField handle, bool shown = true) : this(Interop.TextField.NewTextField(TextField.getCPtr(handle)), true)
91         {
92             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
93
94             if (!shown)
95             {
96                 SetVisible(false);
97             }
98         }
99
100         internal enum ExceedPolicyType
101         {
102             ExceedPolicyOriginal,
103             ExceedPolicyClip
104         }
105
106         /// <summary>
107         /// The TranslatableText property.<br />
108         /// The text can set the SID value.<br />
109         /// </summary>
110         /// <exception cref='ArgumentNullException'>
111         /// ResourceManager about multilingual is null.
112         /// </exception>
113         /// <since_tizen> 4 </since_tizen>
114         public string TranslatableText
115         {
116             get
117             {
118                 return (string)GetValue(TranslatableTextProperty);
119             }
120             set
121             {
122                 SetValue(TranslatableTextProperty, value);
123             }
124         }
125         private string translatableText
126         {
127             get
128             {
129                 return textFieldTextSid;
130             }
131             set
132             {
133                 if (NUIApplication.MultilingualResourceManager == null)
134                 {
135                     throw new ArgumentNullException(null, "ResourceManager about multilingual is null");
136                 }
137                 textFieldTextSid = value;
138                 Text = SetTranslatable(textFieldTextSid);
139                 NotifyPropertyChanged();
140             }
141         }
142
143         /// <summary>
144         /// The TranslatablePlaceholderText property.<br />
145         /// The text can set the SID value.<br />
146         /// </summary>
147         /// <exception cref='ArgumentNullException'>
148         /// ResourceManager about multilingual is null.
149         /// </exception>
150         /// <since_tizen> 4 </since_tizen>
151         public string TranslatablePlaceholderText
152         {
153             get
154             {
155                 return (string)GetValue(TranslatablePlaceholderTextProperty);
156             }
157             set
158             {
159                 SetValue(TranslatablePlaceholderTextProperty, value);
160             }
161         }
162         private string translatablePlaceholderText
163         {
164             get
165             {
166                 return textFieldPlaceHolderTextSid;
167             }
168             set
169             {
170                 if (NUIApplication.MultilingualResourceManager == null)
171                 {
172                     throw new ArgumentNullException(null, "ResourceManager about multilingual is null");
173                 }
174                 textFieldPlaceHolderTextSid = value;
175                 PlaceholderText = SetTranslatable(textFieldPlaceHolderTextSid);
176                 NotifyPropertyChanged();
177             }
178         }
179
180         /// <summary>
181         /// The TranslatablePlaceholderTextFocused property.<br />
182         /// The text can set the SID value.<br />
183         /// </summary>
184         /// <exception cref='ArgumentNullException'>
185         /// ResourceManager about multilingual is null.
186         /// </exception>
187         /// This will be public opened in tizen_6.5 after ACR done. Before ACR, need to be hidden as inhouse API.
188         [EditorBrowsable(EditorBrowsableState.Never)]
189         public string TranslatablePlaceholderTextFocused
190         {
191             get
192             {
193                 return (string)GetValue(TranslatablePlaceholderTextFocusedProperty);
194             }
195             set
196             {
197                 SetValue(TranslatablePlaceholderTextFocusedProperty, value);
198             }
199         }
200         private string translatablePlaceholderTextFocused
201         {
202             get
203             {
204                 return textFieldPlaceHolderTextFocusedSid;
205             }
206             set
207             {
208                 if (NUIApplication.MultilingualResourceManager == null)
209                 {
210                     throw new ArgumentNullException(null, "ResourceManager about multilingual is null");
211                 }
212                 textFieldPlaceHolderTextFocusedSid = value;
213                 PlaceholderTextFocused = SetTranslatable(textFieldPlaceHolderTextFocusedSid);
214                 NotifyPropertyChanged();
215             }
216         }
217
218         /// <summary>
219         /// The Text property.
220         /// </summary>
221         /// <since_tizen> 3 </since_tizen>
222         public string Text
223         {
224             get
225             {
226                 return (string)GetValue(TextProperty);
227             }
228             set
229             {
230                 SetValueAndForceSendChangeSignal(TextProperty, value);
231                 NotifyPropertyChanged();
232             }
233         }
234
235         /// <summary>
236         /// The PlaceholderText property.
237         /// </summary>
238         /// <since_tizen> 3 </since_tizen>
239         public string PlaceholderText
240         {
241             get
242             {
243                 return (string)GetValue(PlaceholderTextProperty);
244             }
245             set
246             {
247                 SetValue(PlaceholderTextProperty, value);
248                 NotifyPropertyChanged();
249             }
250         }
251
252         /// <summary>
253         /// The PlaceholderTextFocused property.
254         /// </summary>
255         /// <since_tizen> 3 </since_tizen>
256         public string PlaceholderTextFocused
257         {
258             get
259             {
260                 return (string)GetValue(PlaceholderTextFocusedProperty);
261             }
262             set
263             {
264                 SetValue(PlaceholderTextFocusedProperty, value);
265                 NotifyPropertyChanged();
266             }
267         }
268
269         /// <summary>
270         /// The FontFamily property.
271         /// </summary>
272         /// <since_tizen> 3 </since_tizen>
273         public string FontFamily
274         {
275             get
276             {
277                 return (string)GetValue(FontFamilyProperty);
278             }
279             set
280             {
281                 SetValue(FontFamilyProperty, value);
282                 NotifyPropertyChanged();
283             }
284         }
285
286         /// <summary>
287         /// The FontStyle property.
288         /// The fontStyle map contains the following keys :<br />
289         /// <list type="table">
290         /// <item><term>width (string)</term><description>The width key defines occupied by each glyph. (values: ultraCondensed, extraCondensed, condensed, semiCondensed, normal, semiExpanded, expanded, extraExpanded, ultraExpanded)</description></item>
291         /// <item><term>weight (string)</term><description>The weight key defines the thickness or darkness of the glyphs. (values: thin, ultraLight, extraLight, light, demiLight, semiLight, book, normal, regular, medium, demiBold, semiBold, bold, ultraBold, extraBold, black, heavy, extraBlack)</description></item>
292         /// <item><term>slant (string)</term><description>The slant key defines whether to use italics. (values: normal, roman, italic, oblique)</description></item>
293         /// </list>
294         /// </summary>
295         /// <since_tizen> 3 </since_tizen>
296         [System.Diagnostics.CodeAnalysis.SuppressMessage("Naming", "CA1721: Property names should not match get methods")]
297         public PropertyMap FontStyle
298         {
299             get
300             {
301                 return (PropertyMap)GetValue(FontStyleProperty);
302             }
303             set
304             {
305                 SetValue(FontStyleProperty, value);
306                 NotifyPropertyChanged();
307             }
308         }
309
310         /// <summary>
311         /// Set FontStyle to TextField. <br />
312         /// </summary>
313         /// <param name="fontStyle">The FontStyle</param>
314         /// <remarks>
315         /// SetFontStyle specifies the requested font style through <see cref="Tizen.NUI.Text.FontStyle"/>. <br />
316         /// </remarks>
317         /// <example>
318         /// The following example demonstrates how to use the SetFontStyle method.
319         /// <code>
320         /// var fontStyle = new Tizen.NUI.Text.FontStyle();
321         /// fontStyle.Width = FontWidthType.Expanded;
322         /// fontStyle.Weight = FontWeightType.Bold;
323         /// fontStyle.Slant = FontSlantType.Italic;
324         /// field.SetFontStyle(fontStyle);
325         /// </code>
326         /// </example>
327         [EditorBrowsable(EditorBrowsableState.Never)]
328         public void SetFontStyle(FontStyle fontStyle)
329         {
330             SetValue(FontStyleProperty, TextUtils.GetFontStyleMap(fontStyle));
331         }
332
333         /// <summary>
334         /// Get FontStyle from TextField. <br />
335         /// </summary>
336         /// <returns>The FontStyle</returns>
337         /// <remarks>
338         /// <see cref="Tizen.NUI.Text.FontStyle"/>
339         /// </remarks>
340         [EditorBrowsable(EditorBrowsableState.Never)]
341         public FontStyle GetFontStyle()
342         {
343             return TextUtils.GetFontStyleStruct((PropertyMap)GetValue(FontStyleProperty));
344         }
345
346         /// <summary>
347         /// The PointSize property.
348         /// </summary>
349         /// <since_tizen> 3 </since_tizen>
350         public float PointSize
351         {
352             get
353             {
354                 return (float)GetValue(PointSizeProperty);
355             }
356             set
357             {
358                 SetValue(PointSizeProperty, value);
359                 NotifyPropertyChanged();
360             }
361         }
362
363         /// <summary>
364         /// The MaxLength property.
365         /// </summary>
366         /// <since_tizen> 3 </since_tizen>
367         public int MaxLength
368         {
369             get
370             {
371                 return (int)GetValue(MaxLengthProperty);
372             }
373             set
374             {
375                 SetValue(MaxLengthProperty, value);
376                 NotifyPropertyChanged();
377             }
378         }
379
380         /// <summary>
381         /// The ExceedPolicy property.
382         /// </summary>
383         /// <since_tizen> 3 </since_tizen>
384         public int ExceedPolicy
385         {
386             get
387             {
388                 return (int)GetValue(ExceedPolicyProperty);
389             }
390             set
391             {
392                 SetValue(ExceedPolicyProperty, value);
393                 NotifyPropertyChanged();
394             }
395         }
396
397         /// <summary>
398         /// The HorizontalAlignment property.
399         /// </summary>
400         /// <since_tizen> 3 </since_tizen>
401         public HorizontalAlignment HorizontalAlignment
402         {
403             get
404             {
405                 return (HorizontalAlignment)GetValue(HorizontalAlignmentProperty);
406             }
407             set
408             {
409                 SetValue(HorizontalAlignmentProperty, value);
410                 NotifyPropertyChanged();
411             }
412         }
413
414         /// <summary>
415         /// The VerticalAlignment property.
416         /// </summary>
417         /// <since_tizen> 3 </since_tizen>
418         public VerticalAlignment VerticalAlignment
419         {
420             get
421             {
422                 return (VerticalAlignment)GetValue(VerticalAlignmentProperty);
423             }
424             set
425             {
426                 SetValue(VerticalAlignmentProperty, value);
427                 NotifyPropertyChanged();
428                 NotifyPropertyChanged();
429             }
430         }
431
432         /// <summary>
433         /// The TextColor property.
434         /// </summary>
435         /// <remarks>
436         /// The property cascade chaining set is possible. For example, this (textField.TextColor.X = 0.1f;) is possible.
437         /// </remarks>
438         /// <since_tizen> 3 </since_tizen>
439         public Color TextColor
440         {
441             get
442             {
443                 Color temp = (Color)GetValue(TextColorProperty);
444                 return new Color(OnTextColorChanged, temp.R, temp.G, temp.B, temp.A);
445             }
446             set
447             {
448                 SetValue(TextColorProperty, value);
449                 NotifyPropertyChanged();
450             }
451         }
452
453         /// <summary>
454         /// The PlaceholderTextColor property.
455         /// </summary>
456         /// <remarks>
457         /// The property cascade chaining set is possible. For example, this (textField.PlaceholderTextColor.X = 0.1f;) is possible.
458         /// </remarks>
459         /// <since_tizen> 3 </since_tizen>
460         public Vector4 PlaceholderTextColor
461         {
462             get
463             {
464                 Vector4 temp = (Vector4)GetValue(PlaceholderTextColorProperty);
465                 return new Vector4(OnPlaceholderTextColorChanged, temp.X, temp.Y, temp.Z, temp.W);
466             }
467             set
468             {
469                 SetValue(PlaceholderTextColorProperty, value);
470                 NotifyPropertyChanged();
471             }
472         }
473
474         /// <summary>
475         /// The ShadowOffset property.
476         /// </summary>
477         /// <since_tizen> 3 </since_tizen>
478         /// <remarks>
479         /// Deprecated.(API Level 6) Use Shadow instead.
480         /// The property cascade chaining set is possible. For example, this (textField.ShadowOffset.X = 0.1f;) is possible.
481         /// </remarks>
482         [Obsolete("Please do not use this ShadowOffset(Deprecated). Please use Shadow instead.")]
483         public Vector2 ShadowOffset
484         {
485             get
486             {
487                 PropertyMap map = new PropertyMap();
488                 GetProperty(TextField.Property.SHADOW).Get(map);
489                 Vector2 shadowOffset = new Vector2();
490                 map.Find(TextField.Property.SHADOW, "offset")?.Get(shadowOffset);
491                 return new Vector2(OnShadowOffsetChanged, shadowOffset.X, shadowOffset.Y);
492             }
493             set
494             {
495                 PropertyMap temp = new PropertyMap();
496                 temp.Insert("offset", new PropertyValue(value));
497                 SetValue(ShadowProperty, temp);
498                 NotifyPropertyChanged();
499             }
500         }
501
502         /// <summary>
503         /// The ShadowColor property.
504         /// </summary>
505         /// <since_tizen> 3 </since_tizen>
506         /// <remarks>
507         /// Deprecated.(API Level 6) Use Shadow instead.
508         /// The property cascade chaining set is possible. For example, this (textField.ShadowColor.X = 0.1f;) is possible.
509         /// </remarks>
510         [Obsolete("Please do not use this ShadowColor(Deprecated). Please use Shadow instead.")]
511         public Vector4 ShadowColor
512         {
513             get
514             {
515                 PropertyMap map = new PropertyMap();
516                 GetProperty(TextField.Property.SHADOW).Get(map);
517                 Vector4 shadowColor = new Vector4();
518                 map.Find(TextField.Property.SHADOW, "color")?.Get(shadowColor);
519                 return new Vector4(OnShadowColorChanged, shadowColor.X, shadowColor.Y, shadowColor.Z, shadowColor.W);
520             }
521             set
522             {
523                 PropertyMap temp = new PropertyMap();
524                 temp.Insert("color", new PropertyValue(value));
525                 SetValue(ShadowProperty, temp);
526                 NotifyPropertyChanged();
527             }
528         }
529
530         /// <summary>
531         /// The PrimaryCursorColor property.
532         /// </summary>
533         /// <remarks>
534         /// The property cascade chaining set is possible. For example, this (textField.PrimaryCursorColor.X = 0.1f;) is possible.
535         /// </remarks>
536         /// <since_tizen> 3 </since_tizen>
537         public Vector4 PrimaryCursorColor
538         {
539             get
540             {
541                 Vector4 temp = (Vector4)GetValue(PrimaryCursorColorProperty);
542                 return new Vector4(OnPrimaryCursorColorChanged, temp.X, temp.Y, temp.Z, temp.W);
543             }
544             set
545             {
546                 SetValue(PrimaryCursorColorProperty, value);
547                 NotifyPropertyChanged();
548             }
549         }
550
551         /// <summary>
552         /// The SecondaryCursorColor property.
553         /// </summary>
554         /// <remarks>
555         /// The property cascade chaining set is possible. For example, this (textField.SecondaryCursorColor.X = 0.1f;) is possible.
556         /// </remarks>
557         /// <since_tizen> 3 </since_tizen>
558         public Vector4 SecondaryCursorColor
559         {
560             get
561             {
562                 Vector4 temp = (Vector4)GetValue(SecondaryCursorColorProperty);
563                 return new Vector4(OnSecondaryCursorColorChanged, temp.X, temp.Y, temp.Z, temp.W);
564             }
565             set
566             {
567                 SetValue(SecondaryCursorColorProperty, value);
568                 NotifyPropertyChanged();
569             }
570         }
571
572         /// <summary>
573         /// The EnableCursorBlink property.
574         /// </summary>
575         /// <since_tizen> 3 </since_tizen>
576         public bool EnableCursorBlink
577         {
578             get
579             {
580                 return (bool)GetValue(EnableCursorBlinkProperty);
581             }
582             set
583             {
584                 SetValue(EnableCursorBlinkProperty, value);
585                 NotifyPropertyChanged();
586             }
587         }
588
589         /// <summary>
590         /// The CursorBlinkInterval property.
591         /// </summary>
592         /// <since_tizen> 3 </since_tizen>
593         public float CursorBlinkInterval
594         {
595             get
596             {
597                 return (float)GetValue(CursorBlinkIntervalProperty);
598             }
599             set
600             {
601                 SetValue(CursorBlinkIntervalProperty, value);
602                 NotifyPropertyChanged();
603             }
604         }
605
606         /// <summary>
607         /// The CursorBlinkDuration property.
608         /// </summary>
609         /// <since_tizen> 3 </since_tizen>
610         public float CursorBlinkDuration
611         {
612             get
613             {
614                 return (float)GetValue(CursorBlinkDurationProperty);
615             }
616             set
617             {
618                 SetValue(CursorBlinkDurationProperty, value);
619                 NotifyPropertyChanged();
620             }
621         }
622
623         /// <summary>
624         /// The CursorWidth property.
625         /// </summary>
626         /// <since_tizen> 3 </since_tizen>
627         public int CursorWidth
628         {
629             get
630             {
631                 return (int)GetValue(CursorWidthProperty);
632             }
633             set
634             {
635                 SetValue(CursorWidthProperty, value);
636                 NotifyPropertyChanged();
637             }
638         }
639
640         /// <summary>
641         /// The GrabHandleImage property.
642         /// </summary>
643         /// <since_tizen> 3 </since_tizen>
644         public string GrabHandleImage
645         {
646             get
647             {
648                 return (string)GetValue(GrabHandleImageProperty);
649             }
650             set
651             {
652                 SetValue(GrabHandleImageProperty, value);
653                 NotifyPropertyChanged();
654             }
655         }
656
657         /// <summary>
658         /// The GrabHandlePressedImage property.
659         /// </summary>
660         /// <since_tizen> 3 </since_tizen>
661         public string GrabHandlePressedImage
662         {
663             get
664             {
665                 return (string)GetValue(GrabHandlePressedImageProperty);
666             }
667             set
668             {
669                 SetValue(GrabHandlePressedImageProperty, value);
670                 NotifyPropertyChanged();
671             }
672         }
673
674         /// <summary>
675         /// The ScrollThreshold property.
676         /// </summary>
677         /// <since_tizen> 3 </since_tizen>
678         public float ScrollThreshold
679         {
680             get
681             {
682                 return (float)GetValue(ScrollThresholdProperty);
683             }
684             set
685             {
686                 SetValue(ScrollThresholdProperty, value);
687                 NotifyPropertyChanged();
688             }
689         }
690
691         /// <summary>
692         /// The ScrollSpeed property.
693         /// </summary>
694         /// <since_tizen> 3 </since_tizen>
695         public float ScrollSpeed
696         {
697             get
698             {
699                 return (float)GetValue(ScrollSpeedProperty);
700             }
701             set
702             {
703                 SetValue(ScrollSpeedProperty, value);
704                 NotifyPropertyChanged();
705             }
706         }
707
708         /// <summary>
709         /// The SelectionHandleImageLeft property.
710         /// The selectionHandleImageLeft map contains the following key :<br />
711         /// <list type="table">
712         /// <item><term>filename (string)</term><description>The path of image file</description></item>
713         /// </list>
714         /// </summary>
715         /// <since_tizen> 3 </since_tizen>
716         public PropertyMap SelectionHandleImageLeft
717         {
718             get
719             {
720                 return (PropertyMap)GetValue(SelectionHandleImageLeftProperty);
721             }
722             set
723             {
724                 SetValue(SelectionHandleImageLeftProperty, value);
725                 NotifyPropertyChanged();
726             }
727         }
728
729         /// <summary>
730         /// The SelectionHandleImageRight property.
731         /// The selectionHandleImageRight map contains the following key :<br />
732         /// <list type="table">
733         /// <item><term>filename (string)</term><description>The path of image file</description></item>
734         /// </list>
735         /// </summary>
736         /// <since_tizen> 3 </since_tizen>
737         public PropertyMap SelectionHandleImageRight
738         {
739             get
740             {
741                 return (PropertyMap)GetValue(SelectionHandleImageRightProperty);
742             }
743             set
744             {
745                 SetValue(SelectionHandleImageRightProperty, value);
746                 NotifyPropertyChanged();
747             }
748         }
749
750         /// <summary>
751         /// Set SelectionHandleImage to TextField. <br />
752         /// </summary>
753         /// <param name="selectionHandleImage">The SelectionHandleImage</param>
754         /// <remarks>
755         /// SetSelectionHandleImage specifies the display image used for the selection handle through <see cref="Tizen.NUI.Text.SelectionHandleImage"/>. <br />
756         /// </remarks>
757         /// <example>
758         /// The following example demonstrates how to use the SetSelectionHandleImage method.
759         /// <code>
760         /// var selectionHandleImage = new Tizen.NUI.Text.SelectionHandleImage();
761         /// selectionHandleImage.LeftImageUrl = "handle_downleft.png";
762         /// selectionHandleImage.RightImageUrl = "handle_downright.png";
763         /// field.SetSelectionHandleImage(selectionHandleImage);
764         /// </code>
765         /// </example>
766         [EditorBrowsable(EditorBrowsableState.Never)]
767         public void SetSelectionHandleImage(SelectionHandleImage selectionHandleImage)
768         {
769             if (!String.IsNullOrEmpty(selectionHandleImage.LeftImageUrl))
770             {
771                 SetValue(SelectionHandleImageLeftProperty, TextUtils.GetFileNameMap(selectionHandleImage.LeftImageUrl));
772             }
773
774             if (!String.IsNullOrEmpty(selectionHandleImage.RightImageUrl))
775             {
776                 SetValue(SelectionHandleImageRightProperty, TextUtils.GetFileNameMap(selectionHandleImage.RightImageUrl));
777             }
778         }
779
780         /// <summary>
781         /// Get SelectionHandleImage from TextField. <br />
782         /// </summary>
783         /// <returns>The SelectionHandleImage</returns>
784         /// <remarks>
785         /// <see cref="Tizen.NUI.Text.SelectionHandleImage"/>
786         /// </remarks>
787         [EditorBrowsable(EditorBrowsableState.Never)]
788         public SelectionHandleImage GetSelectionHandleImage()
789         {
790             return TextUtils.GetSelectionHandleImageStruct((PropertyMap)GetValue(SelectionHandleImageLeftProperty), (PropertyMap)GetValue(SelectionHandleImageRightProperty));
791         }
792
793         /// <summary>
794         /// The SelectionHandlePressedImageLeft property.
795         /// The selectionHandlePressedImageLeft map contains the following key :<br />
796         /// <list type="table">
797         /// <item><term>filename (string)</term><description>The path of image file</description></item>
798         /// </list>
799         /// </summary>
800         /// <since_tizen> 3 </since_tizen>
801         public PropertyMap SelectionHandlePressedImageLeft
802         {
803             get
804             {
805                 return (PropertyMap)GetValue(SelectionHandlePressedImageLeftProperty);
806             }
807             set
808             {
809                 SetValue(SelectionHandlePressedImageLeftProperty, value);
810                 NotifyPropertyChanged();
811             }
812         }
813
814         /// <summary>
815         /// The SelectionHandlePressedImageRight property.
816         /// The selectionHandlePressedImageRight map contains the following key :<br />
817         /// <list type="table">
818         /// <item><term>filename (string)</term><description>The path of image file</description></item>
819         /// </list>
820         /// </summary>
821         /// <since_tizen> 3 </since_tizen>
822         public PropertyMap SelectionHandlePressedImageRight
823         {
824             get
825             {
826                 return (PropertyMap)GetValue(SelectionHandlePressedImageRightProperty);
827             }
828             set
829             {
830                 SetValue(SelectionHandlePressedImageRightProperty, value);
831                 NotifyPropertyChanged();
832             }
833         }
834
835         /// <summary>
836         /// Set SelectionHandlePressedImage to TextField. <br />
837         /// </summary>
838         /// <param name="selectionHandlePressedImage">The SelectionHandleImage</param>
839         /// <remarks>
840         /// SetSelectionHandlePressedImage specifies the display image used for the selection handle through <see cref="Tizen.NUI.Text.SelectionHandleImage"/>. <br />
841         /// </remarks>
842         /// <example>
843         /// The following example demonstrates how to use the SetSelectionHandlePressedImage method.
844         /// <code>
845         /// var selectionHandlePressedImage = new Tizen.NUI.Text.SelectionHandleImage();
846         /// selectionHandlePressedImage.LeftImageUrl = "handle_pressed_downleft.png";
847         /// selectionHandlePressedImage.RightImageUrl = "handle_pressed_downright.png";
848         /// field.SetSelectionHandlePressedImage(selectionHandlePressedImage);
849         /// </code>
850         /// </example>
851         [EditorBrowsable(EditorBrowsableState.Never)]
852         public void SetSelectionHandlePressedImage(SelectionHandleImage selectionHandlePressedImage)
853         {
854             if (!String.IsNullOrEmpty(selectionHandlePressedImage.LeftImageUrl))
855             {
856                 SetValue(SelectionHandlePressedImageLeftProperty, TextUtils.GetFileNameMap(selectionHandlePressedImage.LeftImageUrl));
857             }
858
859             if (!String.IsNullOrEmpty(selectionHandlePressedImage.RightImageUrl))
860             {
861                 SetValue(SelectionHandlePressedImageRightProperty, TextUtils.GetFileNameMap(selectionHandlePressedImage.RightImageUrl));
862             }
863         }
864
865         /// <summary>
866         /// Get SelectionHandlePressedImage from TextField. <br />
867         /// </summary>
868         /// <returns>The SelectionHandlePressedImage</returns>
869         /// <remarks>
870         /// <see cref="Tizen.NUI.Text.SelectionHandleImage"/>
871         /// </remarks>
872         [EditorBrowsable(EditorBrowsableState.Never)]
873         public SelectionHandleImage GetSelectionHandlePressedImage()
874         {
875             return TextUtils.GetSelectionHandleImageStruct((PropertyMap)GetValue(SelectionHandlePressedImageLeftProperty), (PropertyMap)GetValue(SelectionHandlePressedImageRightProperty));
876         }
877
878         /// <summary>
879         /// The SelectionHandleMarkerImageLeft property.
880         /// The selectionHandleMarkerImageLeft map contains the following key :<br />
881         /// <list type="table">
882         /// <item><term>filename (string)</term><description>The path of image file</description></item>
883         /// </list>
884         /// </summary>
885         /// <since_tizen> 3 </since_tizen>
886         public PropertyMap SelectionHandleMarkerImageLeft
887         {
888             get
889             {
890                 return (PropertyMap)GetValue(SelectionHandleMarkerImageLeftProperty);
891             }
892             set
893             {
894                 SetValue(SelectionHandleMarkerImageLeftProperty, value);
895                 NotifyPropertyChanged();
896             }
897         }
898
899         /// <summary>
900         /// The SelectionHandleMarkerImageRight property.
901         /// The selectionHandleMarkerImageRight map contains the following key :<br />
902         /// <list type="table">
903         /// <item><term>filename (string)</term><description>The path of image file</description></item>
904         /// </list>
905         /// </summary>
906         /// <since_tizen> 3 </since_tizen>
907         public PropertyMap SelectionHandleMarkerImageRight
908         {
909             get
910             {
911                 return (PropertyMap)GetValue(SelectionHandleMarkerImageRightProperty);
912             }
913             set
914             {
915                 SetValue(SelectionHandleMarkerImageRightProperty, value);
916                 NotifyPropertyChanged();
917             }
918         }
919
920         /// <summary>
921         /// Set SelectionHandleMarkerImage to TextField. <br />
922         /// </summary>
923         /// <param name="selectionHandleMarkerImage">The SelectionHandleImage</param>
924         /// <remarks>
925         /// SetSelectionHandleMarkerImage specifies the display image used for the selection handle through <see cref="Tizen.NUI.Text.SelectionHandleImage"/>. <br />
926         /// </remarks>
927         /// <example>
928         /// The following example demonstrates how to use the SetSelectionHandleMarkerImage method.
929         /// <code>
930         /// var selectionHandleMarkerImage = new Tizen.NUI.Text.SelectionHandleImage();
931         /// selectionHandleMarkerImage.LeftImageUrl = "handle_pressed_downleft.png";
932         /// selectionHandleMarkerImage.RightImageUrl = "handle_pressed_downright.png";
933         /// field.SetSelectionHandleMarkerImage(selectionHandleMarkerImage);
934         /// </code>
935         /// </example>
936         [EditorBrowsable(EditorBrowsableState.Never)]
937         public void SetSelectionHandleMarkerImage(SelectionHandleImage selectionHandleMarkerImage)
938         {
939             if (!String.IsNullOrEmpty(selectionHandleMarkerImage.LeftImageUrl))
940             {
941                 SetValue(SelectionHandleMarkerImageLeftProperty, TextUtils.GetFileNameMap(selectionHandleMarkerImage.LeftImageUrl));
942             }
943
944             if (!String.IsNullOrEmpty(selectionHandleMarkerImage.RightImageUrl))
945             {
946                 SetValue(SelectionHandleMarkerImageRightProperty, TextUtils.GetFileNameMap(selectionHandleMarkerImage.RightImageUrl));
947             }
948         }
949
950         /// <summary>
951         /// Get SelectionHandleMarkerImage from TextField. <br />
952         /// </summary>
953         /// <returns>The SelectionHandleMarkerImage</returns>
954         /// <remarks>
955         /// <see cref="Tizen.NUI.Text.SelectionHandleImage"/>
956         /// </remarks>
957         [EditorBrowsable(EditorBrowsableState.Never)]
958         public SelectionHandleImage GetSelectionHandleMarkerImage()
959         {
960             return TextUtils.GetSelectionHandleImageStruct((PropertyMap)GetValue(SelectionHandleMarkerImageLeftProperty), (PropertyMap)GetValue(SelectionHandleMarkerImageRightProperty));
961         }
962
963         /// <summary>
964         /// The SelectionHighlightColor property.
965         /// </summary>
966         /// <remarks>
967         /// The property cascade chaining set is possible. For example, this (textField.SelectionHighlightColor.X = 0.1f;) is possible.
968         /// </remarks>
969         /// <since_tizen> 3 </since_tizen>
970         public Vector4 SelectionHighlightColor
971         {
972             get
973             {
974                 Vector4 temp = (Vector4)GetValue(SelectionHighlightColorProperty);
975                 return new Vector4(OnSelectionHighlightColorChanged, temp.X, temp.Y, temp.Z, temp.W);
976             }
977             set
978             {
979                 SetValue(SelectionHighlightColorProperty, value);
980                 NotifyPropertyChanged();
981             }
982         }
983
984         /// <summary>
985         /// The DecorationBoundingBox property.
986         /// </summary>
987         /// <remarks>
988         /// The property cascade chaining set is possible. For example, this (textField.DecorationBoundingBox.X = 0.1f;) is possible.
989         /// </remarks>
990         /// <since_tizen> 3 </since_tizen>
991         public Rectangle DecorationBoundingBox
992         {
993             get
994             {
995                 Rectangle temp = (Rectangle)GetValue(DecorationBoundingBoxProperty);
996                 return new Rectangle(OnDecorationBoundingBoxChanged, temp.X, temp.Y, temp.Width, temp.Height);
997             }
998             set
999             {
1000                 SetValue(DecorationBoundingBoxProperty, value);
1001                 NotifyPropertyChanged();
1002             }
1003         }
1004
1005         /// <summary>
1006         /// The InputMethodSettings property.
1007         /// </summary>
1008         /// <remarks>
1009         /// <see cref="InputMethod"/> is a class encapsulating the input method map. Please use the <see cref="InputMethod"/> class for this property.
1010         /// </remarks>
1011         /// <example>
1012         /// The following example demonstrates how to set the InputMethodSettings property.
1013         /// <code>
1014         /// InputMethod method = new InputMethod();
1015         /// method.PanelLayout = InputMethod.PanelLayoutType.Normal;
1016         /// method.ActionButton = InputMethod.ActionButtonTitleType.Default;
1017         /// method.AutoCapital = InputMethod.AutoCapitalType.Word;
1018         /// method.Variation = 1;
1019         /// textField.InputMethodSettings = method.OutputMap;
1020         /// </code>
1021         /// </example>
1022         /// <since_tizen> 3 </since_tizen>
1023         public PropertyMap InputMethodSettings
1024         {
1025             get
1026             {
1027                 return (PropertyMap)GetValue(InputMethodSettingsProperty);
1028             }
1029             set
1030             {
1031                 SetValue(InputMethodSettingsProperty, value);
1032                 NotifyPropertyChanged();
1033             }
1034         }
1035
1036         /// <summary>
1037         /// The InputColor property.
1038         /// </summary>
1039         /// <remarks>
1040         /// The property cascade chaining set is possible. For example, this (textField.InputColor.X = 0.1f;) is possible.
1041         /// </remarks>
1042         /// <since_tizen> 3 </since_tizen>
1043         public Vector4 InputColor
1044         {
1045             get
1046             {
1047                 Vector4 temp = (Vector4)GetValue(InputColorProperty);
1048                 return new Vector4(OnInputColorChanged, temp.X, temp.Y, temp.Z, temp.W);
1049             }
1050             set
1051             {
1052                 SetValue(InputColorProperty, value);
1053                 NotifyPropertyChanged();
1054             }
1055         }
1056
1057         /// <summary>
1058         /// The EnableMarkup property.
1059         /// </summary>
1060         /// <since_tizen> 3 </since_tizen>
1061         public bool EnableMarkup
1062         {
1063             get
1064             {
1065                 return (bool)GetValue(EnableMarkupProperty);
1066             }
1067             set
1068             {
1069                 SetValue(EnableMarkupProperty, value);
1070                 NotifyPropertyChanged();
1071             }
1072         }
1073
1074         /// <summary>
1075         /// The InputFontFamily property.
1076         /// </summary>
1077         /// <since_tizen> 3 </since_tizen>
1078         public string InputFontFamily
1079         {
1080             get
1081             {
1082                 return (string)GetValue(InputFontFamilyProperty);
1083             }
1084             set
1085             {
1086                 SetValue(InputFontFamilyProperty, value);
1087                 NotifyPropertyChanged();
1088             }
1089         }
1090
1091         /// <summary>
1092         /// The InputFontStyle property.
1093         /// The inputFontStyle map contains the following keys :<br />
1094         /// <list type="table">
1095         /// <item><term>width (string)</term><description>The width key defines occupied by each glyph. (values: ultraCondensed, extraCondensed, condensed, semiCondensed, normal, semiExpanded, expanded, extraExpanded, ultraExpanded)</description></item>
1096         /// <item><term>weight (string)</term><description>The weight key defines the thickness or darkness of the glyphs. (values: thin, ultraLight, extraLight, light, demiLight, semiLight, book, normal, regular, medium, demiBold, semiBold, bold, ultraBold, extraBold, black, heavy, extraBlack)</description></item>
1097         /// <item><term>slant (string)</term><description>The slant key defines whether to use italics. (values: normal, roman, italic, oblique)</description></item>
1098         /// </list>
1099         /// </summary>
1100         /// <since_tizen> 3 </since_tizen>
1101         [System.Diagnostics.CodeAnalysis.SuppressMessage("Naming", "CA1721: Property names should not match get methods")]
1102         public PropertyMap InputFontStyle
1103         {
1104             get
1105             {
1106                 return (PropertyMap)GetValue(InputFontStyleProperty);
1107             }
1108             set
1109             {
1110                 SetValue(InputFontStyleProperty, value);
1111                 NotifyPropertyChanged();
1112             }
1113         }
1114
1115         /// <summary>
1116         /// Set InputFontStyle to TextField. <br />
1117         /// </summary>
1118         /// <param name="fontStyle">The FontStyle</param>
1119         /// <remarks>
1120         /// SetInputFontStyle specifies the requested font style for new input text through <see cref="Tizen.NUI.Text.FontStyle"/>. <br />
1121         /// </remarks>
1122         /// <example>
1123         /// The following example demonstrates how to use the SetInputFontStyle method.
1124         /// <code>
1125         /// var fontStyle = new Tizen.NUI.Text.FontStyle();
1126         /// fontStyle.Width = FontWidthType.Expanded;
1127         /// fontStyle.Weight = FontWeightType.Bold;
1128         /// fontStyle.Slant = FontSlantType.Italic;
1129         /// field.SetInputFontStyle(fontStyle);
1130         /// </code>
1131         /// </example>
1132         [EditorBrowsable(EditorBrowsableState.Never)]
1133         public void SetInputFontStyle(FontStyle fontStyle)
1134         {
1135             SetValue(InputFontStyleProperty, TextUtils.GetFontStyleMap(fontStyle));
1136         }
1137
1138         /// <summary>
1139         /// Get InputFontStyle from TextField. <br />
1140         /// </summary>
1141         /// <returns>The FontStyle</returns>
1142         /// <remarks>
1143         /// <see cref="Tizen.NUI.Text.FontStyle"/>
1144         /// </remarks>
1145         [EditorBrowsable(EditorBrowsableState.Never)]
1146         public FontStyle GetInputFontStyle()
1147         {
1148             return TextUtils.GetFontStyleStruct((PropertyMap)GetValue(InputFontStyleProperty));
1149         }
1150
1151         /// <summary>
1152         /// The InputPointSize property.
1153         /// </summary>
1154         /// <since_tizen> 3 </since_tizen>
1155         public float InputPointSize
1156         {
1157             get
1158             {
1159                 return (float)GetValue(InputPointSizeProperty);
1160             }
1161             set
1162             {
1163                 SetValue(InputPointSizeProperty, value);
1164                 NotifyPropertyChanged();
1165             }
1166         }
1167
1168         /// <summary>
1169         /// The Underline property.
1170         /// The underline map contains the following keys :<br />
1171         /// <list type="table">
1172         /// <item><term>enable (bool)</term><description>Whether the underline is enabled (the default value is false)</description></item>
1173         /// <item><term>color (Color)</term><description>The color of the underline (If not provided then the color of the text is used)</description></item>
1174         /// <item><term>height (float)</term><description>The height in pixels of the underline (the default value is 1.f)</description></item>
1175         /// </list>
1176         /// </summary>
1177         /// <since_tizen> 3 </since_tizen>
1178         [System.Diagnostics.CodeAnalysis.SuppressMessage("Naming", "CA1721: Property names should not match get methods")]
1179         public PropertyMap Underline
1180         {
1181             get
1182             {
1183                 return (PropertyMap)GetValue(UnderlineProperty);
1184             }
1185             set
1186             {
1187                 SetValue(UnderlineProperty, value);
1188                 NotifyPropertyChanged();
1189             }
1190         }
1191
1192         /// <summary>
1193         /// Set Underline to TextField. <br />
1194         /// </summary>
1195         /// <param name="underline">The Underline</param>
1196         /// <remarks>
1197         /// SetUnderline specifies the underline of the text through <see cref="Tizen.NUI.Text.Underline"/>. <br />
1198         /// </remarks>
1199         /// <example>
1200         /// The following example demonstrates how to use the SetUnderline method.
1201         /// <code>
1202         /// var underline = new Tizen.NUI.Text.Underline();
1203         /// underline.Enable = true;
1204         /// underline.Color = new Color("#3498DB");
1205         /// underline.Height = 2.0f;
1206         /// field.SetUnderline(underline);
1207         /// </code>
1208         /// </example>
1209         [EditorBrowsable(EditorBrowsableState.Never)]
1210         public void SetUnderline(Underline underline)
1211         {
1212             SetValue(UnderlineProperty, TextUtils.GetUnderlineMap(underline));
1213         }
1214
1215         /// <summary>
1216         /// Get Underline from TextField. <br />
1217         /// </summary>
1218         /// <returns>The Underline</returns>
1219         /// <remarks>
1220         /// <see cref="Tizen.NUI.Text.Underline"/>
1221         /// </remarks>
1222         [EditorBrowsable(EditorBrowsableState.Never)]
1223         public Underline GetUnderline()
1224         {
1225             return TextUtils.GetUnderlineStruct((PropertyMap)GetValue(UnderlineProperty));
1226         }
1227
1228         /// <summary>
1229         /// The InputUnderline property.
1230         /// </summary>
1231         /// <since_tizen> 3 </since_tizen>
1232         public string InputUnderline
1233         {
1234             get
1235             {
1236                 return (string)GetValue(InputUnderlineProperty);
1237             }
1238             set
1239             {
1240                 SetValue(InputUnderlineProperty, value);
1241                 NotifyPropertyChanged();
1242             }
1243         }
1244
1245         /// <summary>
1246         /// The Shadow property.
1247         /// The shadow map contains the following keys :<br />
1248         /// <list type="table">
1249         /// <item><term>color (Color)</term><description>The color of the shadow (the default color is Color.Black)</description></item>
1250         /// <item><term>offset (Vector2)</term><description>The offset in pixels of the shadow (If not provided then the shadow is not enabled)</description></item>
1251         /// <item><term>blurRadius (float)</term><description>The radius of the Gaussian blur for the soft shadow (If not provided then the soft shadow is not enabled)</description></item>
1252         /// </list>
1253         /// </summary>
1254         /// <since_tizen> 3 </since_tizen>
1255         [System.Diagnostics.CodeAnalysis.SuppressMessage("Naming", "CA1721: Property names should not match get methods")]
1256         public PropertyMap Shadow
1257         {
1258             get
1259             {
1260                 return (PropertyMap)GetValue(ShadowProperty);
1261             }
1262             set
1263             {
1264                 SetValue(ShadowProperty, value);
1265                 NotifyPropertyChanged();
1266             }
1267         }
1268
1269         /// <summary>
1270         /// Set Shadow to TextField. <br />
1271         /// </summary>
1272         /// <param name="shadow">The Shadow</param>
1273         /// <remarks>
1274         /// SetShadow specifies the shadow of the text through <see cref="Tizen.NUI.Text.Shadow"/>. <br />
1275         /// </remarks>
1276         /// <example>
1277         /// The following example demonstrates how to use the SetShadow method.
1278         /// <code>
1279         /// var shadow = new Tizen.NUI.Text.Shadow();
1280         /// shadow.Offset = new Vector2(3, 3);
1281         /// shadow.Color = new Color("#F1C40F");
1282         /// field.SetShadow(shadow);
1283         /// </code>
1284         /// </example>
1285         [EditorBrowsable(EditorBrowsableState.Never)]
1286         public void SetShadow(Tizen.NUI.Text.Shadow shadow)
1287         {
1288             SetValue(ShadowProperty, TextUtils.GetShadowMap(shadow));
1289         }
1290
1291         /// <summary>
1292         /// Get Shadow from TextField. <br />
1293         /// </summary>
1294         /// <returns>The Shadow</returns>
1295         /// <remarks>
1296         /// <see cref="Tizen.NUI.Text.Shadow"/>
1297         /// </remarks>
1298         [EditorBrowsable(EditorBrowsableState.Never)]
1299         public Tizen.NUI.Text.Shadow GetShadow()
1300         {
1301             return TextUtils.GetShadowStruct((PropertyMap)GetValue(ShadowProperty));
1302         }
1303
1304         /// <summary>
1305         /// The InputShadow property.
1306         /// </summary>
1307         /// <since_tizen> 3 </since_tizen>
1308         public string InputShadow
1309         {
1310             get
1311             {
1312                 return (string)GetValue(InputShadowProperty);
1313             }
1314             set
1315             {
1316                 SetValue(InputShadowProperty, value);
1317                 NotifyPropertyChanged();
1318             }
1319         }
1320
1321         /// <summary>
1322         /// The Emboss property.
1323         /// </summary>
1324         /// <since_tizen> 3 </since_tizen>
1325         public string Emboss
1326         {
1327             get
1328             {
1329                 return (string)GetValue(EmbossProperty);
1330             }
1331             set
1332             {
1333                 SetValue(EmbossProperty, value);
1334                 NotifyPropertyChanged();
1335             }
1336         }
1337
1338         /// <summary>
1339         /// The InputEmboss property.
1340         /// </summary>
1341         /// <since_tizen> 3 </since_tizen>
1342         public string InputEmboss
1343         {
1344             get
1345             {
1346                 return (string)GetValue(InputEmbossProperty);
1347             }
1348             set
1349             {
1350                 SetValue(InputEmbossProperty, value);
1351                 NotifyPropertyChanged();
1352             }
1353         }
1354
1355         /// <summary>
1356         /// The Outline property.
1357         /// The outline map contains the following keys :<br />
1358         /// <list type="table">
1359         /// <item><term>color (Color)</term><description>The color of the outline (the default color is Color.White)</description></item>
1360         /// <item><term>width (float)</term><description>The width in pixels of the outline (If not provided then the outline is not enabled)</description></item>
1361         /// </list>
1362         /// </summary>
1363         /// <since_tizen> 3 </since_tizen>
1364         [System.Diagnostics.CodeAnalysis.SuppressMessage("Naming", "CA1721: Property names should not match get methods")]
1365         public PropertyMap Outline
1366         {
1367             get
1368             {
1369                 return (PropertyMap)GetValue(OutlineProperty);
1370             }
1371             set
1372             {
1373                 SetValue(OutlineProperty, value);
1374                 NotifyPropertyChanged();
1375             }
1376         }
1377
1378         /// <summary>
1379         /// Set Outline to TextField. <br />
1380         /// </summary>
1381         /// <param name="outline">The Outline</param>
1382         /// <remarks>
1383         /// SetOutline specifies the outline of the text through <see cref="Tizen.NUI.Text.Outline"/>. <br />
1384         /// </remarks>
1385         /// <example>
1386         /// The following example demonstrates how to use the SetOutline method.
1387         /// <code>
1388         /// var outline = new Tizen.NUI.Text.Outline();
1389         /// outline.Width = 2.0f;
1390         /// outline.Color = new Color("#45B39D");
1391         /// field.SetOutline(outline);
1392         /// </code>
1393         /// </example>
1394         [EditorBrowsable(EditorBrowsableState.Never)]
1395         public void SetOutline(Outline outline)
1396         {
1397             SetValue(OutlineProperty, TextUtils.GetOutlineMap(outline));
1398         }
1399
1400         /// <summary>
1401         /// Get Outline from TextField. <br />
1402         /// </summary>
1403         /// <returns>The Outline</returns>
1404         /// <remarks>
1405         /// <see cref="Tizen.NUI.Text.Outline"/>
1406         /// </remarks>
1407         [EditorBrowsable(EditorBrowsableState.Never)]
1408         public Outline GetOutline()
1409         {
1410             return TextUtils.GetOutlineStruct((PropertyMap)GetValue(OutlineProperty));
1411         }
1412
1413         /// <summary>
1414         /// The InputOutline property.
1415         /// </summary>
1416         /// <since_tizen> 3 </since_tizen>
1417         public string InputOutline
1418         {
1419             get
1420             {
1421                 return (string)GetValue(InputOutlineProperty);
1422             }
1423             set
1424             {
1425                 SetValue(InputOutlineProperty, value);
1426                 NotifyPropertyChanged();
1427             }
1428         }
1429
1430         /// <summary>
1431         /// The HiddenInputSettings property.
1432         /// The hiddenInputSettings map contains the following keys :<br />
1433         /// <list type="table">
1434         /// <item><term>HiddenInputProperty.Mode (int)</term><description>The mode for input text display (Use HiddenInputModeType)</description></item>
1435         /// <item><term>HiddenInputProperty.SubstituteCharacter (int)</term><description>All input characters are substituted by this character</description></item>
1436         /// <item><term>HiddenInputProperty.SubstituteCount (int)</term><description>Length of text to show or hide, available when HideCount/ShowCount mode is used</description></item>
1437         /// <item><term>HiddenInputProperty.ShowLastCharacterDuration (int)</term><description>Hide last character after this duration, available when ShowLastCharacter mode</description></item>
1438         /// </list>
1439         /// </summary>
1440         /// <remarks>
1441         /// See <see cref="HiddenInputProperty"/> and <see cref="HiddenInputModeType"/> for a detailed description.
1442         /// </remarks>
1443         /// <example>
1444         /// The following example demonstrates how to set the HiddenInputSettings property.
1445         /// <code>
1446         /// PropertyMap map = new PropertyMap();
1447         /// map.Add(HiddenInputProperty.Mode, new PropertyValue((int)HiddenInputModeType.ShowLastCharacter));
1448         /// map.Add(HiddenInputProperty.ShowLastCharacterDuration, new PropertyValue(500));
1449         /// map.Add(HiddenInputProperty.SubstituteCharacter, new PropertyValue(0x2A));
1450         /// textField.HiddenInputSettings = map;
1451         /// </code>
1452         /// </example>
1453         /// <since_tizen> 3 </since_tizen>
1454         public Tizen.NUI.PropertyMap HiddenInputSettings
1455         {
1456             get
1457             {
1458                 return (PropertyMap)GetValue(HiddenInputSettingsProperty);
1459             }
1460             set
1461             {
1462                 SetValue(HiddenInputSettingsProperty, value);
1463                 NotifyPropertyChanged();
1464             }
1465         }
1466
1467         /// <summary>
1468         /// Set HiddenInput to TextField. <br />
1469         /// </summary>
1470         /// <param name="hiddenInput">The HiddenInput</param>
1471         /// <remarks>
1472         /// SetHiddenInput specifies the requested font style through <see cref="Tizen.NUI.Text.HiddenInput"/>. <br />
1473         /// </remarks>
1474         /// <example>
1475         /// The following example demonstrates how to use the SetHiddenInput method.
1476         /// <code>
1477         /// var hiddenInput = new Tizen.NUI.Text.HiddenInput();
1478         /// hiddenInput.Mode = HiddenInputModeType.ShowLastCharacter;
1479         /// hiddenInput.SubstituteCharacter = '★';
1480         /// hiddenInput.SubstituteCount = 0;
1481         /// hiddenInput.ShowLastCharacterDuration = 1000;
1482         /// field.SetHiddenInput(hiddenInput);
1483         /// </code>
1484         /// </example>
1485         [EditorBrowsable(EditorBrowsableState.Never)]
1486         public void SetHiddenInput(HiddenInput hiddenInput)
1487         {
1488             SetValue(HiddenInputSettingsProperty, TextUtils.GetHiddenInputMap(hiddenInput));
1489         }
1490
1491         /// <summary>
1492         /// Get HiddenInput from TextField. <br />
1493         /// </summary>
1494         /// <returns>The HiddenInput</returns>
1495         /// <remarks>
1496         /// <see cref="Tizen.NUI.Text.HiddenInput"/>
1497         /// </remarks>
1498         [EditorBrowsable(EditorBrowsableState.Never)]
1499         public HiddenInput GetHiddenInput()
1500         {
1501             return TextUtils.GetHiddenInputStruct((PropertyMap)GetValue(HiddenInputSettingsProperty));
1502         }
1503
1504         /// <summary>
1505         /// The PixelSize property.
1506         /// </summary>
1507         /// <since_tizen> 3 </since_tizen>
1508         public float PixelSize
1509         {
1510             get
1511             {
1512                 return (float)GetValue(PixelSizeProperty);
1513             }
1514             set
1515             {
1516                 SetValue(PixelSizeProperty, value);
1517                 NotifyPropertyChanged();
1518             }
1519         }
1520
1521         /// <summary>
1522         /// The Enable selection property.
1523         /// </summary>
1524         /// <since_tizen> 3 </since_tizen>
1525         public bool EnableSelection
1526         {
1527             get
1528             {
1529                 return (bool)GetValue(EnableSelectionProperty);
1530             }
1531             set
1532             {
1533                 SetValue(EnableSelectionProperty, value);
1534                 NotifyPropertyChanged();
1535             }
1536         }
1537
1538         /// <summary>
1539         /// The Enable selection property.
1540         /// </summary>
1541         /// <since_tizen> 6 </since_tizen>
1542         /// This will be released at Tizen.NET API Level 5, so currently this would be used as inhouse API.
1543         [EditorBrowsable(EditorBrowsableState.Never)]
1544         public bool EnableGrabHandle
1545         {
1546             get
1547             {
1548                 return (bool)GetValue(EnableGrabHandleProperty);
1549             }
1550             set
1551             {
1552                 SetValue(EnableGrabHandleProperty, value);
1553                 NotifyPropertyChanged();
1554             }
1555         }
1556
1557         /// <summary>
1558         /// The Enable selection property.
1559         /// </summary>
1560         /// <since_tizen> 6 </since_tizen>
1561         /// This will be released at Tizen.NET API Level 5, so currently this would be used as inhouse API.
1562         [EditorBrowsable(EditorBrowsableState.Never)]
1563         public bool EnableGrabHandlePopup
1564         {
1565             get
1566             {
1567                 return (bool)GetValue(EnableGrabHandlePopupProperty);
1568             }
1569             set
1570             {
1571                 SetValue(EnableGrabHandlePopupProperty, value);
1572                 NotifyPropertyChanged();
1573             }
1574         }
1575
1576         /// <summary>
1577         /// The Selected Text property.
1578         /// </summary>
1579         /// <since_tizen> 8 </since_tizen>
1580         /// This will be public opened in tizen_6.0 after ACR done, Before ACR, need to be hidden as inhouse API.
1581         [EditorBrowsable(EditorBrowsableState.Never)]
1582         public string SelectedText
1583         {
1584             get
1585             {
1586                 string temp;
1587                 GetProperty(TextField.Property.SelectedText).Get(out temp);
1588                 return temp;
1589             }
1590         }
1591
1592         /// <summary>
1593         /// The start index for selection.
1594         /// </summary>
1595         /// <since_tizen> 8 </since_tizen>
1596         /// This will be public opened in tizen_6.0 after ACR done, Before ACR, need to be hidden as inhouse API.
1597         [EditorBrowsable(EditorBrowsableState.Never)]
1598         public int SelectedTextStart
1599         {
1600             get
1601             {
1602                 int temp;
1603                 GetProperty(TextField.Property.SelectedTextStart).Get(out temp);
1604                 return temp;
1605             }
1606         }
1607
1608         /// <summary>
1609         /// The end index for selection.
1610         /// </summary>
1611         /// <since_tizen> 8 </since_tizen>
1612         /// This will be public opened in tizen_6.0 after ACR done, Before ACR, need to be hidden as inhouse API.
1613         [EditorBrowsable(EditorBrowsableState.Never)]
1614         public int SelectedTextEnd
1615         {
1616             get
1617             {
1618                 int temp;
1619                 GetProperty(TextField.Property.SelectedTextEnd).Get(out temp);
1620                 return temp;
1621             }
1622         }
1623
1624         /// <summary>
1625         /// Enable editing in text control.
1626         /// </summary>
1627         /// <since_tizen> 8 </since_tizen>
1628         /// This will be public opened in tizen_6.0 after ACR done, Before ACR, need to be hidden as inhouse API.
1629         [EditorBrowsable(EditorBrowsableState.Never)]
1630         public bool EnableEditing
1631         {
1632             get
1633             {
1634                 bool temp;
1635                 GetProperty(TextField.Property.EnableEditing).Get(out temp);
1636                 return temp;
1637             }
1638             set
1639             {
1640                 SetProperty(TextField.Property.EnableEditing, new PropertyValue(value));
1641                 NotifyPropertyChanged();
1642             }
1643         }
1644
1645         /// <summary>
1646         /// Specify primary cursor (caret) position in text control.
1647         /// </summary>
1648         [EditorBrowsable(EditorBrowsableState.Never)]
1649         public int PrimaryCursorPosition
1650         {
1651             get
1652             {
1653                 int temp;
1654                 using (PropertyValue propertyValue = GetProperty(TextField.Property.PrimaryCursorPosition))
1655                 {
1656                     propertyValue.Get(out temp);
1657                 }
1658                 return temp;
1659             }
1660             set
1661             {
1662                 using (PropertyValue propertyValue = new PropertyValue(value))
1663                 {
1664                     SetProperty(TextField.Property.PrimaryCursorPosition, propertyValue);
1665                     NotifyPropertyChanged();
1666                 }
1667             }
1668         }
1669
1670         /// <summary>
1671         /// The GrabHandleColor property.
1672         /// </summary>
1673         /// <remarks>
1674         /// The property cascade chaining set is possible. For example, this (textField.GrabHandleColor.X = 0.1f;) is possible.
1675         /// </remarks>
1676         [EditorBrowsable(EditorBrowsableState.Never)]
1677         public Color GrabHandleColor
1678         {
1679             get
1680             {
1681                 Color temp = (Color)GetValue(GrabHandleColorProperty);
1682                 return new Color(OnGrabHandleColorChanged, temp.R, temp.G, temp.B, temp.A);
1683             }
1684             set
1685             {
1686                 SetValue(GrabHandleColorProperty, value);
1687                 NotifyPropertyChanged();
1688             }
1689         }
1690
1691         /// <summary>
1692         /// The ellipsis position of the text.
1693         /// The ellipsis position type when the text size over the layout size.<br />
1694         /// The ellipsis position: End, Start or Middle.<br />
1695         /// </summary>
1696         [EditorBrowsable(EditorBrowsableState.Never)]
1697         public EllipsisPosition EllipsisPosition
1698         {
1699             get
1700             {
1701                 return (EllipsisPosition)GetValue(EllipsisPositionProperty);
1702             }
1703             set
1704             {
1705                 SetValue(EllipsisPositionProperty, value);
1706                 NotifyPropertyChanged();
1707             }
1708         }
1709
1710         /// <summary>
1711         /// Set InputFilter to TextField. <br />
1712         /// </summary>
1713         /// <param name="inputFilter">The InputFilter</param>
1714         /// <remarks>
1715         /// <see cref="Tizen.NUI.Text.InputFilter"/> filters input based on regular expressions. <br />
1716         /// Users can set the Accepted or Rejected regular expression set, or both. <br />
1717         /// If both are used, Rejected has higher priority. <br />
1718         /// The character set must follow the regular expression rules. <br />
1719         /// Behaviour can not be guaranteed for incorrect grammars. <br />
1720         /// Refer the link below for detailed rules. <br />
1721         /// The functions in std::regex library use the ECMAScript grammar: <br />
1722         /// http://cplusplus.com/reference/regex/ECMAScript/ <br />
1723         /// InputFiltered signal is emitted when the input is filtered by InputFilter <br />
1724         /// See <see cref="InputFiltered"/>, <see cref="InputFilterType"/> and <see cref="InputFilteredEventArgs"/> for a detailed description. <br />
1725         /// </remarks>
1726         /// <example>
1727         /// The following example demonstrates how to use the SetInputFilter method.
1728         /// <code>
1729         /// var inputFilter = new Tizen.NUI.Text.InputFilter();
1730         /// inputFilter.Accepted = @"[\d]"; // accept whole digits
1731         /// inputFilter.Rejected = "[0-3]"; // reject 0, 1, 2, 3
1732         /// field.SetInputFilter(inputFilter); // acceptable inputs are 4, 5, 6, 7, 8, 9
1733         /// </code>
1734         /// </example>
1735         [EditorBrowsable(EditorBrowsableState.Never)]
1736         public void SetInputFilter(InputFilter inputFilter)
1737         {
1738             SetProperty(TextField.Property.InputFilter, new PropertyValue(TextUtils.GetInputFilterMap(inputFilter)));
1739         }
1740
1741         /// <summary>
1742         /// Get InputFilter from TextField. <br />
1743         /// </summary>
1744         /// <returns>The InputFilter</returns>
1745         /// <remarks>
1746         /// <see cref="Tizen.NUI.Text.InputFilter"/>
1747         /// </remarks>
1748         [EditorBrowsable(EditorBrowsableState.Never)]
1749         public InputFilter GetInputFilter()
1750         {
1751             var map = new PropertyMap();
1752             GetProperty(TextField.Property.InputFilter).Get(map);
1753             return TextUtils.GetInputFilterStruct(map);
1754         }
1755
1756         /// <summary>
1757         /// The Placeholder property.
1758         /// The placeholder map contains the following keys :<br />
1759         /// <list type="table">
1760         /// <item><term>text (string)</term><description>The text to display when the TextField is empty and inactive</description></item>
1761         /// <item><term>textFocused (string)</term><description>The text to display when the placeholder has focus</description></item>
1762         /// <item><term>color (Color)</term><description>The color of the placeholder text</description></item>
1763         /// <item><term>fontFamily (string)</term><description>The fontFamily of the placeholder text</description></item>
1764         /// <item><term>fontStyle (PropertyMap)</term><description>The fontStyle of the placeholder text</description></item>
1765         /// <item><term>pointSize (float)</term><description>The pointSize of the placeholder text</description></item>
1766         /// <item><term>pixelSize (float)</term><description>The pixelSize of the placeholder text</description></item>
1767         /// <item><term>ellipsis (bool)</term><description>The ellipsis of the placeholder text</description></item>
1768         /// </list>
1769         /// </summary>
1770         /// <example>
1771         /// The following example demonstrates how to set the Placeholder property.
1772         /// <code>
1773         /// PropertyMap propertyMap = new PropertyMap();
1774         /// propertyMap.Add("text", new PropertyValue("Setting Placeholder Text"));
1775         /// propertyMap.Add("textFocused", new PropertyValue("Setting Placeholder Text Focused"));
1776         /// propertyMap.Add("color", new PropertyValue(Color.Red));
1777         /// propertyMap.Add("fontFamily", new PropertyValue("Arial"));
1778         /// propertyMap.Add("pointSize", new PropertyValue(12.0f));
1779         ///
1780         /// PropertyMap fontStyleMap = new PropertyMap();
1781         /// fontStyleMap.Add("weight", new PropertyValue("bold"));
1782         /// fontStyleMap.Add("width", new PropertyValue("condensed"));
1783         /// fontStyleMap.Add("slant", new PropertyValue("italic"));
1784         /// propertyMap.Add("fontStyle", new PropertyValue(fontStyleMap));
1785         ///
1786         /// TextField field = new TextField();
1787         /// field.Placeholder = propertyMap;
1788         /// </code>
1789         /// </example>
1790         /// <since_tizen> 3 </since_tizen>
1791         [System.Diagnostics.CodeAnalysis.SuppressMessage("Naming", "CA1721: Property names should not match get methods")]
1792         public Tizen.NUI.PropertyMap Placeholder
1793         {
1794             get
1795             {
1796                 PropertyMap map = (PropertyMap)GetValue(PlaceholderProperty);
1797                 PropertyValue value = null;
1798
1799                 // text
1800                 value = map.Find(0);
1801                 if (null != value)
1802                 {
1803                     value.Get(out string text);
1804                     map.Add("text", new PropertyValue(text));
1805                 }
1806
1807                 // textFocused
1808                 value = map.Find(1);
1809                 if (null != value)
1810                 {
1811                     value.Get(out string textFocused);
1812                     map.Add("textFocused", new PropertyValue(textFocused));
1813                 }
1814
1815                 // color
1816                 value = map.Find(2);
1817                 if (null != value)
1818                 {
1819                     Color color = new Color();
1820                     value.Get(color);
1821                     map.Add("color", new PropertyValue(color));
1822                 }
1823
1824                 // fontFamily
1825                 value = map.Find(3);
1826                 if (null != value)
1827                 {
1828                     value.Get(out string fontFamily);
1829                     map.Add("fontFamily", new PropertyValue(fontFamily));
1830                 }
1831
1832                 // fontStyle
1833                 value = map.Find(4);
1834                 if (null != value)
1835                 {
1836                     PropertyMap fontStyle = new PropertyMap();
1837                     value.Get(fontStyle);
1838                     map.Add("fontStyle", new PropertyValue(fontStyle));
1839                 }
1840
1841                 // pointSize
1842                 value = map.Find(5);
1843                 if (null != value)
1844                 {
1845                     value.Get(out float pointSize);
1846                     map.Add("pointSize", new PropertyValue(pointSize));
1847                 }
1848
1849                 // pixelSize
1850                 value = map.Find(6);
1851                 if (null != value)
1852                 {
1853                     value.Get(out float pixelSize);
1854                     map.Add("pixelSize", new PropertyValue(pixelSize));
1855                 }
1856
1857                 // ellipsis
1858                 value = map.Find(7);
1859                 if (null != value)
1860                 {
1861                     value.Get(out bool ellipsis);
1862                     map.Add("ellipsis", new PropertyValue(ellipsis));
1863                 }
1864
1865                 return map;
1866             }
1867             set
1868             {
1869                 SetValue(PlaceholderProperty, value);
1870                 NotifyPropertyChanged();
1871             }
1872         }
1873
1874         /// <summary>
1875         /// Set Placeholder to TextField. <br />
1876         /// </summary>
1877         /// <param name="placeholder">The Placeholder</param>
1878         /// <remarks>
1879         /// SetPlaceholder specifies the attributes of the placeholder property through <see cref="Tizen.NUI.Text.Placeholder"/>. <br />
1880         /// </remarks>
1881         /// <example>
1882         /// The following example demonstrates how to use the SetPlaceholder method.
1883         /// <code>
1884         /// var placeholder = new Tizen.NUI.Text.Placeholder();
1885         /// placeholder.Text = "placeholder text";
1886         /// placeholder.TextFocused = "placeholder textFocused";
1887         /// placeholder.Color = new Color("#45B39D");
1888         /// placeholder.FontFamily = "BreezeSans";
1889         /// placeholder.FontStyle = new Tizen.NUI.Text.FontStyle()
1890         /// {
1891         ///     Width = FontWidthType.Expanded,
1892         ///     Weight = FontWeightType.ExtraLight,
1893         ///     Slant = FontSlantType.Italic,
1894         /// };
1895         /// placeholder.PointSize = 25.0f;
1896         /// //placeholder.PixelSize = 50.0f;
1897         /// placeholder.Ellipsis = true;
1898         /// field.SetPlaceholder(placeholder);
1899         /// </code>
1900         /// </example>
1901         [EditorBrowsable(EditorBrowsableState.Never)]
1902         public void SetPlaceholder(Placeholder placeholder)
1903         {
1904             SetValue(PlaceholderProperty, TextUtils.GetPlaceholderMap(placeholder));
1905         }
1906
1907         /// <summary>
1908         /// Get Placeholder from TextField. <br />
1909         /// </summary>
1910         /// <returns>The Placeholder</returns>
1911         /// <remarks>
1912         /// <see cref="Tizen.NUI.Text.Placeholder"/>
1913         /// </remarks>
1914         [EditorBrowsable(EditorBrowsableState.Never)]
1915         public Placeholder GetPlaceholder()
1916         {
1917             return TextUtils.GetPlaceholderStruct((PropertyMap)GetValue(PlaceholderProperty));
1918         }
1919
1920         /// <summary>
1921         /// The Ellipsis property.<br />
1922         /// Enable or disable the ellipsis.<br />
1923         /// Placeholder PropertyMap is used to add ellipsis to placeholder text.
1924         /// </summary>
1925         /// <since_tizen> 4 </since_tizen>
1926         public bool Ellipsis
1927         {
1928             get
1929             {
1930                 return (bool)GetValue(EllipsisProperty);
1931             }
1932             set
1933             {
1934                 SetValue(EllipsisProperty, value);
1935                 NotifyPropertyChanged();
1936             }
1937         }
1938
1939         /// <summary>
1940         /// Enables selection of the text using the Shift key.
1941         /// </summary>
1942         /// <since_tizen> 5 </since_tizen>
1943         /// This will be released at Tizen.NET API Level 5, so currently this would be used as inhouse API.
1944         [EditorBrowsable(EditorBrowsableState.Never)]
1945         public bool EnableShiftSelection
1946         {
1947             get
1948             {
1949                 return (bool)GetValue(EnableShiftSelectionProperty);
1950             }
1951             set
1952             {
1953                 SetValue(EnableShiftSelectionProperty, value);
1954                 NotifyPropertyChanged();
1955             }
1956         }
1957
1958         /// <summary>
1959         /// The text alignment to match the direction of the system language.
1960         /// </summary>
1961         /// <since_tizen> 6 </since_tizen>
1962         public bool MatchSystemLanguageDirection
1963         {
1964             get
1965             {
1966                 return (bool)GetValue(MatchSystemLanguageDirectionProperty);
1967             }
1968             set
1969             {
1970                 SetValue(MatchSystemLanguageDirectionProperty, value);
1971                 NotifyPropertyChanged();
1972             }
1973         }
1974
1975         /// <summary>
1976         /// The FontSizeScale property. <br />
1977         /// The default value is 1.0. <br />
1978         /// If FontSizeScale.UseSystemSetting, will use the SystemSettings.FontSize internally. <br />
1979         /// </summary>
1980         /// <since_tizen> 9 </since_tizen>
1981         public float FontSizeScale
1982         {
1983             get
1984             {
1985                 return fontSizeScale;
1986             }
1987             set
1988             {
1989                 float newFontSizeScale;
1990
1991                 if (fontSizeScale == value) return;
1992
1993                 fontSizeScale = value;
1994                 if (fontSizeScale == Tizen.NUI.FontSizeScale.UseSystemSetting)
1995                 {
1996                     SystemSettingsFontSize systemSettingsFontSize;
1997
1998                     try
1999                     {
2000                         systemSettingsFontSize = SystemSettings.FontSize;
2001                     }
2002                     catch (Exception e)
2003                     {
2004                         Console.WriteLine("{0} Exception caught.", e);
2005                         systemSettingsFontSize = SystemSettingsFontSize.Normal;
2006                     }
2007                     newFontSizeScale = TextUtils.GetFontSizeScale(systemSettingsFontSize);
2008                     addFontSizeChangedCallback();
2009                 }
2010                 else
2011                 {
2012                     newFontSizeScale = fontSizeScale;
2013                     removeFontSizeChangedCallback();
2014                 }
2015
2016                 SetValue(FontSizeScaleProperty, newFontSizeScale);
2017                 NotifyPropertyChanged();
2018             }
2019         }
2020
2021         /// Only used by the IL of xaml, will never changed to not hidden.
2022         [EditorBrowsable(EditorBrowsableState.Never)]
2023         public override bool IsCreateByXaml
2024         {
2025             get
2026             {
2027                 return base.IsCreateByXaml;
2028             }
2029             set
2030             {
2031                 base.IsCreateByXaml = value;
2032
2033                 if (value == true)
2034                 {
2035                     this.TextChanged += (obj, e) =>
2036                     {
2037                         this.Text = e.TextField.Text;
2038                     };
2039                 }
2040             }
2041         }
2042
2043         /// <summary>
2044         /// Get the InputMethodContext instance.
2045         /// </summary>
2046         /// <returns>The InputMethodContext instance.</returns>
2047         /// <since_tizen> 5 </since_tizen>
2048         public InputMethodContext GetInputMethodContext()
2049         {
2050             if (inputMethodCotext == null)
2051             {
2052                 /*Avoid raising InputMethodContext reference count.*/
2053                 inputMethodCotext = new InputMethodContext(Interop.TextField.GetInputMethodContext(SwigCPtr), true);
2054                 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2055             }
2056             return inputMethodCotext;
2057         }
2058
2059         /// <summary>
2060         /// Select the whole text.
2061         /// </summary>
2062         /// <since_tizen> 6 </since_tizen>
2063         /// This will be released at Tizen.NET API Level 5.5, so currently this would be used as inhouse API.
2064         [EditorBrowsable(EditorBrowsableState.Never)]
2065         public void SelectWholeText()
2066         {
2067             Interop.TextField.SelectWholeText(SwigCPtr);
2068             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2069         }
2070
2071         /// <summary>
2072         /// Select text from start to end index. <br />
2073         /// The index is valid when 0 or positive. <br />
2074         /// </summary>
2075         /// <param name="start">The start index for selection.</param>
2076         /// <param name="end">The end index for selection.</param>
2077         [EditorBrowsable(EditorBrowsableState.Never)]
2078         public void SelectText(int start, int end)
2079         {
2080             if (start < 0)
2081                 throw new global::System.ArgumentOutOfRangeException(nameof(start), "Value is less than zero");
2082             if (end < 0)
2083                 throw new global::System.ArgumentOutOfRangeException(nameof(end), "Value is less than zero");
2084
2085             Interop.TextField.SelectText(SwigCPtr, (uint)start, (uint)end);
2086             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2087         }
2088
2089         /// <summary>
2090         /// Clear selection of the text.
2091         /// </summary>
2092         /// <since_tizen> 8 </since_tizen>
2093         /// This will be public opened in tizen_6.0 after ACR done, Before ACR, need to be hidden as inhouse API.
2094         [EditorBrowsable(EditorBrowsableState.Never)]
2095         public void SelectNone()
2096         {
2097             _ = Interop.TextField.SelectNone(SwigCPtr);
2098             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2099         }
2100
2101         internal SWIGTYPE_p_Dali__SignalT_void_fDali__Toolkit__TextField_Dali__Toolkit__TextField__InputStyle__MaskF_t InputStyleChangedSignal()
2102         {
2103             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(Interop.TextField.InputStyleChangedSignal(SwigCPtr));
2104             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2105             return ret;
2106         }
2107
2108         /// <summary>
2109         /// Dispose.
2110         /// </summary>
2111         /// <since_tizen> 3 </since_tizen>
2112         protected override void Dispose(DisposeTypes type)
2113         {
2114             if (disposed)
2115             {
2116                 DisposeQueue.Instance.Add(this);
2117                 return;
2118             }
2119
2120             if (systemlangTextFlag)
2121             {
2122                 SystemSettings.LocaleLanguageChanged -= SystemSettings_LocaleLanguageChanged;
2123             }
2124
2125             removeFontSizeChangedCallback();
2126
2127             if (type == DisposeTypes.Explicit)
2128             {
2129                 //Called by User
2130                 //Release your own managed resources here.
2131                 //You should release all of your own disposable objects here.
2132             }
2133
2134             //Release your own unmanaged resources here.
2135             //You should not access any managed member here except static instance.
2136             //because the execution order of Finalizes is non-deterministic.
2137             if (this.HasBody())
2138             {
2139                 if (textFieldCursorPositionChangedCallbackDelegate != null)
2140                 {
2141                     this.CursorPositionChangedSignal().Disconnect(textFieldCursorPositionChangedCallbackDelegate);
2142                 }
2143
2144                 if (textFieldMaxLengthReachedCallbackDelegate != null)
2145                 {
2146                     this.MaxLengthReachedSignal().Disconnect(textFieldMaxLengthReachedCallbackDelegate);
2147                 }
2148
2149                 if (textFieldSelectionClearedCallbackDelegate != null)
2150                 {
2151                     this.SelectionClearedSignal().Disconnect(textFieldSelectionClearedCallbackDelegate);
2152                 }
2153
2154                 if (textFieldSelectionChangedCallbackDelegate != null)
2155                 {
2156                     this.SelectionChangedSignal().Disconnect(textFieldSelectionChangedCallbackDelegate);
2157                 }
2158
2159                 if (textFieldTextChangedCallbackDelegate != null)
2160                 {
2161                     TextChangedSignal().Disconnect(textFieldTextChangedCallbackDelegate);
2162                 }
2163             }
2164
2165             base.Dispose(type);
2166         }
2167
2168         /// This will not be public opened.
2169         [EditorBrowsable(EditorBrowsableState.Never)]
2170         protected override void ReleaseSwigCPtr(System.Runtime.InteropServices.HandleRef swigCPtr)
2171         {
2172             // In order to speed up IME hide, temporarily add
2173             GetInputMethodContext()?.DestroyContext();
2174             Interop.TextField.DeleteTextField(swigCPtr);
2175         }
2176
2177         private string SetTranslatable(string textFieldSid)
2178         {
2179             string translatableText = null;
2180             translatableText = NUIApplication.MultilingualResourceManager?.GetString(textFieldSid, new CultureInfo(SystemSettings.LocaleLanguage.Replace("_", "-")));
2181             if (translatableText != null)
2182             {
2183                 if (systemlangTextFlag == false)
2184                 {
2185                     SystemSettings.LocaleLanguageChanged += SystemSettings_LocaleLanguageChanged;
2186                     systemlangTextFlag = true;
2187                 }
2188                 return translatableText;
2189             }
2190             else
2191             {
2192                 translatableText = "";
2193                 return translatableText;
2194             }
2195         }
2196
2197         private void SystemSettings_LocaleLanguageChanged(object sender, LocaleLanguageChangedEventArgs e)
2198         {
2199             if (textFieldTextSid != null)
2200             {
2201                 Text = NUIApplication.MultilingualResourceManager?.GetString(textFieldTextSid, new CultureInfo(e.Value.Replace("_", "-")));
2202             }
2203             if (textFieldPlaceHolderTextSid != null)
2204             {
2205                 PlaceholderText = NUIApplication.MultilingualResourceManager?.GetString(textFieldPlaceHolderTextSid, new CultureInfo(e.Value.Replace("_", "-")));
2206             }
2207             if (textFieldPlaceHolderTextFocusedSid != null)
2208             {
2209                 PlaceholderTextFocused = NUIApplication.MultilingualResourceManager?.GetString(textFieldPlaceHolderTextFocusedSid, new CultureInfo(e.Value.Replace("_", "-")));
2210             }
2211         }
2212
2213         private void SystemSettingsFontSizeChanged(object sender, FontSizeChangedEventArgs e)
2214         {
2215             float newFontSizeScale = TextUtils.GetFontSizeScale(e.Value);
2216             SetValue(FontSizeScaleProperty, newFontSizeScale);
2217             NotifyPropertyChanged();
2218         }
2219
2220         private void addFontSizeChangedCallback()
2221         {
2222             if (hasFontSizeChangedCallback != true)
2223             {
2224                 try
2225                 {
2226                     SystemSettings.FontSizeChanged += SystemSettingsFontSizeChanged;
2227                     hasFontSizeChangedCallback = true;
2228                 }
2229                 catch (Exception e)
2230                 {
2231                     Console.WriteLine("{0} Exception caught.", e);
2232                     hasFontSizeChangedCallback = false;
2233                 }
2234             }
2235         }
2236
2237         private void removeFontSizeChangedCallback()
2238         {
2239             if (hasFontSizeChangedCallback == true)
2240             {
2241                 try
2242                 {
2243                     SystemSettings.FontSizeChanged -= SystemSettingsFontSizeChanged;
2244                     hasFontSizeChangedCallback = false;
2245                 }
2246                 catch (Exception e)
2247                 {
2248                     Console.WriteLine("{0} Exception caught.", e);
2249                     hasFontSizeChangedCallback = true;
2250                 }
2251             }
2252         }
2253
2254         internal new class Property
2255         {
2256             internal static readonly int TEXT = Interop.TextField.TextGet();
2257             internal static readonly int PlaceholderText = Interop.TextField.PlaceholderTextGet();
2258             internal static readonly int PlaceholderTextFocused = Interop.TextField.PlaceholderTextFocusedGet();
2259             internal static readonly int FontFamily = Interop.TextField.FontFamilyGet();
2260             internal static readonly int FontStyle = Interop.TextField.FontStyleGet();
2261             internal static readonly int PointSize = Interop.TextField.PointSizeGet();
2262             internal static readonly int MaxLength = Interop.TextField.MaxLengthGet();
2263             internal static readonly int ExceedPolicy = Interop.TextField.ExceedPolicyGet();
2264             internal static readonly int HorizontalAlignment = Interop.TextField.HorizontalAlignmentGet();
2265             internal static readonly int VerticalAlignment = Interop.TextField.VerticalAlignmentGet();
2266             internal static readonly int TextColor = Interop.TextField.TextColorGet();
2267             internal static readonly int PlaceholderTextColor = Interop.TextField.PlaceholderTextColorGet();
2268             internal static readonly int PrimaryCursorColor = Interop.TextField.PrimaryCursorColorGet();
2269             internal static readonly int SecondaryCursorColor = Interop.TextField.SecondaryCursorColorGet();
2270             internal static readonly int EnableCursorBlink = Interop.TextField.EnableCursorBlinkGet();
2271             internal static readonly int CursorBlinkInterval = Interop.TextField.CursorBlinkIntervalGet();
2272             internal static readonly int CursorBlinkDuration = Interop.TextField.CursorBlinkDurationGet();
2273             internal static readonly int CursorWidth = Interop.TextField.CursorWidthGet();
2274             internal static readonly int GrabHandleImage = Interop.TextField.GrabHandleImageGet();
2275             internal static readonly int GrabHandlePressedImage = Interop.TextField.GrabHandlePressedImageGet();
2276             internal static readonly int ScrollThreshold = Interop.TextField.ScrollThresholdGet();
2277             internal static readonly int ScrollSpeed = Interop.TextField.ScrollSpeedGet();
2278             internal static readonly int SelectionHandleImageLeft = Interop.TextField.SelectionHandleImageLeftGet();
2279             internal static readonly int SelectionHandleImageRight = Interop.TextField.SelectionHandleImageRightGet();
2280             internal static readonly int SelectionHandlePressedImageLeft = Interop.TextField.SelectionHandlePressedImageLeftGet();
2281             internal static readonly int SelectionHandlePressedImageRight = Interop.TextField.SelectionHandlePressedImageRightGet();
2282             internal static readonly int SelectionHandleMarkerImageLeft = Interop.TextField.SelectionHandleMarkerImageLeftGet();
2283             internal static readonly int SelectionHandleMarkerImageRight = Interop.TextField.SelectionHandleMarkerImageRightGet();
2284             internal static readonly int SelectionHighlightColor = Interop.TextField.SelectionHighlightColorGet();
2285             internal static readonly int DecorationBoundingBox = Interop.TextField.DecorationBoundingBoxGet();
2286             internal static readonly int InputMethodSettings = Interop.TextField.InputMethodSettingsGet();
2287             internal static readonly int InputColor = Interop.TextField.InputColorGet();
2288             internal static readonly int EnableMarkup = Interop.TextField.EnableMarkupGet();
2289             internal static readonly int InputFontFamily = Interop.TextField.InputFontFamilyGet();
2290             internal static readonly int InputFontStyle = Interop.TextField.InputFontStyleGet();
2291             internal static readonly int InputPointSize = Interop.TextField.InputPointSizeGet();
2292             internal static readonly int UNDERLINE = Interop.TextField.UnderlineGet();
2293             internal static readonly int InputUnderline = Interop.TextField.InputUnderlineGet();
2294             internal static readonly int SHADOW = Interop.TextField.ShadowGet();
2295             internal static readonly int InputShadow = Interop.TextField.InputShadowGet();
2296             internal static readonly int EMBOSS = Interop.TextField.EmbossGet();
2297             internal static readonly int InputEmboss = Interop.TextField.InputEmbossGet();
2298             internal static readonly int OUTLINE = Interop.TextField.OutlineGet();
2299             internal static readonly int InputOutline = Interop.TextField.InputOutlineGet();
2300             internal static readonly int HiddenInputSettings = Interop.TextField.HiddenInputSettingsGet();
2301             internal static readonly int PixelSize = Interop.TextField.PixelSizeGet();
2302             internal static readonly int EnableSelection = Interop.TextField.EnableSelectionGet();
2303             internal static readonly int PLACEHOLDER = Interop.TextField.PlaceholderGet();
2304             internal static readonly int ELLIPSIS = Interop.TextField.EllipsisGet();
2305             internal static readonly int EnableShiftSelection = Interop.TextField.EnableShiftSelectionGet();
2306             internal static readonly int MatchSystemLanguageDirection = Interop.TextField.MatchSystemLanguageDirectionGet();
2307             internal static readonly int EnableGrabHandle = Interop.TextField.EnableGrabHandleGet();
2308             internal static readonly int EnableGrabHandlePopup = Interop.TextField.EnableGrabHandlePopupGet();
2309             internal static readonly int SelectedText = Interop.TextField.SelectedTextGet();
2310             internal static readonly int SelectedTextStart = Interop.TextField.SelectedTextStartGet();
2311             internal static readonly int SelectedTextEnd = Interop.TextField.SelectedTextEndGet();
2312             internal static readonly int EnableEditing = Interop.TextField.EnableEditingGet();
2313             internal static readonly int PrimaryCursorPosition = Interop.TextField.PrimaryCursorPositionGet();
2314             internal static readonly int FontSizeScale = Interop.TextField.FontSizeScaleGet();
2315             internal static readonly int GrabHandleColor = Interop.TextField.GrabHandleColorGet();
2316             internal static readonly int EllipsisPosition = Interop.TextField.EllipsisPositionGet();
2317             internal static readonly int InputFilter = Interop.TextField.InputFilterGet();
2318         }
2319
2320         internal class InputStyle
2321         {
2322             internal enum Mask
2323             {
2324                 None = 0x0000,
2325                 Color = 0x0001,
2326                 FontFamily = 0x0002,
2327                 PointSize = 0x0004,
2328                 FontStyle = 0x0008,
2329                 Underline = 0x0010,
2330                 Shadow = 0x0020,
2331                 Emboss = 0x0040,
2332                 Outline = 0x0080
2333             }
2334         }
2335
2336         private void OnDecorationBoundingBoxChanged(int x, int y, int width, int height)
2337         {
2338             DecorationBoundingBox = new Rectangle(x, y, width, height);
2339         }
2340         private void OnInputColorChanged(float x, float y, float z, float w)
2341         {
2342             InputColor = new Vector4(x, y, z, w);
2343         }
2344         private void OnPlaceholderTextColorChanged(float r, float g, float b, float a)
2345         {
2346             PlaceholderTextColor = new Vector4(r, g, b, a);
2347         }
2348         private void OnPrimaryCursorColorChanged(float x, float y, float z, float w)
2349         {
2350             PrimaryCursorColor = new Vector4(x, y, z, w);
2351         }
2352         private void OnSecondaryCursorColorChanged(float x, float y, float z, float w)
2353         {
2354             SecondaryCursorColor = new Vector4(x, y, z, w);
2355         }
2356         private void OnSelectionHighlightColorChanged(float x, float y, float z, float w)
2357         {
2358             SelectionHighlightColor = new Vector4(x, y, z, w);
2359         }
2360         private void OnShadowColorChanged(float x, float y, float z, float w)
2361         {
2362             ShadowColor = new Vector4(x, y, z, w);
2363         }
2364         private void OnShadowOffsetChanged(float x, float y)
2365         {
2366             ShadowOffset = new Vector2(x, y);
2367         }
2368         private void OnTextColorChanged(float r, float g, float b, float a)
2369         {
2370             TextColor = new Color(r, g, b, a);
2371         }
2372         private void OnGrabHandleColorChanged(float r, float g, float b, float a)
2373         {
2374             GrabHandleColor = new Color(r, g, b, a);
2375         }
2376     }
2377 }