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.
72 if (_textFieldMaxLengthReachedCallbackDelegate != null)
74 this.MaxLengthReachedSignal().Disconnect(_textFieldMaxLengthReachedCallbackDelegate);
77 if (_textFieldTextChangedCallbackDelegate != null)
79 TextChangedSignal().Disconnect(_textFieldTextChangedCallbackDelegate);
83 if (swigCPtr.Handle != global::System.IntPtr.Zero)
88 NDalicPINVOKE.delete_TextField(swigCPtr);
90 swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero);
97 /// The TextChanged event arguments.
99 /// <since_tizen> 3 </since_tizen>
100 public class TextChangedEventArgs : EventArgs
102 private TextField _textField;
107 /// <since_tizen> 3 </since_tizen>
108 public TextField TextField
122 /// The MaxLengthReached event arguments.
124 /// <since_tizen> 3 </since_tizen>
125 public class MaxLengthReachedEventArgs : EventArgs
127 private TextField _textField;
132 /// <since_tizen> 3 </since_tizen>
133 public TextField TextField
147 [UnmanagedFunctionPointer(CallingConvention.StdCall)]
148 private delegate void TextChangedCallbackDelegate(IntPtr textField);
149 private EventHandler<TextChangedEventArgs> _textFieldTextChangedEventHandler;
150 private TextChangedCallbackDelegate _textFieldTextChangedCallbackDelegate;
152 [UnmanagedFunctionPointer(CallingConvention.StdCall)]
153 private delegate void MaxLengthReachedCallbackDelegate(IntPtr textField);
154 private EventHandler<MaxLengthReachedEventArgs> _textFieldMaxLengthReachedEventHandler;
155 private MaxLengthReachedCallbackDelegate _textFieldMaxLengthReachedCallbackDelegate;
158 /// The TextChanged event.
160 /// <since_tizen> 3 </since_tizen>
161 public event EventHandler<TextChangedEventArgs> TextChanged
165 if (_textFieldTextChangedEventHandler == null)
167 _textFieldTextChangedCallbackDelegate = (OnTextChanged);
168 TextChangedSignal().Connect(_textFieldTextChangedCallbackDelegate);
170 _textFieldTextChangedEventHandler += value;
174 _textFieldTextChangedEventHandler -= value;
175 if (_textFieldTextChangedEventHandler == null && TextChangedSignal().Empty() == false)
177 TextChangedSignal().Disconnect(_textFieldTextChangedCallbackDelegate);
182 private void OnTextChanged(IntPtr textField)
184 TextChangedEventArgs e = new TextChangedEventArgs();
186 // Populate all members of "e" (TextChangedEventArgs) with real data
187 e.TextField = Registry.GetManagedBaseHandleFromNativePtr(textField) as TextField;
189 if (_textFieldTextChangedEventHandler != null)
191 //here we send all data to user event handlers
192 _textFieldTextChangedEventHandler(this, e);
198 /// The MaxLengthReached event.
200 /// <since_tizen> 3 </since_tizen>
201 public event EventHandler<MaxLengthReachedEventArgs> MaxLengthReached
205 if (_textFieldMaxLengthReachedEventHandler == null)
207 _textFieldMaxLengthReachedCallbackDelegate = (OnMaxLengthReached);
208 MaxLengthReachedSignal().Connect(_textFieldMaxLengthReachedCallbackDelegate);
210 _textFieldMaxLengthReachedEventHandler += value;
214 if (_textFieldMaxLengthReachedEventHandler == null && MaxLengthReachedSignal().Empty() == false)
216 this.MaxLengthReachedSignal().Disconnect(_textFieldMaxLengthReachedCallbackDelegate);
218 _textFieldMaxLengthReachedEventHandler -= value;
222 private void OnMaxLengthReached(IntPtr textField)
224 MaxLengthReachedEventArgs e = new MaxLengthReachedEventArgs();
226 // Populate all members of "e" (MaxLengthReachedEventArgs) with real data
227 e.TextField = Registry.GetManagedBaseHandleFromNativePtr(textField) as TextField;
229 if (_textFieldMaxLengthReachedEventHandler != null)
231 //here we send all data to user event handlers
232 _textFieldMaxLengthReachedEventHandler(this, e);
237 internal new class Property
239 internal static readonly int RENDERING_BACKEND = NDalicPINVOKE.TextField_Property_RENDERING_BACKEND_get();
240 internal static readonly int TEXT = NDalicPINVOKE.TextField_Property_TEXT_get();
241 internal static readonly int PLACEHOLDER_TEXT = NDalicPINVOKE.TextField_Property_PLACEHOLDER_TEXT_get();
242 internal static readonly int PLACEHOLDER_TEXT_FOCUSED = NDalicPINVOKE.TextField_Property_PLACEHOLDER_TEXT_FOCUSED_get();
243 internal static readonly int FONT_FAMILY = NDalicPINVOKE.TextField_Property_FONT_FAMILY_get();
244 internal static readonly int FONT_STYLE = NDalicPINVOKE.TextField_Property_FONT_STYLE_get();
245 internal static readonly int POINT_SIZE = NDalicPINVOKE.TextField_Property_POINT_SIZE_get();
246 internal static readonly int MAX_LENGTH = NDalicPINVOKE.TextField_Property_MAX_LENGTH_get();
247 internal static readonly int EXCEED_POLICY = NDalicPINVOKE.TextField_Property_EXCEED_POLICY_get();
248 internal static readonly int HORIZONTAL_ALIGNMENT = NDalicPINVOKE.TextField_Property_HORIZONTAL_ALIGNMENT_get();
249 internal static readonly int VERTICAL_ALIGNMENT = NDalicPINVOKE.TextField_Property_VERTICAL_ALIGNMENT_get();
250 internal static readonly int TEXT_COLOR = NDalicPINVOKE.TextField_Property_TEXT_COLOR_get();
251 internal static readonly int PLACEHOLDER_TEXT_COLOR = NDalicPINVOKE.TextField_Property_PLACEHOLDER_TEXT_COLOR_get();
252 internal static readonly int SHADOW_OFFSET = NDalicPINVOKE.TextField_Property_SHADOW_OFFSET_get();
253 internal static readonly int SHADOW_COLOR = NDalicPINVOKE.TextField_Property_SHADOW_COLOR_get();
254 internal static readonly int PRIMARY_CURSOR_COLOR = NDalicPINVOKE.TextField_Property_PRIMARY_CURSOR_COLOR_get();
255 internal static readonly int SECONDARY_CURSOR_COLOR = NDalicPINVOKE.TextField_Property_SECONDARY_CURSOR_COLOR_get();
256 internal static readonly int ENABLE_CURSOR_BLINK = NDalicPINVOKE.TextField_Property_ENABLE_CURSOR_BLINK_get();
257 internal static readonly int CURSOR_BLINK_INTERVAL = NDalicPINVOKE.TextField_Property_CURSOR_BLINK_INTERVAL_get();
258 internal static readonly int CURSOR_BLINK_DURATION = NDalicPINVOKE.TextField_Property_CURSOR_BLINK_DURATION_get();
259 internal static readonly int CURSOR_WIDTH = NDalicPINVOKE.TextField_Property_CURSOR_WIDTH_get();
260 internal static readonly int GRAB_HANDLE_IMAGE = NDalicPINVOKE.TextField_Property_GRAB_HANDLE_IMAGE_get();
261 internal static readonly int GRAB_HANDLE_PRESSED_IMAGE = NDalicPINVOKE.TextField_Property_GRAB_HANDLE_PRESSED_IMAGE_get();
262 internal static readonly int SCROLL_THRESHOLD = NDalicPINVOKE.TextField_Property_SCROLL_THRESHOLD_get();
263 internal static readonly int SCROLL_SPEED = NDalicPINVOKE.TextField_Property_SCROLL_SPEED_get();
264 internal static readonly int SELECTION_HANDLE_IMAGE_LEFT = NDalicPINVOKE.TextField_Property_SELECTION_HANDLE_IMAGE_LEFT_get();
265 internal static readonly int SELECTION_HANDLE_IMAGE_RIGHT = NDalicPINVOKE.TextField_Property_SELECTION_HANDLE_IMAGE_RIGHT_get();
266 internal static readonly int SELECTION_HANDLE_PRESSED_IMAGE_LEFT = NDalicPINVOKE.TextField_Property_SELECTION_HANDLE_PRESSED_IMAGE_LEFT_get();
267 internal static readonly int SELECTION_HANDLE_PRESSED_IMAGE_RIGHT = NDalicPINVOKE.TextField_Property_SELECTION_HANDLE_PRESSED_IMAGE_RIGHT_get();
268 internal static readonly int SELECTION_HANDLE_MARKER_IMAGE_LEFT = NDalicPINVOKE.TextField_Property_SELECTION_HANDLE_MARKER_IMAGE_LEFT_get();
269 internal static readonly int SELECTION_HANDLE_MARKER_IMAGE_RIGHT = NDalicPINVOKE.TextField_Property_SELECTION_HANDLE_MARKER_IMAGE_RIGHT_get();
270 internal static readonly int SELECTION_HIGHLIGHT_COLOR = NDalicPINVOKE.TextField_Property_SELECTION_HIGHLIGHT_COLOR_get();
271 internal static readonly int DECORATION_BOUNDING_BOX = NDalicPINVOKE.TextField_Property_DECORATION_BOUNDING_BOX_get();
272 internal static readonly int INPUT_METHOD_SETTINGS = NDalicPINVOKE.TextField_Property_INPUT_METHOD_SETTINGS_get();
273 internal static readonly int INPUT_COLOR = NDalicPINVOKE.TextField_Property_INPUT_COLOR_get();
274 internal static readonly int ENABLE_MARKUP = NDalicPINVOKE.TextField_Property_ENABLE_MARKUP_get();
275 internal static readonly int INPUT_FONT_FAMILY = NDalicPINVOKE.TextField_Property_INPUT_FONT_FAMILY_get();
276 internal static readonly int INPUT_FONT_STYLE = NDalicPINVOKE.TextField_Property_INPUT_FONT_STYLE_get();
277 internal static readonly int INPUT_POINT_SIZE = NDalicPINVOKE.TextField_Property_INPUT_POINT_SIZE_get();
278 internal static readonly int UNDERLINE = NDalicPINVOKE.TextField_Property_UNDERLINE_get();
279 internal static readonly int INPUT_UNDERLINE = NDalicPINVOKE.TextField_Property_INPUT_UNDERLINE_get();
280 internal static readonly int SHADOW = NDalicPINVOKE.TextField_Property_SHADOW_get();
281 internal static readonly int INPUT_SHADOW = NDalicPINVOKE.TextField_Property_INPUT_SHADOW_get();
282 internal static readonly int EMBOSS = NDalicPINVOKE.TextField_Property_EMBOSS_get();
283 internal static readonly int INPUT_EMBOSS = NDalicPINVOKE.TextField_Property_INPUT_EMBOSS_get();
284 internal static readonly int OUTLINE = NDalicPINVOKE.TextField_Property_OUTLINE_get();
285 internal static readonly int INPUT_OUTLINE = NDalicPINVOKE.TextField_Property_INPUT_OUTLINE_get();
286 internal static readonly int HIDDEN_INPUT_SETTINGS = NDalicManualPINVOKE.TextField_Property_HIDDEN_INPUT_SETTINGS_get();
287 internal static readonly int PIXEL_SIZE = NDalicManualPINVOKE.TextField_Property_PIXEL_SIZE_get();
288 internal static readonly int ENABLE_SELECTION = NDalicManualPINVOKE.TextField_Property_ENABLE_SELECTION_get();
289 internal static readonly int PLACEHOLDER = NDalicManualPINVOKE.TextField_Property_PLACEHOLDER_get();
290 internal static readonly int ELLIPSIS = NDalicManualPINVOKE.TextField_Property_ELLIPSIS_get();
291 internal static readonly int ENABLE_SHIFT_SELECTION = NDalicManualPINVOKE.TextField_Property_ENABLE_SHIFT_SELECTION_get();
294 internal class InputStyle
312 /// Creates the TextField control.
314 /// <since_tizen> 3 </since_tizen>
315 public TextField() : this(NDalicPINVOKE.TextField_New(), true)
317 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
320 internal TextField(TextField handle) : this(NDalicPINVOKE.new_TextField__SWIG_1(TextField.getCPtr(handle)), true)
322 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
325 internal TextFieldSignal TextChangedSignal()
327 TextFieldSignal ret = new TextFieldSignal(NDalicPINVOKE.TextField_TextChangedSignal(swigCPtr), false);
328 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
332 internal TextFieldSignal MaxLengthReachedSignal()
334 TextFieldSignal ret = new TextFieldSignal(NDalicPINVOKE.TextField_MaxLengthReachedSignal(swigCPtr), false);
335 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
339 internal SWIGTYPE_p_Dali__SignalT_void_fDali__Toolkit__TextField_Dali__Toolkit__TextField__InputStyle__MaskF_t InputStyleChangedSignal()
341 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);
342 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
346 internal enum ExceedPolicyType
348 ExceedPolicyOriginal,
353 /// The TranslatableText property.<br />
354 /// The text can set the SID value.<br />
356 /// <exception cref='ArgumentNullException'>
357 /// ResourceManager about multilingual is null.
359 /// <since_tizen> 4 </since_tizen>
360 public string TranslatableText
364 return textFieldTextSid;
368 if (NUIApplication.MultilingualResourceManager == null)
370 throw new ArgumentNullException("ResourceManager about multilingual is null");
372 textFieldTextSid = value;
373 Text = SetTranslatable(textFieldTextSid);
377 /// The TranslatablePlaceholderText property.<br />
378 /// The text can set the SID value.<br />
380 /// <exception cref='ArgumentNullException'>
381 /// ResourceManager about multilingual is null.
383 /// <since_tizen> 4 </since_tizen>
384 public string TranslatablePlaceholderText
388 return textFieldPlaceHolderTextSid;
392 if (NUIApplication.MultilingualResourceManager == null)
394 throw new ArgumentNullException("ResourceManager about multilingual is null");
396 textFieldPlaceHolderTextSid = value;
397 PlaceholderText = SetTranslatable(textFieldPlaceHolderTextSid);
400 private string SetTranslatable(string textFieldSid)
402 string translatableText = null;
403 translatableText = NUIApplication.MultilingualResourceManager?.GetString(textFieldSid, new CultureInfo(SystemSettings.LocaleLanguage.Replace("_", "-")));
404 if (translatableText != null)
406 if (systemlangTextFlag == false)
408 SystemSettings.LocaleLanguageChanged += new WeakEventHandler<LocaleLanguageChangedEventArgs>(SystemSettings_LocaleLanguageChanged).Handler;
409 systemlangTextFlag = true;
411 return translatableText;
415 translatableText = "";
416 return translatableText;
419 private void SystemSettings_LocaleLanguageChanged(object sender, LocaleLanguageChangedEventArgs e)
421 if (textFieldTextSid != null)
423 Text = NUIApplication.MultilingualResourceManager?.GetString(textFieldTextSid, new CultureInfo(e.Value.Replace("_", "-")));
425 if (textFieldPlaceHolderTextSid != null)
427 PlaceholderText = NUIApplication.MultilingualResourceManager?.GetString(textFieldPlaceHolderTextSid, new CultureInfo(e.Value.Replace("_", "-")));
431 /// The Text property.
433 /// <since_tizen> 3 </since_tizen>
439 GetProperty(TextField.Property.TEXT).Get(out temp);
444 SetProperty(TextField.Property.TEXT, new Tizen.NUI.PropertyValue(value));
449 /// The PlaceholderText property.
451 /// <since_tizen> 3 </since_tizen>
452 public string PlaceholderText
457 GetProperty(TextField.Property.PLACEHOLDER_TEXT).Get(out temp);
462 SetProperty(TextField.Property.PLACEHOLDER_TEXT, new Tizen.NUI.PropertyValue(value));
467 /// The PlaceholderTextFocused property.
469 /// <since_tizen> 3 </since_tizen>
470 public string PlaceholderTextFocused
475 GetProperty(TextField.Property.PLACEHOLDER_TEXT_FOCUSED).Get(out temp);
480 SetProperty(TextField.Property.PLACEHOLDER_TEXT_FOCUSED, new Tizen.NUI.PropertyValue(value));
485 /// The FontFamily property.
487 /// <since_tizen> 3 </since_tizen>
488 public string FontFamily
493 GetProperty(TextField.Property.FONT_FAMILY).Get(out temp);
498 SetProperty(TextField.Property.FONT_FAMILY, new Tizen.NUI.PropertyValue(value));
503 /// The FontStyle property.
505 /// <since_tizen> 3 </since_tizen>
506 public PropertyMap FontStyle
510 PropertyMap temp = new PropertyMap();
511 GetProperty(TextField.Property.FONT_STYLE).Get(temp);
516 SetProperty(TextField.Property.FONT_STYLE, new Tizen.NUI.PropertyValue(value));
521 /// The PointSize property.
523 /// <since_tizen> 3 </since_tizen>
524 public float PointSize
529 GetProperty(TextField.Property.POINT_SIZE).Get(out temp);
534 SetProperty(TextField.Property.POINT_SIZE, new Tizen.NUI.PropertyValue(value));
539 /// The MaxLength property.
541 /// <since_tizen> 3 </since_tizen>
547 GetProperty(TextField.Property.MAX_LENGTH).Get(out temp);
552 SetProperty(TextField.Property.MAX_LENGTH, new Tizen.NUI.PropertyValue(value));
557 /// The ExceedPolicy property.
559 /// <since_tizen> 3 </since_tizen>
560 public int ExceedPolicy
565 GetProperty(TextField.Property.EXCEED_POLICY).Get(out temp);
570 SetProperty(TextField.Property.EXCEED_POLICY, new Tizen.NUI.PropertyValue(value));
575 /// The HorizontalAlignment property.
577 /// <since_tizen> 3 </since_tizen>
578 public HorizontalAlignment HorizontalAlignment
583 if (GetProperty(TextField.Property.HORIZONTAL_ALIGNMENT).Get(out temp) == false)
585 NUILog.Error("HorizontalAlignment get error!");
591 return HorizontalAlignment.Begin;
593 return HorizontalAlignment.Center;
595 return HorizontalAlignment.End;
597 return HorizontalAlignment.Begin;
602 string valueToString = "";
605 case HorizontalAlignment.Begin:
607 valueToString = "BEGIN";
610 case HorizontalAlignment.Center:
612 valueToString = "CENTER";
615 case HorizontalAlignment.End:
617 valueToString = "END";
622 valueToString = "BEGIN";
626 SetProperty(TextField.Property.HORIZONTAL_ALIGNMENT, new Tizen.NUI.PropertyValue(valueToString));
631 /// The VerticalAlignment property.
633 /// <since_tizen> 3 </since_tizen>
634 public VerticalAlignment VerticalAlignment
639 if (GetProperty(TextField.Property.VERTICAL_ALIGNMENT).Get(out temp) == false)
641 NUILog.Error("VerticalAlignment get error!");
647 return VerticalAlignment.Top;
649 return VerticalAlignment.Center;
651 return VerticalAlignment.Bottom;
653 return VerticalAlignment.Bottom;
658 string valueToString = "";
661 case VerticalAlignment.Top:
663 valueToString = "TOP";
666 case VerticalAlignment.Center:
668 valueToString = "CENTER";
671 case VerticalAlignment.Bottom:
673 valueToString = "BOTTOM";
678 valueToString = "BOTTOM";
682 SetProperty(TextField.Property.VERTICAL_ALIGNMENT, new Tizen.NUI.PropertyValue(valueToString));
687 /// The TextColor property.
689 /// <since_tizen> 3 </since_tizen>
690 public Color TextColor
694 Color temp = new Color(0.0f, 0.0f, 0.0f, 0.0f);
695 GetProperty(TextField.Property.TEXT_COLOR).Get(temp);
700 SetProperty(TextField.Property.TEXT_COLOR, new Tizen.NUI.PropertyValue(value));
705 /// The PlaceholderTextColor property.
707 /// <since_tizen> 3 </since_tizen>
708 public Vector4 PlaceholderTextColor
712 Vector4 temp = new Vector4(0.0f, 0.0f, 0.0f, 0.0f);
713 GetProperty(TextField.Property.PLACEHOLDER_TEXT_COLOR).Get(temp);
718 SetProperty(TextField.Property.PLACEHOLDER_TEXT_COLOR, new Tizen.NUI.PropertyValue(value));
723 /// The ShadowOffset property.
725 /// <since_tizen> 3 </since_tizen>
726 public Vector2 ShadowOffset
730 Vector2 temp = new Vector2(0.0f, 0.0f);
731 GetProperty(TextField.Property.SHADOW_OFFSET).Get(temp);
736 SetProperty(TextField.Property.SHADOW_OFFSET, new Tizen.NUI.PropertyValue(value));
741 /// The ShadowColor property.
743 /// <since_tizen> 3 </since_tizen>
744 public Vector4 ShadowColor
748 Vector4 temp = new Vector4(0.0f, 0.0f, 0.0f, 0.0f);
749 GetProperty(TextField.Property.SHADOW_COLOR).Get(temp);
754 SetProperty(TextField.Property.SHADOW_COLOR, new Tizen.NUI.PropertyValue(value));
759 /// The PrimaryCursorColor property.
761 /// <since_tizen> 3 </since_tizen>
762 public Vector4 PrimaryCursorColor
766 Vector4 temp = new Vector4(0.0f, 0.0f, 0.0f, 0.0f);
767 GetProperty(TextField.Property.PRIMARY_CURSOR_COLOR).Get(temp);
772 SetProperty(TextField.Property.PRIMARY_CURSOR_COLOR, new Tizen.NUI.PropertyValue(value));
777 /// The SecondaryCursorColor property.
779 /// <since_tizen> 3 </since_tizen>
780 public Vector4 SecondaryCursorColor
784 Vector4 temp = new Vector4(0.0f, 0.0f, 0.0f, 0.0f);
785 GetProperty(TextField.Property.SECONDARY_CURSOR_COLOR).Get(temp);
790 SetProperty(TextField.Property.SECONDARY_CURSOR_COLOR, new Tizen.NUI.PropertyValue(value));
795 /// The EnableCursorBlink property.
797 /// <since_tizen> 3 </since_tizen>
798 public bool EnableCursorBlink
803 GetProperty(TextField.Property.ENABLE_CURSOR_BLINK).Get(out temp);
808 SetProperty(TextField.Property.ENABLE_CURSOR_BLINK, new Tizen.NUI.PropertyValue(value));
813 /// The CursorBlinkInterval property.
815 /// <since_tizen> 3 </since_tizen>
816 public float CursorBlinkInterval
821 GetProperty(TextField.Property.CURSOR_BLINK_INTERVAL).Get(out temp);
826 SetProperty(TextField.Property.CURSOR_BLINK_INTERVAL, new Tizen.NUI.PropertyValue(value));
831 /// The CursorBlinkDuration property.
833 /// <since_tizen> 3 </since_tizen>
834 public float CursorBlinkDuration
839 GetProperty(TextField.Property.CURSOR_BLINK_DURATION).Get(out temp);
844 SetProperty(TextField.Property.CURSOR_BLINK_DURATION, new Tizen.NUI.PropertyValue(value));
849 /// The CursorWidth property.
851 /// <since_tizen> 3 </since_tizen>
852 public int CursorWidth
857 GetProperty(TextField.Property.CURSOR_WIDTH).Get(out temp);
862 SetProperty(TextField.Property.CURSOR_WIDTH, new Tizen.NUI.PropertyValue(value));
867 /// The GrabHandleImage property.
869 /// <since_tizen> 3 </since_tizen>
870 public string GrabHandleImage
875 GetProperty(TextField.Property.GRAB_HANDLE_IMAGE).Get(out temp);
880 SetProperty(TextField.Property.GRAB_HANDLE_IMAGE, new Tizen.NUI.PropertyValue(value));
885 /// The GrabHandlePressedImage property.
887 /// <since_tizen> 3 </since_tizen>
888 public string GrabHandlePressedImage
893 GetProperty(TextField.Property.GRAB_HANDLE_PRESSED_IMAGE).Get(out temp);
898 SetProperty(TextField.Property.GRAB_HANDLE_PRESSED_IMAGE, new Tizen.NUI.PropertyValue(value));
903 /// The ScrollThreshold property.
905 /// <since_tizen> 3 </since_tizen>
906 public float ScrollThreshold
911 GetProperty(TextField.Property.SCROLL_THRESHOLD).Get(out temp);
916 SetProperty(TextField.Property.SCROLL_THRESHOLD, new Tizen.NUI.PropertyValue(value));
921 /// The ScrollSpeed property.
923 /// <since_tizen> 3 </since_tizen>
924 public float ScrollSpeed
929 GetProperty(TextField.Property.SCROLL_SPEED).Get(out temp);
934 SetProperty(TextField.Property.SCROLL_SPEED, new Tizen.NUI.PropertyValue(value));
939 /// The SelectionHandleImageLeft property.
941 /// <since_tizen> 3 </since_tizen>
942 public PropertyMap SelectionHandleImageLeft
946 PropertyMap temp = new PropertyMap();
947 GetProperty(TextField.Property.SELECTION_HANDLE_IMAGE_LEFT).Get(temp);
952 SetProperty(TextField.Property.SELECTION_HANDLE_IMAGE_LEFT, new Tizen.NUI.PropertyValue(value));
957 /// The SelectionHandleImageRight property.
959 /// <since_tizen> 3 </since_tizen>
960 public PropertyMap SelectionHandleImageRight
964 PropertyMap temp = new PropertyMap();
965 GetProperty(TextField.Property.SELECTION_HANDLE_IMAGE_RIGHT).Get(temp);
970 SetProperty(TextField.Property.SELECTION_HANDLE_IMAGE_RIGHT, new Tizen.NUI.PropertyValue(value));
975 /// The SelectionHandlePressedImageLeft property.
977 /// <since_tizen> 3 </since_tizen>
978 public PropertyMap SelectionHandlePressedImageLeft
982 PropertyMap temp = new PropertyMap();
983 GetProperty(TextField.Property.SELECTION_HANDLE_PRESSED_IMAGE_LEFT).Get(temp);
988 SetProperty(TextField.Property.SELECTION_HANDLE_PRESSED_IMAGE_LEFT, new Tizen.NUI.PropertyValue(value));
993 /// The SelectionHandlePressedImageRight property.
995 /// <since_tizen> 3 </since_tizen>
996 public PropertyMap SelectionHandlePressedImageRight
1000 PropertyMap temp = new PropertyMap();
1001 GetProperty(TextField.Property.SELECTION_HANDLE_PRESSED_IMAGE_RIGHT).Get(temp);
1006 SetProperty(TextField.Property.SELECTION_HANDLE_PRESSED_IMAGE_RIGHT, new Tizen.NUI.PropertyValue(value));
1011 /// The SelectionHandleMarkerImageLeft property.
1013 /// <since_tizen> 3 </since_tizen>
1014 public PropertyMap SelectionHandleMarkerImageLeft
1018 PropertyMap temp = new PropertyMap();
1019 GetProperty(TextField.Property.SELECTION_HANDLE_MARKER_IMAGE_LEFT).Get(temp);
1024 SetProperty(TextField.Property.SELECTION_HANDLE_MARKER_IMAGE_LEFT, new Tizen.NUI.PropertyValue(value));
1029 /// The SelectionHandleMarkerImageRight property.
1031 /// <since_tizen> 3 </since_tizen>
1032 public PropertyMap SelectionHandleMarkerImageRight
1036 PropertyMap temp = new PropertyMap();
1037 GetProperty(TextField.Property.SELECTION_HANDLE_MARKER_IMAGE_RIGHT).Get(temp);
1042 SetProperty(TextField.Property.SELECTION_HANDLE_MARKER_IMAGE_RIGHT, new Tizen.NUI.PropertyValue(value));
1047 /// The SelectionHighlightColor property.
1049 /// <since_tizen> 3 </since_tizen>
1050 public Vector4 SelectionHighlightColor
1054 Vector4 temp = new Vector4(0.0f, 0.0f, 0.0f, 0.0f);
1055 GetProperty(TextField.Property.SELECTION_HIGHLIGHT_COLOR).Get(temp);
1060 SetProperty(TextField.Property.SELECTION_HIGHLIGHT_COLOR, new Tizen.NUI.PropertyValue(value));
1065 /// The DecorationBoundingBox property.
1067 /// <since_tizen> 3 </since_tizen>
1068 public Rectangle DecorationBoundingBox
1072 Rectangle temp = new Rectangle(0, 0, 0, 0);
1073 GetProperty(TextField.Property.DECORATION_BOUNDING_BOX).Get(temp);
1078 SetProperty(TextField.Property.DECORATION_BOUNDING_BOX, new Tizen.NUI.PropertyValue(value));
1083 /// The InputMethodSettings property.
1085 /// <since_tizen> 3 </since_tizen>
1086 public PropertyMap InputMethodSettings
1090 PropertyMap temp = new PropertyMap();
1091 GetProperty(TextField.Property.INPUT_METHOD_SETTINGS).Get(temp);
1096 SetProperty(TextField.Property.INPUT_METHOD_SETTINGS, new Tizen.NUI.PropertyValue(value));
1101 /// The InputColor property.
1103 /// <since_tizen> 3 </since_tizen>
1104 public Vector4 InputColor
1108 Vector4 temp = new Vector4(0.0f, 0.0f, 0.0f, 0.0f);
1109 GetProperty(TextField.Property.INPUT_COLOR).Get(temp);
1114 SetProperty(TextField.Property.INPUT_COLOR, new Tizen.NUI.PropertyValue(value));
1119 /// The EnableMarkup property.
1121 /// <since_tizen> 3 </since_tizen>
1122 public bool EnableMarkup
1127 GetProperty(TextField.Property.ENABLE_MARKUP).Get(out temp);
1132 SetProperty(TextField.Property.ENABLE_MARKUP, new Tizen.NUI.PropertyValue(value));
1137 /// The InputFontFamily property.
1139 /// <since_tizen> 3 </since_tizen>
1140 public string InputFontFamily
1145 GetProperty(TextField.Property.INPUT_FONT_FAMILY).Get(out temp);
1150 SetProperty(TextField.Property.INPUT_FONT_FAMILY, new Tizen.NUI.PropertyValue(value));
1155 /// The InputFontStyle property.
1157 /// <since_tizen> 3 </since_tizen>
1158 public PropertyMap InputFontStyle
1162 PropertyMap temp = new PropertyMap();
1163 GetProperty(TextField.Property.INPUT_FONT_STYLE).Get(temp);
1168 SetProperty(TextField.Property.INPUT_FONT_STYLE, new Tizen.NUI.PropertyValue(value));
1173 /// The InputPointSize property.
1175 /// <since_tizen> 3 </since_tizen>
1176 public float InputPointSize
1181 GetProperty(TextField.Property.INPUT_POINT_SIZE).Get(out temp);
1186 SetProperty(TextField.Property.INPUT_POINT_SIZE, new Tizen.NUI.PropertyValue(value));
1191 /// The Underline property.
1193 /// <since_tizen> 3 </since_tizen>
1194 public PropertyMap Underline
1198 PropertyMap temp = new PropertyMap();
1199 GetProperty(TextField.Property.UNDERLINE).Get(temp);
1204 SetProperty(TextField.Property.UNDERLINE, new Tizen.NUI.PropertyValue(value));
1209 /// The InputUnderline property.
1211 /// <since_tizen> 3 </since_tizen>
1212 public string InputUnderline
1217 GetProperty(TextField.Property.INPUT_UNDERLINE).Get(out temp);
1222 SetProperty(TextField.Property.INPUT_UNDERLINE, new Tizen.NUI.PropertyValue(value));
1227 /// The Shadow property.
1229 /// <since_tizen> 3 </since_tizen>
1230 public PropertyMap Shadow
1234 PropertyMap temp = new PropertyMap();
1235 GetProperty(TextField.Property.SHADOW).Get(temp);
1240 SetProperty(TextField.Property.SHADOW, new Tizen.NUI.PropertyValue(value));
1245 /// The InputShadow property.
1247 /// <since_tizen> 3 </since_tizen>
1248 public string InputShadow
1253 GetProperty(TextField.Property.INPUT_SHADOW).Get(out temp);
1258 SetProperty(TextField.Property.INPUT_SHADOW, new Tizen.NUI.PropertyValue(value));
1263 /// The Emboss property.
1265 /// <since_tizen> 3 </since_tizen>
1266 public string Emboss
1271 GetProperty(TextField.Property.EMBOSS).Get(out temp);
1276 SetProperty(TextField.Property.EMBOSS, new Tizen.NUI.PropertyValue(value));
1281 /// The InputEmboss property.
1283 /// <since_tizen> 3 </since_tizen>
1284 public string InputEmboss
1289 GetProperty(TextField.Property.INPUT_EMBOSS).Get(out temp);
1294 SetProperty(TextField.Property.INPUT_EMBOSS, new Tizen.NUI.PropertyValue(value));
1299 /// The Outline property.
1301 /// <since_tizen> 3 </since_tizen>
1302 public PropertyMap Outline
1306 PropertyMap temp = new PropertyMap();
1307 GetProperty(TextField.Property.OUTLINE).Get(temp);
1312 SetProperty(TextField.Property.OUTLINE, new Tizen.NUI.PropertyValue(value));
1317 /// The InputOutline property.
1319 /// <since_tizen> 3 </since_tizen>
1320 public string InputOutline
1325 GetProperty(TextField.Property.INPUT_OUTLINE).Get(out temp);
1330 SetProperty(TextField.Property.INPUT_OUTLINE, new Tizen.NUI.PropertyValue(value));
1335 /// The HiddenInputSettings property.
1337 /// <since_tizen> 3 </since_tizen>
1338 public Tizen.NUI.PropertyMap HiddenInputSettings
1342 Tizen.NUI.PropertyMap temp = new Tizen.NUI.PropertyMap();
1343 GetProperty(TextField.Property.HIDDEN_INPUT_SETTINGS).Get(temp);
1348 SetProperty(TextField.Property.HIDDEN_INPUT_SETTINGS, new Tizen.NUI.PropertyValue(value));
1353 /// The PixelSize property.
1355 /// <since_tizen> 3 </since_tizen>
1356 public float PixelSize
1361 GetProperty(TextField.Property.PIXEL_SIZE).Get(out temp);
1366 SetProperty(TextField.Property.PIXEL_SIZE, new Tizen.NUI.PropertyValue(value));
1371 /// The Enable selection property.
1373 /// <since_tizen> 3 </since_tizen>
1374 public bool EnableSelection
1379 GetProperty(TextField.Property.ENABLE_SELECTION).Get(out temp);
1384 SetProperty(TextField.Property.ENABLE_SELECTION, new Tizen.NUI.PropertyValue(value));
1389 /// The Placeholder property.
1390 /// Gets or sets the placeholder: text, color, font family, font style, point size, and pixel size.
1393 /// The following example demonstrates how to set the Placeholder property.
1395 /// PropertyMap propertyMap = new PropertyMap();
1396 /// propertyMap.Add("text", new PropertyValue("Setting Placeholder Text"));
1397 /// propertyMap.Add("textFocused", new PropertyValue("Setting Placeholder Text Focused"));
1398 /// propertyMap.Add("color", new PropertyValue(Color.Red));
1399 /// propertyMap.Add("fontFamily", new PropertyValue("Arial"));
1400 /// propertyMap.Add("pointSize", new PropertyValue(12.0f));
1402 /// PropertyMap fontStyleMap = new PropertyMap();
1403 /// fontStyleMap.Add("weight", new PropertyValue("bold"));
1404 /// fontStyleMap.Add("width", new PropertyValue("condensed"));
1405 /// fontStyleMap.Add("slant", new PropertyValue("italic"));
1406 /// propertyMap.Add("fontStyle", new PropertyValue(fontStyleMap));
1408 /// TextField field = new TextField();
1409 /// field.Placeholder = propertyMap;
1412 /// <since_tizen> 3 </since_tizen>
1413 public Tizen.NUI.PropertyMap Placeholder
1417 Tizen.NUI.PropertyMap temp = new Tizen.NUI.PropertyMap();
1418 GetProperty(TextField.Property.PLACEHOLDER).Get(temp);
1423 SetProperty(TextField.Property.PLACEHOLDER, new Tizen.NUI.PropertyValue(value));
1428 /// The Ellipsis property.<br />
1429 /// Enable or disable the ellipsis.<br />
1430 /// Placeholder PropertyMap is used to add ellipsis to placeholder text.
1432 /// <since_tizen> 4 </since_tizen>
1433 public bool Ellipsis
1438 GetProperty(TextField.Property.ELLIPSIS).Get(out temp);
1443 SetProperty(TextField.Property.ELLIPSIS, new Tizen.NUI.PropertyValue(value));
1448 /// Enables Text selection using Shift key.
1450 /// <since_tizen> 5 </since_tizen>
1451 [EditorBrowsable(EditorBrowsableState.Never)]
1452 public bool EnableShiftSelection
1456 // mShiftSelectionFlag( true )
1458 GetProperty(TextField.Property.ENABLE_SHIFT_SELECTION).Get(out temp);
1463 SetProperty(TextField.Property.ENABLE_SHIFT_SELECTION, new Tizen.NUI.PropertyValue(value));