From: xb.teng Date: Tue, 4 Jul 2017 10:39:26 +0000 (+0800) Subject: [Tizen] Manual binding for TextEditor,TextField,Application,Window X-Git-Tag: submit/trunk/20170823.075128~91^2~106 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=63fb4f907d71c93e75d847736e0ee40c0daefdbd;p=platform%2Fcore%2Fcsapi%2Ftizenfx.git [Tizen] Manual binding for TextEditor,TextField,Application,Window Here are changes: 1. Add EnableSelection,Placeholder property for TextEditor; 2. Add EnableSelection,Placeholder for TextField; 3. Add WindowSize,WindowPosition property for window; 4. Add a new constuctor for Application; 5. update Resized event argument for Window. Conflicts: Tizen.NUI/src/internal/ManualPINVOKE.cs Change-Id: I34280cba24fdb28cfbaa5bc160350a579efe0358 --- diff --git a/src/Tizen.NUI/src/internal/Application.cs b/src/Tizen.NUI/src/internal/Application.cs index 5d16077..ee8be82 100755 --- a/src/Tizen.NUI/src/internal/Application.cs +++ b/src/Tizen.NUI/src/internal/Application.cs @@ -1175,6 +1175,13 @@ namespace Tizen.NUI return ret; } + public static Application New(int argc, string stylesheet, Application.WindowMode windowMode, Rectangle positionSize) + { + Application ret = new Application(NDalicPINVOKE.Application_New__SWIG_4(argc, stylesheet, (int)windowMode, Rectangle.getCPtr(positionSize)), true); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + public Application() : this(NDalicPINVOKE.new_Application__SWIG_0(), true) { NUILog.Debug("Application() is called!"); diff --git a/src/Tizen.NUI/src/internal/ManualPINVOKE.cs b/src/Tizen.NUI/src/internal/ManualPINVOKE.cs index d5e3da9..ff5456b 100755 --- a/src/Tizen.NUI/src/internal/ManualPINVOKE.cs +++ b/src/Tizen.NUI/src/internal/ManualPINVOKE.cs @@ -581,12 +581,24 @@ namespace Tizen.NUI [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_TextEditor_Property_PLACEHOLDER_TEXT_COLOR_get")] public static extern int TextEditor_Property_PLACEHOLDER_TEXT_COLOR_get(); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_TextEditor_Property_ENABLE_SELECTION_get")] + public static extern int TextEditor_Property_ENABLE_SELECTION_get(); + + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_TextEditor_Property_PLACEHOLDER_get")] + public static extern int TextEditor_Property_PLACEHOLDER_get(); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_TextField_Property_HIDDEN_INPUT_SETTINGS_get")] public static extern int TextField_Property_HIDDEN_INPUT_SETTINGS_get(); [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_TextField_Property_PIXEL_SIZE_get")] public static extern int TextField_Property_PIXEL_SIZE_get(); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_TextField_Property_ENABLE_SELECTION_get")] + public static extern int TextField_Property_ENABLE_SELECTION_get(); + + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_TextField_Property_PLACEHOLDER_get")] + public static extern int TextField_Property_PLACEHOLDER_get(); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_TextLabel_Property_PIXEL_SIZE_get")] public static extern int TextLabel_Property_PIXEL_SIZE_get(); @@ -712,7 +724,7 @@ namespace Tizen.NUI public static extern void ResizedSignal_Disconnect(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ResizedSignal_Emit")] - public static extern void ResizedSignal_Emit(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); + public static extern void ResizedSignal_Emit(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_ResizedSignal")] public static extern global::System.IntPtr new_ResizedSignal(); @@ -851,5 +863,17 @@ namespace Tizen.NUI [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_WidgetViewManager_SWIGUpcast")] public static extern global::System.IntPtr WidgetViewManager_SWIGUpcast(global::System.IntPtr jarg1); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Window_SetSize")] + public static extern void SetSize(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); + + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Window_GetSize")] + public static extern global::System.IntPtr GetSize(global::System.Runtime.InteropServices.HandleRef jarg1); + + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Window_SetPosition")] + public static extern void SetPosition(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); + + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Window_GetPosition")] + public static extern global::System.IntPtr GetPosition(global::System.Runtime.InteropServices.HandleRef jarg1); + } } diff --git a/src/Tizen.NUI/src/internal/NDalicPINVOKE.cs b/src/Tizen.NUI/src/internal/NDalicPINVOKE.cs index caee01f..5b57314 100755 --- a/src/Tizen.NUI/src/internal/NDalicPINVOKE.cs +++ b/src/Tizen.NUI/src/internal/NDalicPINVOKE.cs @@ -6421,6 +6421,10 @@ class NDalicPINVOKE { [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_ApplicationControlSignal")] public static extern void delete_ApplicationControlSignal(global::System.Runtime.InteropServices.HandleRef jarg1); + [global::System.Runtime.InteropServices.DllImport("NDalic", EntryPoint="CSharp_Dali_Application_New__SWIG_4")] + public static extern global::System.IntPtr Application_New__SWIG_4(int jarg1, string jarg3, int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5); + + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TimerSignalType_Empty")] public static extern bool TimerSignalType_Empty(global::System.Runtime.InteropServices.HandleRef jarg1); diff --git a/src/Tizen.NUI/src/internal/ResizedSignal.cs b/src/Tizen.NUI/src/internal/ResizedSignal.cs index ba4c40e..04fb093 100755 --- a/src/Tizen.NUI/src/internal/ResizedSignal.cs +++ b/src/Tizen.NUI/src/internal/ResizedSignal.cs @@ -130,9 +130,9 @@ namespace Tizen.NUI } } - public void Emit(int arg1, int arg2) + public void Emit(Uint16Pair arg) { - NDalicManualPINVOKE.ResizedSignal_Emit(swigCPtr, arg1, arg2); + NDalicManualPINVOKE.ResizedSignal_Emit(swigCPtr, Uint16Pair.getCPtr(arg)); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } diff --git a/src/Tizen.NUI/src/internal/Uint16Pair.cs b/src/Tizen.NUI/src/internal/Uint16Pair.cs index bd5c273..df8995d 100755 --- a/src/Tizen.NUI/src/internal/Uint16Pair.cs +++ b/src/Tizen.NUI/src/internal/Uint16Pair.cs @@ -17,7 +17,7 @@ namespace Tizen.NUI { - internal class Uint16Pair : global::System.IDisposable + public class Uint16Pair : global::System.IDisposable { private global::System.Runtime.InteropServices.HandleRef swigCPtr; protected bool swigCMemOwn; diff --git a/src/Tizen.NUI/src/public/BaseComponents/TextEditor.cs b/src/Tizen.NUI/src/public/BaseComponents/TextEditor.cs index 9c74c31..6900bc4 100755 --- a/src/Tizen.NUI/src/public/BaseComponents/TextEditor.cs +++ b/src/Tizen.NUI/src/public/BaseComponents/TextEditor.cs @@ -277,6 +277,8 @@ namespace Tizen.NUI.BaseComponents internal static readonly int LINE_COUNT = NDalicManualPINVOKE.TextEditor_Property_LINE_COUNT_get(); internal static readonly int PLACEHOLDER_TEXT = NDalicManualPINVOKE.TextEditor_Property_PLACEHOLDER_TEXT_get(); internal static readonly int PLACEHOLDER_TEXT_COLOR = NDalicManualPINVOKE.TextEditor_Property_PLACEHOLDER_TEXT_COLOR_get(); + internal static readonly int ENABLE_SELECTION = NDalicManualPINVOKE.TextEditor_Property_ENABLE_SELECTION_get(); + internal static readonly int PLACEHOLDER = NDalicManualPINVOKE.TextEditor_Property_PLACEHOLDER_get(); } @@ -1189,6 +1191,40 @@ namespace Tizen.NUI.BaseComponents } } + /// + /// Enable selection property. + /// + public bool EnableSelection + { + get + { + bool temp = false; + GetProperty(TextEditor.Property.ENABLE_SELECTION).Get(out temp); + return temp; + } + set + { + SetProperty(TextEditor.Property.ENABLE_SELECTION, new Tizen.NUI.PropertyValue(value)); + } + } + + /// + /// Placeholder property. + /// + public Tizen.NUI.PropertyMap Placeholder + { + get + { + Tizen.NUI.PropertyMap temp = new Tizen.NUI.PropertyMap(); + GetProperty(TextEditor.Property.PLACEHOLDER).Get(temp); + return temp; + } + set + { + SetProperty(TextEditor.Property.PLACEHOLDER, new Tizen.NUI.PropertyValue(value)); + } + } + } } diff --git a/src/Tizen.NUI/src/public/BaseComponents/TextField.cs b/src/Tizen.NUI/src/public/BaseComponents/TextField.cs index 09ac6c1..7bb8f3f 100755 --- a/src/Tizen.NUI/src/public/BaseComponents/TextField.cs +++ b/src/Tizen.NUI/src/public/BaseComponents/TextField.cs @@ -258,6 +258,8 @@ namespace Tizen.NUI.BaseComponents internal static readonly int INPUT_OUTLINE = NDalicPINVOKE.TextField_Property_INPUT_OUTLINE_get(); internal static readonly int HIDDEN_INPUT_SETTINGS = NDalicManualPINVOKE.TextField_Property_HIDDEN_INPUT_SETTINGS_get(); internal static readonly int PIXEL_SIZE = NDalicManualPINVOKE.TextField_Property_PIXEL_SIZE_get(); + internal static readonly int ENABLE_SELECTION = NDalicManualPINVOKE.TextField_Property_ENABLE_SELECTION_get(); + internal static readonly int PLACEHOLDER = NDalicManualPINVOKE.TextField_Property_PLACEHOLDER_get(); } @@ -1218,6 +1220,40 @@ namespace Tizen.NUI.BaseComponents } } + /// + /// Enable selection property. + /// + public bool EnableSelection + { + get + { + bool temp = false; + GetProperty(TextField.Property.ENABLE_SELECTION).Get(out temp); + return temp; + } + set + { + SetProperty(TextField.Property.ENABLE_SELECTION, new Tizen.NUI.PropertyValue(value)); + } + } + + /// + /// Placeholder property. + /// + public Tizen.NUI.PropertyMap Placeholder + { + get + { + Tizen.NUI.PropertyMap temp = new Tizen.NUI.PropertyMap(); + GetProperty(TextField.Property.PLACEHOLDER).Get(temp); + return temp; + } + set + { + SetProperty(TextField.Property.PLACEHOLDER, new Tizen.NUI.PropertyValue(value)); + } + } + } } diff --git a/src/Tizen.NUI/src/public/Window.cs b/src/Tizen.NUI/src/public/Window.cs index 24c5fbe..7a610fd 100755 --- a/src/Tizen.NUI/src/public/Window.cs +++ b/src/Tizen.NUI/src/public/Window.cs @@ -1158,37 +1158,24 @@ namespace Tizen.NUI public class ResizedEventArgs : EventArgs { - int _width; - int _height; + Uint16Pair _windowSize; - public int Width + public Uint16Pair WindowSize { get { - return _width; + return _windowSize; } set { - _width = value; - } - } - - public int Height - { - get - { - return _height; - } - set - { - _height = value; + _windowSize = value; } } } private WindowResizedEventCallbackType _windowResizedEventCallback; [UnmanagedFunctionPointer(CallingConvention.StdCall)] - private delegate void WindowResizedEventCallbackType(int width, int height); + private delegate void WindowResizedEventCallbackType(Uint16Pair windowSize); private event EventHandler _windowResizedEventHandler; public event EventHandler Resized @@ -1214,11 +1201,10 @@ namespace Tizen.NUI } } - private void OnResized(int width, int height) + private void OnResized(Uint16Pair windowSize) { ResizedEventArgs e = new ResizedEventArgs(); - e.Width = width; - e.Height = height; + e.WindowSize = windowSize; if (_windowResizedEventHandler != null) { @@ -1226,6 +1212,32 @@ namespace Tizen.NUI } } + internal void SetWindowSize(Uint16Pair size) + { + NDalicManualPINVOKE.SetSize(swigCPtr, Uint16Pair.getCPtr(size)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + internal Uint16Pair GetWindowSize() + { + Uint16Pair ret = new Uint16Pair(NDalicManualPINVOKE.GetSize(swigCPtr), true); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal void SetPosition(Uint16Pair position) + { + NDalicManualPINVOKE.SetPosition(swigCPtr, Uint16Pair.getCPtr(position)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + internal Uint16Pair GetPosition() + { + Uint16Pair ret = new Uint16Pair(NDalicManualPINVOKE.GetPosition(swigCPtr), true); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + /// /// Window size property (read-only). /// @@ -1350,7 +1362,35 @@ namespace Tizen.NUI } } + /// + /// Gets/Sets a size of the window. + /// + public Uint16Pair WindowSize + { + get + { + return GetWindowSize(); + } + set + { + SetWindowSize(value); + } + } + /// + /// Gets/Sets a position of the window. + /// + public Uint16Pair WindowPosition + { + get + { + return GetPosition(); + } + set + { + SetPosition(value); + } + } }