1 /** Copyright (c) 2017 Samsung Electronics Co., Ltd.
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at
7 * http://www.apache.org/licenses/LICENSE-2.0
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
16 extern alias TizenSystemSettings;
17 using TizenSystemSettings.Tizen.System;
18 namespace Tizen.NUI.BaseComponents
22 using System.Runtime.InteropServices;
23 using System.Globalization;
25 /// A control which provides a single-line editable text field.
27 public class TextField : View
29 private global::System.Runtime.InteropServices.HandleRef swigCPtr;
30 private string textFieldTextSid = null;
31 private string textFieldPlaceHolderTextSid = null;
32 private bool systemlangTextFlag = false;
34 internal TextField(global::System.IntPtr cPtr, bool cMemoryOwn) : base(NDalicPINVOKE.TextField_SWIGUpcast(cPtr), cMemoryOwn)
36 swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr);
39 internal static global::System.Runtime.InteropServices.HandleRef getCPtr(TextField obj)
41 return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr;
47 protected override void Dispose(DisposeTypes type)
51 DisposeQueue.Instance.Add(this);
55 if(type == DisposeTypes.Explicit)
58 //Release your own managed resources here.
59 //You should release all of your own disposable objects here.
62 //Release your own unmanaged resources here.
63 //You should not access any managed member here except static instance.
64 //because the execution order of Finalizes is non-deterministic.
66 if (swigCPtr.Handle != global::System.IntPtr.Zero)
71 NDalicPINVOKE.delete_TextField(swigCPtr);
73 swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero);
80 /// Text changed event arguments.
82 public class TextChangedEventArgs : EventArgs
84 private TextField _textField;
89 public TextField TextField
103 /// MaxLengthReached event arguments.
105 public class MaxLengthReachedEventArgs : EventArgs
107 private TextField _textField;
112 public TextField TextField
126 [UnmanagedFunctionPointer(CallingConvention.StdCall)]
127 private delegate void TextChangedCallbackDelegate(IntPtr textField);
128 private EventHandler<TextChangedEventArgs> _textFieldTextChangedEventHandler;
129 private TextChangedCallbackDelegate _textFieldTextChangedCallbackDelegate;
131 [UnmanagedFunctionPointer(CallingConvention.StdCall)]
132 private delegate void MaxLengthReachedCallbackDelegate(IntPtr textField);
133 private EventHandler<MaxLengthReachedEventArgs> _textFieldMaxLengthReachedEventHandler;
134 private MaxLengthReachedCallbackDelegate _textFieldMaxLengthReachedCallbackDelegate;
137 /// TextChanged event.
139 public event EventHandler<TextChangedEventArgs> TextChanged
143 if (_textFieldTextChangedEventHandler == null)
145 _textFieldTextChangedCallbackDelegate = (OnTextChanged);
146 TextChangedSignal().Connect(_textFieldTextChangedCallbackDelegate);
148 _textFieldTextChangedEventHandler += value;
152 _textFieldTextChangedEventHandler -= value;
153 if (_textFieldTextChangedEventHandler == null && TextChangedSignal().Empty() == false)
155 TextChangedSignal().Disconnect(_textFieldTextChangedCallbackDelegate);
160 private void OnTextChanged(IntPtr textField)
162 TextChangedEventArgs e = new TextChangedEventArgs();
164 // Populate all members of "e" (TextChangedEventArgs) with real data
165 e.TextField = Registry.GetManagedBaseHandleFromNativePtr(textField) as TextField;
167 if (_textFieldTextChangedEventHandler != null)
169 //here we send all data to user event handlers
170 _textFieldTextChangedEventHandler(this, e);
176 /// MaxLengthReached event.
178 public event EventHandler<MaxLengthReachedEventArgs> MaxLengthReached
182 if (_textFieldMaxLengthReachedEventHandler == null)
184 _textFieldMaxLengthReachedCallbackDelegate = (OnMaxLengthReached);
185 MaxLengthReachedSignal().Connect(_textFieldMaxLengthReachedCallbackDelegate);
187 _textFieldMaxLengthReachedEventHandler += value;
191 if (_textFieldMaxLengthReachedEventHandler == null && MaxLengthReachedSignal().Empty() == false)
193 this.MaxLengthReachedSignal().Disconnect(_textFieldMaxLengthReachedCallbackDelegate);
195 _textFieldMaxLengthReachedEventHandler -= value;
199 private void OnMaxLengthReached(IntPtr textField)
201 MaxLengthReachedEventArgs e = new MaxLengthReachedEventArgs();
203 // Populate all members of "e" (MaxLengthReachedEventArgs) with real data
204 e.TextField = Registry.GetManagedBaseHandleFromNativePtr(textField) as TextField;
206 if (_textFieldMaxLengthReachedEventHandler != null)
208 //here we send all data to user event handlers
209 _textFieldMaxLengthReachedEventHandler(this, e);
214 internal class Property
216 internal static readonly int RENDERING_BACKEND = NDalicPINVOKE.TextField_Property_RENDERING_BACKEND_get();
217 internal static readonly int TEXT = NDalicPINVOKE.TextField_Property_TEXT_get();
218 internal static readonly int PLACEHOLDER_TEXT = NDalicPINVOKE.TextField_Property_PLACEHOLDER_TEXT_get();
219 internal static readonly int PLACEHOLDER_TEXT_FOCUSED = NDalicPINVOKE.TextField_Property_PLACEHOLDER_TEXT_FOCUSED_get();
220 internal static readonly int FONT_FAMILY = NDalicPINVOKE.TextField_Property_FONT_FAMILY_get();
221 internal static readonly int FONT_STYLE = NDalicPINVOKE.TextField_Property_FONT_STYLE_get();
222 internal static readonly int POINT_SIZE = NDalicPINVOKE.TextField_Property_POINT_SIZE_get();
223 internal static readonly int MAX_LENGTH = NDalicPINVOKE.TextField_Property_MAX_LENGTH_get();
224 internal static readonly int EXCEED_POLICY = NDalicPINVOKE.TextField_Property_EXCEED_POLICY_get();
225 internal static readonly int HORIZONTAL_ALIGNMENT = NDalicPINVOKE.TextField_Property_HORIZONTAL_ALIGNMENT_get();
226 internal static readonly int VERTICAL_ALIGNMENT = NDalicPINVOKE.TextField_Property_VERTICAL_ALIGNMENT_get();
227 internal static readonly int TEXT_COLOR = NDalicPINVOKE.TextField_Property_TEXT_COLOR_get();
228 internal static readonly int PLACEHOLDER_TEXT_COLOR = NDalicPINVOKE.TextField_Property_PLACEHOLDER_TEXT_COLOR_get();
229 internal static readonly int SHADOW_OFFSET = NDalicPINVOKE.TextField_Property_SHADOW_OFFSET_get();
230 internal static readonly int SHADOW_COLOR = NDalicPINVOKE.TextField_Property_SHADOW_COLOR_get();
231 internal static readonly int PRIMARY_CURSOR_COLOR = NDalicPINVOKE.TextField_Property_PRIMARY_CURSOR_COLOR_get();
232 internal static readonly int SECONDARY_CURSOR_COLOR = NDalicPINVOKE.TextField_Property_SECONDARY_CURSOR_COLOR_get();
233 internal static readonly int ENABLE_CURSOR_BLINK = NDalicPINVOKE.TextField_Property_ENABLE_CURSOR_BLINK_get();
234 internal static readonly int CURSOR_BLINK_INTERVAL = NDalicPINVOKE.TextField_Property_CURSOR_BLINK_INTERVAL_get();
235 internal static readonly int CURSOR_BLINK_DURATION = NDalicPINVOKE.TextField_Property_CURSOR_BLINK_DURATION_get();
236 internal static readonly int CURSOR_WIDTH = NDalicPINVOKE.TextField_Property_CURSOR_WIDTH_get();
237 internal static readonly int GRAB_HANDLE_IMAGE = NDalicPINVOKE.TextField_Property_GRAB_HANDLE_IMAGE_get();
238 internal static readonly int GRAB_HANDLE_PRESSED_IMAGE = NDalicPINVOKE.TextField_Property_GRAB_HANDLE_PRESSED_IMAGE_get();
239 internal static readonly int SCROLL_THRESHOLD = NDalicPINVOKE.TextField_Property_SCROLL_THRESHOLD_get();
240 internal static readonly int SCROLL_SPEED = NDalicPINVOKE.TextField_Property_SCROLL_SPEED_get();
241 internal static readonly int SELECTION_HANDLE_IMAGE_LEFT = NDalicPINVOKE.TextField_Property_SELECTION_HANDLE_IMAGE_LEFT_get();
242 internal static readonly int SELECTION_HANDLE_IMAGE_RIGHT = NDalicPINVOKE.TextField_Property_SELECTION_HANDLE_IMAGE_RIGHT_get();
243 internal static readonly int SELECTION_HANDLE_PRESSED_IMAGE_LEFT = NDalicPINVOKE.TextField_Property_SELECTION_HANDLE_PRESSED_IMAGE_LEFT_get();
244 internal static readonly int SELECTION_HANDLE_PRESSED_IMAGE_RIGHT = NDalicPINVOKE.TextField_Property_SELECTION_HANDLE_PRESSED_IMAGE_RIGHT_get();
245 internal static readonly int SELECTION_HANDLE_MARKER_IMAGE_LEFT = NDalicPINVOKE.TextField_Property_SELECTION_HANDLE_MARKER_IMAGE_LEFT_get();
246 internal static readonly int SELECTION_HANDLE_MARKER_IMAGE_RIGHT = NDalicPINVOKE.TextField_Property_SELECTION_HANDLE_MARKER_IMAGE_RIGHT_get();
247 internal static readonly int SELECTION_HIGHLIGHT_COLOR = NDalicPINVOKE.TextField_Property_SELECTION_HIGHLIGHT_COLOR_get();
248 internal static readonly int DECORATION_BOUNDING_BOX = NDalicPINVOKE.TextField_Property_DECORATION_BOUNDING_BOX_get();
249 internal static readonly int INPUT_METHOD_SETTINGS = NDalicPINVOKE.TextField_Property_INPUT_METHOD_SETTINGS_get();
250 internal static readonly int INPUT_COLOR = NDalicPINVOKE.TextField_Property_INPUT_COLOR_get();
251 internal static readonly int ENABLE_MARKUP = NDalicPINVOKE.TextField_Property_ENABLE_MARKUP_get();
252 internal static readonly int INPUT_FONT_FAMILY = NDalicPINVOKE.TextField_Property_INPUT_FONT_FAMILY_get();
253 internal static readonly int INPUT_FONT_STYLE = NDalicPINVOKE.TextField_Property_INPUT_FONT_STYLE_get();
254 internal static readonly int INPUT_POINT_SIZE = NDalicPINVOKE.TextField_Property_INPUT_POINT_SIZE_get();
255 internal static readonly int UNDERLINE = NDalicPINVOKE.TextField_Property_UNDERLINE_get();
256 internal static readonly int INPUT_UNDERLINE = NDalicPINVOKE.TextField_Property_INPUT_UNDERLINE_get();
257 internal static readonly int SHADOW = NDalicPINVOKE.TextField_Property_SHADOW_get();
258 internal static readonly int INPUT_SHADOW = NDalicPINVOKE.TextField_Property_INPUT_SHADOW_get();
259 internal static readonly int EMBOSS = NDalicPINVOKE.TextField_Property_EMBOSS_get();
260 internal static readonly int INPUT_EMBOSS = NDalicPINVOKE.TextField_Property_INPUT_EMBOSS_get();
261 internal static readonly int OUTLINE = NDalicPINVOKE.TextField_Property_OUTLINE_get();
262 internal static readonly int INPUT_OUTLINE = NDalicPINVOKE.TextField_Property_INPUT_OUTLINE_get();
263 internal static readonly int HIDDEN_INPUT_SETTINGS = NDalicManualPINVOKE.TextField_Property_HIDDEN_INPUT_SETTINGS_get();
264 internal static readonly int PIXEL_SIZE = NDalicManualPINVOKE.TextField_Property_PIXEL_SIZE_get();
265 internal static readonly int ENABLE_SELECTION = NDalicManualPINVOKE.TextField_Property_ENABLE_SELECTION_get();
266 internal static readonly int PLACEHOLDER = NDalicManualPINVOKE.TextField_Property_PLACEHOLDER_get();
270 internal class InputStyle
288 /// Creates the TextField control.
290 public TextField() : this(NDalicPINVOKE.TextField_New(), true)
292 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
295 internal TextField(TextField handle) : this(NDalicPINVOKE.new_TextField__SWIG_1(TextField.getCPtr(handle)), true)
297 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
300 [Obsolete("Please do not use! this will be deprecated")]
301 public new static TextField DownCast(BaseHandle handle)
303 TextField ret = Registry.GetManagedBaseHandleFromNativePtr(handle) as TextField;
304 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
308 internal TextFieldSignal TextChangedSignal()
310 TextFieldSignal ret = new TextFieldSignal(NDalicPINVOKE.TextField_TextChangedSignal(swigCPtr), false);
311 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
315 internal TextFieldSignal MaxLengthReachedSignal()
317 TextFieldSignal ret = new TextFieldSignal(NDalicPINVOKE.TextField_MaxLengthReachedSignal(swigCPtr), false);
318 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
322 internal SWIGTYPE_p_Dali__SignalT_void_fDali__Toolkit__TextField_Dali__Toolkit__TextField__InputStyle__MaskF_t InputStyleChangedSignal()
324 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);
325 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
329 internal enum ExceedPolicyType
331 ExceedPolicyOriginal,
336 /// TranslatableText property.<br>
337 /// The text can be set SID value.<br>
339 /// <exception cref='ArgumentNullException'>
340 /// ResourceManager about multilingual is null
342 public string TranslatableText
346 return textFieldTextSid;
350 if (NUIApplication.MultilingualResourceManager == null)
352 throw new ArgumentNullException("ResourceManager about multilingual is null");
354 textFieldTextSid = value;
355 Text = SetTranslatable(textFieldTextSid);
359 /// TranslatablePlaceholderText property.<br>
360 /// The text can be set SID value.<br>
362 /// <exception cref='ArgumentNullException'>
363 /// ResourceManager about multilingual is null
365 public string TranslatablePlaceholderText
369 return textFieldPlaceHolderTextSid;
373 if (NUIApplication.MultilingualResourceManager == null)
375 throw new ArgumentNullException("ResourceManager about multilingual is null");
377 textFieldPlaceHolderTextSid = value;
378 PlaceholderText = SetTranslatable(textFieldPlaceHolderTextSid);
381 private string SetTranslatable(string textFieldSid)
383 string translatableText = null;
384 translatableText = NUIApplication.MultilingualResourceManager?.GetString(textFieldSid, new CultureInfo(SystemSettings.LocaleLanguage.Replace("_", "-")));
385 if (translatableText != null)
387 if (systemlangTextFlag == false)
389 SystemSettings.LocaleLanguageChanged += new WeakEventHandler<LocaleLanguageChangedEventArgs>(SystemSettings_LocaleLanguageChanged).Handler;
390 systemlangTextFlag = true;
392 return translatableText;
396 translatableText = "";
397 return translatableText;
400 private void SystemSettings_LocaleLanguageChanged(object sender, LocaleLanguageChangedEventArgs e)
402 if (textFieldTextSid != null)
404 Text = NUIApplication.MultilingualResourceManager?.GetString(textFieldTextSid, new CultureInfo(e.Value.Replace("_", "-")));
406 if (textFieldPlaceHolderTextSid != null)
408 PlaceholderText = NUIApplication.MultilingualResourceManager?.GetString(textFieldPlaceHolderTextSid, new CultureInfo(e.Value.Replace("_", "-")));
418 GetProperty(TextField.Property.TEXT).Get(out temp);
423 SetProperty(TextField.Property.TEXT, new Tizen.NUI.PropertyValue(value));
428 /// PlaceholderText property.
430 public string PlaceholderText
435 GetProperty(TextField.Property.PLACEHOLDER_TEXT).Get(out temp);
440 SetProperty(TextField.Property.PLACEHOLDER_TEXT, new Tizen.NUI.PropertyValue(value));
445 /// PlaceholderTextFocused property.
447 public string PlaceholderTextFocused
452 GetProperty(TextField.Property.PLACEHOLDER_TEXT_FOCUSED).Get(out temp);
457 SetProperty(TextField.Property.PLACEHOLDER_TEXT_FOCUSED, new Tizen.NUI.PropertyValue(value));
462 /// FontFamily property.
464 public string FontFamily
469 GetProperty(TextField.Property.FONT_FAMILY).Get(out temp);
474 SetProperty(TextField.Property.FONT_FAMILY, new Tizen.NUI.PropertyValue(value));
479 /// FontStyle property.
481 public PropertyMap FontStyle
485 PropertyMap temp = new PropertyMap();
486 GetProperty(TextField.Property.FONT_STYLE).Get(temp);
491 SetProperty(TextField.Property.FONT_STYLE, new Tizen.NUI.PropertyValue(value));
496 /// PointSize property.
498 public float PointSize
503 GetProperty(TextField.Property.POINT_SIZE).Get(out temp);
508 SetProperty(TextField.Property.POINT_SIZE, new Tizen.NUI.PropertyValue(value));
513 /// MaxLength property.
520 GetProperty(TextField.Property.MAX_LENGTH).Get(out temp);
525 SetProperty(TextField.Property.MAX_LENGTH, new Tizen.NUI.PropertyValue(value));
530 /// ExceedPolicy property.
532 public int ExceedPolicy
537 GetProperty(TextField.Property.EXCEED_POLICY).Get(out temp);
542 SetProperty(TextField.Property.EXCEED_POLICY, new Tizen.NUI.PropertyValue(value));
547 /// HorizontalAlignment property.
549 public HorizontalAlignment HorizontalAlignment
554 if (GetProperty(TextField.Property.HORIZONTAL_ALIGNMENT).Get(out temp) == false)
556 NUILog.Error("HorizontalAlignment get error!");
562 return HorizontalAlignment.Begin;
564 return HorizontalAlignment.Center;
566 return HorizontalAlignment.End;
568 return HorizontalAlignment.Begin;
573 string valueToString = "";
576 case HorizontalAlignment.Begin:
578 valueToString = "BEGIN";
581 case HorizontalAlignment.Center:
583 valueToString = "CENTER";
586 case HorizontalAlignment.End:
588 valueToString = "END";
593 valueToString = "BEGIN";
597 SetProperty(TextField.Property.HORIZONTAL_ALIGNMENT, new Tizen.NUI.PropertyValue(valueToString));
602 /// VerticalAlignment property.
604 public VerticalAlignment VerticalAlignment
609 if (GetProperty(TextField.Property.VERTICAL_ALIGNMENT).Get(out temp) == false)
611 NUILog.Error("VerticalAlignment get error!");
617 return VerticalAlignment.Top;
619 return VerticalAlignment.Center;
621 return VerticalAlignment.Bottom;
623 return VerticalAlignment.Bottom;
628 string valueToString = "";
631 case VerticalAlignment.Top:
633 valueToString = "TOP";
636 case VerticalAlignment.Center:
638 valueToString = "CENTER";
641 case VerticalAlignment.Bottom:
643 valueToString = "BOTTOM";
648 valueToString = "BOTTOM";
652 SetProperty(TextField.Property.VERTICAL_ALIGNMENT, new Tizen.NUI.PropertyValue(valueToString));
657 /// TextColor property.
659 public Color TextColor
663 Color temp = new Color(0.0f, 0.0f, 0.0f, 0.0f);
664 GetProperty(TextField.Property.TEXT_COLOR).Get(temp);
669 SetProperty(TextField.Property.TEXT_COLOR, new Tizen.NUI.PropertyValue(value));
674 /// PlaceholderTextColor property.
676 public Vector4 PlaceholderTextColor
680 Vector4 temp = new Vector4(0.0f, 0.0f, 0.0f, 0.0f);
681 GetProperty(TextField.Property.PLACEHOLDER_TEXT_COLOR).Get(temp);
686 SetProperty(TextField.Property.PLACEHOLDER_TEXT_COLOR, new Tizen.NUI.PropertyValue(value));
691 /// ShadowOffset property.
693 public Vector2 ShadowOffset
697 Vector2 temp = new Vector2(0.0f, 0.0f);
698 GetProperty(TextField.Property.SHADOW_OFFSET).Get(temp);
703 SetProperty(TextField.Property.SHADOW_OFFSET, new Tizen.NUI.PropertyValue(value));
708 /// ShadowColor property.
710 public Vector4 ShadowColor
714 Vector4 temp = new Vector4(0.0f, 0.0f, 0.0f, 0.0f);
715 GetProperty(TextField.Property.SHADOW_COLOR).Get(temp);
720 SetProperty(TextField.Property.SHADOW_COLOR, new Tizen.NUI.PropertyValue(value));
725 /// PrimaryCursorColor property.
727 public Vector4 PrimaryCursorColor
731 Vector4 temp = new Vector4(0.0f, 0.0f, 0.0f, 0.0f);
732 GetProperty(TextField.Property.PRIMARY_CURSOR_COLOR).Get(temp);
737 SetProperty(TextField.Property.PRIMARY_CURSOR_COLOR, new Tizen.NUI.PropertyValue(value));
742 /// SecondaryCursorColor property.
744 public Vector4 SecondaryCursorColor
748 Vector4 temp = new Vector4(0.0f, 0.0f, 0.0f, 0.0f);
749 GetProperty(TextField.Property.SECONDARY_CURSOR_COLOR).Get(temp);
754 SetProperty(TextField.Property.SECONDARY_CURSOR_COLOR, new Tizen.NUI.PropertyValue(value));
759 /// EnableCursorBlink property.
761 public bool EnableCursorBlink
766 GetProperty(TextField.Property.ENABLE_CURSOR_BLINK).Get(out temp);
771 SetProperty(TextField.Property.ENABLE_CURSOR_BLINK, new Tizen.NUI.PropertyValue(value));
776 /// CursorBlinkInterval property.
778 public float CursorBlinkInterval
783 GetProperty(TextField.Property.CURSOR_BLINK_INTERVAL).Get(out temp);
788 SetProperty(TextField.Property.CURSOR_BLINK_INTERVAL, new Tizen.NUI.PropertyValue(value));
793 /// CursorBlinkDuration property.
795 public float CursorBlinkDuration
800 GetProperty(TextField.Property.CURSOR_BLINK_DURATION).Get(out temp);
805 SetProperty(TextField.Property.CURSOR_BLINK_DURATION, new Tizen.NUI.PropertyValue(value));
810 /// CursorWidth property.
812 public int CursorWidth
817 GetProperty(TextField.Property.CURSOR_WIDTH).Get(out temp);
822 SetProperty(TextField.Property.CURSOR_WIDTH, new Tizen.NUI.PropertyValue(value));
827 /// GrabHandleImage property.
829 public string GrabHandleImage
834 GetProperty(TextField.Property.GRAB_HANDLE_IMAGE).Get(out temp);
839 SetProperty(TextField.Property.GRAB_HANDLE_IMAGE, new Tizen.NUI.PropertyValue(value));
844 /// GrabHandlePressedImage property.
846 public string GrabHandlePressedImage
851 GetProperty(TextField.Property.GRAB_HANDLE_PRESSED_IMAGE).Get(out temp);
856 SetProperty(TextField.Property.GRAB_HANDLE_PRESSED_IMAGE, new Tizen.NUI.PropertyValue(value));
861 /// ScrollThreshold property.
863 public float ScrollThreshold
868 GetProperty(TextField.Property.SCROLL_THRESHOLD).Get(out temp);
873 SetProperty(TextField.Property.SCROLL_THRESHOLD, new Tizen.NUI.PropertyValue(value));
878 /// ScrollSpeed property.
880 public float ScrollSpeed
885 GetProperty(TextField.Property.SCROLL_SPEED).Get(out temp);
890 SetProperty(TextField.Property.SCROLL_SPEED, new Tizen.NUI.PropertyValue(value));
895 /// SelectionHandleImageLeft property.
897 public PropertyMap SelectionHandleImageLeft
901 PropertyMap temp = new PropertyMap();
902 GetProperty(TextField.Property.SELECTION_HANDLE_IMAGE_LEFT).Get(temp);
907 SetProperty(TextField.Property.SELECTION_HANDLE_IMAGE_LEFT, new Tizen.NUI.PropertyValue(value));
912 /// SelectionHandleImageRight property.
914 public PropertyMap SelectionHandleImageRight
918 PropertyMap temp = new PropertyMap();
919 GetProperty(TextField.Property.SELECTION_HANDLE_IMAGE_RIGHT).Get(temp);
924 SetProperty(TextField.Property.SELECTION_HANDLE_IMAGE_RIGHT, new Tizen.NUI.PropertyValue(value));
929 /// SelectionHandlePressedImageLeft property.
931 public PropertyMap SelectionHandlePressedImageLeft
935 PropertyMap temp = new PropertyMap();
936 GetProperty(TextField.Property.SELECTION_HANDLE_PRESSED_IMAGE_LEFT).Get(temp);
941 SetProperty(TextField.Property.SELECTION_HANDLE_PRESSED_IMAGE_LEFT, new Tizen.NUI.PropertyValue(value));
946 /// SelectionHandlePressedImageRight property.
948 public PropertyMap SelectionHandlePressedImageRight
952 PropertyMap temp = new PropertyMap();
953 GetProperty(TextField.Property.SELECTION_HANDLE_PRESSED_IMAGE_RIGHT).Get(temp);
958 SetProperty(TextField.Property.SELECTION_HANDLE_PRESSED_IMAGE_RIGHT, new Tizen.NUI.PropertyValue(value));
963 /// SelectionHandleMarkerImageLeft property.
965 public PropertyMap SelectionHandleMarkerImageLeft
969 PropertyMap temp = new PropertyMap();
970 GetProperty(TextField.Property.SELECTION_HANDLE_MARKER_IMAGE_LEFT).Get(temp);
975 SetProperty(TextField.Property.SELECTION_HANDLE_MARKER_IMAGE_LEFT, new Tizen.NUI.PropertyValue(value));
980 /// SelectionHandleMarkerImageRight property.
982 public PropertyMap SelectionHandleMarkerImageRight
986 PropertyMap temp = new PropertyMap();
987 GetProperty(TextField.Property.SELECTION_HANDLE_MARKER_IMAGE_RIGHT).Get(temp);
992 SetProperty(TextField.Property.SELECTION_HANDLE_MARKER_IMAGE_RIGHT, new Tizen.NUI.PropertyValue(value));
997 /// SelectionHighlightColor property.
999 public Vector4 SelectionHighlightColor
1003 Vector4 temp = new Vector4(0.0f, 0.0f, 0.0f, 0.0f);
1004 GetProperty(TextField.Property.SELECTION_HIGHLIGHT_COLOR).Get(temp);
1009 SetProperty(TextField.Property.SELECTION_HIGHLIGHT_COLOR, new Tizen.NUI.PropertyValue(value));
1014 /// DecorationBoundingBox property.
1016 public Rectangle DecorationBoundingBox
1020 Rectangle temp = new Rectangle(0, 0, 0, 0);
1021 GetProperty(TextField.Property.DECORATION_BOUNDING_BOX).Get(temp);
1026 SetProperty(TextField.Property.DECORATION_BOUNDING_BOX, new Tizen.NUI.PropertyValue(value));
1031 /// InputMethodSettings property.
1033 public PropertyMap InputMethodSettings
1037 PropertyMap temp = new PropertyMap();
1038 GetProperty(TextField.Property.INPUT_METHOD_SETTINGS).Get(temp);
1043 SetProperty(TextField.Property.INPUT_METHOD_SETTINGS, new Tizen.NUI.PropertyValue(value));
1048 /// InputColor property.
1050 public Vector4 InputColor
1054 Vector4 temp = new Vector4(0.0f, 0.0f, 0.0f, 0.0f);
1055 GetProperty(TextField.Property.INPUT_COLOR).Get(temp);
1060 SetProperty(TextField.Property.INPUT_COLOR, new Tizen.NUI.PropertyValue(value));
1065 /// EnableMarkup property.
1067 public bool EnableMarkup
1072 GetProperty(TextField.Property.ENABLE_MARKUP).Get(out temp);
1077 SetProperty(TextField.Property.ENABLE_MARKUP, new Tizen.NUI.PropertyValue(value));
1082 /// InputFontFamily property.
1084 public string InputFontFamily
1089 GetProperty(TextField.Property.INPUT_FONT_FAMILY).Get(out temp);
1094 SetProperty(TextField.Property.INPUT_FONT_FAMILY, new Tizen.NUI.PropertyValue(value));
1099 /// InputFontStyle property.
1101 public PropertyMap InputFontStyle
1105 PropertyMap temp = new PropertyMap();
1106 GetProperty(TextField.Property.INPUT_FONT_STYLE).Get(temp);
1111 SetProperty(TextField.Property.INPUT_FONT_STYLE, new Tizen.NUI.PropertyValue(value));
1116 /// InputPointSize property.
1118 public float InputPointSize
1123 GetProperty(TextField.Property.INPUT_POINT_SIZE).Get(out temp);
1128 SetProperty(TextField.Property.INPUT_POINT_SIZE, new Tizen.NUI.PropertyValue(value));
1133 /// Underline property.
1135 public PropertyMap Underline
1139 PropertyMap temp = new PropertyMap();
1140 GetProperty(TextField.Property.UNDERLINE).Get(temp);
1145 SetProperty(TextField.Property.UNDERLINE, new Tizen.NUI.PropertyValue(value));
1150 /// InputUnderline property.
1152 public string InputUnderline
1157 GetProperty(TextField.Property.INPUT_UNDERLINE).Get(out temp);
1162 SetProperty(TextField.Property.INPUT_UNDERLINE, new Tizen.NUI.PropertyValue(value));
1167 /// Shadow property.
1169 public PropertyMap Shadow
1173 PropertyMap temp = new PropertyMap();
1174 GetProperty(TextField.Property.SHADOW).Get(temp);
1179 SetProperty(TextField.Property.SHADOW, new Tizen.NUI.PropertyValue(value));
1184 /// InputShadow property.
1186 public string InputShadow
1191 GetProperty(TextField.Property.INPUT_SHADOW).Get(out temp);
1196 SetProperty(TextField.Property.INPUT_SHADOW, new Tizen.NUI.PropertyValue(value));
1201 /// Emboss property.
1203 public string Emboss
1208 GetProperty(TextField.Property.EMBOSS).Get(out temp);
1213 SetProperty(TextField.Property.EMBOSS, new Tizen.NUI.PropertyValue(value));
1218 /// InputEmboss property.
1220 public string InputEmboss
1225 GetProperty(TextField.Property.INPUT_EMBOSS).Get(out temp);
1230 SetProperty(TextField.Property.INPUT_EMBOSS, new Tizen.NUI.PropertyValue(value));
1235 /// Outline property.
1237 public string Outline
1242 GetProperty(TextField.Property.OUTLINE).Get(out temp);
1247 SetProperty(TextField.Property.OUTLINE, new Tizen.NUI.PropertyValue(value));
1252 /// InputOutline property.
1254 public string InputOutline
1259 GetProperty(TextField.Property.INPUT_OUTLINE).Get(out temp);
1264 SetProperty(TextField.Property.INPUT_OUTLINE, new Tizen.NUI.PropertyValue(value));
1269 /// HiddenInputSettings property.
1271 public Tizen.NUI.PropertyMap HiddenInputSettings
1275 Tizen.NUI.PropertyMap temp = new Tizen.NUI.PropertyMap();
1276 GetProperty(TextField.Property.HIDDEN_INPUT_SETTINGS).Get(temp);
1281 SetProperty(TextField.Property.HIDDEN_INPUT_SETTINGS, new Tizen.NUI.PropertyValue(value));
1286 /// PixelSize property.
1288 public float PixelSize
1293 GetProperty(TextField.Property.PIXEL_SIZE).Get(out temp);
1298 SetProperty(TextField.Property.PIXEL_SIZE, new Tizen.NUI.PropertyValue(value));
1303 /// Enable selection property.
1305 public bool EnableSelection
1310 GetProperty(TextField.Property.ENABLE_SELECTION).Get(out temp);
1315 SetProperty(TextField.Property.ENABLE_SELECTION, new Tizen.NUI.PropertyValue(value));
1320 /// Placeholder property.
1321 /// Gets/Sets the placeholder : text, color, font family, font style, point size, and pixel size.
1324 /// The following example demonstrates how to set the placeholder property.
1326 /// PropertyMap propertyMap = new PropertyMap();
1327 /// propertyMap.Add("placeholderText", new PropertyValue("Setting Placeholder Text"));
1328 /// propertyMap.Add("placeholderColor", new PropertyValue(Color.Red));
1329 /// propertyMap.Add("placeholderFontFamily", new PropertyValue("Arial"));
1330 /// propertyMap.Add("placeholderPointSize", new PropertyValue(12.0f));
1332 /// PropertyMap fontStyleMap = new PropertyMap();
1333 /// fontStyleMap.Add("weight", new PropertyValue("bold"));
1334 /// fontStyleMap.Add("width", new PropertyValue("condensed"));
1335 /// fontStyleMap.Add("slant", new PropertyValue("italic"));
1336 /// propertyMap.Add("placeholderFontStyle", new PropertyValue(fontStyleMap));
1338 /// TextField field = new TextField();
1339 /// field.Placeholder = propertyMap;
1342 public Tizen.NUI.PropertyMap Placeholder
1346 Tizen.NUI.PropertyMap temp = new Tizen.NUI.PropertyMap();
1347 GetProperty(TextField.Property.PLACEHOLDER).Get(temp);
1352 SetProperty(TextField.Property.PLACEHOLDER, new Tizen.NUI.PropertyValue(value));