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.
17 namespace Tizen.NUI.BaseComponents
21 using System.Runtime.InteropServices;
24 /// A control which provides a multi-line editable text editor.
26 public class TextEditor : View
28 private global::System.Runtime.InteropServices.HandleRef swigCPtr;
30 internal TextEditor(global::System.IntPtr cPtr, bool cMemoryOwn) : base(NDalicPINVOKE.TextEditor_SWIGUpcast(cPtr), cMemoryOwn)
32 swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr);
35 internal static global::System.Runtime.InteropServices.HandleRef getCPtr(TextEditor obj)
37 return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr;
43 protected override void Dispose(DisposeTypes type)
50 if(type == DisposeTypes.Explicit)
53 //Release your own managed resources here.
54 //You should release all of your own disposable objects here.
57 //Release your own unmanaged resources here.
58 //You should not access any managed member here except static instance.
59 //because the execution order of Finalizes is non-deterministic.
61 if (swigCPtr.Handle != global::System.IntPtr.Zero)
66 NDalicPINVOKE.delete_TextEditor(swigCPtr);
68 swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero);
75 /// Event arguments that passed via TextChanged signal.
77 public class TextChangedEventArgs : EventArgs
79 private TextEditor _textEditor;
82 /// TextEditor - is the texteditor control which has the text contents changed.
84 public TextEditor TextEditor
97 [UnmanagedFunctionPointer(CallingConvention.StdCall)]
98 private delegate void TextChangedCallbackDelegate(IntPtr textEditor);
99 private EventHandler<TextChangedEventArgs> _textEditorTextChangedEventHandler;
100 private TextChangedCallbackDelegate _textEditorTextChangedCallbackDelegate;
103 /// Event for TextChanged signal which can be used to subscribe/unsubscribe the event handler
104 /// provided by the user. TextChanged signal is emitted when the text changes.<br>
106 public event EventHandler<TextChangedEventArgs> TextChanged
110 if (_textEditorTextChangedEventHandler == null)
112 _textEditorTextChangedCallbackDelegate = (OnTextChanged);
113 TextChangedSignal().Connect(_textEditorTextChangedCallbackDelegate);
115 _textEditorTextChangedEventHandler += value;
119 _textEditorTextChangedEventHandler -= value;
120 if (_textEditorTextChangedEventHandler == null && TextChangedSignal().Empty() == false)
122 TextChangedSignal().Disconnect(_textEditorTextChangedCallbackDelegate);
127 private void OnTextChanged(IntPtr textEditor)
129 TextChangedEventArgs e = new TextChangedEventArgs();
131 // Populate all members of "e" (TextChangedEventArgs) with real data
132 e.TextEditor = Registry.GetManagedBaseHandleFromNativePtr(textEditor) as TextEditor;
134 if (_textEditorTextChangedEventHandler != null)
136 //here we send all data to user event handlers
137 _textEditorTextChangedEventHandler(this, e);
143 /// Event arguments that passed via ScrollStateChanged signal.
145 public class ScrollStateChangedEventArgs : EventArgs
147 private TextEditor _textEditor;
148 private ScrollState _scrollState;
151 /// TextEditor - is the texteditor control which has the scroll state changed.
153 public TextEditor TextEditor
166 /// ScrollState - is the texteditor control scroll state.
168 public ScrollState ScrollState
176 _scrollState = value;
181 [UnmanagedFunctionPointer(CallingConvention.StdCall)]
182 private delegate void ScrollStateChangedCallbackDelegate(IntPtr textEditor, ScrollState state);
183 private EventHandler<ScrollStateChangedEventArgs> _textEditorScrollStateChangedEventHandler;
184 private ScrollStateChangedCallbackDelegate _textEditorScrollStateChangedCallbackDelegate;
187 /// Event for ScrollStateChanged signal which can be used to subscribe/unsubscribe the event handler
188 /// provided by the user. ScrollStateChanged signal is emitted when the scroll state changes.<br>
190 public event EventHandler<ScrollStateChangedEventArgs> ScrollStateChanged
194 if (_textEditorScrollStateChangedEventHandler == null)
196 _textEditorScrollStateChangedCallbackDelegate = OnScrollStateChanged;
197 ScrollStateChangedSignal(this).Connect(_textEditorScrollStateChangedCallbackDelegate);
199 _textEditorScrollStateChangedEventHandler += value;
203 _textEditorScrollStateChangedEventHandler -= value;
204 if (_textEditorScrollStateChangedEventHandler == null && ScrollStateChangedSignal(this).Empty() == false)
206 ScrollStateChangedSignal(this).Disconnect(_textEditorScrollStateChangedCallbackDelegate);
211 private void OnScrollStateChanged(IntPtr textEditor, ScrollState state)
213 ScrollStateChangedEventArgs e = new ScrollStateChangedEventArgs();
215 if (textEditor != null)
217 // Populate all members of "e" (ScrollStateChangedEventArgs) with real data
218 e.TextEditor = Registry.GetManagedBaseHandleFromNativePtr(textEditor) as TextEditor;
219 e.ScrollState = state;
222 if (_textEditorScrollStateChangedEventHandler != null)
224 //here we send all data to user event handlers
225 _textEditorScrollStateChangedEventHandler(this, e);
229 internal class Property
231 internal static readonly int RENDERING_BACKEND = NDalicPINVOKE.TextEditor_Property_RENDERING_BACKEND_get();
232 internal static readonly int TEXT = NDalicPINVOKE.TextEditor_Property_TEXT_get();
233 internal static readonly int TEXT_COLOR = NDalicPINVOKE.TextEditor_Property_TEXT_COLOR_get();
234 internal static readonly int FONT_FAMILY = NDalicPINVOKE.TextEditor_Property_FONT_FAMILY_get();
235 internal static readonly int FONT_STYLE = NDalicPINVOKE.TextEditor_Property_FONT_STYLE_get();
236 internal static readonly int POINT_SIZE = NDalicPINVOKE.TextEditor_Property_POINT_SIZE_get();
237 internal static readonly int HORIZONTAL_ALIGNMENT = NDalicPINVOKE.TextEditor_Property_HORIZONTAL_ALIGNMENT_get();
238 internal static readonly int SCROLL_THRESHOLD = NDalicPINVOKE.TextEditor_Property_SCROLL_THRESHOLD_get();
239 internal static readonly int SCROLL_SPEED = NDalicPINVOKE.TextEditor_Property_SCROLL_SPEED_get();
240 internal static readonly int PRIMARY_CURSOR_COLOR = NDalicPINVOKE.TextEditor_Property_PRIMARY_CURSOR_COLOR_get();
241 internal static readonly int SECONDARY_CURSOR_COLOR = NDalicPINVOKE.TextEditor_Property_SECONDARY_CURSOR_COLOR_get();
242 internal static readonly int ENABLE_CURSOR_BLINK = NDalicPINVOKE.TextEditor_Property_ENABLE_CURSOR_BLINK_get();
243 internal static readonly int CURSOR_BLINK_INTERVAL = NDalicPINVOKE.TextEditor_Property_CURSOR_BLINK_INTERVAL_get();
244 internal static readonly int CURSOR_BLINK_DURATION = NDalicPINVOKE.TextEditor_Property_CURSOR_BLINK_DURATION_get();
245 internal static readonly int CURSOR_WIDTH = NDalicPINVOKE.TextEditor_Property_CURSOR_WIDTH_get();
246 internal static readonly int GRAB_HANDLE_IMAGE = NDalicPINVOKE.TextEditor_Property_GRAB_HANDLE_IMAGE_get();
247 internal static readonly int GRAB_HANDLE_PRESSED_IMAGE = NDalicPINVOKE.TextEditor_Property_GRAB_HANDLE_PRESSED_IMAGE_get();
248 internal static readonly int SELECTION_HANDLE_IMAGE_LEFT = NDalicPINVOKE.TextEditor_Property_SELECTION_HANDLE_IMAGE_LEFT_get();
249 internal static readonly int SELECTION_HANDLE_IMAGE_RIGHT = NDalicPINVOKE.TextEditor_Property_SELECTION_HANDLE_IMAGE_RIGHT_get();
250 internal static readonly int SELECTION_HANDLE_PRESSED_IMAGE_LEFT = NDalicPINVOKE.TextEditor_Property_SELECTION_HANDLE_PRESSED_IMAGE_LEFT_get();
251 internal static readonly int SELECTION_HANDLE_PRESSED_IMAGE_RIGHT = NDalicPINVOKE.TextEditor_Property_SELECTION_HANDLE_PRESSED_IMAGE_RIGHT_get();
252 internal static readonly int SELECTION_HANDLE_MARKER_IMAGE_LEFT = NDalicPINVOKE.TextEditor_Property_SELECTION_HANDLE_MARKER_IMAGE_LEFT_get();
253 internal static readonly int SELECTION_HANDLE_MARKER_IMAGE_RIGHT = NDalicPINVOKE.TextEditor_Property_SELECTION_HANDLE_MARKER_IMAGE_RIGHT_get();
254 internal static readonly int SELECTION_HIGHLIGHT_COLOR = NDalicPINVOKE.TextEditor_Property_SELECTION_HIGHLIGHT_COLOR_get();
255 internal static readonly int DECORATION_BOUNDING_BOX = NDalicPINVOKE.TextEditor_Property_DECORATION_BOUNDING_BOX_get();
256 internal static readonly int ENABLE_MARKUP = NDalicPINVOKE.TextEditor_Property_ENABLE_MARKUP_get();
257 internal static readonly int INPUT_COLOR = NDalicPINVOKE.TextEditor_Property_INPUT_COLOR_get();
258 internal static readonly int INPUT_FONT_FAMILY = NDalicPINVOKE.TextEditor_Property_INPUT_FONT_FAMILY_get();
259 internal static readonly int INPUT_FONT_STYLE = NDalicPINVOKE.TextEditor_Property_INPUT_FONT_STYLE_get();
260 internal static readonly int INPUT_POINT_SIZE = NDalicPINVOKE.TextEditor_Property_INPUT_POINT_SIZE_get();
261 internal static readonly int LINE_SPACING = NDalicPINVOKE.TextEditor_Property_LINE_SPACING_get();
262 internal static readonly int INPUT_LINE_SPACING = NDalicPINVOKE.TextEditor_Property_INPUT_LINE_SPACING_get();
263 internal static readonly int UNDERLINE = NDalicPINVOKE.TextEditor_Property_UNDERLINE_get();
264 internal static readonly int INPUT_UNDERLINE = NDalicPINVOKE.TextEditor_Property_INPUT_UNDERLINE_get();
265 internal static readonly int SHADOW = NDalicPINVOKE.TextEditor_Property_SHADOW_get();
266 internal static readonly int INPUT_SHADOW = NDalicPINVOKE.TextEditor_Property_INPUT_SHADOW_get();
267 internal static readonly int EMBOSS = NDalicPINVOKE.TextEditor_Property_EMBOSS_get();
268 internal static readonly int INPUT_EMBOSS = NDalicPINVOKE.TextEditor_Property_INPUT_EMBOSS_get();
269 internal static readonly int OUTLINE = NDalicPINVOKE.TextEditor_Property_OUTLINE_get();
270 internal static readonly int INPUT_OUTLINE = NDalicPINVOKE.TextEditor_Property_INPUT_OUTLINE_get();
271 internal static readonly int SMOOTH_SCROLL = NDalicManualPINVOKE.TextEditor_Property_SMOOTH_SCROLL_get();
272 internal static readonly int SMOOTH_SCROLL_DURATION = NDalicManualPINVOKE.TextEditor_Property_SMOOTH_SCROLL_DURATION_get();
273 internal static readonly int ENABLE_SCROLL_BAR = NDalicManualPINVOKE.TextEditor_Property_ENABLE_SCROLL_BAR_get();
274 internal static readonly int SCROLL_BAR_SHOW_DURATION = NDalicManualPINVOKE.TextEditor_Property_SCROLL_BAR_SHOW_DURATION_get();
275 internal static readonly int SCROLL_BAR_FADE_DURATION = NDalicManualPINVOKE.TextEditor_Property_SCROLL_BAR_FADE_DURATION_get();
276 internal static readonly int PIXEL_SIZE = NDalicManualPINVOKE.TextEditor_Property_PIXEL_SIZE_get();
277 internal static readonly int LINE_COUNT = NDalicManualPINVOKE.TextEditor_Property_LINE_COUNT_get();
278 internal static readonly int PLACEHOLDER_TEXT = NDalicManualPINVOKE.TextEditor_Property_PLACEHOLDER_TEXT_get();
279 internal static readonly int PLACEHOLDER_TEXT_COLOR = NDalicManualPINVOKE.TextEditor_Property_PLACEHOLDER_TEXT_COLOR_get();
280 internal static readonly int ENABLE_SELECTION = NDalicManualPINVOKE.TextEditor_Property_ENABLE_SELECTION_get();
281 internal static readonly int PLACEHOLDER = NDalicManualPINVOKE.TextEditor_Property_PLACEHOLDER_get();
285 internal class InputStyle
294 LineSpacing = 0x0010,
303 /// Creates the TextEditor control.
305 public TextEditor() : this(NDalicPINVOKE.TextEditor_New(), true)
307 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
310 internal TextEditor(TextEditor handle) : this(NDalicPINVOKE.new_TextEditor__SWIG_1(TextEditor.getCPtr(handle)), true)
312 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
315 [Obsolete("Please do not use! this will be deprecated")]
316 public new static TextEditor DownCast(BaseHandle handle)
318 TextEditor ret = new TextEditor(NDalicPINVOKE.TextEditor_DownCast(BaseHandle.getCPtr(handle)), true);
319 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
323 internal TextEditorSignal TextChangedSignal()
325 TextEditorSignal ret = new TextEditorSignal(NDalicPINVOKE.TextEditor_TextChangedSignal(swigCPtr), false);
326 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
330 internal ScrollStateChangedSignal ScrollStateChangedSignal(TextEditor textEditor)
332 ScrollStateChangedSignal ret = new ScrollStateChangedSignal(NDalicManualPINVOKE.TextEditor_ScrollStateChangedSignal(TextEditor.getCPtr(textEditor)), false);
333 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
337 internal SWIGTYPE_p_Dali__SignalT_void_fDali__Toolkit__TextEditor_Dali__Toolkit__TextEditor__InputStyle__MaskF_t InputStyleChangedSignal()
339 SWIGTYPE_p_Dali__SignalT_void_fDali__Toolkit__TextEditor_Dali__Toolkit__TextEditor__InputStyle__MaskF_t ret = new SWIGTYPE_p_Dali__SignalT_void_fDali__Toolkit__TextEditor_Dali__Toolkit__TextEditor__InputStyle__MaskF_t(NDalicPINVOKE.TextEditor_InputStyleChangedSignal(swigCPtr), false);
340 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
352 GetProperty(TextEditor.Property.TEXT).Get(out temp);
357 SetProperty(TextEditor.Property.TEXT, new Tizen.NUI.PropertyValue(value));
362 /// Text color property.
364 public Vector4 TextColor
368 Vector4 temp = new Vector4(0.0f, 0.0f, 0.0f, 0.0f);
369 GetProperty(TextEditor.Property.TEXT_COLOR).Get(temp);
374 SetProperty(TextEditor.Property.TEXT_COLOR, new Tizen.NUI.PropertyValue(value));
379 /// Font family property.
381 public string FontFamily
386 GetProperty(TextEditor.Property.FONT_FAMILY).Get(out temp);
391 SetProperty(TextEditor.Property.FONT_FAMILY, new Tizen.NUI.PropertyValue(value));
396 /// Font style property.
398 public PropertyMap FontStyle
402 PropertyMap temp = new PropertyMap();
403 GetProperty(TextEditor.Property.FONT_STYLE).Get(temp);
408 SetProperty(TextEditor.Property.FONT_STYLE, new Tizen.NUI.PropertyValue(value));
413 /// Point size property.
415 public float PointSize
420 GetProperty(TextEditor.Property.POINT_SIZE).Get(out temp);
425 SetProperty(TextEditor.Property.POINT_SIZE, new Tizen.NUI.PropertyValue(value));
430 /// Horizontal alignment property.
432 public HorizontalAlignment HorizontalAlignment
437 if (GetProperty(TextEditor.Property.HORIZONTAL_ALIGNMENT).Get(out temp) == false)
439 NUILog.Error("HorizontalAlignment get error!");
445 return HorizontalAlignment.Begin;
447 return HorizontalAlignment.Center;
449 return HorizontalAlignment.End;
451 return HorizontalAlignment.Begin;
456 string valueToString = "";
459 case HorizontalAlignment.Begin:
461 valueToString = "BEGIN";
464 case HorizontalAlignment.Center:
466 valueToString = "CENTER";
469 case HorizontalAlignment.End:
471 valueToString = "END";
476 valueToString = "BEGIN";
480 SetProperty(TextEditor.Property.HORIZONTAL_ALIGNMENT, new Tizen.NUI.PropertyValue(valueToString));
485 /// Scroll threshold property.
487 public float ScrollThreshold
492 GetProperty(TextEditor.Property.SCROLL_THRESHOLD).Get(out temp);
497 SetProperty(TextEditor.Property.SCROLL_THRESHOLD, new Tizen.NUI.PropertyValue(value));
502 /// Scroll speed property.
504 public float ScrollSpeed
509 GetProperty(TextEditor.Property.SCROLL_SPEED).Get(out temp);
514 SetProperty(TextEditor.Property.SCROLL_SPEED, new Tizen.NUI.PropertyValue(value));
519 /// Primary cursor color property.
521 public Vector4 PrimaryCursorColor
525 Vector4 temp = new Vector4(0.0f, 0.0f, 0.0f, 0.0f);
526 GetProperty(TextEditor.Property.PRIMARY_CURSOR_COLOR).Get(temp);
531 SetProperty(TextEditor.Property.PRIMARY_CURSOR_COLOR, new Tizen.NUI.PropertyValue(value));
536 /// SecondaryCursorColor property.
538 public Vector4 SecondaryCursorColor
542 Vector4 temp = new Vector4(0.0f, 0.0f, 0.0f, 0.0f);
543 GetProperty(TextEditor.Property.SECONDARY_CURSOR_COLOR).Get(temp);
548 SetProperty(TextEditor.Property.SECONDARY_CURSOR_COLOR, new Tizen.NUI.PropertyValue(value));
553 /// EnableCursorBlink property.
555 public bool EnableCursorBlink
560 GetProperty(TextEditor.Property.ENABLE_CURSOR_BLINK).Get(out temp);
565 SetProperty(TextEditor.Property.ENABLE_CURSOR_BLINK, new Tizen.NUI.PropertyValue(value));
570 /// CursorBlinkInterval property.
572 public float CursorBlinkInterval
577 GetProperty(TextEditor.Property.CURSOR_BLINK_INTERVAL).Get(out temp);
582 SetProperty(TextEditor.Property.CURSOR_BLINK_INTERVAL, new Tizen.NUI.PropertyValue(value));
587 /// CursorBlinkDuration property.
589 public float CursorBlinkDuration
594 GetProperty(TextEditor.Property.CURSOR_BLINK_DURATION).Get(out temp);
599 SetProperty(TextEditor.Property.CURSOR_BLINK_DURATION, new Tizen.NUI.PropertyValue(value));
604 /// CursorWidth property.
606 public int CursorWidth
611 GetProperty(TextEditor.Property.CURSOR_WIDTH).Get(out temp);
616 SetProperty(TextEditor.Property.CURSOR_WIDTH, new Tizen.NUI.PropertyValue(value));
621 /// GrabHandleImage property.
623 public string GrabHandleImage
628 GetProperty(TextEditor.Property.GRAB_HANDLE_IMAGE).Get(out temp);
633 SetProperty(TextEditor.Property.GRAB_HANDLE_IMAGE, new Tizen.NUI.PropertyValue(value));
638 /// GrabHandlePressedImage property.
640 public string GrabHandlePressedImage
645 GetProperty(TextEditor.Property.GRAB_HANDLE_PRESSED_IMAGE).Get(out temp);
650 SetProperty(TextEditor.Property.GRAB_HANDLE_PRESSED_IMAGE, new Tizen.NUI.PropertyValue(value));
655 /// SelectionHandleImageLeft property.
657 public PropertyMap SelectionHandleImageLeft
661 PropertyMap temp = new PropertyMap();
662 GetProperty(TextEditor.Property.SELECTION_HANDLE_IMAGE_LEFT).Get(temp);
667 SetProperty(TextEditor.Property.SELECTION_HANDLE_IMAGE_LEFT, new Tizen.NUI.PropertyValue(value));
672 /// SelectionHandleImageRight property.
674 public PropertyMap SelectionHandleImageRight
678 PropertyMap temp = new PropertyMap();
679 GetProperty(TextEditor.Property.SELECTION_HANDLE_IMAGE_RIGHT).Get(temp);
684 SetProperty(TextEditor.Property.SELECTION_HANDLE_IMAGE_RIGHT, new Tizen.NUI.PropertyValue(value));
689 /// SelectionHandlePressedImageLeft property.
691 public PropertyMap SelectionHandlePressedImageLeft
695 PropertyMap temp = new PropertyMap();
696 GetProperty(TextEditor.Property.SELECTION_HANDLE_PRESSED_IMAGE_LEFT).Get(temp);
701 SetProperty(TextEditor.Property.SELECTION_HANDLE_PRESSED_IMAGE_LEFT, new Tizen.NUI.PropertyValue(value));
706 /// SelectionHandlePressedImageRight property.
708 public PropertyMap SelectionHandlePressedImageRight
712 PropertyMap temp = new PropertyMap();
713 GetProperty(TextEditor.Property.SELECTION_HANDLE_PRESSED_IMAGE_RIGHT).Get(temp);
718 SetProperty(TextEditor.Property.SELECTION_HANDLE_PRESSED_IMAGE_RIGHT, new Tizen.NUI.PropertyValue(value));
723 /// SelectionHandleMarkerImageLeft property.
725 public PropertyMap SelectionHandleMarkerImageLeft
729 PropertyMap temp = new PropertyMap();
730 GetProperty(TextEditor.Property.SELECTION_HANDLE_MARKER_IMAGE_LEFT).Get(temp);
735 SetProperty(TextEditor.Property.SELECTION_HANDLE_MARKER_IMAGE_LEFT, new Tizen.NUI.PropertyValue(value));
740 /// SelectionHandleMarkerImageRight property.
742 public PropertyMap SelectionHandleMarkerImageRight
746 PropertyMap temp = new PropertyMap();
747 GetProperty(TextEditor.Property.SELECTION_HANDLE_MARKER_IMAGE_RIGHT).Get(temp);
752 SetProperty(TextEditor.Property.SELECTION_HANDLE_MARKER_IMAGE_RIGHT, new Tizen.NUI.PropertyValue(value));
757 /// SelectionHighlightColor property.
759 public Vector4 SelectionHighlightColor
763 Vector4 temp = new Vector4(0.0f, 0.0f, 0.0f, 0.0f);
764 GetProperty(TextEditor.Property.SELECTION_HIGHLIGHT_COLOR).Get(temp);
769 SetProperty(TextEditor.Property.SELECTION_HIGHLIGHT_COLOR, new Tizen.NUI.PropertyValue(value));
774 /// DecorationBoundingBox property.
776 public Rectangle DecorationBoundingBox
780 Rectangle temp = new Rectangle(0, 0, 0, 0);
781 GetProperty(TextEditor.Property.DECORATION_BOUNDING_BOX).Get(temp);
786 SetProperty(TextEditor.Property.DECORATION_BOUNDING_BOX, new Tizen.NUI.PropertyValue(value));
791 /// EnableMarkup property.
793 public bool EnableMarkup
798 GetProperty(TextEditor.Property.ENABLE_MARKUP).Get(out temp);
803 SetProperty(TextEditor.Property.ENABLE_MARKUP, new Tizen.NUI.PropertyValue(value));
808 /// InputColor property.
810 public Vector4 InputColor
814 Vector4 temp = new Vector4(0.0f, 0.0f, 0.0f, 0.0f);
815 GetProperty(TextEditor.Property.INPUT_COLOR).Get(temp);
820 SetProperty(TextEditor.Property.INPUT_COLOR, new Tizen.NUI.PropertyValue(value));
825 /// InputFontFamily property.
827 public string InputFontFamily
832 GetProperty(TextEditor.Property.INPUT_FONT_FAMILY).Get(out temp);
837 SetProperty(TextEditor.Property.INPUT_FONT_FAMILY, new Tizen.NUI.PropertyValue(value));
842 /// InputFontStyle property.
844 public PropertyMap InputFontStyle
848 PropertyMap temp = new PropertyMap();
849 GetProperty(TextEditor.Property.INPUT_FONT_STYLE).Get(temp);
854 SetProperty(TextEditor.Property.INPUT_FONT_STYLE, new Tizen.NUI.PropertyValue(value));
859 /// InputPointSize property.
861 public float InputPointSize
866 GetProperty(TextEditor.Property.INPUT_POINT_SIZE).Get(out temp);
871 SetProperty(TextEditor.Property.INPUT_POINT_SIZE, new Tizen.NUI.PropertyValue(value));
876 /// LineSpacing property.
878 public float LineSpacing
883 GetProperty(TextEditor.Property.LINE_SPACING).Get(out temp);
888 SetProperty(TextEditor.Property.LINE_SPACING, new Tizen.NUI.PropertyValue(value));
893 /// InputLineSpacing property.
895 public float InputLineSpacing
900 GetProperty(TextEditor.Property.INPUT_LINE_SPACING).Get(out temp);
905 SetProperty(TextEditor.Property.INPUT_LINE_SPACING, new Tizen.NUI.PropertyValue(value));
910 /// Underline property.
912 public PropertyMap Underline
916 PropertyMap temp = new PropertyMap();
917 GetProperty(TextEditor.Property.UNDERLINE).Get(temp);
922 SetProperty(TextEditor.Property.UNDERLINE, new Tizen.NUI.PropertyValue(value));
927 /// InputUnderline property.
929 public string InputUnderline
934 GetProperty(TextEditor.Property.INPUT_UNDERLINE).Get(out temp);
939 SetProperty(TextEditor.Property.INPUT_UNDERLINE, new Tizen.NUI.PropertyValue(value));
946 public PropertyMap Shadow
950 PropertyMap temp = new PropertyMap();
951 GetProperty(TextEditor.Property.SHADOW).Get(temp);
956 SetProperty(TextEditor.Property.SHADOW, new Tizen.NUI.PropertyValue(value));
961 /// InputShadow property.
963 public string InputShadow
968 GetProperty(TextEditor.Property.INPUT_SHADOW).Get(out temp);
973 SetProperty(TextEditor.Property.INPUT_SHADOW, new Tizen.NUI.PropertyValue(value));
985 GetProperty(TextEditor.Property.EMBOSS).Get(out temp);
990 SetProperty(TextEditor.Property.EMBOSS, new Tizen.NUI.PropertyValue(value));
995 /// InputEmboss property.
997 public string InputEmboss
1002 GetProperty(TextEditor.Property.INPUT_EMBOSS).Get(out temp);
1007 SetProperty(TextEditor.Property.INPUT_EMBOSS, new Tizen.NUI.PropertyValue(value));
1012 /// Outline property.
1014 public string Outline
1019 GetProperty(TextEditor.Property.OUTLINE).Get(out temp);
1024 SetProperty(TextEditor.Property.OUTLINE, new Tizen.NUI.PropertyValue(value));
1029 /// InputOutline property.
1031 public string InputOutline
1036 GetProperty(TextEditor.Property.INPUT_OUTLINE).Get(out temp);
1041 SetProperty(TextEditor.Property.INPUT_OUTLINE, new Tizen.NUI.PropertyValue(value));
1046 /// SmoothScroll property.
1048 public bool SmoothScroll
1053 GetProperty(TextEditor.Property.SMOOTH_SCROLL).Get(out temp);
1058 SetProperty(TextEditor.Property.SMOOTH_SCROLL, new Tizen.NUI.PropertyValue(value));
1063 /// SmoothScrollDuration property.
1065 public float SmoothScrollDuration
1070 GetProperty(TextEditor.Property.SMOOTH_SCROLL_DURATION).Get(out temp);
1075 SetProperty(TextEditor.Property.SMOOTH_SCROLL_DURATION, new Tizen.NUI.PropertyValue(value));
1080 /// EnableScrollBar property.
1082 public bool EnableScrollBar
1087 GetProperty(TextEditor.Property.ENABLE_SCROLL_BAR).Get(out temp);
1092 SetProperty(TextEditor.Property.ENABLE_SCROLL_BAR, new Tizen.NUI.PropertyValue(value));
1097 /// ScrollBarShowDuration property.
1099 public float ScrollBarShowDuration
1104 GetProperty(TextEditor.Property.SCROLL_BAR_SHOW_DURATION).Get(out temp);
1109 SetProperty(TextEditor.Property.SCROLL_BAR_SHOW_DURATION, new Tizen.NUI.PropertyValue(value));
1114 /// ScrollBarFadeDuration property.
1116 public float ScrollBarFadeDuration
1121 GetProperty(TextEditor.Property.SCROLL_BAR_FADE_DURATION).Get(out temp);
1126 SetProperty(TextEditor.Property.SCROLL_BAR_FADE_DURATION, new Tizen.NUI.PropertyValue(value));
1131 /// PixelSize property.
1133 public float PixelSize
1138 GetProperty(TextEditor.Property.PIXEL_SIZE).Get(out temp);
1143 SetProperty(TextEditor.Property.PIXEL_SIZE, new Tizen.NUI.PropertyValue(value));
1148 /// The line count of text.
1150 public int LineCount
1155 GetProperty(TextEditor.Property.LINE_COUNT).Get(out temp);
1161 /// The text to display when the TextEditor is empty and inactive.
1163 public string PlaceholderText
1168 GetProperty(TextEditor.Property.PLACEHOLDER_TEXT).Get(out temp);
1173 SetProperty(TextEditor.Property.PLACEHOLDER_TEXT, new Tizen.NUI.PropertyValue(value));
1178 /// The placeholder-text color.
1180 public Color PlaceholderTextColor
1184 Color temp = new Color(0.0f, 0.0f, 0.0f, 0.0f);
1185 GetProperty(TextEditor.Property.PLACEHOLDER_TEXT_COLOR).Get(temp);
1190 SetProperty(TextEditor.Property.PLACEHOLDER_TEXT_COLOR, new Tizen.NUI.PropertyValue(value));
1195 /// Enable selection property.
1197 public bool EnableSelection
1202 GetProperty(TextEditor.Property.ENABLE_SELECTION).Get(out temp);
1207 SetProperty(TextEditor.Property.ENABLE_SELECTION, new Tizen.NUI.PropertyValue(value));
1212 /// Placeholder property.
1214 public Tizen.NUI.PropertyMap Placeholder
1218 Tizen.NUI.PropertyMap temp = new Tizen.NUI.PropertyMap();
1219 GetProperty(TextEditor.Property.PLACEHOLDER).Get(temp);
1224 SetProperty(TextEditor.Property.PLACEHOLDER, new Tizen.NUI.PropertyValue(value));