2 * Copyright(c) 2017 Samsung Electronics Co., Ltd.
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
8 * http://www.apache.org/licenses/LICENSE-2.0
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.
17 extern alias TizenSystemSettings;
18 using TizenSystemSettings.Tizen.System;
21 using System.Runtime.InteropServices;
22 using System.Globalization;
23 using System.ComponentModel;
25 namespace Tizen.NUI.BaseComponents
28 /// A control which provides a single line editable text field.
30 /// <since_tizen> 3 </since_tizen>
31 public class TextField : View
33 private global::System.Runtime.InteropServices.HandleRef swigCPtr;
34 private string textFieldTextSid = null;
35 private string textFieldPlaceHolderTextSid = null;
36 private bool systemlangTextFlag = false;
38 internal TextField(global::System.IntPtr cPtr, bool cMemoryOwn) : base(NDalicPINVOKE.TextField_SWIGUpcast(cPtr), cMemoryOwn)
40 swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr);
43 internal static global::System.Runtime.InteropServices.HandleRef getCPtr(TextField obj)
45 return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr;
51 /// <since_tizen> 3 </since_tizen>
52 protected override void Dispose(DisposeTypes type)
56 DisposeQueue.Instance.Add(this);
60 if (type == DisposeTypes.Explicit)
63 //Release your own managed resources here.
64 //You should release all of your own disposable objects here.
67 //Release your own unmanaged resources here.
68 //You should not access any managed member here except static instance.
69 //because the execution order of Finalizes is non-deterministic.
71 if (_textFieldMaxLengthReachedCallbackDelegate != null)
73 this.MaxLengthReachedSignal().Disconnect(_textFieldMaxLengthReachedCallbackDelegate);
76 if (_textFieldTextChangedCallbackDelegate != null)
78 TextChangedSignal().Disconnect(_textFieldTextChangedCallbackDelegate);
81 if (swigCPtr.Handle != global::System.IntPtr.Zero)
86 NDalicPINVOKE.delete_TextField(swigCPtr);
88 swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero);
95 /// The TextChanged event arguments.
97 /// <since_tizen> 3 </since_tizen>
98 public class TextChangedEventArgs : EventArgs
100 private TextField _textField;
105 /// <since_tizen> 3 </since_tizen>
106 public TextField TextField
120 /// The MaxLengthReached event arguments.
122 /// <since_tizen> 3 </since_tizen>
123 public class MaxLengthReachedEventArgs : EventArgs
125 private TextField _textField;
130 /// <since_tizen> 3 </since_tizen>
131 public TextField TextField
145 [UnmanagedFunctionPointer(CallingConvention.StdCall)]
146 private delegate void TextChangedCallbackDelegate(IntPtr textField);
147 private EventHandler<TextChangedEventArgs> _textFieldTextChangedEventHandler;
148 private TextChangedCallbackDelegate _textFieldTextChangedCallbackDelegate;
150 [UnmanagedFunctionPointer(CallingConvention.StdCall)]
151 private delegate void MaxLengthReachedCallbackDelegate(IntPtr textField);
152 private EventHandler<MaxLengthReachedEventArgs> _textFieldMaxLengthReachedEventHandler;
153 private MaxLengthReachedCallbackDelegate _textFieldMaxLengthReachedCallbackDelegate;
156 /// The TextChanged event.
158 /// <since_tizen> 3 </since_tizen>
159 public event EventHandler<TextChangedEventArgs> TextChanged
163 if (_textFieldTextChangedEventHandler == null)
165 _textFieldTextChangedCallbackDelegate = (OnTextChanged);
166 TextChangedSignal().Connect(_textFieldTextChangedCallbackDelegate);
168 _textFieldTextChangedEventHandler += value;
172 _textFieldTextChangedEventHandler -= value;
173 if (_textFieldTextChangedEventHandler == null && TextChangedSignal().Empty() == false)
175 TextChangedSignal().Disconnect(_textFieldTextChangedCallbackDelegate);
180 private void OnTextChanged(IntPtr textField)
182 TextChangedEventArgs e = new TextChangedEventArgs();
184 // Populate all members of "e" (TextChangedEventArgs) with real data
185 e.TextField = Registry.GetManagedBaseHandleFromNativePtr(textField) as TextField;
187 if (_textFieldTextChangedEventHandler != null)
189 //here we send all data to user event handlers
190 _textFieldTextChangedEventHandler(this, e);
196 /// The MaxLengthReached event.
198 /// <since_tizen> 3 </since_tizen>
199 public event EventHandler<MaxLengthReachedEventArgs> MaxLengthReached
203 if (_textFieldMaxLengthReachedEventHandler == null)
205 _textFieldMaxLengthReachedCallbackDelegate = (OnMaxLengthReached);
206 MaxLengthReachedSignal().Connect(_textFieldMaxLengthReachedCallbackDelegate);
208 _textFieldMaxLengthReachedEventHandler += value;
212 if (_textFieldMaxLengthReachedEventHandler == null && MaxLengthReachedSignal().Empty() == false)
214 this.MaxLengthReachedSignal().Disconnect(_textFieldMaxLengthReachedCallbackDelegate);
216 _textFieldMaxLengthReachedEventHandler -= value;
220 private void OnMaxLengthReached(IntPtr textField)
222 MaxLengthReachedEventArgs e = new MaxLengthReachedEventArgs();
224 // Populate all members of "e" (MaxLengthReachedEventArgs) with real data
225 e.TextField = Registry.GetManagedBaseHandleFromNativePtr(textField) as TextField;
227 if (_textFieldMaxLengthReachedEventHandler != null)
229 //here we send all data to user event handlers
230 _textFieldMaxLengthReachedEventHandler(this, e);
235 internal new class Property
237 internal static readonly int RENDERING_BACKEND = NDalicPINVOKE.TextField_Property_RENDERING_BACKEND_get();
238 internal static readonly int TEXT = NDalicPINVOKE.TextField_Property_TEXT_get();
239 internal static readonly int PLACEHOLDER_TEXT = NDalicPINVOKE.TextField_Property_PLACEHOLDER_TEXT_get();
240 internal static readonly int PLACEHOLDER_TEXT_FOCUSED = NDalicPINVOKE.TextField_Property_PLACEHOLDER_TEXT_FOCUSED_get();
241 internal static readonly int FONT_FAMILY = NDalicPINVOKE.TextField_Property_FONT_FAMILY_get();
242 internal static readonly int FONT_STYLE = NDalicPINVOKE.TextField_Property_FONT_STYLE_get();
243 internal static readonly int POINT_SIZE = NDalicPINVOKE.TextField_Property_POINT_SIZE_get();
244 internal static readonly int MAX_LENGTH = NDalicPINVOKE.TextField_Property_MAX_LENGTH_get();
245 internal static readonly int EXCEED_POLICY = NDalicPINVOKE.TextField_Property_EXCEED_POLICY_get();
246 internal static readonly int HORIZONTAL_ALIGNMENT = NDalicPINVOKE.TextField_Property_HORIZONTAL_ALIGNMENT_get();
247 internal static readonly int VERTICAL_ALIGNMENT = NDalicPINVOKE.TextField_Property_VERTICAL_ALIGNMENT_get();
248 internal static readonly int TEXT_COLOR = NDalicPINVOKE.TextField_Property_TEXT_COLOR_get();
249 internal static readonly int PLACEHOLDER_TEXT_COLOR = NDalicPINVOKE.TextField_Property_PLACEHOLDER_TEXT_COLOR_get();
250 internal static readonly int SHADOW_OFFSET = NDalicPINVOKE.TextField_Property_SHADOW_OFFSET_get();
251 internal static readonly int SHADOW_COLOR = NDalicPINVOKE.TextField_Property_SHADOW_COLOR_get();
252 internal static readonly int PRIMARY_CURSOR_COLOR = NDalicPINVOKE.TextField_Property_PRIMARY_CURSOR_COLOR_get();
253 internal static readonly int SECONDARY_CURSOR_COLOR = NDalicPINVOKE.TextField_Property_SECONDARY_CURSOR_COLOR_get();
254 internal static readonly int ENABLE_CURSOR_BLINK = NDalicPINVOKE.TextField_Property_ENABLE_CURSOR_BLINK_get();
255 internal static readonly int CURSOR_BLINK_INTERVAL = NDalicPINVOKE.TextField_Property_CURSOR_BLINK_INTERVAL_get();
256 internal static readonly int CURSOR_BLINK_DURATION = NDalicPINVOKE.TextField_Property_CURSOR_BLINK_DURATION_get();
257 internal static readonly int CURSOR_WIDTH = NDalicPINVOKE.TextField_Property_CURSOR_WIDTH_get();
258 internal static readonly int GRAB_HANDLE_IMAGE = NDalicPINVOKE.TextField_Property_GRAB_HANDLE_IMAGE_get();
259 internal static readonly int GRAB_HANDLE_PRESSED_IMAGE = NDalicPINVOKE.TextField_Property_GRAB_HANDLE_PRESSED_IMAGE_get();
260 internal static readonly int SCROLL_THRESHOLD = NDalicPINVOKE.TextField_Property_SCROLL_THRESHOLD_get();
261 internal static readonly int SCROLL_SPEED = NDalicPINVOKE.TextField_Property_SCROLL_SPEED_get();
262 internal static readonly int SELECTION_HANDLE_IMAGE_LEFT = NDalicPINVOKE.TextField_Property_SELECTION_HANDLE_IMAGE_LEFT_get();
263 internal static readonly int SELECTION_HANDLE_IMAGE_RIGHT = NDalicPINVOKE.TextField_Property_SELECTION_HANDLE_IMAGE_RIGHT_get();
264 internal static readonly int SELECTION_HANDLE_PRESSED_IMAGE_LEFT = NDalicPINVOKE.TextField_Property_SELECTION_HANDLE_PRESSED_IMAGE_LEFT_get();
265 internal static readonly int SELECTION_HANDLE_PRESSED_IMAGE_RIGHT = NDalicPINVOKE.TextField_Property_SELECTION_HANDLE_PRESSED_IMAGE_RIGHT_get();
266 internal static readonly int SELECTION_HANDLE_MARKER_IMAGE_LEFT = NDalicPINVOKE.TextField_Property_SELECTION_HANDLE_MARKER_IMAGE_LEFT_get();
267 internal static readonly int SELECTION_HANDLE_MARKER_IMAGE_RIGHT = NDalicPINVOKE.TextField_Property_SELECTION_HANDLE_MARKER_IMAGE_RIGHT_get();
268 internal static readonly int SELECTION_HIGHLIGHT_COLOR = NDalicPINVOKE.TextField_Property_SELECTION_HIGHLIGHT_COLOR_get();
269 internal static readonly int DECORATION_BOUNDING_BOX = NDalicPINVOKE.TextField_Property_DECORATION_BOUNDING_BOX_get();
270 internal static readonly int INPUT_METHOD_SETTINGS = NDalicPINVOKE.TextField_Property_INPUT_METHOD_SETTINGS_get();
271 internal static readonly int INPUT_COLOR = NDalicPINVOKE.TextField_Property_INPUT_COLOR_get();
272 internal static readonly int ENABLE_MARKUP = NDalicPINVOKE.TextField_Property_ENABLE_MARKUP_get();
273 internal static readonly int INPUT_FONT_FAMILY = NDalicPINVOKE.TextField_Property_INPUT_FONT_FAMILY_get();
274 internal static readonly int INPUT_FONT_STYLE = NDalicPINVOKE.TextField_Property_INPUT_FONT_STYLE_get();
275 internal static readonly int INPUT_POINT_SIZE = NDalicPINVOKE.TextField_Property_INPUT_POINT_SIZE_get();
276 internal static readonly int UNDERLINE = NDalicPINVOKE.TextField_Property_UNDERLINE_get();
277 internal static readonly int INPUT_UNDERLINE = NDalicPINVOKE.TextField_Property_INPUT_UNDERLINE_get();
278 internal static readonly int SHADOW = NDalicPINVOKE.TextField_Property_SHADOW_get();
279 internal static readonly int INPUT_SHADOW = NDalicPINVOKE.TextField_Property_INPUT_SHADOW_get();
280 internal static readonly int EMBOSS = NDalicPINVOKE.TextField_Property_EMBOSS_get();
281 internal static readonly int INPUT_EMBOSS = NDalicPINVOKE.TextField_Property_INPUT_EMBOSS_get();
282 internal static readonly int OUTLINE = NDalicPINVOKE.TextField_Property_OUTLINE_get();
283 internal static readonly int INPUT_OUTLINE = NDalicPINVOKE.TextField_Property_INPUT_OUTLINE_get();
284 internal static readonly int HIDDEN_INPUT_SETTINGS = NDalicManualPINVOKE.TextField_Property_HIDDEN_INPUT_SETTINGS_get();
285 internal static readonly int PIXEL_SIZE = NDalicManualPINVOKE.TextField_Property_PIXEL_SIZE_get();
286 internal static readonly int ENABLE_SELECTION = NDalicManualPINVOKE.TextField_Property_ENABLE_SELECTION_get();
287 internal static readonly int PLACEHOLDER = NDalicManualPINVOKE.TextField_Property_PLACEHOLDER_get();
288 internal static readonly int ELLIPSIS = NDalicManualPINVOKE.TextField_Property_ELLIPSIS_get();
291 internal class InputStyle
309 /// Creates the TextField control.
311 /// <since_tizen> 3 </since_tizen>
312 public TextField() : this(NDalicPINVOKE.TextField_New(), true)
314 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
317 internal TextField(TextField handle) : this(NDalicPINVOKE.new_TextField__SWIG_1(TextField.getCPtr(handle)), true)
319 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
322 internal TextFieldSignal TextChangedSignal()
324 TextFieldSignal ret = new TextFieldSignal(NDalicPINVOKE.TextField_TextChangedSignal(swigCPtr), false);
325 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
329 internal TextFieldSignal MaxLengthReachedSignal()
331 TextFieldSignal ret = new TextFieldSignal(NDalicPINVOKE.TextField_MaxLengthReachedSignal(swigCPtr), false);
332 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
336 internal SWIGTYPE_p_Dali__SignalT_void_fDali__Toolkit__TextField_Dali__Toolkit__TextField__InputStyle__MaskF_t InputStyleChangedSignal()
338 SWIGTYPE_p_Dali__SignalT_void_fDali__Toolkit__TextField_Dali__Toolkit__TextField__InputStyle__MaskF_t ret = new SWIGTYPE_p_Dali__SignalT_void_fDali__Toolkit__TextField_Dali__Toolkit__TextField__InputStyle__MaskF_t(NDalicPINVOKE.TextField_InputStyleChangedSignal(swigCPtr), false);
339 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
343 internal enum ExceedPolicyType
345 ExceedPolicyOriginal,
350 /// The TranslatableText property.<br />
351 /// The text can set the SID value.<br />
353 /// <exception cref='ArgumentNullException'>
354 /// ResourceManager about multilingual is null.
356 /// <since_tizen> 4 </since_tizen>
357 public string TranslatableText
361 return textFieldTextSid;
365 if (NUIApplication.MultilingualResourceManager == null)
367 throw new ArgumentNullException("ResourceManager about multilingual is null");
369 textFieldTextSid = value;
370 Text = SetTranslatable(textFieldTextSid);
374 /// The TranslatablePlaceholderText property.<br />
375 /// The text can set the SID value.<br />
377 /// <exception cref='ArgumentNullException'>
378 /// ResourceManager about multilingual is null.
380 /// <since_tizen> 4 </since_tizen>
381 public string TranslatablePlaceholderText
385 return textFieldPlaceHolderTextSid;
389 if (NUIApplication.MultilingualResourceManager == null)
391 throw new ArgumentNullException("ResourceManager about multilingual is null");
393 textFieldPlaceHolderTextSid = value;
394 PlaceholderText = SetTranslatable(textFieldPlaceHolderTextSid);
397 private string SetTranslatable(string textFieldSid)
399 string translatableText = null;
400 translatableText = NUIApplication.MultilingualResourceManager?.GetString(textFieldSid, new CultureInfo(SystemSettings.LocaleLanguage.Replace("_", "-")));
401 if (translatableText != null)
403 if (systemlangTextFlag == false)
405 SystemSettings.LocaleLanguageChanged += new WeakEventHandler<LocaleLanguageChangedEventArgs>(SystemSettings_LocaleLanguageChanged).Handler;
406 systemlangTextFlag = true;
408 return translatableText;
412 translatableText = "";
413 return translatableText;
416 private void SystemSettings_LocaleLanguageChanged(object sender, LocaleLanguageChangedEventArgs e)
418 if (textFieldTextSid != null)
420 Text = NUIApplication.MultilingualResourceManager?.GetString(textFieldTextSid, new CultureInfo(e.Value.Replace("_", "-")));
422 if (textFieldPlaceHolderTextSid != null)
424 PlaceholderText = NUIApplication.MultilingualResourceManager?.GetString(textFieldPlaceHolderTextSid, new CultureInfo(e.Value.Replace("_", "-")));
428 /// The Text property.
430 /// <since_tizen> 3 </since_tizen>
436 GetProperty(TextField.Property.TEXT).Get(out temp);
441 SetProperty(TextField.Property.TEXT, new Tizen.NUI.PropertyValue(value));
446 /// The PlaceholderText property.
448 /// <since_tizen> 3 </since_tizen>
449 public string PlaceholderText
454 GetProperty(TextField.Property.PLACEHOLDER_TEXT).Get(out temp);
459 SetProperty(TextField.Property.PLACEHOLDER_TEXT, new Tizen.NUI.PropertyValue(value));
464 /// The PlaceholderTextFocused property.
466 /// <since_tizen> 3 </since_tizen>
467 public string PlaceholderTextFocused
472 GetProperty(TextField.Property.PLACEHOLDER_TEXT_FOCUSED).Get(out temp);
477 SetProperty(TextField.Property.PLACEHOLDER_TEXT_FOCUSED, new Tizen.NUI.PropertyValue(value));
482 /// The FontFamily property.
484 /// <since_tizen> 3 </since_tizen>
485 public string FontFamily
490 GetProperty(TextField.Property.FONT_FAMILY).Get(out temp);
495 SetProperty(TextField.Property.FONT_FAMILY, new Tizen.NUI.PropertyValue(value));
500 /// The FontStyle property.
502 /// <since_tizen> 3 </since_tizen>
503 public PropertyMap FontStyle
507 PropertyMap temp = new PropertyMap();
508 GetProperty(TextField.Property.FONT_STYLE).Get(temp);
513 SetProperty(TextField.Property.FONT_STYLE, new Tizen.NUI.PropertyValue(value));
518 /// The PointSize property.
520 /// <since_tizen> 3 </since_tizen>
521 public float PointSize
526 GetProperty(TextField.Property.POINT_SIZE).Get(out temp);
531 SetProperty(TextField.Property.POINT_SIZE, new Tizen.NUI.PropertyValue(value));
536 /// The MaxLength property.
538 /// <since_tizen> 3 </since_tizen>
544 GetProperty(TextField.Property.MAX_LENGTH).Get(out temp);
549 SetProperty(TextField.Property.MAX_LENGTH, new Tizen.NUI.PropertyValue(value));
554 /// The ExceedPolicy property.
556 /// <since_tizen> 3 </since_tizen>
557 public int ExceedPolicy
562 GetProperty(TextField.Property.EXCEED_POLICY).Get(out temp);
567 SetProperty(TextField.Property.EXCEED_POLICY, new Tizen.NUI.PropertyValue(value));
572 /// The HorizontalAlignment property.
574 /// <since_tizen> 3 </since_tizen>
575 public HorizontalAlignment HorizontalAlignment
580 if (GetProperty(TextField.Property.HORIZONTAL_ALIGNMENT).Get(out temp) == false)
582 NUILog.Error("HorizontalAlignment get error!");
588 return HorizontalAlignment.Begin;
590 return HorizontalAlignment.Center;
592 return HorizontalAlignment.End;
594 return HorizontalAlignment.Begin;
599 string valueToString = "";
602 case HorizontalAlignment.Begin:
604 valueToString = "BEGIN";
607 case HorizontalAlignment.Center:
609 valueToString = "CENTER";
612 case HorizontalAlignment.End:
614 valueToString = "END";
619 valueToString = "BEGIN";
623 SetProperty(TextField.Property.HORIZONTAL_ALIGNMENT, new Tizen.NUI.PropertyValue(valueToString));
628 /// The VerticalAlignment property.
630 /// <since_tizen> 3 </since_tizen>
631 public VerticalAlignment VerticalAlignment
636 if (GetProperty(TextField.Property.VERTICAL_ALIGNMENT).Get(out temp) == false)
638 NUILog.Error("VerticalAlignment get error!");
644 return VerticalAlignment.Top;
646 return VerticalAlignment.Center;
648 return VerticalAlignment.Bottom;
650 return VerticalAlignment.Bottom;
655 string valueToString = "";
658 case VerticalAlignment.Top:
660 valueToString = "TOP";
663 case VerticalAlignment.Center:
665 valueToString = "CENTER";
668 case VerticalAlignment.Bottom:
670 valueToString = "BOTTOM";
675 valueToString = "BOTTOM";
679 SetProperty(TextField.Property.VERTICAL_ALIGNMENT, new Tizen.NUI.PropertyValue(valueToString));
684 /// The TextColor property.
686 /// <since_tizen> 3 </since_tizen>
687 public Color TextColor
691 Color temp = new Color(0.0f, 0.0f, 0.0f, 0.0f);
692 GetProperty(TextField.Property.TEXT_COLOR).Get(temp);
697 SetProperty(TextField.Property.TEXT_COLOR, new Tizen.NUI.PropertyValue(value));
702 /// The PlaceholderTextColor property.
704 /// <since_tizen> 3 </since_tizen>
705 public Vector4 PlaceholderTextColor
709 Vector4 temp = new Vector4(0.0f, 0.0f, 0.0f, 0.0f);
710 GetProperty(TextField.Property.PLACEHOLDER_TEXT_COLOR).Get(temp);
715 SetProperty(TextField.Property.PLACEHOLDER_TEXT_COLOR, new Tizen.NUI.PropertyValue(value));
720 /// The ShadowOffset property.
722 /// <since_tizen> 3 </since_tizen>
723 public Vector2 ShadowOffset
727 Vector2 temp = new Vector2(0.0f, 0.0f);
728 GetProperty(TextField.Property.SHADOW_OFFSET).Get(temp);
733 SetProperty(TextField.Property.SHADOW_OFFSET, new Tizen.NUI.PropertyValue(value));
738 /// The ShadowColor property.
740 /// <since_tizen> 3 </since_tizen>
741 public Vector4 ShadowColor
745 Vector4 temp = new Vector4(0.0f, 0.0f, 0.0f, 0.0f);
746 GetProperty(TextField.Property.SHADOW_COLOR).Get(temp);
751 SetProperty(TextField.Property.SHADOW_COLOR, new Tizen.NUI.PropertyValue(value));
756 /// The PrimaryCursorColor property.
758 /// <since_tizen> 3 </since_tizen>
759 public Vector4 PrimaryCursorColor
763 Vector4 temp = new Vector4(0.0f, 0.0f, 0.0f, 0.0f);
764 GetProperty(TextField.Property.PRIMARY_CURSOR_COLOR).Get(temp);
769 SetProperty(TextField.Property.PRIMARY_CURSOR_COLOR, new Tizen.NUI.PropertyValue(value));
774 /// The SecondaryCursorColor property.
776 /// <since_tizen> 3 </since_tizen>
777 public Vector4 SecondaryCursorColor
781 Vector4 temp = new Vector4(0.0f, 0.0f, 0.0f, 0.0f);
782 GetProperty(TextField.Property.SECONDARY_CURSOR_COLOR).Get(temp);
787 SetProperty(TextField.Property.SECONDARY_CURSOR_COLOR, new Tizen.NUI.PropertyValue(value));
792 /// The EnableCursorBlink property.
794 /// <since_tizen> 3 </since_tizen>
795 public bool EnableCursorBlink
800 GetProperty(TextField.Property.ENABLE_CURSOR_BLINK).Get(out temp);
805 SetProperty(TextField.Property.ENABLE_CURSOR_BLINK, new Tizen.NUI.PropertyValue(value));
810 /// The CursorBlinkInterval property.
812 /// <since_tizen> 3 </since_tizen>
813 public float CursorBlinkInterval
818 GetProperty(TextField.Property.CURSOR_BLINK_INTERVAL).Get(out temp);
823 SetProperty(TextField.Property.CURSOR_BLINK_INTERVAL, new Tizen.NUI.PropertyValue(value));
828 /// The CursorBlinkDuration property.
830 /// <since_tizen> 3 </since_tizen>
831 public float CursorBlinkDuration
836 GetProperty(TextField.Property.CURSOR_BLINK_DURATION).Get(out temp);
841 SetProperty(TextField.Property.CURSOR_BLINK_DURATION, new Tizen.NUI.PropertyValue(value));
846 /// The CursorWidth property.
848 /// <since_tizen> 3 </since_tizen>
849 public int CursorWidth
854 GetProperty(TextField.Property.CURSOR_WIDTH).Get(out temp);
859 SetProperty(TextField.Property.CURSOR_WIDTH, new Tizen.NUI.PropertyValue(value));
864 /// The GrabHandleImage property.
866 /// <since_tizen> 3 </since_tizen>
867 public string GrabHandleImage
872 GetProperty(TextField.Property.GRAB_HANDLE_IMAGE).Get(out temp);
877 SetProperty(TextField.Property.GRAB_HANDLE_IMAGE, new Tizen.NUI.PropertyValue(value));
882 /// The GrabHandlePressedImage property.
884 /// <since_tizen> 3 </since_tizen>
885 public string GrabHandlePressedImage
890 GetProperty(TextField.Property.GRAB_HANDLE_PRESSED_IMAGE).Get(out temp);
895 SetProperty(TextField.Property.GRAB_HANDLE_PRESSED_IMAGE, new Tizen.NUI.PropertyValue(value));
900 /// The ScrollThreshold property.
902 /// <since_tizen> 3 </since_tizen>
903 public float ScrollThreshold
908 GetProperty(TextField.Property.SCROLL_THRESHOLD).Get(out temp);
913 SetProperty(TextField.Property.SCROLL_THRESHOLD, new Tizen.NUI.PropertyValue(value));
918 /// The ScrollSpeed property.
920 /// <since_tizen> 3 </since_tizen>
921 public float ScrollSpeed
926 GetProperty(TextField.Property.SCROLL_SPEED).Get(out temp);
931 SetProperty(TextField.Property.SCROLL_SPEED, new Tizen.NUI.PropertyValue(value));
936 /// The SelectionHandleImageLeft property.
938 /// <since_tizen> 3 </since_tizen>
939 public PropertyMap SelectionHandleImageLeft
943 PropertyMap temp = new PropertyMap();
944 GetProperty(TextField.Property.SELECTION_HANDLE_IMAGE_LEFT).Get(temp);
949 SetProperty(TextField.Property.SELECTION_HANDLE_IMAGE_LEFT, new Tizen.NUI.PropertyValue(value));
954 /// The SelectionHandleImageRight property.
956 /// <since_tizen> 3 </since_tizen>
957 public PropertyMap SelectionHandleImageRight
961 PropertyMap temp = new PropertyMap();
962 GetProperty(TextField.Property.SELECTION_HANDLE_IMAGE_RIGHT).Get(temp);
967 SetProperty(TextField.Property.SELECTION_HANDLE_IMAGE_RIGHT, new Tizen.NUI.PropertyValue(value));
972 /// The SelectionHandlePressedImageLeft property.
974 /// <since_tizen> 3 </since_tizen>
975 public PropertyMap SelectionHandlePressedImageLeft
979 PropertyMap temp = new PropertyMap();
980 GetProperty(TextField.Property.SELECTION_HANDLE_PRESSED_IMAGE_LEFT).Get(temp);
985 SetProperty(TextField.Property.SELECTION_HANDLE_PRESSED_IMAGE_LEFT, new Tizen.NUI.PropertyValue(value));
990 /// The SelectionHandlePressedImageRight property.
992 /// <since_tizen> 3 </since_tizen>
993 public PropertyMap SelectionHandlePressedImageRight
997 PropertyMap temp = new PropertyMap();
998 GetProperty(TextField.Property.SELECTION_HANDLE_PRESSED_IMAGE_RIGHT).Get(temp);
1003 SetProperty(TextField.Property.SELECTION_HANDLE_PRESSED_IMAGE_RIGHT, new Tizen.NUI.PropertyValue(value));
1008 /// The SelectionHandleMarkerImageLeft property.
1010 /// <since_tizen> 3 </since_tizen>
1011 public PropertyMap SelectionHandleMarkerImageLeft
1015 PropertyMap temp = new PropertyMap();
1016 GetProperty(TextField.Property.SELECTION_HANDLE_MARKER_IMAGE_LEFT).Get(temp);
1021 SetProperty(TextField.Property.SELECTION_HANDLE_MARKER_IMAGE_LEFT, new Tizen.NUI.PropertyValue(value));
1026 /// The SelectionHandleMarkerImageRight property.
1028 /// <since_tizen> 3 </since_tizen>
1029 public PropertyMap SelectionHandleMarkerImageRight
1033 PropertyMap temp = new PropertyMap();
1034 GetProperty(TextField.Property.SELECTION_HANDLE_MARKER_IMAGE_RIGHT).Get(temp);
1039 SetProperty(TextField.Property.SELECTION_HANDLE_MARKER_IMAGE_RIGHT, new Tizen.NUI.PropertyValue(value));
1044 /// The SelectionHighlightColor property.
1046 /// <since_tizen> 3 </since_tizen>
1047 public Vector4 SelectionHighlightColor
1051 Vector4 temp = new Vector4(0.0f, 0.0f, 0.0f, 0.0f);
1052 GetProperty(TextField.Property.SELECTION_HIGHLIGHT_COLOR).Get(temp);
1057 SetProperty(TextField.Property.SELECTION_HIGHLIGHT_COLOR, new Tizen.NUI.PropertyValue(value));
1062 /// The DecorationBoundingBox property.
1064 /// <since_tizen> 3 </since_tizen>
1065 public Rectangle DecorationBoundingBox
1069 Rectangle temp = new Rectangle(0, 0, 0, 0);
1070 GetProperty(TextField.Property.DECORATION_BOUNDING_BOX).Get(temp);
1075 SetProperty(TextField.Property.DECORATION_BOUNDING_BOX, new Tizen.NUI.PropertyValue(value));
1080 /// The InputMethodSettings property.
1082 /// <since_tizen> 3 </since_tizen>
1083 public PropertyMap InputMethodSettings
1087 PropertyMap temp = new PropertyMap();
1088 GetProperty(TextField.Property.INPUT_METHOD_SETTINGS).Get(temp);
1093 SetProperty(TextField.Property.INPUT_METHOD_SETTINGS, new Tizen.NUI.PropertyValue(value));
1098 /// The InputColor property.
1100 /// <since_tizen> 3 </since_tizen>
1101 public Vector4 InputColor
1105 Vector4 temp = new Vector4(0.0f, 0.0f, 0.0f, 0.0f);
1106 GetProperty(TextField.Property.INPUT_COLOR).Get(temp);
1111 SetProperty(TextField.Property.INPUT_COLOR, new Tizen.NUI.PropertyValue(value));
1116 /// The EnableMarkup property.
1118 /// <since_tizen> 3 </since_tizen>
1119 public bool EnableMarkup
1124 GetProperty(TextField.Property.ENABLE_MARKUP).Get(out temp);
1129 SetProperty(TextField.Property.ENABLE_MARKUP, new Tizen.NUI.PropertyValue(value));
1134 /// The InputFontFamily property.
1136 /// <since_tizen> 3 </since_tizen>
1137 public string InputFontFamily
1142 GetProperty(TextField.Property.INPUT_FONT_FAMILY).Get(out temp);
1147 SetProperty(TextField.Property.INPUT_FONT_FAMILY, new Tizen.NUI.PropertyValue(value));
1152 /// The InputFontStyle property.
1154 /// <since_tizen> 3 </since_tizen>
1155 public PropertyMap InputFontStyle
1159 PropertyMap temp = new PropertyMap();
1160 GetProperty(TextField.Property.INPUT_FONT_STYLE).Get(temp);
1165 SetProperty(TextField.Property.INPUT_FONT_STYLE, new Tizen.NUI.PropertyValue(value));
1170 /// The InputPointSize property.
1172 /// <since_tizen> 3 </since_tizen>
1173 public float InputPointSize
1178 GetProperty(TextField.Property.INPUT_POINT_SIZE).Get(out temp);
1183 SetProperty(TextField.Property.INPUT_POINT_SIZE, new Tizen.NUI.PropertyValue(value));
1188 /// The Underline property.
1190 /// <since_tizen> 3 </since_tizen>
1191 public PropertyMap Underline
1195 PropertyMap temp = new PropertyMap();
1196 GetProperty(TextField.Property.UNDERLINE).Get(temp);
1201 SetProperty(TextField.Property.UNDERLINE, new Tizen.NUI.PropertyValue(value));
1206 /// The InputUnderline property.
1208 /// <since_tizen> 3 </since_tizen>
1209 public string InputUnderline
1214 GetProperty(TextField.Property.INPUT_UNDERLINE).Get(out temp);
1219 SetProperty(TextField.Property.INPUT_UNDERLINE, new Tizen.NUI.PropertyValue(value));
1224 /// The Shadow property.
1226 /// <since_tizen> 3 </since_tizen>
1227 public PropertyMap Shadow
1231 PropertyMap temp = new PropertyMap();
1232 GetProperty(TextField.Property.SHADOW).Get(temp);
1237 SetProperty(TextField.Property.SHADOW, new Tizen.NUI.PropertyValue(value));
1242 /// The InputShadow property.
1244 /// <since_tizen> 3 </since_tizen>
1245 public string InputShadow
1250 GetProperty(TextField.Property.INPUT_SHADOW).Get(out temp);
1255 SetProperty(TextField.Property.INPUT_SHADOW, new Tizen.NUI.PropertyValue(value));
1260 /// The Emboss property.
1262 /// <since_tizen> 3 </since_tizen>
1263 public string Emboss
1268 GetProperty(TextField.Property.EMBOSS).Get(out temp);
1273 SetProperty(TextField.Property.EMBOSS, new Tizen.NUI.PropertyValue(value));
1278 /// The InputEmboss property.
1280 /// <since_tizen> 3 </since_tizen>
1281 public string InputEmboss
1286 GetProperty(TextField.Property.INPUT_EMBOSS).Get(out temp);
1291 SetProperty(TextField.Property.INPUT_EMBOSS, new Tizen.NUI.PropertyValue(value));
1296 /// The Outline property.
1298 /// <since_tizen> 3 </since_tizen>
1299 public PropertyMap Outline
1303 PropertyMap temp = new PropertyMap();
1304 GetProperty(TextField.Property.OUTLINE).Get(temp);
1309 SetProperty(TextField.Property.OUTLINE, new Tizen.NUI.PropertyValue(value));
1314 /// The InputOutline property.
1316 /// <since_tizen> 3 </since_tizen>
1317 public string InputOutline
1322 GetProperty(TextField.Property.INPUT_OUTLINE).Get(out temp);
1327 SetProperty(TextField.Property.INPUT_OUTLINE, new Tizen.NUI.PropertyValue(value));
1332 /// The HiddenInputSettings property.
1334 /// <since_tizen> 3 </since_tizen>
1335 public Tizen.NUI.PropertyMap HiddenInputSettings
1339 Tizen.NUI.PropertyMap temp = new Tizen.NUI.PropertyMap();
1340 GetProperty(TextField.Property.HIDDEN_INPUT_SETTINGS).Get(temp);
1345 SetProperty(TextField.Property.HIDDEN_INPUT_SETTINGS, new Tizen.NUI.PropertyValue(value));
1350 /// The PixelSize property.
1352 /// <since_tizen> 3 </since_tizen>
1353 public float PixelSize
1358 GetProperty(TextField.Property.PIXEL_SIZE).Get(out temp);
1363 SetProperty(TextField.Property.PIXEL_SIZE, new Tizen.NUI.PropertyValue(value));
1368 /// The Enable selection property.
1370 /// <since_tizen> 3 </since_tizen>
1371 public bool EnableSelection
1376 GetProperty(TextField.Property.ENABLE_SELECTION).Get(out temp);
1381 SetProperty(TextField.Property.ENABLE_SELECTION, new Tizen.NUI.PropertyValue(value));
1386 /// The Placeholder property.
1387 /// Gets or sets the placeholder: text, color, font family, font style, point size, and pixel size.
1390 /// The following example demonstrates how to set the Placeholder property.
1392 /// PropertyMap propertyMap = new PropertyMap();
1393 /// propertyMap.Add("text", new PropertyValue("Setting Placeholder Text"));
1394 /// propertyMap.Add("textFocused", new PropertyValue("Setting Placeholder Text Focused"));
1395 /// propertyMap.Add("color", new PropertyValue(Color.Red));
1396 /// propertyMap.Add("fontFamily", new PropertyValue("Arial"));
1397 /// propertyMap.Add("pointSize", new PropertyValue(12.0f));
1399 /// PropertyMap fontStyleMap = new PropertyMap();
1400 /// fontStyleMap.Add("weight", new PropertyValue("bold"));
1401 /// fontStyleMap.Add("width", new PropertyValue("condensed"));
1402 /// fontStyleMap.Add("slant", new PropertyValue("italic"));
1403 /// propertyMap.Add("fontStyle", new PropertyValue(fontStyleMap));
1405 /// TextField field = new TextField();
1406 /// field.Placeholder = propertyMap;
1409 /// <since_tizen> 3 </since_tizen>
1410 public Tizen.NUI.PropertyMap Placeholder
1414 Tizen.NUI.PropertyMap temp = new Tizen.NUI.PropertyMap();
1415 GetProperty(TextField.Property.PLACEHOLDER).Get(temp);
1420 SetProperty(TextField.Property.PLACEHOLDER, new Tizen.NUI.PropertyValue(value));
1425 /// The Ellipsis property.<br />
1426 /// Enable or disable the ellipsis.<br />
1427 /// Placeholder PropertyMap is used to add ellipsis to placeholder text.
1429 /// <since_tizen> 4 </since_tizen>
1430 public bool Ellipsis
1435 GetProperty(TextField.Property.ELLIPSIS).Get(out temp);
1440 SetProperty(TextField.Property.ELLIPSIS, new Tizen.NUI.PropertyValue(value));