From: dongsug.song Date: Thu, 16 Feb 2017 17:35:20 +0000 (+0900) Subject: Dali C#: version upgrade 1.2.25 X-Git-Tag: accepted/tizen/mobile/20170220.223653^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F91%2F115191%2F3;p=platform%2Fcore%2Fcsapi%2Fnui.git Dali C#: version upgrade 1.2.25 Change-Id: Iebc87668e165e9c8cd81fb68fd1a3323cc96ab4b Signed-off-by: dongsug.song --- diff --git a/NUISamples/NUISamples.TizenTV/NUISamples.TizenTV.cs b/NUISamples/NUISamples.TizenTV/NUISamples.TizenTV.cs new file mode 100755 index 0000000..f7e8e27 --- /dev/null +++ b/NUISamples/NUISamples.TizenTV/NUISamples.TizenTV.cs @@ -0,0 +1,465 @@ +/* + * Copyright (c) 2016 Samsung Electronics Co., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +using System; +using System.Runtime.InteropServices; +using Tizen.NUI; + +namespace MyCSharpExample +{ + class Example + { + // This is simple structure to contain Control name and implement state at once + // name : control name + // isImplemented : the state which the control is implemented in public or not + private struct Item + { + public String name; + public bool isImplemented; + + public Item(String name, bool isImplemented) + { + this.name = name; + this.isImplemented = isImplemented; + } + } + + private Application _application; + private TableView _contentContainer; + private Stage _stage; + private Popup _popup; + + // List of items + private Item[] mViewList = { + new Item("PushButton", true), new Item("DropDown", false), new Item("Toggle", true), + new Item("InputField", false), new Item("AnimateGif", false), new Item("Loading", false), + new Item("ProgressBar", false), new Item("CheckBox", false), new Item("RadioButton", true), + new Item("Tooltip", true), new Item("Popup", true), new Item("Toast", true), + new Item("ItemView", false), new Item("CheckBox", true) + }; + + public Example(Application application) + { + _application = application; + _application.Initialized += OnInitialize; + } + + public void OnInitialize(object source, NUIApplicationInitEventArgs e) + { + Tizen.Log.Debug("NUI", "Customized Application Initialize event handler"); + _stage = Stage.Instance; + _stage.BackgroundColor = Color.White; + + // Top label + TextLabel topLabel = new TextLabel(); + topLabel.WidthResizePolicy = ResizePolicyType.FillToParent; + topLabel.HeightResizePolicy = ResizePolicyType.SizeRelativeToParent; + topLabel.AnchorPoint = AnchorPoint.TopCenter; + topLabel.ParentOrigin = ParentOrigin.TopCenter; + topLabel.SizeModeFactor = new Vector3(0.0f, 0.1f, 0.0f); + topLabel.BackgroundColor = new Color(43.0f / 255.0f, 145.0f / 255.0f, 175.0f / 255.0f, 1.0f); + topLabel.TextColor = Color.Yellow; + topLabel.Text = " DALi Views Ver.0216-01"; + topLabel.HorizontalAlignment = "BEGIN"; + topLabel.VerticalAlignment = "CENTER"; + + topLabel.FontFamily = "BreezeSans"; + PropertyMap _map = new PropertyMap(); + _map.Add("width", new PropertyValue("regular")); + _map.Add("weight", new PropertyValue("bold")); + _map.Add("slant", new PropertyValue("italic")); + topLabel.FontStyle = _map; + topLabel.PointSize = 15.0f; + + _stage.GetDefaultLayer().Add(topLabel); + + // Grid container to contain items. Use tableView because FlexContainer support focus navigation just two direction ( up/down or left/right ) + _contentContainer = new TableView(6, 5); + _contentContainer.WidthResizePolicy = ResizePolicyType.FillToParent; + _contentContainer.HeightResizePolicy = ResizePolicyType.SizeRelativeToParent; + _contentContainer.SizeModeFactor = new Vector3(0.0f, 0.9f, 0.0f); + _contentContainer.AnchorPoint = AnchorPoint.BottomCenter; + _contentContainer.ParentOrigin = ParentOrigin.BottomCenter; + _contentContainer.SetRelativeHeight(0, 0.07f); + _contentContainer.SetRelativeHeight(1, 0.26f); + _contentContainer.SetRelativeHeight(2, 0.07f); + _contentContainer.SetRelativeHeight(3, 0.26f); + _contentContainer.SetRelativeHeight(4, 0.07f); + _contentContainer.SetRelativeHeight(5, 0.26f); + _contentContainer.Focusable = true; + _stage.GetDefaultLayer().Add(_contentContainer); + + CreateContent(); + + FocusManager.Instance.PreFocusChange += OnPreFocusChange; + + View _testView = new View(); + Tizen.Log.Debug("NUI", "1) test view sizewidth = " + _testView.SizeWidth + " sizeHeight= " + _testView.SizeHeight); + _testView.Size = new Size(1.0f, 2.0f, 0.0f); + Tizen.Log.Debug("NUI", "2) test view sizewidth = " + _testView.SizeWidth + " sizeHeight= " + _testView.SizeHeight); + _testView.WidthResizePolicy = ResizePolicyType.Fixed; + _testView.HeightResizePolicy = ResizePolicyType.Fixed; + _testView.Size = new Size(1.0f, 2.0f, 0.0f); + Tizen.Log.Debug("NUI", "3) test view sizewidth = " + _testView.SizeWidth + " sizeHeight= " + _testView.SizeHeight); + +#if false + Window _win = new Window(new RectInteger(100, 100, 500, 500), "win test", false); + Window _win = _application.GetWindow(); + _win.Activate(); + _win.ShowIndicator(Window.IndicatorVisibleMode.VISIBLE); + _win.SetIndicatorBgOpacity(Window.IndicatorBgOpacity.OPAQUE); + Any _any = _win.GetNativeHandle(); +#endif + } + + // Callback for KeyboardFocusManager + private View OnPreFocusChange(object source, FocusManager.PreFocusChangeEventArgs e) + { + if (!e.ProposedView && !e.CurrentView) + { + e.ProposedView = View.DownCast(_contentContainer.GetChildAt(1)); + } + return e.ProposedView; + } + + private void CreateContent() + { + for (int i = 0; i < mViewList.Length; i++) + { + CreateItem(mViewList[i], i); + } + } + + private void CreateItem(Item item, int idx) + { + // Make label for item + TextLabel itemLabel = new TextLabel(" " + item.name); + itemLabel.Size = new Size(_stage.Size.Width * 0.2f, _stage.Size.Height * 0.05f, 0.0f); + itemLabel.HorizontalAlignment = "BEGIN"; + itemLabel.VerticalAlignment = "BOTTOM"; + //itemLabel.PointSize = 10.0f; + _contentContainer.AddChild(itemLabel, new TableView.CellPosition(((uint)idx / 5) * 2, (uint)idx % 5)); + + // If item is implemented in public, attach it on stage + if (item.isImplemented) + { + if (item.name.CompareTo("PushButton") == 0) + { + PushButton pushButton = new PushButton(); + pushButton.LabelText = "Push Button"; + pushButton.WidthResizePolicy = ResizePolicyType.FillToParent; + pushButton.HeightResizePolicy = ResizePolicyType.FillToParent; + pushButton.UnselectedColor = new Color(1.0f, 0.0f, 0.0f, 1.0f); + pushButton.SelectedColor = new Color(0.0f, 1.0f, 0.0f, 1.0f); + pushButton.Clicked += (obj, e) => + { + Button sender = (Button)(obj); + sender.LabelText = "Click Me"; + sender.UnselectedColor = new Color(0.0f, 0.0f, 1.0f, 1.0f); + return true; + }; + + _contentContainer.AddChild(pushButton, new TableView.CellPosition(((uint)idx / 5) * 2 + 1, (uint)idx % 5)); + } + if (item.name.CompareTo("DropDown") == 0) + { + + } + if (item.name.CompareTo("Toggle") == 0) + { + ToggleButton toggleButton = new ToggleButton(); + Tizen.NUI.PropertyArray array = new Tizen.NUI.PropertyArray(); + array.Add(new Tizen.NUI.PropertyValue("/home/owner/apps_rw/NUISamples.TizenTV/res/images/star-highlight.png")); + array.Add(new Tizen.NUI.PropertyValue("/home/owner/apps_rw/NUISamples.TizenTV/res/images/star-mod.png")); + array.Add(new Tizen.NUI.PropertyValue("/home/owner/apps_rw/NUISamples.TizenTV/res/images/star-dim.png")); + toggleButton.StateVisuals = array; + + Tizen.NUI.PropertyArray tooltips = new Tizen.NUI.PropertyArray(); + tooltips.Add(new Tizen.NUI.PropertyValue("State A")); + tooltips.Add(new Tizen.NUI.PropertyValue("State B")); + tooltips.Add(new Tizen.NUI.PropertyValue("State C")); + toggleButton.Tooltips = tooltips; + + toggleButton.WidthResizePolicy = ResizePolicyType.FillToParent; + toggleButton.HeightResizePolicy = ResizePolicyType.FillToParent; + toggleButton.Clicked += (obj, e) => + { + Console.WriteLine("Toggle button state changed."); + return true; + }; + + _contentContainer.AddChild(toggleButton, new TableView.CellPosition(((uint)idx / 5) * 2 + 1, (uint)idx % 5)); + } + if (item.name.CompareTo("InputField") == 0) + { + + } + if (item.name.CompareTo("AnimateGif") == 0) + { + + } + if (item.name.CompareTo("Loading") == 0) + { + + } + if (item.name.CompareTo("ProgressBar") == 0) + { + + } + if (item.name.CompareTo("ScrollBar") == 0) + { + + } + if (item.name.CompareTo("CheckBox") == 0) + { + CheckBoxButton checkBoxButton = new CheckBoxButton(); + checkBoxButton.LabelText = "Yes"; + + _contentContainer.AddChild(checkBoxButton, new TableView.CellPosition(((uint)idx / 5) * 2 + 1, (uint)idx % 5)); + } + if (item.name.CompareTo("RadioButton") == 0) + { + TableView tableView = new TableView(2, 1); + tableView.WidthResizePolicy = ResizePolicyType.FillToParent; + tableView.HeightResizePolicy = ResizePolicyType.FillToParent; + + RadioButton rButton = new RadioButton(); + rButton.LabelText = "Yes"; + rButton.Selected = true; + tableView.AddChild(rButton, new TableView.CellPosition(0, 0)); + + rButton = new RadioButton(); + rButton.LabelText = "No"; + + tableView.AddChild(rButton, new TableView.CellPosition(1, 0)); + + _contentContainer.AddChild(tableView, new TableView.CellPosition(((uint)idx / 5) * 2 + 1, (uint)idx % 5)); + } + if (item.name.CompareTo("Tooltip") == 0) + { + TableView tableView = new TableView(2, 1); + tableView.WidthResizePolicy = ResizePolicyType.FillToParent; + tableView.HeightResizePolicy = ResizePolicyType.FillToParent; + + // Create two push buttons and add them to a table view + PushButton buttonWithSimpleTooltip = new PushButton(); + buttonWithSimpleTooltip.LabelText = "Tooltip with text only"; + buttonWithSimpleTooltip.UnselectedColor = new Color(0.5f, 0.5f, 0.7f, 1.0f); + buttonWithSimpleTooltip.SelectedColor = new Color(0.7f, 0.5f, 0.7f, 1.0f); + buttonWithSimpleTooltip.WidthResizePolicy = ResizePolicyType.FillToParent; + tableView.AddChild(buttonWithSimpleTooltip, new TableView.CellPosition(0, 0)); + + PushButton buttonWithIconTooltip = new PushButton(); + buttonWithIconTooltip.LabelText = "Tooltip with Text and Icon"; + buttonWithIconTooltip.WidthResizePolicy = ResizePolicyType.FillToParent; + buttonWithIconTooltip.UnselectedColor = new Color(0.5f, 0.5f, 0.7f, 1.0f); + buttonWithIconTooltip.SelectedColor = new Color(0.7f, 0.5f, 0.7f, 1.0f); + tableView.AddChild(buttonWithIconTooltip, new TableView.CellPosition(1, 0)); + + // Add a simple text only tooltip to the first push button + buttonWithSimpleTooltip.TooltipText = "Simple Tooltip"; + + // Create a property map for a tooltip with one icon and one text + PropertyArray iconTooltipContent = new PropertyArray(); + + PropertyMap iconVisual = new PropertyMap(); + iconVisual.Add(Tizen.NUI.Constants.Visual.Property.Type, new PropertyValue((int)Tizen.NUI.Constants.Visual.Type.Image)) + .Add(Tizen.NUI.Constants.ImageVisualProperty.URL, new PropertyValue("/home/owner/apps_rw/NUISamples.TizenTV/res/images/star-highlight.png")); + iconTooltipContent.Add(new PropertyValue(iconVisual)); + + PropertyMap textVisual = new PropertyMap(); + textVisual.Add(Tizen.NUI.Constants.Visual.Property.Type, new PropertyValue((int)Tizen.NUI.Constants.Visual.Type.Text)) + .Add(Tizen.NUI.Constants.TextVisualProperty.Text, new PropertyValue("Tooltip with Icon")); + iconTooltipContent.Add(new PropertyValue(textVisual)); + + PropertyMap iconTooltip = new PropertyMap(); + iconTooltip.Add(Tizen.NUI.Constants.Tooltip.Property.Content, new PropertyValue(iconTooltipContent)) + .Add(Tizen.NUI.Constants.Tooltip.Property.Tail, new PropertyValue(true)); + + // Add the tooltip with icon and text to the second push button + buttonWithIconTooltip.Tooltip = iconTooltip; + + _contentContainer.AddChild(tableView, new TableView.CellPosition(((uint)idx / 5) * 2 + 1, (uint)idx % 5)); + } + if (item.name.CompareTo("Popup") == 0) + { + PushButton button = new PushButton(); + button.LabelText = "Popup"; + button.ParentOrigin = ParentOrigin.Center; + button.AnchorPoint = AnchorPoint.Center; + //button.MaximumSize = new Vector2(90.0f,50.0f); + _popup = CreatePopup(); + _popup.SetTitle(CreateTitle("Popup")); + + TextLabel text = new TextLabel("This will erase the file permanently. Are you sure?"); + text.MixColor = Color.White; + text.MultiLine = true; + text.WidthResizePolicy = ResizePolicyType.FillToParent; + text.HeightResizePolicy = ResizePolicyType.DimensionDependency; + text.Padding = new Vector4(10.0f, 10.0f, 20.0f, 0.0f); + _popup.SetContent(text); + _popup.Focusable = true; + _popup.SetDisplayState(Popup.DisplayStateType.Hidden); + + button.Clicked += (obj, ee) => + { + _stage.GetDefaultLayer().Add(_popup); + _popup.SetDisplayState(Popup.DisplayStateType.Shown); + FocusManager.Instance.SetCurrentFocusView(View.DownCast((_popup.FindChildByName("Footer")).FindChildByName("OKButton"))); + return true; + }; + _contentContainer.AddChild(button, new TableView.CellPosition(((uint)idx / 5) * 2 + 1, (uint)idx % 5)); + } + if (item.name.CompareTo("Toast") == 0) + { + PushButton button = new PushButton(); + button.LabelText = "Toast"; + button.ParentOrigin = ParentOrigin.Center; + button.AnchorPoint = AnchorPoint.Center; + button.Clicked += (obj, ee) => + { + TypeInfo typeInfo = new TypeInfo(TypeRegistry.Get().GetTypeInfo("PopupToast")); + if (typeInfo) + { + BaseHandle baseHandle = typeInfo.CreateInstance(); + if (baseHandle) + { + Popup toast = Popup.DownCast(baseHandle); + TextLabel text = new TextLabel("This is a Toast.\nIt will auto-hide itself"); + text.TextColor = Color.White; + text.MultiLine = true; + text.HorizontalAlignment = "center"; + toast.SetTitle(text); + _stage.GetDefaultLayer().Add(toast); + toast.SetDisplayState(Popup.DisplayStateType.Shown); + } + } + return true; + }; + _contentContainer.AddChild(button, new TableView.CellPosition(((uint)idx / 5) * 2 + 1, (uint)idx % 5)); + } + if (item.name.CompareTo("ItemView") == 0) + { + + } + } + else + { + ImageView notSupportView = new ImageView("/home/owner/apps_rw/NUISamples.TizenTV/res/images/not_yet_sign.png"); + notSupportView.Size = new Size(_stage.Size.Width * 0.2f, _stage.Size.Height * 0.25f, 0.0f); + notSupportView.Focusable = true; + _contentContainer.AddChild(notSupportView, new TableView.CellPosition(((uint)idx / 5) * 2 + 1, (uint)idx % 5)); + } + } + Popup CreatePopup() + { + Popup confirmationPopup = new Popup(); + + Actor footer = new Actor(); + footer.Name = "Footer"; + footer.WidthResizePolicy = ResizePolicyType.FillToParent; + footer.HeightResizePolicy = ResizePolicyType.Fixed; + footer.Size = new Size(0.0f, 80.0f, 0.0f); + footer.ParentOrigin = ParentOrigin.Center; + footer.AnchorPoint = AnchorPoint.Center; + + PushButton okButton = CreateOKButton(); + okButton.ParentOrigin = ParentOrigin.Center; + okButton.AnchorPoint = AnchorPoint.Center; + okButton.WidthResizePolicy = ResizePolicyType.SizeFixedOffsetFromParent; + okButton.HeightResizePolicy = ResizePolicyType.SizeFixedOffsetFromParent; + okButton.SizeModeFactor = new Vector3(-20.0f, -20.0f, 0.0f); + + PushButton cancelButton = CreateCancelButton(); + cancelButton.ParentOrigin = ParentOrigin.Center; + cancelButton.AnchorPoint = AnchorPoint.Center; + cancelButton.WidthResizePolicy = ResizePolicyType.SizeFixedOffsetFromParent; + cancelButton.HeightResizePolicy = ResizePolicyType.SizeFixedOffsetFromParent; + cancelButton.SizeModeFactor = new Vector3(-20.0f, -20.0f, 0.0f); + + TableView controlLayout = new TableView(1, 2); + controlLayout.ParentOrigin = ParentOrigin.Center; + controlLayout.AnchorPoint = AnchorPoint.Center; + controlLayout.WidthResizePolicy = ResizePolicyType.FillToParent; + controlLayout.HeightResizePolicy = ResizePolicyType.FillToParent; + controlLayout.SetCellPadding(new Size2D(10.0f, 10.0f)); + controlLayout.SetRelativeWidth(0, 0.5f); + controlLayout.SetRelativeWidth(1, 0.5f); + controlLayout.SetCellAlignment(new TableView.CellPosition(0, 0), HorizontalAlignmentType.Center, VerticalAlignmentType.Center); + controlLayout.SetCellAlignment(new TableView.CellPosition(0, 1), HorizontalAlignmentType.Center, VerticalAlignmentType.Center); + controlLayout.AddChild(okButton, new TableView.CellPosition(0, 0)); + controlLayout.AddChild(cancelButton, new TableView.CellPosition(0, 1)); + + footer.Add(controlLayout); + + confirmationPopup.SetFooter(footer); + return confirmationPopup; + } + Actor CreateTitle(string title) + { + TextLabel titleActor = new TextLabel(title); + titleActor.TextColor = Color.White; + titleActor.MultiLine = true; + titleActor.HorizontalAlignment = "center"; + return titleActor; + } + + PushButton CreateOKButton() + { + PushButton okayButton = new PushButton(); + okayButton.Name = "OKButton"; + okayButton.LabelText = "OK"; + okayButton.Focusable = true; + okayButton.Clicked += (obj, ee) => + { + _popup.SetDisplayState(Popup.DisplayStateType.Hidden); + return true; + }; + return okayButton; + } + PushButton CreateCancelButton() + { + PushButton cancelButton = new PushButton(); + cancelButton.LabelText = "Cancel"; + cancelButton.Focusable = true; + cancelButton.Clicked += (obj, ee) => + { + _popup.SetDisplayState(Popup.DisplayStateType.Hidden); + return true; + }; + return cancelButton; + } + + public void MainLoop() + { + _application.MainLoop(); + } + + /// + /// The main entry point for the application. + /// + + [STAThread] + static void Main(string[] args) + { + Tizen.Log.Debug("NUI", "dali c# control-dashboard! main() is called!"); + + Example example = new Example(Application.NewApplication("/home/owner/apps_rw/NUISamples.TizenTV/res/json/control-dashboard-theme.json")); + example.MainLoop(); + } + } +} diff --git a/etc/SampleApplication/NUISamples/NUISamples.Tizen/NUISamples.Tizen.csproj b/NUISamples/NUISamples.TizenTV/NUISamples.TizenTV.csproj similarity index 82% rename from etc/SampleApplication/NUISamples/NUISamples.Tizen/NUISamples.Tizen.csproj rename to NUISamples/NUISamples.TizenTV/NUISamples.TizenTV.csproj index 73bfd85..9cd6261 100755 --- a/etc/SampleApplication/NUISamples/NUISamples.Tizen/NUISamples.Tizen.csproj +++ b/NUISamples/NUISamples.TizenTV/NUISamples.TizenTV.csproj @@ -7,11 +7,11 @@ 8.0.30703 2.0 {2F98DAC9-6F16-457B-AED7-D43CAC379341};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} - {316BF936-F063-4C33-9499-F4F472CD3EA7} + {B47E2552-F995-49F6-AC29-58B9CCFB7056} Exe Properties - NUISamples.Tizen - NUISamples.Tizen + NUISamples.TizenTV + NUISamples.TizenTV 512 en-US @@ -42,19 +42,29 @@ 4 - - + + + + + + - + - + + + {f03a3b48-9d9b-4bf3-92ce-bd63cadc3cd3} + Tizen.NUI + + + @@ -68,27 +78,23 @@ - - - - ..\..\..\..\Tizen.NUI\bin\Debug\Tizen.NUI.dll - + - - - <_TargetFrameworkDirectories>$(MSBuildThisFileDirectory) <_FullFrameworkReferenceAssemblyPaths>$(MSBuildThisFileDirectory) diff --git a/etc/SampleApplication/NUISamples/NUISamples.Tizen/NUISamples.Tizen.csproj.user b/NUISamples/NUISamples.TizenTV/NUISamples.TizenTV.csproj.user similarity index 100% rename from etc/SampleApplication/NUISamples/NUISamples.Tizen/NUISamples.Tizen.csproj.user rename to NUISamples/NUISamples.TizenTV/NUISamples.TizenTV.csproj.user diff --git a/NUISamples/NUISamples.TizenTV/NUISamples.TizenTV.nuget.targets b/NUISamples/NUISamples.TizenTV/NUISamples.TizenTV.nuget.targets new file mode 100755 index 0000000..d230830 --- /dev/null +++ b/NUISamples/NUISamples.TizenTV/NUISamples.TizenTV.nuget.targets @@ -0,0 +1,9 @@ + + + + $(UserProfile)\.nuget\packages\ + + + + + \ No newline at end of file diff --git a/NUISamples/NUISamples.TizenTV/NUISamples.TizenTV.project.json b/NUISamples/NUISamples.TizenTV/NUISamples.TizenTV.project.json new file mode 100755 index 0000000..59741cf --- /dev/null +++ b/NUISamples/NUISamples.TizenTV/NUISamples.TizenTV.project.json @@ -0,0 +1,28 @@ +{ + "buildOptions": { + "emitEntryPoint": true, + "debugType": "portable", + "platform": "AnyCPU", + "preserveCompilationContext": true + }, + "dependencies": { + "Microsoft.NETCore.App": { + "version": "1.0.0" + }, + "Tizen.Library": "1.0.0-pre2", + "Xamarin.Forms": "2.3.3.175", + "Xamarin.Forms.Platform.Tizen": "2.3.3.175-beta-007" + }, + "runtimes": { + "win": {}, + "linux": {} + }, + "frameworks": { + "netcoreapp1.0": { + "imports": [ + "portable-net45+wp80+win81+wpa81", + "netstandard1.6" + ] + } + } +} diff --git a/etc/SampleApplication/NUISamples/NUISamples.Tizen/NUISamples.Tizen.project.lock.json b/NUISamples/NUISamples.TizenTV/NUISamples.TizenTV.project.lock.json similarity index 92% rename from etc/SampleApplication/NUISamples/NUISamples.Tizen/NUISamples.Tizen.project.lock.json rename to NUISamples/NUISamples.TizenTV/NUISamples.TizenTV.project.lock.json index c587bc9..69d4a80 100755 --- a/etc/SampleApplication/NUISamples/NUISamples.Tizen/NUISamples.Tizen.project.lock.json +++ b/NUISamples/NUISamples.TizenTV/NUISamples.TizenTV.project.lock.json @@ -1,10 +1,9 @@ { "locked": false, - "version": 2, + "version": 1, "targets": { ".NETCoreApp,Version=v1.0": { - "ElmSharp/1.0.14": { - "type": "package", + "ElmSharp/1.1.0-beta-009": { "compile": { "lib/netstandard1.3/ElmSharp.dll": {} }, @@ -13,7 +12,6 @@ } }, "Libuv/1.9.0": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1" }, @@ -52,11 +50,8 @@ } } }, - "Microsoft.CodeAnalysis.Analyzers/1.1.0": { - "type": "package" - }, + "Microsoft.CodeAnalysis.Analyzers/1.1.0": {}, "Microsoft.CodeAnalysis.Common/1.3.0": { - "type": "package", "dependencies": { "Microsoft.CodeAnalysis.Analyzers": "1.1.0", "System.AppContext": "4.1.0", @@ -106,7 +101,6 @@ } }, "Microsoft.CodeAnalysis.CSharp/1.3.0": { - "type": "package", "dependencies": { "Microsoft.CodeAnalysis.Common": "[1.3.0]" }, @@ -118,7 +112,6 @@ } }, "Microsoft.CodeAnalysis.VisualBasic/1.3.0": { - "type": "package", "dependencies": { "Microsoft.CodeAnalysis.Common": "1.3.0" }, @@ -130,7 +123,6 @@ } }, "Microsoft.CSharp/4.0.1": { - "type": "package", "dependencies": { "System.Collections": "4.0.11", "System.Diagnostics.Debug": "4.0.11", @@ -157,7 +149,6 @@ } }, "Microsoft.NETCore.App/1.0.0": { - "type": "package", "dependencies": { "Libuv": "1.9.0", "Microsoft.CSharp": "4.0.1", @@ -208,26 +199,19 @@ "lib/netcoreapp1.0/_._": {} } }, - "Microsoft.NETCore.DotNetHost/1.0.1": { - "type": "package" - }, + "Microsoft.NETCore.DotNetHost/1.0.1": {}, "Microsoft.NETCore.DotNetHostPolicy/1.0.1": { - "type": "package", "dependencies": { "Microsoft.NETCore.DotNetHostResolver": "1.0.1" } }, "Microsoft.NETCore.DotNetHostResolver/1.0.1": { - "type": "package", "dependencies": { "Microsoft.NETCore.DotNetHost": "1.0.1" } }, - "Microsoft.NETCore.Jit/1.0.2": { - "type": "package" - }, + "Microsoft.NETCore.Jit/1.0.2": {}, "Microsoft.NETCore.Platforms/1.0.1": { - "type": "package", "compile": { "lib/netstandard1.0/_._": {} }, @@ -236,14 +220,12 @@ } }, "Microsoft.NETCore.Runtime.CoreCLR/1.0.2": { - "type": "package", "dependencies": { "Microsoft.NETCore.Jit": "1.0.2", "Microsoft.NETCore.Windows.ApiSets": "1.0.1" } }, "Microsoft.NETCore.Targets/1.0.1": { - "type": "package", "compile": { "lib/netstandard1.0/_._": {} }, @@ -251,11 +233,8 @@ "lib/netstandard1.0/_._": {} } }, - "Microsoft.NETCore.Windows.ApiSets/1.0.1": { - "type": "package" - }, + "Microsoft.NETCore.Windows.ApiSets/1.0.1": {}, "Microsoft.VisualBasic/10.0.1": { - "type": "package", "dependencies": { "System.Collections": "4.0.11", "System.Diagnostics.Debug": "4.0.11", @@ -282,7 +261,6 @@ } }, "Microsoft.Win32.Primitives/4.0.1": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "Microsoft.NETCore.Targets": "1.0.1", @@ -293,7 +271,6 @@ } }, "Microsoft.Win32.Registry/4.0.0": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "System.Collections": "4.0.11", @@ -319,7 +296,6 @@ } }, "NETStandard.Library/1.6.0": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "Microsoft.Win32.Primitives": "4.0.1", @@ -368,7 +344,6 @@ } }, "runtime.native.System/4.0.0": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "Microsoft.NETCore.Targets": "1.0.1" @@ -381,7 +356,6 @@ } }, "runtime.native.System.IO.Compression/4.1.0": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "Microsoft.NETCore.Targets": "1.0.1" @@ -394,7 +368,6 @@ } }, "runtime.native.System.Net.Http/4.0.1": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "Microsoft.NETCore.Targets": "1.0.1" @@ -407,7 +380,6 @@ } }, "runtime.native.System.Net.Security/4.0.1": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "Microsoft.NETCore.Targets": "1.0.1" @@ -420,7 +392,6 @@ } }, "runtime.native.System.Security.Cryptography/4.0.0": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "Microsoft.NETCore.Targets": "1.0.1" @@ -433,7 +404,6 @@ } }, "System.AppContext/4.1.0": { - "type": "package", "dependencies": { "System.Runtime": "4.1.0" }, @@ -445,7 +415,6 @@ } }, "System.Buffers/4.0.0": { - "type": "package", "dependencies": { "System.Diagnostics.Debug": "4.0.11", "System.Diagnostics.Tracing": "4.1.0", @@ -461,7 +430,6 @@ } }, "System.Collections/4.0.11": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "Microsoft.NETCore.Targets": "1.0.1", @@ -475,7 +443,6 @@ } }, "System.Collections.Concurrent/4.0.12": { - "type": "package", "dependencies": { "System.Collections": "4.0.11", "System.Diagnostics.Debug": "4.0.11", @@ -496,7 +463,6 @@ } }, "System.Collections.Immutable/1.2.0": { - "type": "package", "dependencies": { "System.Collections": "4.0.11", "System.Diagnostics.Debug": "4.0.11", @@ -515,7 +481,6 @@ } }, "System.ComponentModel/4.0.1": { - "type": "package", "dependencies": { "System.Runtime": "4.1.0" }, @@ -527,7 +492,6 @@ } }, "System.ComponentModel.Annotations/4.1.0": { - "type": "package", "dependencies": { "System.Collections": "4.0.11", "System.ComponentModel": "4.0.1", @@ -549,7 +513,6 @@ } }, "System.Console/4.0.0": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "Microsoft.NETCore.Targets": "1.0.1", @@ -562,7 +525,6 @@ } }, "System.Diagnostics.Debug/4.0.11": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "Microsoft.NETCore.Targets": "1.0.1", @@ -576,7 +538,6 @@ } }, "System.Diagnostics.DiagnosticSource/4.0.0": { - "type": "package", "dependencies": { "System.Collections": "4.0.11", "System.Diagnostics.Tracing": "4.1.0", @@ -592,7 +553,6 @@ } }, "System.Diagnostics.FileVersionInfo/4.0.0": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "System.Globalization": "4.0.11", @@ -619,7 +579,6 @@ } }, "System.Diagnostics.Process/4.1.0": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "Microsoft.Win32.Primitives": "4.0.1", @@ -662,7 +621,6 @@ } }, "System.Diagnostics.StackTrace/4.0.1": { - "type": "package", "dependencies": { "System.Collections.Immutable": "1.2.0", "System.IO.FileSystem": "4.0.1", @@ -679,7 +637,6 @@ } }, "System.Diagnostics.Tools/4.0.1": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "Microsoft.NETCore.Targets": "1.0.1", @@ -693,7 +650,6 @@ } }, "System.Diagnostics.Tracing/4.1.0": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "Microsoft.NETCore.Targets": "1.0.1", @@ -704,7 +660,6 @@ } }, "System.Dynamic.Runtime/4.0.11": { - "type": "package", "dependencies": { "System.Collections": "4.0.11", "System.Diagnostics.Debug": "4.0.11", @@ -730,7 +685,6 @@ } }, "System.Globalization/4.0.11": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "Microsoft.NETCore.Targets": "1.0.1", @@ -744,7 +698,6 @@ } }, "System.Globalization.Calendars/4.0.1": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "Microsoft.NETCore.Targets": "1.0.1", @@ -756,7 +709,6 @@ } }, "System.Globalization.Extensions/4.0.1": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "System.Globalization": "4.0.11", @@ -780,7 +732,6 @@ } }, "System.IO/4.1.0": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "Microsoft.NETCore.Targets": "1.0.1", @@ -796,7 +747,6 @@ } }, "System.IO.Compression/4.1.0": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "System.Collections": "4.0.11", @@ -828,7 +778,6 @@ } }, "System.IO.Compression.ZipFile/4.0.1": { - "type": "package", "dependencies": { "System.Buffers": "4.0.0", "System.IO": "4.1.0", @@ -848,7 +797,6 @@ } }, "System.IO.FileSystem/4.0.1": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "Microsoft.NETCore.Targets": "1.0.1", @@ -864,7 +812,6 @@ } }, "System.IO.FileSystem.Primitives/4.0.1": { - "type": "package", "dependencies": { "System.Runtime": "4.1.0" }, @@ -876,7 +823,6 @@ } }, "System.IO.FileSystem.Watcher/4.0.0": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "Microsoft.Win32.Primitives": "4.0.1", @@ -914,7 +860,6 @@ } }, "System.IO.MemoryMappedFiles/4.0.0": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "System.IO": "4.1.0", @@ -945,7 +890,6 @@ } }, "System.IO.UnmanagedMemoryStream/4.0.1": { - "type": "package", "dependencies": { "System.IO": "4.1.0", "System.IO.FileSystem.Primitives": "4.0.1", @@ -963,7 +907,6 @@ } }, "System.Linq/4.1.0": { - "type": "package", "dependencies": { "System.Collections": "4.0.11", "System.Diagnostics.Debug": "4.0.11", @@ -979,7 +922,6 @@ } }, "System.Linq.Expressions/4.1.0": { - "type": "package", "dependencies": { "System.Collections": "4.0.11", "System.Diagnostics.Debug": "4.0.11", @@ -1007,7 +949,6 @@ } }, "System.Linq.Parallel/4.0.1": { - "type": "package", "dependencies": { "System.Collections": "4.0.11", "System.Collections.Concurrent": "4.0.12", @@ -1028,7 +969,6 @@ } }, "System.Linq.Queryable/4.0.1": { - "type": "package", "dependencies": { "System.Collections": "4.0.11", "System.Diagnostics.Debug": "4.0.11", @@ -1047,7 +987,6 @@ } }, "System.Net.Http/4.1.0": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "System.Collections": "4.0.11", @@ -1091,7 +1030,6 @@ } }, "System.Net.NameResolution/4.0.0": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "System.Collections": "4.0.11", @@ -1123,7 +1061,6 @@ } }, "System.Net.Primitives/4.0.11": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "Microsoft.NETCore.Targets": "1.0.1", @@ -1138,7 +1075,6 @@ } }, "System.Net.Requests/4.0.11": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "System.Collections": "4.0.11", @@ -1172,7 +1108,6 @@ } }, "System.Net.Security/4.0.0": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "Microsoft.Win32.Primitives": "4.0.1", @@ -1218,7 +1153,6 @@ } }, "System.Net.Sockets/4.1.0": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "Microsoft.NETCore.Targets": "1.0.1", @@ -1232,7 +1166,6 @@ } }, "System.Net.WebHeaderCollection/4.0.1": { - "type": "package", "dependencies": { "System.Collections": "4.0.11", "System.Resources.ResourceManager": "4.0.1", @@ -1247,7 +1180,6 @@ } }, "System.Numerics.Vectors/4.1.1": { - "type": "package", "dependencies": { "System.Globalization": "4.0.11", "System.Resources.ResourceManager": "4.0.1", @@ -1262,7 +1194,6 @@ } }, "System.ObjectModel/4.0.12": { - "type": "package", "dependencies": { "System.Collections": "4.0.11", "System.Diagnostics.Debug": "4.0.11", @@ -1278,7 +1209,6 @@ } }, "System.Reflection/4.1.0": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "Microsoft.NETCore.Targets": "1.0.1", @@ -1294,7 +1224,6 @@ } }, "System.Reflection.DispatchProxy/4.0.1": { - "type": "package", "dependencies": { "System.Collections": "4.0.11", "System.Linq": "4.1.0", @@ -1315,7 +1244,6 @@ } }, "System.Reflection.Emit/4.0.1": { - "type": "package", "dependencies": { "System.IO": "4.1.0", "System.Reflection": "4.1.0", @@ -1331,7 +1259,6 @@ } }, "System.Reflection.Emit.ILGeneration/4.0.1": { - "type": "package", "dependencies": { "System.Reflection": "4.1.0", "System.Reflection.Primitives": "4.0.1", @@ -1345,7 +1272,6 @@ } }, "System.Reflection.Emit.Lightweight/4.0.1": { - "type": "package", "dependencies": { "System.Reflection": "4.1.0", "System.Reflection.Emit.ILGeneration": "4.0.1", @@ -1360,7 +1286,6 @@ } }, "System.Reflection.Extensions/4.0.1": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "Microsoft.NETCore.Targets": "1.0.1", @@ -1375,7 +1300,6 @@ } }, "System.Reflection.Metadata/1.3.0": { - "type": "package", "dependencies": { "System.Collections": "4.0.11", "System.Collections.Immutable": "1.2.0", @@ -1401,7 +1325,6 @@ } }, "System.Reflection.Primitives/4.0.1": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "Microsoft.NETCore.Targets": "1.0.1", @@ -1415,7 +1338,6 @@ } }, "System.Reflection.TypeExtensions/4.1.0": { - "type": "package", "dependencies": { "System.Reflection": "4.1.0", "System.Runtime": "4.1.0" @@ -1428,7 +1350,6 @@ } }, "System.Resources.Reader/4.0.0": { - "type": "package", "dependencies": { "System.IO": "4.1.0", "System.Resources.ResourceManager": "4.0.1", @@ -1444,7 +1365,6 @@ } }, "System.Resources.ResourceManager/4.0.1": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "Microsoft.NETCore.Targets": "1.0.1", @@ -1460,7 +1380,6 @@ } }, "System.Runtime/4.1.0": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "Microsoft.NETCore.Targets": "1.0.1" @@ -1473,7 +1392,6 @@ } }, "System.Runtime.Extensions/4.1.0": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "Microsoft.NETCore.Targets": "1.0.1", @@ -1487,7 +1405,6 @@ } }, "System.Runtime.Handles/4.0.1": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "Microsoft.NETCore.Targets": "1.0.1", @@ -1498,7 +1415,6 @@ } }, "System.Runtime.InteropServices/4.1.0": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "Microsoft.NETCore.Targets": "1.0.1", @@ -1512,7 +1428,6 @@ } }, "System.Runtime.InteropServices.RuntimeInformation/4.0.0": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "System.Reflection": "4.1.0", @@ -1537,7 +1452,6 @@ } }, "System.Runtime.Loader/4.0.0": { - "type": "package", "dependencies": { "System.IO": "4.1.0", "System.Reflection": "4.1.0", @@ -1551,7 +1465,6 @@ } }, "System.Runtime.Numerics/4.0.1": { - "type": "package", "dependencies": { "System.Globalization": "4.0.11", "System.Resources.ResourceManager": "4.0.1", @@ -1566,7 +1479,6 @@ } }, "System.Security.Claims/4.0.1": { - "type": "package", "dependencies": { "System.Collections": "4.0.11", "System.Globalization": "4.0.11", @@ -1584,7 +1496,6 @@ } }, "System.Security.Cryptography.Algorithms/4.2.0": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "System.Collections": "4.0.11", @@ -1615,7 +1526,6 @@ } }, "System.Security.Cryptography.Cng/4.2.0": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "System.IO": "4.1.0", @@ -1644,7 +1554,6 @@ } }, "System.Security.Cryptography.Csp/4.0.0": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "System.IO": "4.1.0", @@ -1675,7 +1584,6 @@ } }, "System.Security.Cryptography.Encoding/4.0.0": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "System.Collections": "4.0.11", @@ -1705,7 +1613,6 @@ } }, "System.Security.Cryptography.OpenSsl/4.0.0": { - "type": "package", "dependencies": { "System.Collections": "4.0.11", "System.IO": "4.1.0", @@ -1735,7 +1642,6 @@ } }, "System.Security.Cryptography.Primitives/4.0.0": { - "type": "package", "dependencies": { "System.Diagnostics.Debug": "4.0.11", "System.Globalization": "4.0.11", @@ -1753,7 +1659,6 @@ } }, "System.Security.Cryptography.X509Certificates/4.1.0": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "System.Collections": "4.0.11", @@ -1796,7 +1701,6 @@ } }, "System.Security.Principal/4.0.1": { - "type": "package", "dependencies": { "System.Runtime": "4.1.0" }, @@ -1808,7 +1712,6 @@ } }, "System.Security.Principal.Windows/4.0.0": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "Microsoft.Win32.Primitives": "4.0.1", @@ -1840,7 +1743,6 @@ } }, "System.Text.Encoding/4.0.11": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "Microsoft.NETCore.Targets": "1.0.1", @@ -1854,7 +1756,6 @@ } }, "System.Text.Encoding.CodePages/4.0.1": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "System.Collections": "4.0.11", @@ -1884,7 +1785,6 @@ } }, "System.Text.Encoding.Extensions/4.0.11": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "Microsoft.NETCore.Targets": "1.0.1", @@ -1899,7 +1799,6 @@ } }, "System.Text.RegularExpressions/4.1.0": { - "type": "package", "dependencies": { "System.Collections": "4.0.11", "System.Globalization": "4.0.11", @@ -1916,7 +1815,6 @@ } }, "System.Threading/4.0.11": { - "type": "package", "dependencies": { "System.Runtime": "4.1.0", "System.Threading.Tasks": "4.0.11" @@ -1929,7 +1827,6 @@ } }, "System.Threading.Overlapped/4.0.1": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "System.Resources.ResourceManager": "4.0.1", @@ -1951,7 +1848,6 @@ } }, "System.Threading.Tasks/4.0.11": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "Microsoft.NETCore.Targets": "1.0.1", @@ -1965,7 +1861,6 @@ } }, "System.Threading.Tasks.Dataflow/4.6.0": { - "type": "package", "dependencies": { "System.Collections": "4.0.11", "System.Collections.Concurrent": "4.0.12", @@ -1987,7 +1882,6 @@ } }, "System.Threading.Tasks.Extensions/4.0.0": { - "type": "package", "dependencies": { "System.Collections": "4.0.11", "System.Runtime": "4.1.0", @@ -2001,7 +1895,6 @@ } }, "System.Threading.Tasks.Parallel/4.0.1": { - "type": "package", "dependencies": { "System.Collections.Concurrent": "4.0.12", "System.Diagnostics.Debug": "4.0.11", @@ -2020,7 +1913,6 @@ } }, "System.Threading.Thread/4.0.0": { - "type": "package", "dependencies": { "System.Runtime": "4.1.0" }, @@ -2032,7 +1924,6 @@ } }, "System.Threading.ThreadPool/4.0.10": { - "type": "package", "dependencies": { "System.Runtime": "4.1.0", "System.Runtime.Handles": "4.0.1" @@ -2045,7 +1936,6 @@ } }, "System.Threading.Timer/4.0.1": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "Microsoft.NETCore.Targets": "1.0.1", @@ -2056,7 +1946,6 @@ } }, "System.Xml.ReaderWriter/4.0.11": { - "type": "package", "dependencies": { "System.Collections": "4.0.11", "System.Diagnostics.Debug": "4.0.11", @@ -2082,7 +1971,6 @@ } }, "System.Xml.XDocument/4.0.11": { - "type": "package", "dependencies": { "System.Collections": "4.0.11", "System.Diagnostics.Debug": "4.0.11", @@ -2105,7 +1993,6 @@ } }, "System.Xml.XmlDocument/4.0.1": { - "type": "package", "dependencies": { "System.Collections": "4.0.11", "System.Diagnostics.Debug": "4.0.11", @@ -2126,7 +2013,6 @@ } }, "System.Xml.XPath/4.0.1": { - "type": "package", "dependencies": { "System.Collections": "4.0.11", "System.Diagnostics.Debug": "4.0.11", @@ -2146,7 +2032,6 @@ } }, "System.Xml.XPath.XDocument/4.0.1": { - "type": "package", "dependencies": { "System.Diagnostics.Debug": "4.0.11", "System.Linq": "4.1.0", @@ -2166,7 +2051,6 @@ } }, "Tizen/1.0.2": { - "type": "package", "compile": { "lib/netstandard1.3/Tizen.dll": {} }, @@ -2174,8 +2058,7 @@ "lib/netstandard1.3/Tizen.dll": {} } }, - "Tizen.Applications/1.0.2": { - "type": "package", + "Tizen.Applications/1.1.0": { "dependencies": { "Tizen": "1.0.2" }, @@ -2187,7 +2070,6 @@ } }, "Tizen.Applications.Badge/1.0.2": { - "type": "package", "dependencies": { "Tizen": "1.0.2" }, @@ -2198,8 +2080,7 @@ "lib/netstandard1.3/Tizen.Applications.Badge.dll": {} } }, - "Tizen.Content.MediaContent/1.0.5": { - "type": "package", + "Tizen.Content.MediaContent/1.0.6": { "dependencies": { "Tizen": "1.0.2" }, @@ -2211,7 +2092,6 @@ } }, "Tizen.Content.MimeType/1.0.2": { - "type": "package", "dependencies": { "Tizen": "1.0.2" }, @@ -2222,42 +2102,44 @@ "lib/netstandard1.3/Tizen.Content.MimeType.dll": {} } }, - "Tizen.Library/1.0.0-pre1": { - "type": "package", + "Tizen.Library/1.0.0-pre2": { "dependencies": { - "ElmSharp": "1.0.14", + "ElmSharp": "1.1.0-beta-009", "Tizen": "1.0.2", - "Tizen.Applications": "1.0.2", + "Tizen.Applications": "1.1.0", "Tizen.Applications.Badge": "1.0.2", - "Tizen.Content.MediaContent": "1.0.5", + "Tizen.Content.MediaContent": "1.0.6", "Tizen.Content.MimeType": "1.0.2", - "Tizen.Location": "1.0.3", - "Tizen.Multimedia": "1.0.14", - "Tizen.Network": "1.0.5", + "Tizen.Messaging.Push": "1.0.2", + "Tizen.Multimedia": "1.0.28", + "Tizen.Network.Connection": "1.0.6", + "Tizen.Network.WiFi": "1.0.3", "Tizen.Security": "1.0.5", - "Tizen.Security.SecureRepository": "1.0.6", + "Tizen.Security.SecureRepository": "1.0.7", "Tizen.Sensor": "1.0.4", "Tizen.System": "1.0.5", - "Tizen.Tracer": "1.0.3" + "Tizen.System.MediaKey": "1.0.2", + "Tizen.Tracer": "1.0.3", + "Tizen.Uix.Stt": "1.0.0", + "Tizen.Uix.Tts": "1.0.0" } }, - "Tizen.Location/1.0.3": { - "type": "package", + "Tizen.Messaging.Push/1.0.2": { "dependencies": { - "Tizen": "1.0.2" + "Tizen": "1.0.1" }, "compile": { - "lib/netstandard1.3/Tizen.Location.dll": {} + "lib/netstandard1.3/Tizen.Messaging.Push.dll": {} }, "runtime": { - "lib/netstandard1.3/Tizen.Location.dll": {} + "lib/netstandard1.3/Tizen.Messaging.Push.dll": {} } }, - "Tizen.Multimedia/1.0.14": { - "type": "package", + "Tizen.Multimedia/1.0.28": { "dependencies": { "ElmSharp": "1.0.14", - "Tizen": "1.0.2" + "Tizen": "1.0.2", + "Tizen.Applications": "1.0.2" }, "compile": { "lib/netstandard1.3/Tizen.Multimedia.dll": {} @@ -2266,20 +2148,30 @@ "lib/netstandard1.3/Tizen.Multimedia.dll": {} } }, - "Tizen.Network/1.0.5": { - "type": "package", + "Tizen.Network.Connection/1.0.6": { "dependencies": { "Tizen": "1.0.2" }, "compile": { - "lib/netstandard1.3/Tizen.Network.dll": {} + "lib/netstandard1.3/Tizen.Network.Connection.dll": {} + }, + "runtime": { + "lib/netstandard1.3/Tizen.Network.Connection.dll": {} + } + }, + "Tizen.Network.WiFi/1.0.3": { + "dependencies": { + "Tizen": "1.0.2", + "Tizen.Network.Connection": "1.0.2" + }, + "compile": { + "lib/netstandard1.3/Tizen.Network.WiFi.dll": {} }, "runtime": { - "lib/netstandard1.3/Tizen.Network.dll": {} + "lib/netstandard1.3/Tizen.Network.WiFi.dll": {} } }, "Tizen.Security/1.0.5": { - "type": "package", "dependencies": { "Tizen.Applications": "1.0.2" }, @@ -2290,8 +2182,7 @@ "lib/netstandard1.3/Tizen.Security.dll": {} } }, - "Tizen.Security.SecureRepository/1.0.6": { - "type": "package", + "Tizen.Security.SecureRepository/1.0.7": { "dependencies": { "Tizen": "1.0.2" }, @@ -2303,7 +2194,6 @@ } }, "Tizen.Sensor/1.0.4": { - "type": "package", "dependencies": { "Tizen": "1.0.2", "Tizen.System": "1.0.5" @@ -2316,7 +2206,6 @@ } }, "Tizen.System/1.0.5": { - "type": "package", "dependencies": { "Tizen": "1.0.2" }, @@ -2327,8 +2216,18 @@ "lib/netstandard1.3/Tizen.System.dll": {} } }, + "Tizen.System.MediaKey/1.0.2": { + "dependencies": { + "Tizen": "1.0.2" + }, + "compile": { + "lib/netstandard1.3/Tizen.System.MediaKey.dll": {} + }, + "runtime": { + "lib/netstandard1.3/Tizen.System.MediaKey.dll": {} + } + }, "Tizen.Tracer/1.0.3": { - "type": "package", "dependencies": { "Tizen": "1.0.2" }, @@ -2338,11 +2237,55 @@ "runtime": { "lib/netstandard1.3/Tizen.Tracer.dll": {} } + }, + "Tizen.Uix.Stt/1.0.0": { + "dependencies": { + "Tizen": "1.0.2" + }, + "compile": { + "lib/netstandard1.3/Tizen.Uix.Stt.dll": {} + }, + "runtime": { + "lib/netstandard1.3/Tizen.Uix.Stt.dll": {} + } + }, + "Tizen.Uix.Tts/1.0.0": { + "dependencies": { + "Tizen": "1.0.2" + }, + "compile": { + "lib/netstandard1.3/Tizen.Uix.Tts.dll": {} + }, + "runtime": { + "lib/netstandard1.3/Tizen.Uix.Tts.dll": {} + } + }, + "Xamarin.Forms/2.3.3.175": { + "compile": { + "lib/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/Xamarin.Forms.Core.dll": {}, + "lib/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/Xamarin.Forms.Platform.dll": {}, + "lib/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/Xamarin.Forms.Xaml.dll": {} + }, + "runtime": { + "lib/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/Xamarin.Forms.Core.dll": {}, + "lib/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/Xamarin.Forms.Platform.dll": {}, + "lib/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/Xamarin.Forms.Xaml.dll": {} + } + }, + "Xamarin.Forms.Platform.Tizen/2.3.3.175-beta-007": { + "dependencies": { + "Xamarin.Forms": "2.3.3.175" + }, + "compile": { + "lib/netstandard1.6/Xamarin.Forms.Platform.Tizen.dll": {} + }, + "runtime": { + "lib/netstandard1.6/Xamarin.Forms.Platform.Tizen.dll": {} + } } }, ".NETCoreApp,Version=v1.0/linux": { - "ElmSharp/1.0.14": { - "type": "package", + "ElmSharp/1.1.0-beta-009": { "compile": { "lib/netstandard1.3/ElmSharp.dll": {} }, @@ -2351,16 +2294,12 @@ } }, "Libuv/1.9.0": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1" } }, - "Microsoft.CodeAnalysis.Analyzers/1.1.0": { - "type": "package" - }, + "Microsoft.CodeAnalysis.Analyzers/1.1.0": {}, "Microsoft.CodeAnalysis.Common/1.3.0": { - "type": "package", "dependencies": { "Microsoft.CodeAnalysis.Analyzers": "1.1.0", "System.AppContext": "4.1.0", @@ -2410,7 +2349,6 @@ } }, "Microsoft.CodeAnalysis.CSharp/1.3.0": { - "type": "package", "dependencies": { "Microsoft.CodeAnalysis.Common": "[1.3.0]" }, @@ -2422,7 +2360,6 @@ } }, "Microsoft.CodeAnalysis.VisualBasic/1.3.0": { - "type": "package", "dependencies": { "Microsoft.CodeAnalysis.Common": "1.3.0" }, @@ -2434,7 +2371,6 @@ } }, "Microsoft.CSharp/4.0.1": { - "type": "package", "dependencies": { "System.Collections": "4.0.11", "System.Diagnostics.Debug": "4.0.11", @@ -2461,7 +2397,6 @@ } }, "Microsoft.NETCore.App/1.0.0": { - "type": "package", "dependencies": { "Libuv": "1.9.0", "Microsoft.CSharp": "4.0.1", @@ -2512,26 +2447,19 @@ "lib/netcoreapp1.0/_._": {} } }, - "Microsoft.NETCore.DotNetHost/1.0.1": { - "type": "package" - }, + "Microsoft.NETCore.DotNetHost/1.0.1": {}, "Microsoft.NETCore.DotNetHostPolicy/1.0.1": { - "type": "package", "dependencies": { "Microsoft.NETCore.DotNetHostResolver": "1.0.1" } }, "Microsoft.NETCore.DotNetHostResolver/1.0.1": { - "type": "package", "dependencies": { "Microsoft.NETCore.DotNetHost": "1.0.1" } }, - "Microsoft.NETCore.Jit/1.0.2": { - "type": "package" - }, + "Microsoft.NETCore.Jit/1.0.2": {}, "Microsoft.NETCore.Platforms/1.0.1": { - "type": "package", "compile": { "lib/netstandard1.0/_._": {} }, @@ -2540,14 +2468,12 @@ } }, "Microsoft.NETCore.Runtime.CoreCLR/1.0.2": { - "type": "package", "dependencies": { "Microsoft.NETCore.Jit": "1.0.2", "Microsoft.NETCore.Windows.ApiSets": "1.0.1" } }, "Microsoft.NETCore.Targets/1.0.1": { - "type": "package", "compile": { "lib/netstandard1.0/_._": {} }, @@ -2555,11 +2481,8 @@ "lib/netstandard1.0/_._": {} } }, - "Microsoft.NETCore.Windows.ApiSets/1.0.1": { - "type": "package" - }, + "Microsoft.NETCore.Windows.ApiSets/1.0.1": {}, "Microsoft.VisualBasic/10.0.1": { - "type": "package", "dependencies": { "System.Collections": "4.0.11", "System.Diagnostics.Debug": "4.0.11", @@ -2586,7 +2509,6 @@ } }, "Microsoft.Win32.Primitives/4.0.1": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "Microsoft.NETCore.Targets": "1.0.1", @@ -2598,7 +2520,6 @@ } }, "Microsoft.Win32.Registry/4.0.0": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "System.Collections": "4.0.11", @@ -2617,7 +2538,6 @@ } }, "NETStandard.Library/1.6.0": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "Microsoft.Win32.Primitives": "4.0.1", @@ -2666,7 +2586,6 @@ } }, "runtime.any.System.Collections/4.0.11": { - "type": "package", "dependencies": { "System.Runtime": "4.1.0" }, @@ -2678,7 +2597,6 @@ } }, "runtime.any.System.Diagnostics.Tools/4.0.1": { - "type": "package", "compile": { "ref/netstandard/_._": {} }, @@ -2687,7 +2605,6 @@ } }, "runtime.any.System.Diagnostics.Tracing/4.1.0": { - "type": "package", "compile": { "ref/netstandard/_._": {} }, @@ -2696,7 +2613,6 @@ } }, "runtime.any.System.Globalization/4.0.11": { - "type": "package", "compile": { "ref/netstandard/_._": {} }, @@ -2705,7 +2621,6 @@ } }, "runtime.any.System.Globalization.Calendars/4.0.1": { - "type": "package", "compile": { "ref/netstandard/_._": {} }, @@ -2714,7 +2629,6 @@ } }, "runtime.any.System.IO/4.1.0": { - "type": "package", "compile": { "ref/netstandard/_._": {} }, @@ -2723,7 +2637,6 @@ } }, "runtime.any.System.Reflection/4.1.0": { - "type": "package", "compile": { "ref/netstandard/_._": {} }, @@ -2732,7 +2645,6 @@ } }, "runtime.any.System.Reflection.Extensions/4.0.1": { - "type": "package", "compile": { "ref/netstandard/_._": {} }, @@ -2741,7 +2653,6 @@ } }, "runtime.any.System.Reflection.Primitives/4.0.1": { - "type": "package", "compile": { "ref/netstandard/_._": {} }, @@ -2750,7 +2661,6 @@ } }, "runtime.any.System.Resources.ResourceManager/4.0.1": { - "type": "package", "compile": { "ref/netstandard/_._": {} }, @@ -2759,7 +2669,6 @@ } }, "runtime.any.System.Runtime/4.1.0": { - "type": "package", "dependencies": { "System.Private.Uri": "4.0.1" }, @@ -2771,7 +2680,6 @@ } }, "runtime.any.System.Runtime.Handles/4.0.1": { - "type": "package", "compile": { "ref/netstandard/_._": {} }, @@ -2780,7 +2688,6 @@ } }, "runtime.any.System.Runtime.InteropServices/4.1.0": { - "type": "package", "compile": { "ref/netstandard/_._": {} }, @@ -2789,7 +2696,6 @@ } }, "runtime.any.System.Text.Encoding/4.0.11": { - "type": "package", "compile": { "ref/netstandard/_._": {} }, @@ -2798,7 +2704,6 @@ } }, "runtime.any.System.Text.Encoding.Extensions/4.0.11": { - "type": "package", "compile": { "ref/netstandard/_._": {} }, @@ -2807,7 +2712,6 @@ } }, "runtime.any.System.Threading.Tasks/4.0.11": { - "type": "package", "compile": { "ref/netstandard/_._": {} }, @@ -2816,7 +2720,6 @@ } }, "runtime.any.System.Threading.Timer/4.0.1": { - "type": "package", "compile": { "ref/netstandard/_._": {} }, @@ -2825,7 +2728,6 @@ } }, "runtime.native.System/4.0.0": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "Microsoft.NETCore.Targets": "1.0.1" @@ -2838,7 +2740,6 @@ } }, "runtime.native.System.IO.Compression/4.1.0": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "Microsoft.NETCore.Targets": "1.0.1" @@ -2851,7 +2752,6 @@ } }, "runtime.native.System.Net.Http/4.0.1": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "Microsoft.NETCore.Targets": "1.0.1" @@ -2864,7 +2764,6 @@ } }, "runtime.native.System.Net.Security/4.0.1": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "Microsoft.NETCore.Targets": "1.0.1" @@ -2877,7 +2776,6 @@ } }, "runtime.native.System.Security.Cryptography/4.0.0": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "Microsoft.NETCore.Targets": "1.0.1" @@ -2890,7 +2788,6 @@ } }, "runtime.unix.Microsoft.Win32.Primitives/4.0.1": { - "type": "package", "dependencies": { "System.Runtime": "4.1.0", "System.Runtime.InteropServices": "4.1.0", @@ -2904,7 +2801,6 @@ } }, "runtime.unix.System.Console/4.0.0": { - "type": "package", "dependencies": { "System.Collections": "4.0.11", "System.IO": "4.1.0", @@ -2928,7 +2824,6 @@ } }, "runtime.unix.System.Diagnostics.Debug/4.0.11": { - "type": "package", "dependencies": { "runtime.native.System": "4.0.0" }, @@ -2940,7 +2835,6 @@ } }, "runtime.unix.System.IO.FileSystem/4.0.1": { - "type": "package", "dependencies": { "System.Collections": "4.0.11", "System.Diagnostics.Debug": "4.0.11", @@ -2965,7 +2859,6 @@ } }, "runtime.unix.System.Net.Primitives/4.0.11": { - "type": "package", "dependencies": { "Microsoft.Win32.Primitives": "4.0.1", "System.Collections": "4.0.11", @@ -2987,7 +2880,6 @@ } }, "runtime.unix.System.Net.Sockets/4.1.0": { - "type": "package", "dependencies": { "System.Collections": "4.0.11", "System.Diagnostics.Debug": "4.0.11", @@ -3015,7 +2907,6 @@ } }, "runtime.unix.System.Private.Uri/4.0.1": { - "type": "package", "dependencies": { "runtime.native.System": "4.0.0" }, @@ -3027,7 +2918,6 @@ } }, "runtime.unix.System.Runtime.Extensions/4.1.0": { - "type": "package", "dependencies": { "System.Private.Uri": "4.0.1", "runtime.native.System": "4.0.0", @@ -3041,7 +2931,6 @@ } }, "System.AppContext/4.1.0": { - "type": "package", "dependencies": { "System.Runtime": "4.1.0" }, @@ -3053,7 +2942,6 @@ } }, "System.Buffers/4.0.0": { - "type": "package", "dependencies": { "System.Diagnostics.Debug": "4.0.11", "System.Diagnostics.Tracing": "4.1.0", @@ -3069,7 +2957,6 @@ } }, "System.Collections/4.0.11": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "Microsoft.NETCore.Targets": "1.0.1", @@ -3084,7 +2971,6 @@ } }, "System.Collections.Concurrent/4.0.12": { - "type": "package", "dependencies": { "System.Collections": "4.0.11", "System.Diagnostics.Debug": "4.0.11", @@ -3105,7 +2991,6 @@ } }, "System.Collections.Immutable/1.2.0": { - "type": "package", "dependencies": { "System.Collections": "4.0.11", "System.Diagnostics.Debug": "4.0.11", @@ -3124,7 +3009,6 @@ } }, "System.ComponentModel/4.0.1": { - "type": "package", "dependencies": { "System.Runtime": "4.1.0" }, @@ -3136,7 +3020,6 @@ } }, "System.ComponentModel.Annotations/4.1.0": { - "type": "package", "dependencies": { "System.Collections": "4.0.11", "System.ComponentModel": "4.0.1", @@ -3158,7 +3041,6 @@ } }, "System.Console/4.0.0": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "Microsoft.NETCore.Targets": "1.0.1", @@ -3172,7 +3054,6 @@ } }, "System.Diagnostics.Debug/4.0.11": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "Microsoft.NETCore.Targets": "1.0.1", @@ -3187,7 +3068,6 @@ } }, "System.Diagnostics.DiagnosticSource/4.0.0": { - "type": "package", "dependencies": { "System.Collections": "4.0.11", "System.Diagnostics.Tracing": "4.1.0", @@ -3203,7 +3083,6 @@ } }, "System.Diagnostics.FileVersionInfo/4.0.0": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "System.Globalization": "4.0.11", @@ -3223,7 +3102,6 @@ } }, "System.Diagnostics.Process/4.1.0": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "Microsoft.Win32.Primitives": "4.0.1", @@ -3255,7 +3133,6 @@ } }, "System.Diagnostics.StackTrace/4.0.1": { - "type": "package", "dependencies": { "System.Collections.Immutable": "1.2.0", "System.IO.FileSystem": "4.0.1", @@ -3272,7 +3149,6 @@ } }, "System.Diagnostics.Tools/4.0.1": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "Microsoft.NETCore.Targets": "1.0.1", @@ -3287,7 +3163,6 @@ } }, "System.Diagnostics.Tracing/4.1.0": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "Microsoft.NETCore.Targets": "1.0.1", @@ -3299,7 +3174,6 @@ } }, "System.Dynamic.Runtime/4.0.11": { - "type": "package", "dependencies": { "System.Collections": "4.0.11", "System.Diagnostics.Debug": "4.0.11", @@ -3325,7 +3199,6 @@ } }, "System.Globalization/4.0.11": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "Microsoft.NETCore.Targets": "1.0.1", @@ -3340,7 +3213,6 @@ } }, "System.Globalization.Calendars/4.0.1": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "Microsoft.NETCore.Targets": "1.0.1", @@ -3353,7 +3225,6 @@ } }, "System.Globalization.Extensions/4.0.1": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "System.Globalization": "4.0.11", @@ -3370,7 +3241,6 @@ } }, "System.IO/4.1.0": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "Microsoft.NETCore.Targets": "1.0.1", @@ -3387,7 +3257,6 @@ } }, "System.IO.Compression/4.1.0": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "System.Collections": "4.0.11", @@ -3412,7 +3281,6 @@ } }, "System.IO.Compression.ZipFile/4.0.1": { - "type": "package", "dependencies": { "System.Buffers": "4.0.0", "System.IO": "4.1.0", @@ -3432,7 +3300,6 @@ } }, "System.IO.FileSystem/4.0.1": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "Microsoft.NETCore.Targets": "1.0.1", @@ -3449,7 +3316,6 @@ } }, "System.IO.FileSystem.Primitives/4.0.1": { - "type": "package", "dependencies": { "System.Runtime": "4.1.0" }, @@ -3461,7 +3327,6 @@ } }, "System.IO.FileSystem.Watcher/4.0.0": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "Microsoft.Win32.Primitives": "4.0.1", @@ -3488,7 +3353,6 @@ } }, "System.IO.MemoryMappedFiles/4.0.0": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "System.IO": "4.1.0", @@ -3512,7 +3376,6 @@ } }, "System.IO.UnmanagedMemoryStream/4.0.1": { - "type": "package", "dependencies": { "System.IO": "4.1.0", "System.IO.FileSystem.Primitives": "4.0.1", @@ -3530,7 +3393,6 @@ } }, "System.Linq/4.1.0": { - "type": "package", "dependencies": { "System.Collections": "4.0.11", "System.Diagnostics.Debug": "4.0.11", @@ -3546,7 +3408,6 @@ } }, "System.Linq.Expressions/4.1.0": { - "type": "package", "dependencies": { "System.Collections": "4.0.11", "System.Diagnostics.Debug": "4.0.11", @@ -3574,7 +3435,6 @@ } }, "System.Linq.Parallel/4.0.1": { - "type": "package", "dependencies": { "System.Collections": "4.0.11", "System.Collections.Concurrent": "4.0.12", @@ -3595,7 +3455,6 @@ } }, "System.Linq.Queryable/4.0.1": { - "type": "package", "dependencies": { "System.Collections": "4.0.11", "System.Diagnostics.Debug": "4.0.11", @@ -3614,7 +3473,6 @@ } }, "System.Net.Http/4.1.0": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "System.Collections": "4.0.11", @@ -3651,7 +3509,6 @@ } }, "System.Net.NameResolution/4.0.0": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "System.Collections": "4.0.11", @@ -3676,7 +3533,6 @@ } }, "System.Net.Primitives/4.0.11": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "Microsoft.NETCore.Targets": "1.0.1", @@ -3692,7 +3548,6 @@ } }, "System.Net.Requests/4.0.11": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "System.Collections": "4.0.11", @@ -3716,7 +3571,6 @@ } }, "System.Net.Security/4.0.0": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "Microsoft.Win32.Primitives": "4.0.1", @@ -3755,7 +3609,6 @@ } }, "System.Net.Sockets/4.1.0": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "Microsoft.NETCore.Targets": "1.0.1", @@ -3770,7 +3623,6 @@ } }, "System.Net.WebHeaderCollection/4.0.1": { - "type": "package", "dependencies": { "System.Collections": "4.0.11", "System.Resources.ResourceManager": "4.0.1", @@ -3785,7 +3637,6 @@ } }, "System.Numerics.Vectors/4.1.1": { - "type": "package", "dependencies": { "System.Globalization": "4.0.11", "System.Resources.ResourceManager": "4.0.1", @@ -3800,7 +3651,6 @@ } }, "System.ObjectModel/4.0.12": { - "type": "package", "dependencies": { "System.Collections": "4.0.11", "System.Diagnostics.Debug": "4.0.11", @@ -3816,7 +3666,6 @@ } }, "System.Private.Uri/4.0.1": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "Microsoft.NETCore.Targets": "1.0.1", @@ -3827,7 +3676,6 @@ } }, "System.Reflection/4.1.0": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "Microsoft.NETCore.Targets": "1.0.1", @@ -3844,7 +3692,6 @@ } }, "System.Reflection.DispatchProxy/4.0.1": { - "type": "package", "dependencies": { "System.Collections": "4.0.11", "System.Linq": "4.1.0", @@ -3865,7 +3712,6 @@ } }, "System.Reflection.Emit/4.0.1": { - "type": "package", "dependencies": { "System.IO": "4.1.0", "System.Reflection": "4.1.0", @@ -3881,7 +3727,6 @@ } }, "System.Reflection.Emit.ILGeneration/4.0.1": { - "type": "package", "dependencies": { "System.Reflection": "4.1.0", "System.Reflection.Primitives": "4.0.1", @@ -3895,7 +3740,6 @@ } }, "System.Reflection.Emit.Lightweight/4.0.1": { - "type": "package", "dependencies": { "System.Reflection": "4.1.0", "System.Reflection.Emit.ILGeneration": "4.0.1", @@ -3910,7 +3754,6 @@ } }, "System.Reflection.Extensions/4.0.1": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "Microsoft.NETCore.Targets": "1.0.1", @@ -3926,7 +3769,6 @@ } }, "System.Reflection.Metadata/1.3.0": { - "type": "package", "dependencies": { "System.Collections": "4.0.11", "System.Collections.Immutable": "1.2.0", @@ -3952,7 +3794,6 @@ } }, "System.Reflection.Primitives/4.0.1": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "Microsoft.NETCore.Targets": "1.0.1", @@ -3967,7 +3808,6 @@ } }, "System.Reflection.TypeExtensions/4.1.0": { - "type": "package", "dependencies": { "System.Reflection": "4.1.0", "System.Runtime": "4.1.0" @@ -3980,7 +3820,6 @@ } }, "System.Resources.Reader/4.0.0": { - "type": "package", "dependencies": { "System.IO": "4.1.0", "System.Resources.ResourceManager": "4.0.1", @@ -3996,7 +3835,6 @@ } }, "System.Resources.ResourceManager/4.0.1": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "Microsoft.NETCore.Targets": "1.0.1", @@ -4013,7 +3851,6 @@ } }, "System.Runtime/4.1.0": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "Microsoft.NETCore.Targets": "1.0.1", @@ -4027,7 +3864,6 @@ } }, "System.Runtime.Extensions/4.1.0": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "Microsoft.NETCore.Targets": "1.0.1", @@ -4042,7 +3878,6 @@ } }, "System.Runtime.Handles/4.0.1": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "Microsoft.NETCore.Targets": "1.0.1", @@ -4054,7 +3889,6 @@ } }, "System.Runtime.InteropServices/4.1.0": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "Microsoft.NETCore.Targets": "1.0.1", @@ -4069,7 +3903,6 @@ } }, "System.Runtime.InteropServices.RuntimeInformation/4.0.0": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "System.Reflection": "4.1.0", @@ -4087,7 +3920,6 @@ } }, "System.Runtime.Loader/4.0.0": { - "type": "package", "dependencies": { "System.IO": "4.1.0", "System.Reflection": "4.1.0", @@ -4101,7 +3933,6 @@ } }, "System.Runtime.Numerics/4.0.1": { - "type": "package", "dependencies": { "System.Globalization": "4.0.11", "System.Resources.ResourceManager": "4.0.1", @@ -4116,7 +3947,6 @@ } }, "System.Security.Claims/4.0.1": { - "type": "package", "dependencies": { "System.Collections": "4.0.11", "System.Globalization": "4.0.11", @@ -4134,7 +3964,6 @@ } }, "System.Security.Cryptography.Algorithms/4.2.0": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "System.Collections": "4.0.11", @@ -4158,7 +3987,6 @@ } }, "System.Security.Cryptography.Cng/4.2.0": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "System.IO": "4.1.0", @@ -4180,7 +4008,6 @@ } }, "System.Security.Cryptography.Csp/4.0.0": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "System.IO": "4.1.0", @@ -4204,7 +4031,6 @@ } }, "System.Security.Cryptography.Encoding/4.0.0": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "System.Collections": "4.0.11", @@ -4227,7 +4053,6 @@ } }, "System.Security.Cryptography.OpenSsl/4.0.0": { - "type": "package", "dependencies": { "System.Collections": "4.0.11", "System.IO": "4.1.0", @@ -4251,7 +4076,6 @@ } }, "System.Security.Cryptography.Primitives/4.0.0": { - "type": "package", "dependencies": { "System.Diagnostics.Debug": "4.0.11", "System.Globalization": "4.0.11", @@ -4269,7 +4093,6 @@ } }, "System.Security.Cryptography.X509Certificates/4.1.0": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "System.Collections": "4.0.11", @@ -4305,7 +4128,6 @@ } }, "System.Security.Principal/4.0.1": { - "type": "package", "dependencies": { "System.Runtime": "4.1.0" }, @@ -4317,7 +4139,6 @@ } }, "System.Security.Principal.Windows/4.0.0": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "Microsoft.Win32.Primitives": "4.0.1", @@ -4342,7 +4163,6 @@ } }, "System.Text.Encoding/4.0.11": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "Microsoft.NETCore.Targets": "1.0.1", @@ -4357,7 +4177,6 @@ } }, "System.Text.Encoding.CodePages/4.0.1": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "System.Collections": "4.0.11", @@ -4380,7 +4199,6 @@ } }, "System.Text.Encoding.Extensions/4.0.11": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "Microsoft.NETCore.Targets": "1.0.1", @@ -4396,7 +4214,6 @@ } }, "System.Text.RegularExpressions/4.1.0": { - "type": "package", "dependencies": { "System.Collections": "4.0.11", "System.Globalization": "4.0.11", @@ -4413,7 +4230,6 @@ } }, "System.Threading/4.0.11": { - "type": "package", "dependencies": { "System.Runtime": "4.1.0", "System.Threading.Tasks": "4.0.11" @@ -4426,7 +4242,6 @@ } }, "System.Threading.Overlapped/4.0.1": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "System.Resources.ResourceManager": "4.0.1", @@ -4441,7 +4256,6 @@ } }, "System.Threading.Tasks/4.0.11": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "Microsoft.NETCore.Targets": "1.0.1", @@ -4456,7 +4270,6 @@ } }, "System.Threading.Tasks.Dataflow/4.6.0": { - "type": "package", "dependencies": { "System.Collections": "4.0.11", "System.Collections.Concurrent": "4.0.12", @@ -4478,7 +4291,6 @@ } }, "System.Threading.Tasks.Extensions/4.0.0": { - "type": "package", "dependencies": { "System.Collections": "4.0.11", "System.Runtime": "4.1.0", @@ -4492,7 +4304,6 @@ } }, "System.Threading.Tasks.Parallel/4.0.1": { - "type": "package", "dependencies": { "System.Collections.Concurrent": "4.0.12", "System.Diagnostics.Debug": "4.0.11", @@ -4511,7 +4322,6 @@ } }, "System.Threading.Thread/4.0.0": { - "type": "package", "dependencies": { "System.Runtime": "4.1.0" }, @@ -4523,7 +4333,6 @@ } }, "System.Threading.ThreadPool/4.0.10": { - "type": "package", "dependencies": { "System.Runtime": "4.1.0", "System.Runtime.Handles": "4.0.1" @@ -4536,7 +4345,6 @@ } }, "System.Threading.Timer/4.0.1": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "Microsoft.NETCore.Targets": "1.0.1", @@ -4548,7 +4356,6 @@ } }, "System.Xml.ReaderWriter/4.0.11": { - "type": "package", "dependencies": { "System.Collections": "4.0.11", "System.Diagnostics.Debug": "4.0.11", @@ -4574,7 +4381,6 @@ } }, "System.Xml.XDocument/4.0.11": { - "type": "package", "dependencies": { "System.Collections": "4.0.11", "System.Diagnostics.Debug": "4.0.11", @@ -4597,7 +4403,6 @@ } }, "System.Xml.XmlDocument/4.0.1": { - "type": "package", "dependencies": { "System.Collections": "4.0.11", "System.Diagnostics.Debug": "4.0.11", @@ -4618,7 +4423,6 @@ } }, "System.Xml.XPath/4.0.1": { - "type": "package", "dependencies": { "System.Collections": "4.0.11", "System.Diagnostics.Debug": "4.0.11", @@ -4638,7 +4442,6 @@ } }, "System.Xml.XPath.XDocument/4.0.1": { - "type": "package", "dependencies": { "System.Diagnostics.Debug": "4.0.11", "System.Linq": "4.1.0", @@ -4658,7 +4461,6 @@ } }, "Tizen/1.0.2": { - "type": "package", "compile": { "lib/netstandard1.3/Tizen.dll": {} }, @@ -4666,8 +4468,7 @@ "lib/netstandard1.3/Tizen.dll": {} } }, - "Tizen.Applications/1.0.2": { - "type": "package", + "Tizen.Applications/1.1.0": { "dependencies": { "Tizen": "1.0.2" }, @@ -4679,7 +4480,6 @@ } }, "Tizen.Applications.Badge/1.0.2": { - "type": "package", "dependencies": { "Tizen": "1.0.2" }, @@ -4690,8 +4490,7 @@ "lib/netstandard1.3/Tizen.Applications.Badge.dll": {} } }, - "Tizen.Content.MediaContent/1.0.5": { - "type": "package", + "Tizen.Content.MediaContent/1.0.6": { "dependencies": { "Tizen": "1.0.2" }, @@ -4703,7 +4502,6 @@ } }, "Tizen.Content.MimeType/1.0.2": { - "type": "package", "dependencies": { "Tizen": "1.0.2" }, @@ -4714,42 +4512,44 @@ "lib/netstandard1.3/Tizen.Content.MimeType.dll": {} } }, - "Tizen.Library/1.0.0-pre1": { - "type": "package", + "Tizen.Library/1.0.0-pre2": { "dependencies": { - "ElmSharp": "1.0.14", + "ElmSharp": "1.1.0-beta-009", "Tizen": "1.0.2", - "Tizen.Applications": "1.0.2", + "Tizen.Applications": "1.1.0", "Tizen.Applications.Badge": "1.0.2", - "Tizen.Content.MediaContent": "1.0.5", + "Tizen.Content.MediaContent": "1.0.6", "Tizen.Content.MimeType": "1.0.2", - "Tizen.Location": "1.0.3", - "Tizen.Multimedia": "1.0.14", - "Tizen.Network": "1.0.5", + "Tizen.Messaging.Push": "1.0.2", + "Tizen.Multimedia": "1.0.28", + "Tizen.Network.Connection": "1.0.6", + "Tizen.Network.WiFi": "1.0.3", "Tizen.Security": "1.0.5", - "Tizen.Security.SecureRepository": "1.0.6", + "Tizen.Security.SecureRepository": "1.0.7", "Tizen.Sensor": "1.0.4", "Tizen.System": "1.0.5", - "Tizen.Tracer": "1.0.3" + "Tizen.System.MediaKey": "1.0.2", + "Tizen.Tracer": "1.0.3", + "Tizen.Uix.Stt": "1.0.0", + "Tizen.Uix.Tts": "1.0.0" } }, - "Tizen.Location/1.0.3": { - "type": "package", + "Tizen.Messaging.Push/1.0.2": { "dependencies": { - "Tizen": "1.0.2" + "Tizen": "1.0.1" }, "compile": { - "lib/netstandard1.3/Tizen.Location.dll": {} + "lib/netstandard1.3/Tizen.Messaging.Push.dll": {} }, "runtime": { - "lib/netstandard1.3/Tizen.Location.dll": {} + "lib/netstandard1.3/Tizen.Messaging.Push.dll": {} } }, - "Tizen.Multimedia/1.0.14": { - "type": "package", + "Tizen.Multimedia/1.0.28": { "dependencies": { "ElmSharp": "1.0.14", - "Tizen": "1.0.2" + "Tizen": "1.0.2", + "Tizen.Applications": "1.0.2" }, "compile": { "lib/netstandard1.3/Tizen.Multimedia.dll": {} @@ -4758,20 +4558,30 @@ "lib/netstandard1.3/Tizen.Multimedia.dll": {} } }, - "Tizen.Network/1.0.5": { - "type": "package", + "Tizen.Network.Connection/1.0.6": { "dependencies": { "Tizen": "1.0.2" }, "compile": { - "lib/netstandard1.3/Tizen.Network.dll": {} + "lib/netstandard1.3/Tizen.Network.Connection.dll": {} + }, + "runtime": { + "lib/netstandard1.3/Tizen.Network.Connection.dll": {} + } + }, + "Tizen.Network.WiFi/1.0.3": { + "dependencies": { + "Tizen": "1.0.2", + "Tizen.Network.Connection": "1.0.2" + }, + "compile": { + "lib/netstandard1.3/Tizen.Network.WiFi.dll": {} }, "runtime": { - "lib/netstandard1.3/Tizen.Network.dll": {} + "lib/netstandard1.3/Tizen.Network.WiFi.dll": {} } }, "Tizen.Security/1.0.5": { - "type": "package", "dependencies": { "Tizen.Applications": "1.0.2" }, @@ -4782,8 +4592,7 @@ "lib/netstandard1.3/Tizen.Security.dll": {} } }, - "Tizen.Security.SecureRepository/1.0.6": { - "type": "package", + "Tizen.Security.SecureRepository/1.0.7": { "dependencies": { "Tizen": "1.0.2" }, @@ -4795,7 +4604,6 @@ } }, "Tizen.Sensor/1.0.4": { - "type": "package", "dependencies": { "Tizen": "1.0.2", "Tizen.System": "1.0.5" @@ -4808,7 +4616,6 @@ } }, "Tizen.System/1.0.5": { - "type": "package", "dependencies": { "Tizen": "1.0.2" }, @@ -4819,8 +4626,18 @@ "lib/netstandard1.3/Tizen.System.dll": {} } }, + "Tizen.System.MediaKey/1.0.2": { + "dependencies": { + "Tizen": "1.0.2" + }, + "compile": { + "lib/netstandard1.3/Tizen.System.MediaKey.dll": {} + }, + "runtime": { + "lib/netstandard1.3/Tizen.System.MediaKey.dll": {} + } + }, "Tizen.Tracer/1.0.3": { - "type": "package", "dependencies": { "Tizen": "1.0.2" }, @@ -4830,11 +4647,55 @@ "runtime": { "lib/netstandard1.3/Tizen.Tracer.dll": {} } + }, + "Tizen.Uix.Stt/1.0.0": { + "dependencies": { + "Tizen": "1.0.2" + }, + "compile": { + "lib/netstandard1.3/Tizen.Uix.Stt.dll": {} + }, + "runtime": { + "lib/netstandard1.3/Tizen.Uix.Stt.dll": {} + } + }, + "Tizen.Uix.Tts/1.0.0": { + "dependencies": { + "Tizen": "1.0.2" + }, + "compile": { + "lib/netstandard1.3/Tizen.Uix.Tts.dll": {} + }, + "runtime": { + "lib/netstandard1.3/Tizen.Uix.Tts.dll": {} + } + }, + "Xamarin.Forms/2.3.3.175": { + "compile": { + "lib/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/Xamarin.Forms.Core.dll": {}, + "lib/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/Xamarin.Forms.Platform.dll": {}, + "lib/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/Xamarin.Forms.Xaml.dll": {} + }, + "runtime": { + "lib/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/Xamarin.Forms.Core.dll": {}, + "lib/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/Xamarin.Forms.Platform.dll": {}, + "lib/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/Xamarin.Forms.Xaml.dll": {} + } + }, + "Xamarin.Forms.Platform.Tizen/2.3.3.175-beta-007": { + "dependencies": { + "Xamarin.Forms": "2.3.3.175" + }, + "compile": { + "lib/netstandard1.6/Xamarin.Forms.Platform.Tizen.dll": {} + }, + "runtime": { + "lib/netstandard1.6/Xamarin.Forms.Platform.Tizen.dll": {} + } } }, ".NETCoreApp,Version=v1.0/win": { - "ElmSharp/1.0.14": { - "type": "package", + "ElmSharp/1.1.0-beta-009": { "compile": { "lib/netstandard1.3/ElmSharp.dll": {} }, @@ -4843,16 +4704,12 @@ } }, "Libuv/1.9.0": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1" } }, - "Microsoft.CodeAnalysis.Analyzers/1.1.0": { - "type": "package" - }, + "Microsoft.CodeAnalysis.Analyzers/1.1.0": {}, "Microsoft.CodeAnalysis.Common/1.3.0": { - "type": "package", "dependencies": { "Microsoft.CodeAnalysis.Analyzers": "1.1.0", "System.AppContext": "4.1.0", @@ -4902,7 +4759,6 @@ } }, "Microsoft.CodeAnalysis.CSharp/1.3.0": { - "type": "package", "dependencies": { "Microsoft.CodeAnalysis.Common": "[1.3.0]" }, @@ -4914,7 +4770,6 @@ } }, "Microsoft.CodeAnalysis.VisualBasic/1.3.0": { - "type": "package", "dependencies": { "Microsoft.CodeAnalysis.Common": "1.3.0" }, @@ -4926,7 +4781,6 @@ } }, "Microsoft.CSharp/4.0.1": { - "type": "package", "dependencies": { "System.Collections": "4.0.11", "System.Diagnostics.Debug": "4.0.11", @@ -4953,7 +4807,6 @@ } }, "Microsoft.NETCore.App/1.0.0": { - "type": "package", "dependencies": { "Libuv": "1.9.0", "Microsoft.CSharp": "4.0.1", @@ -5004,26 +4857,19 @@ "lib/netcoreapp1.0/_._": {} } }, - "Microsoft.NETCore.DotNetHost/1.0.1": { - "type": "package" - }, + "Microsoft.NETCore.DotNetHost/1.0.1": {}, "Microsoft.NETCore.DotNetHostPolicy/1.0.1": { - "type": "package", "dependencies": { "Microsoft.NETCore.DotNetHostResolver": "1.0.1" } }, "Microsoft.NETCore.DotNetHostResolver/1.0.1": { - "type": "package", "dependencies": { "Microsoft.NETCore.DotNetHost": "1.0.1" } }, - "Microsoft.NETCore.Jit/1.0.2": { - "type": "package" - }, + "Microsoft.NETCore.Jit/1.0.2": {}, "Microsoft.NETCore.Platforms/1.0.1": { - "type": "package", "compile": { "lib/netstandard1.0/_._": {} }, @@ -5032,14 +4878,12 @@ } }, "Microsoft.NETCore.Runtime.CoreCLR/1.0.2": { - "type": "package", "dependencies": { "Microsoft.NETCore.Jit": "1.0.2", "Microsoft.NETCore.Windows.ApiSets": "1.0.1" } }, "Microsoft.NETCore.Targets/1.0.1": { - "type": "package", "compile": { "lib/netstandard1.0/_._": {} }, @@ -5047,11 +4891,8 @@ "lib/netstandard1.0/_._": {} } }, - "Microsoft.NETCore.Windows.ApiSets/1.0.1": { - "type": "package" - }, + "Microsoft.NETCore.Windows.ApiSets/1.0.1": {}, "Microsoft.VisualBasic/10.0.1": { - "type": "package", "dependencies": { "System.Collections": "4.0.11", "System.Diagnostics.Debug": "4.0.11", @@ -5078,7 +4919,6 @@ } }, "Microsoft.Win32.Primitives/4.0.1": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "Microsoft.NETCore.Targets": "1.0.1", @@ -5090,7 +4930,6 @@ } }, "Microsoft.Win32.Registry/4.0.0": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "System.Collections": "4.0.11", @@ -5109,7 +4948,6 @@ } }, "NETStandard.Library/1.6.0": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "Microsoft.Win32.Primitives": "4.0.1", @@ -5158,7 +4996,6 @@ } }, "runtime.any.System.Collections/4.0.11": { - "type": "package", "dependencies": { "System.Runtime": "4.1.0" }, @@ -5170,7 +5007,6 @@ } }, "runtime.any.System.Diagnostics.Tools/4.0.1": { - "type": "package", "compile": { "ref/netstandard/_._": {} }, @@ -5179,7 +5015,6 @@ } }, "runtime.any.System.Diagnostics.Tracing/4.1.0": { - "type": "package", "compile": { "ref/netstandard/_._": {} }, @@ -5188,7 +5023,6 @@ } }, "runtime.any.System.Globalization/4.0.11": { - "type": "package", "compile": { "ref/netstandard/_._": {} }, @@ -5197,7 +5031,6 @@ } }, "runtime.any.System.Globalization.Calendars/4.0.1": { - "type": "package", "compile": { "ref/netstandard/_._": {} }, @@ -5206,7 +5039,6 @@ } }, "runtime.any.System.IO/4.1.0": { - "type": "package", "compile": { "ref/netstandard/_._": {} }, @@ -5215,7 +5047,6 @@ } }, "runtime.any.System.Reflection/4.1.0": { - "type": "package", "compile": { "ref/netstandard/_._": {} }, @@ -5224,7 +5055,6 @@ } }, "runtime.any.System.Reflection.Extensions/4.0.1": { - "type": "package", "compile": { "ref/netstandard/_._": {} }, @@ -5233,7 +5063,6 @@ } }, "runtime.any.System.Reflection.Primitives/4.0.1": { - "type": "package", "compile": { "ref/netstandard/_._": {} }, @@ -5242,7 +5071,6 @@ } }, "runtime.any.System.Resources.ResourceManager/4.0.1": { - "type": "package", "compile": { "ref/netstandard/_._": {} }, @@ -5251,7 +5079,6 @@ } }, "runtime.any.System.Runtime/4.1.0": { - "type": "package", "dependencies": { "System.Private.Uri": "4.0.1" }, @@ -5263,7 +5090,6 @@ } }, "runtime.any.System.Runtime.Handles/4.0.1": { - "type": "package", "compile": { "ref/netstandard/_._": {} }, @@ -5272,7 +5098,6 @@ } }, "runtime.any.System.Runtime.InteropServices/4.1.0": { - "type": "package", "compile": { "ref/netstandard/_._": {} }, @@ -5281,7 +5106,6 @@ } }, "runtime.any.System.Text.Encoding/4.0.11": { - "type": "package", "compile": { "ref/netstandard/_._": {} }, @@ -5290,7 +5114,6 @@ } }, "runtime.any.System.Text.Encoding.Extensions/4.0.11": { - "type": "package", "compile": { "ref/netstandard/_._": {} }, @@ -5299,7 +5122,6 @@ } }, "runtime.any.System.Threading.Tasks/4.0.11": { - "type": "package", "compile": { "ref/netstandard/_._": {} }, @@ -5308,7 +5130,6 @@ } }, "runtime.any.System.Threading.Timer/4.0.1": { - "type": "package", "compile": { "ref/netstandard/_._": {} }, @@ -5317,7 +5138,6 @@ } }, "runtime.native.System/4.0.0": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "Microsoft.NETCore.Targets": "1.0.1" @@ -5330,7 +5150,6 @@ } }, "runtime.native.System.IO.Compression/4.1.0": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "Microsoft.NETCore.Targets": "1.0.1" @@ -5343,7 +5162,6 @@ } }, "runtime.native.System.Net.Http/4.0.1": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "Microsoft.NETCore.Targets": "1.0.1" @@ -5356,7 +5174,6 @@ } }, "runtime.native.System.Net.Security/4.0.1": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "Microsoft.NETCore.Targets": "1.0.1" @@ -5369,7 +5186,6 @@ } }, "runtime.native.System.Security.Cryptography/4.0.0": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "Microsoft.NETCore.Targets": "1.0.1" @@ -5382,7 +5198,6 @@ } }, "runtime.win.Microsoft.Win32.Primitives/4.0.1": { - "type": "package", "dependencies": { "System.Runtime": "4.1.0", "System.Runtime.InteropServices": "4.1.0" @@ -5395,7 +5210,6 @@ } }, "runtime.win.System.Console/4.0.0": { - "type": "package", "dependencies": { "System.IO": "4.1.0", "System.IO.FileSystem.Primitives": "4.0.1", @@ -5415,7 +5229,6 @@ } }, "runtime.win.System.Diagnostics.Debug/4.0.11": { - "type": "package", "compile": { "ref/netstandard/_._": {} }, @@ -5424,7 +5237,6 @@ } }, "runtime.win.System.IO.FileSystem/4.0.1": { - "type": "package", "dependencies": { "System.Collections": "4.0.11", "System.IO": "4.1.0", @@ -5448,7 +5260,6 @@ } }, "runtime.win.System.Net.Primitives/4.0.11": { - "type": "package", "dependencies": { "Microsoft.Win32.Primitives": "4.0.1", "System.Collections": "4.0.11", @@ -5469,7 +5280,6 @@ } }, "runtime.win.System.Net.Sockets/4.1.0": { - "type": "package", "dependencies": { "System.Collections": "4.0.11", "System.Diagnostics.Debug": "4.0.11", @@ -5498,7 +5308,6 @@ } }, "runtime.win.System.Runtime.Extensions/4.1.0": { - "type": "package", "dependencies": { "System.Private.Uri": "4.0.1" }, @@ -5510,7 +5319,6 @@ } }, "System.AppContext/4.1.0": { - "type": "package", "dependencies": { "System.Runtime": "4.1.0" }, @@ -5522,7 +5330,6 @@ } }, "System.Buffers/4.0.0": { - "type": "package", "dependencies": { "System.Diagnostics.Debug": "4.0.11", "System.Diagnostics.Tracing": "4.1.0", @@ -5538,7 +5345,6 @@ } }, "System.Collections/4.0.11": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "Microsoft.NETCore.Targets": "1.0.1", @@ -5553,7 +5359,6 @@ } }, "System.Collections.Concurrent/4.0.12": { - "type": "package", "dependencies": { "System.Collections": "4.0.11", "System.Diagnostics.Debug": "4.0.11", @@ -5574,7 +5379,6 @@ } }, "System.Collections.Immutable/1.2.0": { - "type": "package", "dependencies": { "System.Collections": "4.0.11", "System.Diagnostics.Debug": "4.0.11", @@ -5593,7 +5397,6 @@ } }, "System.ComponentModel/4.0.1": { - "type": "package", "dependencies": { "System.Runtime": "4.1.0" }, @@ -5605,7 +5408,6 @@ } }, "System.ComponentModel.Annotations/4.1.0": { - "type": "package", "dependencies": { "System.Collections": "4.0.11", "System.ComponentModel": "4.0.1", @@ -5627,7 +5429,6 @@ } }, "System.Console/4.0.0": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "Microsoft.NETCore.Targets": "1.0.1", @@ -5641,7 +5442,6 @@ } }, "System.Diagnostics.Debug/4.0.11": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "Microsoft.NETCore.Targets": "1.0.1", @@ -5656,7 +5456,6 @@ } }, "System.Diagnostics.DiagnosticSource/4.0.0": { - "type": "package", "dependencies": { "System.Collections": "4.0.11", "System.Diagnostics.Tracing": "4.1.0", @@ -5672,7 +5471,6 @@ } }, "System.Diagnostics.FileVersionInfo/4.0.0": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "System.Globalization": "4.0.11", @@ -5692,7 +5490,6 @@ } }, "System.Diagnostics.Process/4.1.0": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "Microsoft.Win32.Primitives": "4.0.1", @@ -5724,7 +5521,6 @@ } }, "System.Diagnostics.StackTrace/4.0.1": { - "type": "package", "dependencies": { "System.Collections.Immutable": "1.2.0", "System.IO.FileSystem": "4.0.1", @@ -5741,7 +5537,6 @@ } }, "System.Diagnostics.Tools/4.0.1": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "Microsoft.NETCore.Targets": "1.0.1", @@ -5756,7 +5551,6 @@ } }, "System.Diagnostics.Tracing/4.1.0": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "Microsoft.NETCore.Targets": "1.0.1", @@ -5768,7 +5562,6 @@ } }, "System.Dynamic.Runtime/4.0.11": { - "type": "package", "dependencies": { "System.Collections": "4.0.11", "System.Diagnostics.Debug": "4.0.11", @@ -5794,7 +5587,6 @@ } }, "System.Globalization/4.0.11": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "Microsoft.NETCore.Targets": "1.0.1", @@ -5809,7 +5601,6 @@ } }, "System.Globalization.Calendars/4.0.1": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "Microsoft.NETCore.Targets": "1.0.1", @@ -5822,7 +5613,6 @@ } }, "System.Globalization.Extensions/4.0.1": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "System.Globalization": "4.0.11", @@ -5839,7 +5629,6 @@ } }, "System.IO/4.1.0": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "Microsoft.NETCore.Targets": "1.0.1", @@ -5856,7 +5645,6 @@ } }, "System.IO.Compression/4.1.0": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "System.Collections": "4.0.11", @@ -5881,7 +5669,6 @@ } }, "System.IO.Compression.ZipFile/4.0.1": { - "type": "package", "dependencies": { "System.Buffers": "4.0.0", "System.IO": "4.1.0", @@ -5901,7 +5688,6 @@ } }, "System.IO.FileSystem/4.0.1": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "Microsoft.NETCore.Targets": "1.0.1", @@ -5918,7 +5704,6 @@ } }, "System.IO.FileSystem.Primitives/4.0.1": { - "type": "package", "dependencies": { "System.Runtime": "4.1.0" }, @@ -5930,7 +5715,6 @@ } }, "System.IO.FileSystem.Watcher/4.0.0": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "Microsoft.Win32.Primitives": "4.0.1", @@ -5957,7 +5741,6 @@ } }, "System.IO.MemoryMappedFiles/4.0.0": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "System.IO": "4.1.0", @@ -5981,7 +5764,6 @@ } }, "System.IO.UnmanagedMemoryStream/4.0.1": { - "type": "package", "dependencies": { "System.IO": "4.1.0", "System.IO.FileSystem.Primitives": "4.0.1", @@ -5999,7 +5781,6 @@ } }, "System.Linq/4.1.0": { - "type": "package", "dependencies": { "System.Collections": "4.0.11", "System.Diagnostics.Debug": "4.0.11", @@ -6015,7 +5796,6 @@ } }, "System.Linq.Expressions/4.1.0": { - "type": "package", "dependencies": { "System.Collections": "4.0.11", "System.Diagnostics.Debug": "4.0.11", @@ -6043,7 +5823,6 @@ } }, "System.Linq.Parallel/4.0.1": { - "type": "package", "dependencies": { "System.Collections": "4.0.11", "System.Collections.Concurrent": "4.0.12", @@ -6064,7 +5843,6 @@ } }, "System.Linq.Queryable/4.0.1": { - "type": "package", "dependencies": { "System.Collections": "4.0.11", "System.Diagnostics.Debug": "4.0.11", @@ -6083,7 +5861,6 @@ } }, "System.Net.Http/4.1.0": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "System.Collections": "4.0.11", @@ -6120,7 +5897,6 @@ } }, "System.Net.NameResolution/4.0.0": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "System.Collections": "4.0.11", @@ -6145,7 +5921,6 @@ } }, "System.Net.Primitives/4.0.11": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "Microsoft.NETCore.Targets": "1.0.1", @@ -6161,7 +5936,6 @@ } }, "System.Net.Requests/4.0.11": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "System.Collections": "4.0.11", @@ -6185,7 +5959,6 @@ } }, "System.Net.Security/4.0.0": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "Microsoft.Win32.Primitives": "4.0.1", @@ -6224,7 +5997,6 @@ } }, "System.Net.Sockets/4.1.0": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "Microsoft.NETCore.Targets": "1.0.1", @@ -6239,7 +6011,6 @@ } }, "System.Net.WebHeaderCollection/4.0.1": { - "type": "package", "dependencies": { "System.Collections": "4.0.11", "System.Resources.ResourceManager": "4.0.1", @@ -6254,7 +6025,6 @@ } }, "System.Numerics.Vectors/4.1.1": { - "type": "package", "dependencies": { "System.Globalization": "4.0.11", "System.Resources.ResourceManager": "4.0.1", @@ -6269,7 +6039,6 @@ } }, "System.ObjectModel/4.0.12": { - "type": "package", "dependencies": { "System.Collections": "4.0.11", "System.Diagnostics.Debug": "4.0.11", @@ -6285,7 +6054,6 @@ } }, "System.Private.Uri/4.0.1": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "Microsoft.NETCore.Targets": "1.0.1" @@ -6295,7 +6063,6 @@ } }, "System.Reflection/4.1.0": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "Microsoft.NETCore.Targets": "1.0.1", @@ -6312,7 +6079,6 @@ } }, "System.Reflection.DispatchProxy/4.0.1": { - "type": "package", "dependencies": { "System.Collections": "4.0.11", "System.Linq": "4.1.0", @@ -6333,7 +6099,6 @@ } }, "System.Reflection.Emit/4.0.1": { - "type": "package", "dependencies": { "System.IO": "4.1.0", "System.Reflection": "4.1.0", @@ -6349,7 +6114,6 @@ } }, "System.Reflection.Emit.ILGeneration/4.0.1": { - "type": "package", "dependencies": { "System.Reflection": "4.1.0", "System.Reflection.Primitives": "4.0.1", @@ -6363,7 +6127,6 @@ } }, "System.Reflection.Emit.Lightweight/4.0.1": { - "type": "package", "dependencies": { "System.Reflection": "4.1.0", "System.Reflection.Emit.ILGeneration": "4.0.1", @@ -6378,7 +6141,6 @@ } }, "System.Reflection.Extensions/4.0.1": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "Microsoft.NETCore.Targets": "1.0.1", @@ -6394,7 +6156,6 @@ } }, "System.Reflection.Metadata/1.3.0": { - "type": "package", "dependencies": { "System.Collections": "4.0.11", "System.Collections.Immutable": "1.2.0", @@ -6420,7 +6181,6 @@ } }, "System.Reflection.Primitives/4.0.1": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "Microsoft.NETCore.Targets": "1.0.1", @@ -6435,7 +6195,6 @@ } }, "System.Reflection.TypeExtensions/4.1.0": { - "type": "package", "dependencies": { "System.Reflection": "4.1.0", "System.Runtime": "4.1.0" @@ -6448,7 +6207,6 @@ } }, "System.Resources.Reader/4.0.0": { - "type": "package", "dependencies": { "System.IO": "4.1.0", "System.Resources.ResourceManager": "4.0.1", @@ -6464,7 +6222,6 @@ } }, "System.Resources.ResourceManager/4.0.1": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "Microsoft.NETCore.Targets": "1.0.1", @@ -6481,7 +6238,6 @@ } }, "System.Runtime/4.1.0": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "Microsoft.NETCore.Targets": "1.0.1", @@ -6495,7 +6251,6 @@ } }, "System.Runtime.Extensions/4.1.0": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "Microsoft.NETCore.Targets": "1.0.1", @@ -6510,7 +6265,6 @@ } }, "System.Runtime.Handles/4.0.1": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "Microsoft.NETCore.Targets": "1.0.1", @@ -6522,7 +6276,6 @@ } }, "System.Runtime.InteropServices/4.1.0": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "Microsoft.NETCore.Targets": "1.0.1", @@ -6537,7 +6290,6 @@ } }, "System.Runtime.InteropServices.RuntimeInformation/4.0.0": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "System.Reflection": "4.1.0", @@ -6555,7 +6307,6 @@ } }, "System.Runtime.Loader/4.0.0": { - "type": "package", "dependencies": { "System.IO": "4.1.0", "System.Reflection": "4.1.0", @@ -6569,7 +6320,6 @@ } }, "System.Runtime.Numerics/4.0.1": { - "type": "package", "dependencies": { "System.Globalization": "4.0.11", "System.Resources.ResourceManager": "4.0.1", @@ -6584,7 +6334,6 @@ } }, "System.Security.Claims/4.0.1": { - "type": "package", "dependencies": { "System.Collections": "4.0.11", "System.Globalization": "4.0.11", @@ -6602,7 +6351,6 @@ } }, "System.Security.Cryptography.Algorithms/4.2.0": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "System.Collections": "4.0.11", @@ -6626,7 +6374,6 @@ } }, "System.Security.Cryptography.Cng/4.2.0": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "System.IO": "4.1.0", @@ -6648,7 +6395,6 @@ } }, "System.Security.Cryptography.Csp/4.0.0": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "System.IO": "4.1.0", @@ -6672,7 +6418,6 @@ } }, "System.Security.Cryptography.Encoding/4.0.0": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "System.Collections": "4.0.11", @@ -6695,7 +6440,6 @@ } }, "System.Security.Cryptography.OpenSsl/4.0.0": { - "type": "package", "dependencies": { "System.Collections": "4.0.11", "System.IO": "4.1.0", @@ -6719,7 +6463,6 @@ } }, "System.Security.Cryptography.Primitives/4.0.0": { - "type": "package", "dependencies": { "System.Diagnostics.Debug": "4.0.11", "System.Globalization": "4.0.11", @@ -6737,7 +6480,6 @@ } }, "System.Security.Cryptography.X509Certificates/4.1.0": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "System.Collections": "4.0.11", @@ -6773,7 +6515,6 @@ } }, "System.Security.Principal/4.0.1": { - "type": "package", "dependencies": { "System.Runtime": "4.1.0" }, @@ -6785,7 +6526,6 @@ } }, "System.Security.Principal.Windows/4.0.0": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "Microsoft.Win32.Primitives": "4.0.1", @@ -6810,7 +6550,6 @@ } }, "System.Text.Encoding/4.0.11": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "Microsoft.NETCore.Targets": "1.0.1", @@ -6825,7 +6564,6 @@ } }, "System.Text.Encoding.CodePages/4.0.1": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "System.Collections": "4.0.11", @@ -6848,7 +6586,6 @@ } }, "System.Text.Encoding.Extensions/4.0.11": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "Microsoft.NETCore.Targets": "1.0.1", @@ -6864,7 +6601,6 @@ } }, "System.Text.RegularExpressions/4.1.0": { - "type": "package", "dependencies": { "System.Collections": "4.0.11", "System.Globalization": "4.0.11", @@ -6881,7 +6617,6 @@ } }, "System.Threading/4.0.11": { - "type": "package", "dependencies": { "System.Runtime": "4.1.0", "System.Threading.Tasks": "4.0.11" @@ -6894,7 +6629,6 @@ } }, "System.Threading.Overlapped/4.0.1": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "System.Resources.ResourceManager": "4.0.1", @@ -6909,7 +6643,6 @@ } }, "System.Threading.Tasks/4.0.11": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "Microsoft.NETCore.Targets": "1.0.1", @@ -6924,7 +6657,6 @@ } }, "System.Threading.Tasks.Dataflow/4.6.0": { - "type": "package", "dependencies": { "System.Collections": "4.0.11", "System.Collections.Concurrent": "4.0.12", @@ -6946,7 +6678,6 @@ } }, "System.Threading.Tasks.Extensions/4.0.0": { - "type": "package", "dependencies": { "System.Collections": "4.0.11", "System.Runtime": "4.1.0", @@ -6960,7 +6691,6 @@ } }, "System.Threading.Tasks.Parallel/4.0.1": { - "type": "package", "dependencies": { "System.Collections.Concurrent": "4.0.12", "System.Diagnostics.Debug": "4.0.11", @@ -6979,7 +6709,6 @@ } }, "System.Threading.Thread/4.0.0": { - "type": "package", "dependencies": { "System.Runtime": "4.1.0" }, @@ -6991,7 +6720,6 @@ } }, "System.Threading.ThreadPool/4.0.10": { - "type": "package", "dependencies": { "System.Runtime": "4.1.0", "System.Runtime.Handles": "4.0.1" @@ -7004,7 +6732,6 @@ } }, "System.Threading.Timer/4.0.1": { - "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1", "Microsoft.NETCore.Targets": "1.0.1", @@ -7016,7 +6743,6 @@ } }, "System.Xml.ReaderWriter/4.0.11": { - "type": "package", "dependencies": { "System.Collections": "4.0.11", "System.Diagnostics.Debug": "4.0.11", @@ -7042,7 +6768,6 @@ } }, "System.Xml.XDocument/4.0.11": { - "type": "package", "dependencies": { "System.Collections": "4.0.11", "System.Diagnostics.Debug": "4.0.11", @@ -7065,7 +6790,6 @@ } }, "System.Xml.XmlDocument/4.0.1": { - "type": "package", "dependencies": { "System.Collections": "4.0.11", "System.Diagnostics.Debug": "4.0.11", @@ -7086,7 +6810,6 @@ } }, "System.Xml.XPath/4.0.1": { - "type": "package", "dependencies": { "System.Collections": "4.0.11", "System.Diagnostics.Debug": "4.0.11", @@ -7106,7 +6829,6 @@ } }, "System.Xml.XPath.XDocument/4.0.1": { - "type": "package", "dependencies": { "System.Diagnostics.Debug": "4.0.11", "System.Linq": "4.1.0", @@ -7126,7 +6848,6 @@ } }, "Tizen/1.0.2": { - "type": "package", "compile": { "lib/netstandard1.3/Tizen.dll": {} }, @@ -7134,8 +6855,7 @@ "lib/netstandard1.3/Tizen.dll": {} } }, - "Tizen.Applications/1.0.2": { - "type": "package", + "Tizen.Applications/1.1.0": { "dependencies": { "Tizen": "1.0.2" }, @@ -7147,7 +6867,6 @@ } }, "Tizen.Applications.Badge/1.0.2": { - "type": "package", "dependencies": { "Tizen": "1.0.2" }, @@ -7158,8 +6877,7 @@ "lib/netstandard1.3/Tizen.Applications.Badge.dll": {} } }, - "Tizen.Content.MediaContent/1.0.5": { - "type": "package", + "Tizen.Content.MediaContent/1.0.6": { "dependencies": { "Tizen": "1.0.2" }, @@ -7171,7 +6889,6 @@ } }, "Tizen.Content.MimeType/1.0.2": { - "type": "package", "dependencies": { "Tizen": "1.0.2" }, @@ -7182,42 +6899,44 @@ "lib/netstandard1.3/Tizen.Content.MimeType.dll": {} } }, - "Tizen.Library/1.0.0-pre1": { - "type": "package", + "Tizen.Library/1.0.0-pre2": { "dependencies": { - "ElmSharp": "1.0.14", + "ElmSharp": "1.1.0-beta-009", "Tizen": "1.0.2", - "Tizen.Applications": "1.0.2", + "Tizen.Applications": "1.1.0", "Tizen.Applications.Badge": "1.0.2", - "Tizen.Content.MediaContent": "1.0.5", + "Tizen.Content.MediaContent": "1.0.6", "Tizen.Content.MimeType": "1.0.2", - "Tizen.Location": "1.0.3", - "Tizen.Multimedia": "1.0.14", - "Tizen.Network": "1.0.5", + "Tizen.Messaging.Push": "1.0.2", + "Tizen.Multimedia": "1.0.28", + "Tizen.Network.Connection": "1.0.6", + "Tizen.Network.WiFi": "1.0.3", "Tizen.Security": "1.0.5", - "Tizen.Security.SecureRepository": "1.0.6", + "Tizen.Security.SecureRepository": "1.0.7", "Tizen.Sensor": "1.0.4", "Tizen.System": "1.0.5", - "Tizen.Tracer": "1.0.3" + "Tizen.System.MediaKey": "1.0.2", + "Tizen.Tracer": "1.0.3", + "Tizen.Uix.Stt": "1.0.0", + "Tizen.Uix.Tts": "1.0.0" } }, - "Tizen.Location/1.0.3": { - "type": "package", + "Tizen.Messaging.Push/1.0.2": { "dependencies": { - "Tizen": "1.0.2" + "Tizen": "1.0.1" }, "compile": { - "lib/netstandard1.3/Tizen.Location.dll": {} + "lib/netstandard1.3/Tizen.Messaging.Push.dll": {} }, "runtime": { - "lib/netstandard1.3/Tizen.Location.dll": {} + "lib/netstandard1.3/Tizen.Messaging.Push.dll": {} } }, - "Tizen.Multimedia/1.0.14": { - "type": "package", + "Tizen.Multimedia/1.0.28": { "dependencies": { "ElmSharp": "1.0.14", - "Tizen": "1.0.2" + "Tizen": "1.0.2", + "Tizen.Applications": "1.0.2" }, "compile": { "lib/netstandard1.3/Tizen.Multimedia.dll": {} @@ -7226,20 +6945,30 @@ "lib/netstandard1.3/Tizen.Multimedia.dll": {} } }, - "Tizen.Network/1.0.5": { - "type": "package", + "Tizen.Network.Connection/1.0.6": { "dependencies": { "Tizen": "1.0.2" }, "compile": { - "lib/netstandard1.3/Tizen.Network.dll": {} + "lib/netstandard1.3/Tizen.Network.Connection.dll": {} }, "runtime": { - "lib/netstandard1.3/Tizen.Network.dll": {} + "lib/netstandard1.3/Tizen.Network.Connection.dll": {} + } + }, + "Tizen.Network.WiFi/1.0.3": { + "dependencies": { + "Tizen": "1.0.2", + "Tizen.Network.Connection": "1.0.2" + }, + "compile": { + "lib/netstandard1.3/Tizen.Network.WiFi.dll": {} + }, + "runtime": { + "lib/netstandard1.3/Tizen.Network.WiFi.dll": {} } }, "Tizen.Security/1.0.5": { - "type": "package", "dependencies": { "Tizen.Applications": "1.0.2" }, @@ -7250,8 +6979,7 @@ "lib/netstandard1.3/Tizen.Security.dll": {} } }, - "Tizen.Security.SecureRepository/1.0.6": { - "type": "package", + "Tizen.Security.SecureRepository/1.0.7": { "dependencies": { "Tizen": "1.0.2" }, @@ -7263,7 +6991,6 @@ } }, "Tizen.Sensor/1.0.4": { - "type": "package", "dependencies": { "Tizen": "1.0.2", "Tizen.System": "1.0.5" @@ -7276,7 +7003,6 @@ } }, "Tizen.System/1.0.5": { - "type": "package", "dependencies": { "Tizen": "1.0.2" }, @@ -7287,8 +7013,18 @@ "lib/netstandard1.3/Tizen.System.dll": {} } }, + "Tizen.System.MediaKey/1.0.2": { + "dependencies": { + "Tizen": "1.0.2" + }, + "compile": { + "lib/netstandard1.3/Tizen.System.MediaKey.dll": {} + }, + "runtime": { + "lib/netstandard1.3/Tizen.System.MediaKey.dll": {} + } + }, "Tizen.Tracer/1.0.3": { - "type": "package", "dependencies": { "Tizen": "1.0.2" }, @@ -7298,16 +7034,61 @@ "runtime": { "lib/netstandard1.3/Tizen.Tracer.dll": {} } + }, + "Tizen.Uix.Stt/1.0.0": { + "dependencies": { + "Tizen": "1.0.2" + }, + "compile": { + "lib/netstandard1.3/Tizen.Uix.Stt.dll": {} + }, + "runtime": { + "lib/netstandard1.3/Tizen.Uix.Stt.dll": {} + } + }, + "Tizen.Uix.Tts/1.0.0": { + "dependencies": { + "Tizen": "1.0.2" + }, + "compile": { + "lib/netstandard1.3/Tizen.Uix.Tts.dll": {} + }, + "runtime": { + "lib/netstandard1.3/Tizen.Uix.Tts.dll": {} + } + }, + "Xamarin.Forms/2.3.3.175": { + "compile": { + "lib/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/Xamarin.Forms.Core.dll": {}, + "lib/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/Xamarin.Forms.Platform.dll": {}, + "lib/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/Xamarin.Forms.Xaml.dll": {} + }, + "runtime": { + "lib/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/Xamarin.Forms.Core.dll": {}, + "lib/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/Xamarin.Forms.Platform.dll": {}, + "lib/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/Xamarin.Forms.Xaml.dll": {} + } + }, + "Xamarin.Forms.Platform.Tizen/2.3.3.175-beta-007": { + "dependencies": { + "Xamarin.Forms": "2.3.3.175" + }, + "compile": { + "lib/netstandard1.6/Xamarin.Forms.Platform.Tizen.dll": {} + }, + "runtime": { + "lib/netstandard1.6/Xamarin.Forms.Platform.Tizen.dll": {} + } } } }, "libraries": { - "ElmSharp/1.0.14": { - "sha512": "Dm0j2qgiuCqQhrw+wafm5Oq8tV0nj5jSp7BFxVKthX9VGbZa9ArExUIdtz3fba185kbyYh9UzemngdrB2eX4Cg==", + "ElmSharp/1.1.0-beta-009": { + "sha512": "FEP/w6DxbqQOk2PijLi4MzUu/7tsRmsMT9bcIo169Md/ITPzZe9kgNyVYBssAWIRGa2re5h0fFzZuZct+5//yQ==", "type": "package", - "path": "ElmSharp/1.0.14", + "path": "ElmSharp/1.1.0-beta-009", "files": [ - "ElmSharp.1.0.14.nupkg.sha512", + "ElmSharp.1.1.0-beta-009.nupkg.sha512", "ElmSharp.nuspec", "lib/net45/ElmSharp.dll", "lib/netstandard1.3/ElmSharp.dll" @@ -12557,12 +12338,12 @@ "lib/netstandard1.3/Tizen.dll" ] }, - "Tizen.Applications/1.0.2": { - "sha512": "c1Bc9j2IF+09T5amXJ0i3XpC90SAV7vif0x3UZfu0ssivC2X1815Kl55vnmZOwx4cbXCThLNyjqJRffV0j8HVA==", + "Tizen.Applications/1.1.0": { + "sha512": "Uu8xKIDQk2I2VefJhpdJW7p+FjRClSfR0v+XUz0AAbV1xJ5m+QdwawyxEKdOlVhET+0NsVsFOHAEcbkdXREXrQ==", "type": "package", - "path": "Tizen.Applications/1.0.2", + "path": "Tizen.Applications/1.1.0", "files": [ - "Tizen.Applications.1.0.2.nupkg.sha512", + "Tizen.Applications.1.1.0.nupkg.sha512", "Tizen.Applications.nuspec", "lib/net45/Tizen.Applications.dll", "lib/netstandard1.3/Tizen.Applications.dll" @@ -12579,12 +12360,12 @@ "lib/netstandard1.3/Tizen.Applications.Badge.dll" ] }, - "Tizen.Content.MediaContent/1.0.5": { - "sha512": "giFWEG6TrIHcVLeYK2UQBxUQcWcCOPkvbGUsMCdMTo/MrQU5f1AAIWYMnLbIp1IiClFpXHvYQ94C+zu83CaALQ==", + "Tizen.Content.MediaContent/1.0.6": { + "sha512": "g+qKibMmg9DnOf+oFsyfS8smRZfBxER9lV5nySFVWDxk0n11JE1js+ddNRTR7t4x+sq06Z8LYDfdCjDxhjhW6w==", "type": "package", - "path": "Tizen.Content.MediaContent/1.0.5", + "path": "Tizen.Content.MediaContent/1.0.6", "files": [ - "Tizen.Content.MediaContent.1.0.5.nupkg.sha512", + "Tizen.Content.MediaContent.1.0.6.nupkg.sha512", "Tizen.Content.MediaContent.nuspec", "lib/net45/Tizen.Content.MediaContent.dll", "lib/netstandard1.3/Tizen.Content.MediaContent.dll" @@ -12601,46 +12382,57 @@ "lib/netstandard1.3/Tizen.Content.MimeType.dll" ] }, - "Tizen.Library/1.0.0-pre1": { - "sha512": "Yi7tdqsQgOKK4t4pfPGppg03+I7ZY1Zw7Fb+qe0FoNqSf+L0UGBLF9my9HVPSe9Nw5GlMkKy02yDLdCgW2cFtg==", + "Tizen.Library/1.0.0-pre2": { + "sha512": "w5Hfbryi0aIHHBWx6L6j/FZjUFWcrrXc/Vg2MaLrwVLcnwmtGhY93TDfWe2l6ljubt7E2lsOL+3w+2wIFDSoVQ==", "type": "package", - "path": "Tizen.Library/1.0.0-pre1", + "path": "Tizen.Library/1.0.0-pre2", "files": [ - "Tizen.Library.1.0.0-pre1.nupkg.sha512", + "Tizen.Library.1.0.0-pre2.nupkg.sha512", "Tizen.Library.nuspec" ] }, - "Tizen.Location/1.0.3": { - "sha512": "Ay8W2TF6dEq7RoMHDZn0zb3c6/4wCAHRG6hhODXMne9jEGKLVkULBtIv8zqV8EmpzlVArBE8jxYz1ptdNwbdvw==", + "Tizen.Messaging.Push/1.0.2": { + "sha512": "X06f3D3kxCxUPaNewCEvktwnLEch0TV5zjRYDmKCo2KX8x4PieEay4YjtqNeErqwQHrJn7L/atY1JzVUl1Eb+Q==", "type": "package", - "path": "Tizen.Location/1.0.3", + "path": "Tizen.Messaging.Push/1.0.2", "files": [ - "Tizen.Location.1.0.3.nupkg.sha512", - "Tizen.Location.nuspec", - "lib/net45/Tizen.Location.dll", - "lib/netstandard1.3/Tizen.Location.dll" + "Tizen.Messaging.Push.1.0.2.nupkg.sha512", + "Tizen.Messaging.Push.nuspec", + "lib/net45/Tizen.Messaging.Push.dll", + "lib/netstandard1.3/Tizen.Messaging.Push.dll" ] }, - "Tizen.Multimedia/1.0.14": { - "sha512": "gPu4lEkJFtuNM7zyA/mGDchsaXygmIdUhsxal2YjtHj5qsA/zQRIcza8727cmufXI77WUSTjOHHj3m/VSCf6eg==", + "Tizen.Multimedia/1.0.28": { + "sha512": "zD7ZZ6pT/K5NUE4qVg3RLkA/sXYWCrwWow8wexmRbT4Sc3HVlzceUJDzBenN1NF37BQkPOif6STK+kleHLU1Iw==", "type": "package", - "path": "Tizen.Multimedia/1.0.14", + "path": "Tizen.Multimedia/1.0.28", "files": [ - "Tizen.Multimedia.1.0.14.nupkg.sha512", + "Tizen.Multimedia.1.0.28.nupkg.sha512", "Tizen.Multimedia.nuspec", "lib/net45/Tizen.Multimedia.dll", "lib/netstandard1.3/Tizen.Multimedia.dll" ] }, - "Tizen.Network/1.0.5": { - "sha512": "d6bbc3H+X0DnqjC7vkgA6y3y8CyN6njkcw/EXoetvk0NsLIS+BkGiJ4Xo52iM51yyQcBGPaF+a8O0yLmgUPjUg==", + "Tizen.Network.Connection/1.0.6": { + "sha512": "ONZgWf5yyB3B2L675IsSQfZykra76Kob1/9JmJULPvMmErtUUkeEuWKKASaCmkG+0VsbzAdzaNJ0i81QT0mujg==", "type": "package", - "path": "Tizen.Network/1.0.5", + "path": "Tizen.Network.Connection/1.0.6", "files": [ - "Tizen.Network.1.0.5.nupkg.sha512", - "Tizen.Network.nuspec", - "lib/net45/Tizen.Network.dll", - "lib/netstandard1.3/Tizen.Network.dll" + "Tizen.Network.Connection.1.0.6.nupkg.sha512", + "Tizen.Network.Connection.nuspec", + "lib/net45/Tizen.Network.Connection.dll", + "lib/netstandard1.3/Tizen.Network.Connection.dll" + ] + }, + "Tizen.Network.WiFi/1.0.3": { + "sha512": "/ltrE/HNKAobHKpIhdleKBJ/mlKaAD4p82THx/IEwNnOzU2ZWt9NKl5/FyVTEEo49/OsGHWkO79iOnFnZUv3ow==", + "type": "package", + "path": "Tizen.Network.WiFi/1.0.3", + "files": [ + "Tizen.Network.WiFi.1.0.3.nupkg.sha512", + "Tizen.Network.WiFi.nuspec", + "lib/net45/Tizen.Network.WiFi.dll", + "lib/netstandard1.3/Tizen.Network.WiFi.dll" ] }, "Tizen.Security/1.0.5": { @@ -12654,12 +12446,12 @@ "lib/netstandard1.3/Tizen.Security.dll" ] }, - "Tizen.Security.SecureRepository/1.0.6": { - "sha512": "sjAo6PmBHa59nAaQs4L9o8dlzAAoT4wOB656bfKwl5e0mmEv6Qlg7ZRhxR2YfxzklzaRIBRFO6cX1Mz7j6CruA==", + "Tizen.Security.SecureRepository/1.0.7": { + "sha512": "zRJTefzTXdZiwfS0ZbC/I/zJJz58VKsu87Ey94lXmhgKLvckMudjalRNLHX3qb99jso6sD662HbHmY2aSWEcaA==", "type": "package", - "path": "Tizen.Security.SecureRepository/1.0.6", + "path": "Tizen.Security.SecureRepository/1.0.7", "files": [ - "Tizen.Security.SecureRepository.1.0.6.nupkg.sha512", + "Tizen.Security.SecureRepository.1.0.7.nupkg.sha512", "Tizen.Security.SecureRepository.nuspec", "lib/net45/Tizen.Security.SecureRepository.dll", "lib/netstandard1.3/Tizen.Security.SecureRepository.dll" @@ -12687,6 +12479,17 @@ "lib/netstandard1.3/Tizen.System.dll" ] }, + "Tizen.System.MediaKey/1.0.2": { + "sha512": "k0KGINGH3MPOLwXBaBObbwabDwUrtimmZ/so/02OqVrRJqfyzUAoDK7DyTCET5VcE+ONwP/CpXc1uIu3qHgE/g==", + "type": "package", + "path": "Tizen.System.MediaKey/1.0.2", + "files": [ + "Tizen.System.MediaKey.1.0.2.nupkg.sha512", + "Tizen.System.MediaKey.nuspec", + "lib/net45/Tizen.System.MediaKey.dll", + "lib/netstandard1.3/Tizen.System.MediaKey.dll" + ] + }, "Tizen.Tracer/1.0.3": { "sha512": "Rxst6xXA5rM9wcU8BU77uBNYLTn1T0vYmGtwgF+EuI3S0AQnYZeE+2cfxTvgXhDE+AdsH4UMZp2QjwzXIFudew==", "type": "package", @@ -12697,15 +12500,210 @@ "lib/net45/Tizen.Tracer.dll", "lib/netstandard1.3/Tizen.Tracer.dll" ] + }, + "Tizen.Uix.Stt/1.0.0": { + "sha512": "bxdiDufX+HNcnLbfUmwXQL104TEJF3SWMwGAB6goAJT/Ue0SSQzKx7rxRxG85lAGtqeCJGut9xmpTsfabT5y/g==", + "type": "package", + "path": "Tizen.Uix.Stt/1.0.0", + "files": [ + "Tizen.Uix.Stt.1.0.0.nupkg.sha512", + "Tizen.Uix.Stt.nuspec", + "lib/net45/Tizen.Uix.Stt.dll", + "lib/netstandard1.3/Tizen.Uix.Stt.dll" + ] + }, + "Tizen.Uix.Tts/1.0.0": { + "sha512": "8XLESpoh8CfHxarATrdjGGqSaxYNiORbQZEl+JoY5ekk293lXa+ZlQ7SuXpLvhUzqBabY6MS93e/QWRq8NBrpA==", + "type": "package", + "path": "Tizen.Uix.Tts/1.0.0", + "files": [ + "Tizen.Uix.Tts.1.0.0.nupkg.sha512", + "Tizen.Uix.Tts.nuspec", + "lib/net45/Tizen.Uix.Tts.dll", + "lib/netstandard1.3/Tizen.Uix.Tts.dll" + ] + }, + "Xamarin.Forms/2.3.3.175": { + "sha512": "ykrHIH6of2zy1NyZ4taaz42iyVlyw/rx6wHOm2TU3/yMEe9ptPUtfZ8kkjAyxJn1nsOjzIGsU8QufMogKLWPtg==", + "type": "package", + "path": "Xamarin.Forms/2.3.3.175", + "files": [ + "Xamarin.Forms.2.3.3.175.nupkg.sha512", + "Xamarin.Forms.nuspec", + "build/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/ICSharpCode.Decompiler.dll", + "build/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/ICSharpCode.NRefactory.CSharp.dll", + "build/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/ICSharpCode.NRefactory.Cecil.dll", + "build/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/ICSharpCode.NRefactory.Xml.dll", + "build/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/ICSharpCode.NRefactory.dll", + "build/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/Mono.Cecil.Mdb.dll", + "build/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/Mono.Cecil.Pdb.dll", + "build/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/Mono.Cecil.Rocks.dll", + "build/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/Mono.Cecil.dll", + "build/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/Xamarin.Forms.Build.Tasks.dll", + "build/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/Xamarin.Forms.Core.dll", + "build/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/Xamarin.Forms.Xaml.dll", + "build/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/Xamarin.Forms.targets", + "lib/MonoAndroid10/Design/Xamarin.Forms.Core.Design.dll", + "lib/MonoAndroid10/Design/Xamarin.Forms.Xaml.Design.dll", + "lib/MonoAndroid10/FormsViewGroup.dll", + "lib/MonoAndroid10/FormsViewGroup.pdb", + "lib/MonoAndroid10/Xamarin.Forms.Core.dll", + "lib/MonoAndroid10/Xamarin.Forms.Core.pdb", + "lib/MonoAndroid10/Xamarin.Forms.Core.xml", + "lib/MonoAndroid10/Xamarin.Forms.Platform.Android.dll", + "lib/MonoAndroid10/Xamarin.Forms.Platform.Android.pdb", + "lib/MonoAndroid10/Xamarin.Forms.Platform.dll", + "lib/MonoAndroid10/Xamarin.Forms.Xaml.dll", + "lib/MonoAndroid10/Xamarin.Forms.Xaml.pdb", + "lib/MonoAndroid10/Xamarin.Forms.Xaml.xml", + "lib/WP80/Design/Xamarin.Forms.Core.Design.dll", + "lib/WP80/Design/Xamarin.Forms.Xaml.Design.dll", + "lib/WP80/Xamarin.Forms.Core.dll", + "lib/WP80/Xamarin.Forms.Core.pdb", + "lib/WP80/Xamarin.Forms.Core.xml", + "lib/WP80/Xamarin.Forms.Platform.WP8.dll", + "lib/WP80/Xamarin.Forms.Platform.WP8.pdb", + "lib/WP80/Xamarin.Forms.Platform.dll", + "lib/WP80/Xamarin.Forms.Xaml.dll", + "lib/WP80/Xamarin.Forms.Xaml.pdb", + "lib/WP80/Xamarin.Forms.Xaml.xml", + "lib/Xamarin.iOS10/Design/Xamarin.Forms.Core.Design.dll", + "lib/Xamarin.iOS10/Design/Xamarin.Forms.Xaml.Design.dll", + "lib/Xamarin.iOS10/Xamarin.Forms.Core.dll", + "lib/Xamarin.iOS10/Xamarin.Forms.Core.dll.mdb", + "lib/Xamarin.iOS10/Xamarin.Forms.Core.pdb", + "lib/Xamarin.iOS10/Xamarin.Forms.Core.xml", + "lib/Xamarin.iOS10/Xamarin.Forms.Platform.dll", + "lib/Xamarin.iOS10/Xamarin.Forms.Platform.iOS.dll", + "lib/Xamarin.iOS10/Xamarin.Forms.Platform.iOS.dll.mdb", + "lib/Xamarin.iOS10/Xamarin.Forms.Platform.iOS.pdb", + "lib/Xamarin.iOS10/Xamarin.Forms.Xaml.dll", + "lib/Xamarin.iOS10/Xamarin.Forms.Xaml.dll.mdb", + "lib/Xamarin.iOS10/Xamarin.Forms.Xaml.pdb", + "lib/Xamarin.iOS10/Xamarin.Forms.Xaml.xml", + "lib/Xamarin.iOS10/ar/Xamarin.Forms.Platform.iOS.resources.dll", + "lib/Xamarin.iOS10/ca/Xamarin.Forms.Platform.iOS.resources.dll", + "lib/Xamarin.iOS10/cs/Xamarin.Forms.Platform.iOS.resources.dll", + "lib/Xamarin.iOS10/da/Xamarin.Forms.Platform.iOS.resources.dll", + "lib/Xamarin.iOS10/de/Xamarin.Forms.Platform.iOS.resources.dll", + "lib/Xamarin.iOS10/el/Xamarin.Forms.Platform.iOS.resources.dll", + "lib/Xamarin.iOS10/es/Xamarin.Forms.Platform.iOS.resources.dll", + "lib/Xamarin.iOS10/fi/Xamarin.Forms.Platform.iOS.resources.dll", + "lib/Xamarin.iOS10/fr/Xamarin.Forms.Platform.iOS.resources.dll", + "lib/Xamarin.iOS10/he/Xamarin.Forms.Platform.iOS.resources.dll", + "lib/Xamarin.iOS10/hi/Xamarin.Forms.Platform.iOS.resources.dll", + "lib/Xamarin.iOS10/hr/Xamarin.Forms.Platform.iOS.resources.dll", + "lib/Xamarin.iOS10/hu/Xamarin.Forms.Platform.iOS.resources.dll", + "lib/Xamarin.iOS10/id/Xamarin.Forms.Platform.iOS.resources.dll", + "lib/Xamarin.iOS10/it/Xamarin.Forms.Platform.iOS.resources.dll", + "lib/Xamarin.iOS10/ja/Xamarin.Forms.Platform.iOS.resources.dll", + "lib/Xamarin.iOS10/ko/Xamarin.Forms.Platform.iOS.resources.dll", + "lib/Xamarin.iOS10/ms/Xamarin.Forms.Platform.iOS.resources.dll", + "lib/Xamarin.iOS10/nb/Xamarin.Forms.Platform.iOS.resources.dll", + "lib/Xamarin.iOS10/nl/Xamarin.Forms.Platform.iOS.resources.dll", + "lib/Xamarin.iOS10/pl/Xamarin.Forms.Platform.iOS.resources.dll", + "lib/Xamarin.iOS10/pt-BR/Xamarin.Forms.Platform.iOS.resources.dll", + "lib/Xamarin.iOS10/pt/Xamarin.Forms.Platform.iOS.resources.dll", + "lib/Xamarin.iOS10/ro/Xamarin.Forms.Platform.iOS.resources.dll", + "lib/Xamarin.iOS10/ru/Xamarin.Forms.Platform.iOS.resources.dll", + "lib/Xamarin.iOS10/sk/Xamarin.Forms.Platform.iOS.resources.dll", + "lib/Xamarin.iOS10/sv/Xamarin.Forms.Platform.iOS.resources.dll", + "lib/Xamarin.iOS10/th/Xamarin.Forms.Platform.iOS.resources.dll", + "lib/Xamarin.iOS10/tr/Xamarin.Forms.Platform.iOS.resources.dll", + "lib/Xamarin.iOS10/uk/Xamarin.Forms.Platform.iOS.resources.dll", + "lib/Xamarin.iOS10/vi/Xamarin.Forms.Platform.iOS.resources.dll", + "lib/Xamarin.iOS10/zh-HK/Xamarin.Forms.Platform.iOS.resources.dll", + "lib/Xamarin.iOS10/zh-Hans/Xamarin.Forms.Platform.iOS.resources.dll", + "lib/Xamarin.iOS10/zh-Hant/Xamarin.Forms.Platform.iOS.resources.dll", + "lib/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/Design/Xamarin.Forms.Core.Design.dll", + "lib/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/Design/Xamarin.Forms.Xaml.Design.dll", + "lib/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/Xamarin.Forms.Core.dll", + "lib/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/Xamarin.Forms.Core.dll.mdb", + "lib/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/Xamarin.Forms.Core.pdb", + "lib/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/Xamarin.Forms.Core.xml", + "lib/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/Xamarin.Forms.Platform.dll", + "lib/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/Xamarin.Forms.Platform.dll.mdb", + "lib/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/Xamarin.Forms.Platform.pdb", + "lib/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/Xamarin.Forms.Xaml.dll", + "lib/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/Xamarin.Forms.Xaml.dll.mdb", + "lib/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/Xamarin.Forms.Xaml.pdb", + "lib/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/Xamarin.Forms.Xaml.xml", + "lib/uap10.0/Design/Xamarin.Forms.Core.Design.dll", + "lib/uap10.0/Design/Xamarin.Forms.Xaml.Design.dll", + "lib/uap10.0/Xamarin.Forms.Core.dll", + "lib/uap10.0/Xamarin.Forms.Core.xml", + "lib/uap10.0/Xamarin.Forms.Platform.UAP.dll", + "lib/uap10.0/Xamarin.Forms.Platform.UAP.pri", + "lib/uap10.0/Xamarin.Forms.Platform.UAP/AutoSuggestStyle.xbf", + "lib/uap10.0/Xamarin.Forms.Platform.UAP/FormsCommandBarStyle.xbf", + "lib/uap10.0/Xamarin.Forms.Platform.UAP/FormsTextBoxStyle.xbf", + "lib/uap10.0/Xamarin.Forms.Platform.UAP/MasterDetailControlStyle.xbf", + "lib/uap10.0/Xamarin.Forms.Platform.UAP/PageControl.xbf", + "lib/uap10.0/Xamarin.Forms.Platform.UAP/PageControlStyle.xbf", + "lib/uap10.0/Xamarin.Forms.Platform.UAP/Properties/Xamarin.Forms.Platform.UAP.rd.xml", + "lib/uap10.0/Xamarin.Forms.Platform.UAP/Resources.xbf", + "lib/uap10.0/Xamarin.Forms.Platform.UAP/TabbedPageStyle.xbf", + "lib/uap10.0/Xamarin.Forms.Platform.UAP/Xamarin.Forms.Platform.UAP.xr.xml", + "lib/uap10.0/Xamarin.Forms.Platform.dll", + "lib/uap10.0/Xamarin.Forms.Xaml.dll", + "lib/uap10.0/Xamarin.Forms.Xaml.xml", + "lib/win81/Design/Xamarin.Forms.Core.Design.dll", + "lib/win81/Design/Xamarin.Forms.Xaml.Design.dll", + "lib/win81/Xamarin.Forms.Core.dll", + "lib/win81/Xamarin.Forms.Core.xml", + "lib/win81/Xamarin.Forms.Platform.WinRT.Tablet.dll", + "lib/win81/Xamarin.Forms.Platform.WinRT.Tablet.pri", + "lib/win81/Xamarin.Forms.Platform.WinRT.Tablet/FormsTextBoxStyle.xbf", + "lib/win81/Xamarin.Forms.Platform.WinRT.Tablet/Resources.xbf", + "lib/win81/Xamarin.Forms.Platform.WinRT.Tablet/TabletResources.xbf", + "lib/win81/Xamarin.Forms.Platform.WinRT.Tablet/Xamarin.Forms.Platform.WinRT.Tablet.xr.xml", + "lib/win81/Xamarin.Forms.Platform.WinRT.dll", + "lib/win81/Xamarin.Forms.Platform.WinRT.pri", + "lib/win81/Xamarin.Forms.Platform.WinRT/PageControl.xbf", + "lib/win81/Xamarin.Forms.Platform.WinRT/StepperControl.xbf", + "lib/win81/Xamarin.Forms.Platform.WinRT/Xamarin.Forms.Platform.WinRT.xr.xml", + "lib/win81/Xamarin.Forms.Platform.dll", + "lib/win81/Xamarin.Forms.Xaml.dll", + "lib/win81/Xamarin.Forms.Xaml.xml", + "lib/wpa81/Design/Xamarin.Forms.Core.Design.dll", + "lib/wpa81/Design/Xamarin.Forms.Xaml.Design.dll", + "lib/wpa81/Xamarin.Forms.Core.dll", + "lib/wpa81/Xamarin.Forms.Core.xml", + "lib/wpa81/Xamarin.Forms.Platform.WinRT.Phone.dll", + "lib/wpa81/Xamarin.Forms.Platform.WinRT.Phone.pri", + "lib/wpa81/Xamarin.Forms.Platform.WinRT.Phone/FormsTextBoxStyle.xbf", + "lib/wpa81/Xamarin.Forms.Platform.WinRT.Phone/PhoneResources.xbf", + "lib/wpa81/Xamarin.Forms.Platform.WinRT.Phone/Resources.xbf", + "lib/wpa81/Xamarin.Forms.Platform.WinRT.Phone/SearchBox.xbf", + "lib/wpa81/Xamarin.Forms.Platform.WinRT.Phone/Xamarin.Forms.Platform.WinRT.Phone.xr.xml", + "lib/wpa81/Xamarin.Forms.Platform.WinRT.dll", + "lib/wpa81/Xamarin.Forms.Platform.WinRT.pri", + "lib/wpa81/Xamarin.Forms.Platform.WinRT/PageControl.xbf", + "lib/wpa81/Xamarin.Forms.Platform.WinRT/StepperControl.xbf", + "lib/wpa81/Xamarin.Forms.Platform.WinRT/Xamarin.Forms.Platform.WinRT.xr.xml", + "lib/wpa81/Xamarin.Forms.Platform.dll", + "lib/wpa81/Xamarin.Forms.Xaml.dll", + "lib/wpa81/Xamarin.Forms.Xaml.xml" + ] + }, + "Xamarin.Forms.Platform.Tizen/2.3.3.175-beta-007": { + "sha512": "PH7HH1971IOZJioh32PV7kr7/TFpulKFBmNNYW4zzR0KX9kzhgDDYUtaBDNUMPWT+C7qjfG+hYggwgOQ5quoCw==", + "type": "package", + "path": "Xamarin.Forms.Platform.Tizen/2.3.3.175-beta-007", + "files": [ + "Xamarin.Forms.Platform.Tizen.2.3.3.175-beta-007.nupkg.sha512", + "Xamarin.Forms.Platform.Tizen.nuspec", + "lib/netstandard1.6/Xamarin.Forms.Platform.Tizen.dll" + ] } }, "projectFileDependencyGroups": { "": [ "Microsoft.NETCore.App >= 1.0.0", - "Tizen.Library >= 1.0.0-pre1" + "Tizen.Library >= 1.0.0-pre2", + "Xamarin.Forms >= 2.3.3.175", + "Xamarin.Forms.Platform.Tizen >= 2.3.3.175-beta-007" ], ".NETCoreApp,Version=v1.0": [] - }, - "tools": {}, - "projectFileToolGroups": {} + } } \ No newline at end of file diff --git a/etc/SampleApplication/NUISamples/NUISamples.Tizen/Properties/AssemblyInfo.cs b/NUISamples/NUISamples.TizenTV/Properties/AssemblyInfo.cs similarity index 81% rename from etc/SampleApplication/NUISamples/NUISamples.Tizen/Properties/AssemblyInfo.cs rename to NUISamples/NUISamples.TizenTV/Properties/AssemblyInfo.cs index 4d8f27d..a8e35c2 100755 --- a/etc/SampleApplication/NUISamples/NUISamples.Tizen/Properties/AssemblyInfo.cs +++ b/NUISamples/NUISamples.TizenTV/Properties/AssemblyInfo.cs @@ -2,34 +2,34 @@ using System.Runtime.CompilerServices; using System.Runtime.InteropServices; -// General Information about an assembly is controlled through the following +// General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated with an assembly. -[assembly: AssemblyTitle("NUISamples.Tizen")] +[assembly: AssemblyTitle("NUISamples.TizenTV")] [assembly: AssemblyDescription("")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Microsoft")] -[assembly: AssemblyProduct("NUISamples.Tizen")] +[assembly: AssemblyProduct("NUISamples.TizenTV")] [assembly: AssemblyCopyright("Copyright © Microsoft 2017")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] -// Setting ComVisible to false makes the types in this assembly not visible -// to COM components. If you need to access a type in this assembly from +// Setting ComVisible to false makes the types in this assembly not visible +// to COM components. If you need to access a type in this assembly from // COM, set the ComVisible attribute to true on that type. [assembly: ComVisible(false)] // The following GUID is for the ID of the typelib if this project is exposed to COM -[assembly: Guid("316bf936-f063-4c33-9499-f4f472cd3ea7")] +[assembly: Guid("b47e2552-f995-49f6-ac29-58b9ccfb7056")] // Version information for an assembly consists of the following four values: // // Major Version -// Minor Version +// Minor Version // Build Number // Revision // -// You can specify all the values or you can default the Build and Revision Numbers +// You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] [assembly: AssemblyVersion("1.0.0.0")] diff --git a/NUISamples/NUISamples.TizenTV/bin/Debug/dali-1.2.25-1.x86_64.rpm b/NUISamples/NUISamples.TizenTV/bin/Debug/dali-1.2.25-1.x86_64.rpm new file mode 100755 index 0000000..6b1b830 Binary files /dev/null and b/NUISamples/NUISamples.TizenTV/bin/Debug/dali-1.2.25-1.x86_64.rpm differ diff --git a/NUISamples/NUISamples.TizenTV/bin/Debug/dali-adaptor-1.2.25-1.x86_64.rpm b/NUISamples/NUISamples.TizenTV/bin/Debug/dali-adaptor-1.2.25-1.x86_64.rpm new file mode 100755 index 0000000..a4c337e Binary files /dev/null and b/NUISamples/NUISamples.TizenTV/bin/Debug/dali-adaptor-1.2.25-1.x86_64.rpm differ diff --git a/NUISamples/NUISamples.TizenTV/bin/Debug/dali-adaptor-dali-video-player-plugin-1.2.25-1.x86_64.rpm b/NUISamples/NUISamples.TizenTV/bin/Debug/dali-adaptor-dali-video-player-plugin-1.2.25-1.x86_64.rpm new file mode 100755 index 0000000..6702bc1 Binary files /dev/null and b/NUISamples/NUISamples.TizenTV/bin/Debug/dali-adaptor-dali-video-player-plugin-1.2.25-1.x86_64.rpm differ diff --git a/NUISamples/NUISamples.TizenTV/bin/Debug/dali-adaptor-devel-1.2.25-1.x86_64.rpm b/NUISamples/NUISamples.TizenTV/bin/Debug/dali-adaptor-devel-1.2.25-1.x86_64.rpm new file mode 100755 index 0000000..fc2e9ec Binary files /dev/null and b/NUISamples/NUISamples.TizenTV/bin/Debug/dali-adaptor-devel-1.2.25-1.x86_64.rpm differ diff --git a/NUISamples/NUISamples.TizenTV/bin/Debug/dali-adaptor-integration-devel-1.2.25-1.x86_64.rpm b/NUISamples/NUISamples.TizenTV/bin/Debug/dali-adaptor-integration-devel-1.2.25-1.x86_64.rpm new file mode 100755 index 0000000..87be52b Binary files /dev/null and b/NUISamples/NUISamples.TizenTV/bin/Debug/dali-adaptor-integration-devel-1.2.25-1.x86_64.rpm differ diff --git a/NUISamples/NUISamples.TizenTV/bin/Debug/dali-csharp-binder-1.2.25-20170214.x86_64.rpm b/NUISamples/NUISamples.TizenTV/bin/Debug/dali-csharp-binder-1.2.25-20170214.x86_64.rpm new file mode 100755 index 0000000..ad879a5 Binary files /dev/null and b/NUISamples/NUISamples.TizenTV/bin/Debug/dali-csharp-binder-1.2.25-20170214.x86_64.rpm differ diff --git a/NUISamples/NUISamples.TizenTV/bin/Debug/dali-csharp-binder-devel-1.2.25-20170214.x86_64.rpm b/NUISamples/NUISamples.TizenTV/bin/Debug/dali-csharp-binder-devel-1.2.25-20170214.x86_64.rpm new file mode 100755 index 0000000..f805fea Binary files /dev/null and b/NUISamples/NUISamples.TizenTV/bin/Debug/dali-csharp-binder-devel-1.2.25-20170214.x86_64.rpm differ diff --git a/NUISamples/NUISamples.TizenTV/bin/Debug/dali-devel-1.2.25-1.x86_64.rpm b/NUISamples/NUISamples.TizenTV/bin/Debug/dali-devel-1.2.25-1.x86_64.rpm new file mode 100755 index 0000000..3710f3c Binary files /dev/null and b/NUISamples/NUISamples.TizenTV/bin/Debug/dali-devel-1.2.25-1.x86_64.rpm differ diff --git a/NUISamples/NUISamples.TizenTV/bin/Debug/dali-integration-devel-1.2.25-1.x86_64.rpm b/NUISamples/NUISamples.TizenTV/bin/Debug/dali-integration-devel-1.2.25-1.x86_64.rpm new file mode 100755 index 0000000..18605c4 Binary files /dev/null and b/NUISamples/NUISamples.TizenTV/bin/Debug/dali-integration-devel-1.2.25-1.x86_64.rpm differ diff --git a/NUISamples/NUISamples.TizenTV/bin/Debug/dali-toolkit-1.2.25-1.x86_64.rpm b/NUISamples/NUISamples.TizenTV/bin/Debug/dali-toolkit-1.2.25-1.x86_64.rpm new file mode 100755 index 0000000..efbf2b5 Binary files /dev/null and b/NUISamples/NUISamples.TizenTV/bin/Debug/dali-toolkit-1.2.25-1.x86_64.rpm differ diff --git a/NUISamples/NUISamples.TizenTV/bin/Debug/dali-toolkit-devel-1.2.25-1.x86_64.rpm b/NUISamples/NUISamples.TizenTV/bin/Debug/dali-toolkit-devel-1.2.25-1.x86_64.rpm new file mode 100755 index 0000000..bc3ea14 Binary files /dev/null and b/NUISamples/NUISamples.TizenTV/bin/Debug/dali-toolkit-devel-1.2.25-1.x86_64.rpm differ diff --git a/NUISamples/NUISamples.TizenTV/examples/control-dashboard.cs b/NUISamples/NUISamples.TizenTV/examples/control-dashboard.cs new file mode 100755 index 0000000..ff1e87e --- /dev/null +++ b/NUISamples/NUISamples.TizenTV/examples/control-dashboard.cs @@ -0,0 +1,435 @@ +/* + * Copyright (c) 2016 Samsung Electronics Co., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +using System; +using System.Runtime.InteropServices; +using Dali; + +namespace MyCSharpExample +{ + class Example + { + // This is simple structure to contain Control name and implement state at once + // name : control name + // isImplemented : the state which the control is implemented in public or not + private struct Item + { + public String name; + public bool isImplemented; + + public Item(String name, bool isImplemented) + { + this.name = name; + this.isImplemented = isImplemented; + } + } + + private Dali.Application _application; + private TableView _contentContainer; + private Stage _stage; + private Popup _popup; + + // List of items + private Item[] mViewList = { + new Item("PushButton", true), new Item("DropDown", false), new Item("Toggle", true), + new Item("InputField", false), new Item("AnimateGif", false), new Item("Loading", false), + new Item("ProgressBar", false), new Item("CheckBox", false), new Item("RadioButton", true), + new Item("Tooltip", true), new Item("Popup", true), new Item("Toast", true), + new Item("ItemView", false), new Item("CheckBox", true) + }; + + public Example(Dali.Application application) + { + _application = application; + _application.Initialized += OnInitialize; + } + + public void OnInitialize(object source, NUIApplicationInitEventArgs e) + { + Console.WriteLine("Customized Application Initialize event handler"); + _stage = Stage.GetCurrent(); + _stage.BackgroundColor = Color.White; + + // Top label + TextLabel topLabel = new TextLabel(); + topLabel.SetResizePolicy(ResizePolicyType.FILL_TO_PARENT, DimensionType.WIDTH); + topLabel.SetResizePolicy(ResizePolicyType.SIZE_RELATIVE_TO_PARENT, DimensionType.HEIGHT); + topLabel.AnchorPoint = NDalic.AnchorPointTopCenter; + topLabel.ParentOrigin = NDalic.ParentOriginTopCenter; + topLabel.SetSizeModeFactor(new Vector3( 0.0f, 0.1f, 0.0f ) ); + topLabel.BackgroundColor = new Color(43.0f / 255.0f, 145.0f / 255.0f, 175.0f / 255.0f, 1.0f); + topLabel.TextColor = NDalic.WHITE; + topLabel.Text = " DALi Views"; + topLabel.HorizontalAlignment = "BEGIN"; + topLabel.VerticalAlignment = "CENTER"; + topLabel.PointSize = 42.0f; + _stage.Add(topLabel); + + // Grid container to contain items. Use tableView because FlexContainer support focus navigation just two direction ( up/down or left/right ) + _contentContainer = new TableView(6, 5); + _contentContainer.SetResizePolicy(ResizePolicyType.FILL_TO_PARENT, DimensionType.WIDTH); + _contentContainer.SetResizePolicy(ResizePolicyType.SIZE_RELATIVE_TO_PARENT, DimensionType.HEIGHT); + _contentContainer.SetSizeModeFactor(new Vector3( 0.0f, 0.9f, 0.0f ) ); + _contentContainer.AnchorPoint = NDalic.AnchorPointBottomCenter; + _contentContainer.ParentOrigin = NDalic.ParentOriginBottomCenter; + _contentContainer.SetRelativeHeight(0, 0.07f); + _contentContainer.SetRelativeHeight(1, 0.26f); + _contentContainer.SetRelativeHeight(2, 0.07f); + _contentContainer.SetRelativeHeight(3, 0.26f); + _contentContainer.SetRelativeHeight(4, 0.07f); + _contentContainer.SetRelativeHeight(5, 0.26f); + _contentContainer.SetKeyboardFocusable(true); + _stage.Add(_contentContainer); + + CreateContent(); + + FocusManager.Instance.PreFocusChange += OnPreFocusChange; + } + + // Callback for KeyboardFocusManager + private Actor OnPreFocusChange(object source, FocusManager.PreFocusChangeEventArgs e) + { + if (!e.Proposed && !e.Current) + { + e.Proposed = _contentContainer.GetChildAt(1); + } + return e.Proposed; + } + + private void CreateContent() + { + for (int i = 0; i < mViewList.Length; i++) + { + CreateItem(mViewList[i], i); + } + } + + private void CreateItem(Item item, int idx) + { + // Make label for item + TextLabel itemLabel = new TextLabel(" " + item.name); + itemLabel.Size = new Vector3(_stage.GetSize().Width * 0.2f, _stage.GetSize().Height * 0.05f, 0.0f); + itemLabel.HorizontalAlignment = "BEGIN"; + itemLabel.VerticalAlignment = "BOTTOM"; + itemLabel.PointSize = 18.0f; + _contentContainer.AddChild(itemLabel, new TableView.CellPosition(((uint)idx / 5) * 2, (uint)idx % 5)); + + // If item is implemented in public, attach it on stage + if (item.isImplemented) + { + if (item.name.CompareTo("PushButton") == 0) + { + PushButton pushButton = new PushButton(); + pushButton.LabelText = "Push Button"; + pushButton.SetResizePolicy(ResizePolicyType.FILL_TO_PARENT, DimensionType.WIDTH); + pushButton.SetResizePolicy(ResizePolicyType.FILL_TO_PARENT, DimensionType.HEIGHT); + pushButton.UnselectedColor = new Vector4(1.0f,0.0f,0.0f,1.0f); + pushButton.SelectedColor = new Vector4(0.0f,1.0f,0.0f,1.0f); + pushButton.Clicked += (obj, e) => + { + e.Button.LabelText = "Click Me"; + e.Button.UnselectedColor = new Vector4(0.0f,0.0f,1.0f,1.0f); + return true; + }; + + _contentContainer.AddChild(pushButton, new TableView.CellPosition(((uint)idx / 5) * 2 + 1, (uint)idx % 5)); + } + if (item.name.CompareTo("DropDown") == 0) + { + + } + if (item.name.CompareTo("Toggle") == 0) + { + ToggleButton toggleButton = new ToggleButton(); + Dali.Property.Array array = new Dali.Property.Array(); + array.Add( new Dali.Property.Value("./images/star-highlight.png") ); + array.Add( new Dali.Property.Value("./images/star-mod.png") ); + array.Add( new Dali.Property.Value("./images/star-dim.png") ); + toggleButton.StateVisuals = array; + + Dali.Property.Array tooltips = new Dali.Property.Array(); + tooltips.Add( new Dali.Property.Value("State A") ); + tooltips.Add( new Dali.Property.Value("State B") ); + tooltips.Add( new Dali.Property.Value("State C") ); + toggleButton.Tooltips = tooltips; + + toggleButton.WidthResizePolicy = "FILL_TO_PARENT"; + toggleButton.HeightResizePolicy = "FILL_TO_PARENT"; + toggleButton.Clicked += (obj, e) => + { + Console.WriteLine("Toggle button state changed."); + return true; + }; + + _contentContainer.AddChild(toggleButton, new TableView.CellPosition(((uint)idx / 5) * 2 + 1, (uint)idx % 5)); + } + if (item.name.CompareTo("InputField") == 0) + { + + } + if (item.name.CompareTo("AnimateGif") == 0) + { + + } + if (item.name.CompareTo("Loading") == 0) + { + + } + if (item.name.CompareTo("ProgressBar") == 0) + { + + } + if (item.name.CompareTo("ScrollBar") == 0) + { + + } + if (item.name.CompareTo("CheckBox") == 0) + { + CheckBoxButton checkBoxButton = new CheckBoxButton(); + checkBoxButton.LabelText = "Yes"; + + _contentContainer.AddChild(checkBoxButton, new TableView.CellPosition(((uint)idx / 5) * 2 + 1, (uint)idx % 5)); + } + if (item.name.CompareTo("RadioButton") == 0) + { + TableView tableView = new TableView(2, 1); + tableView.SetResizePolicy(ResizePolicyType.FILL_TO_PARENT, DimensionType.WIDTH); + tableView.SetResizePolicy(ResizePolicyType.FILL_TO_PARENT, DimensionType.HEIGHT); + + RadioButton rButton = new RadioButton(); + rButton.LabelText = "Yes"; + rButton.Selected = true; + tableView.AddChild(rButton, new TableView.CellPosition(0, 0)); + + rButton = new RadioButton(); + rButton.LabelText = "No"; + + tableView.AddChild(rButton, new TableView.CellPosition(1, 0)); + + _contentContainer.AddChild(tableView, new TableView.CellPosition(((uint)idx / 5) * 2 + 1, (uint)idx % 5)); + } + if (item.name.CompareTo("Tooltip") == 0) + { + TableView tableView = new TableView(2, 1); + tableView.SetResizePolicy(ResizePolicyType.FILL_TO_PARENT, DimensionType.WIDTH); + tableView.SetResizePolicy(ResizePolicyType.FILL_TO_PARENT, DimensionType.HEIGHT); + + // Create two push buttons and add them to a table view + PushButton buttonWithSimpleTooltip = new PushButton(); + buttonWithSimpleTooltip.LabelText = "Tooltip with text only"; + buttonWithSimpleTooltip.UnselectedColor = new Vector4(0.5f,0.5f,0.7f,1.0f); + buttonWithSimpleTooltip.SelectedColor = new Vector4(0.7f,0.5f,0.7f,1.0f); + buttonWithSimpleTooltip.WidthResizePolicy = "FILL_TO_PARENT"; + tableView.AddChild(buttonWithSimpleTooltip, new TableView.CellPosition(0, 0)); + + PushButton buttonWithIconTooltip = new PushButton(); + buttonWithIconTooltip.LabelText = "Tooltip with Text and Icon"; + buttonWithIconTooltip.WidthResizePolicy = "FILL_TO_PARENT"; + buttonWithIconTooltip.UnselectedColor = new Vector4(0.5f,0.5f,0.7f,1.0f); + buttonWithIconTooltip.SelectedColor = new Vector4(0.7f,0.5f,0.7f,1.0f); + tableView.AddChild(buttonWithIconTooltip, new TableView.CellPosition(1, 0)); + + // Add a simple text only tooltip to the first push button + buttonWithSimpleTooltip.TooltipText = "Simple Tooltip"; + + // Create a property map for a tooltip with one icon and one text + Property.Array iconTooltipContent = new Property.Array(); + + Property.Map iconVisual = new Property.Map(); + iconVisual.Add( Dali.Constants.Visual.Property.Type, new Property.Value((int)Dali.Constants.Visual.Type.Image) ) + .Add( Dali.Constants.ImageVisualProperty.URL, new Property.Value("./images/star-highlight.png") ); + iconTooltipContent.Add(new Property.Value(iconVisual)); + + Property.Map textVisual = new Property.Map(); + textVisual.Add( Dali.Constants.Visual.Property.Type, new Property.Value((int)Dali.Constants.Visual.Type.Text) ) + .Add( Dali.Constants.TextVisualProperty.Text, new Property.Value("Tooltip with Icon") ); + iconTooltipContent.Add(new Property.Value(textVisual)); + + Property.Map iconTooltip = new Property.Map(); + iconTooltip.Add( Dali.Constants.Tooltip.Property.Content, new Property.Value(iconTooltipContent) ) + .Add( Dali.Constants.Tooltip.Property.Tail, new Property.Value(true) ); + + // Add the tooltip with icon and text to the second push button + buttonWithIconTooltip.Tooltip = iconTooltip; + + _contentContainer.AddChild(tableView, new TableView.CellPosition(((uint)idx / 5) * 2 + 1, (uint)idx % 5)); + } + if (item.name.CompareTo("Popup") == 0) + { + PushButton button = new PushButton(); + button.LabelText = "Popup"; + button.ParentOrigin = NDalic.ParentOriginCenter; + button.AnchorPoint = NDalic.AnchorPointCenter; + button.MaximumSize = new Vector2(90.0f,50.0f); + _popup = CreatePopup(); + _popup.SetTitle(CreateTitle("Popup")); + + TextLabel text = new TextLabel("This will erase the file permanently. Are you sure?"); + text.BackgroundColor = Color.White; + text.MultiLine = true; + text.SetResizePolicy(ResizePolicyType.FILL_TO_PARENT, DimensionType.WIDTH); + text.SetResizePolicy(ResizePolicyType.DIMENSION_DEPENDENCY, DimensionType.HEIGHT); + text.SetPadding(new RectFloat(10.0f, 10.0f, 20.0f, 0.0f)); + _popup.SetContent(text); + _popup.SetKeyboardFocusable(true); + _popup.SetDisplayState(Popup.DisplayStateType.HIDDEN); + + button.Clicked += (obj, ee) => + { + _stage.Add(_popup); + _popup.SetDisplayState(Popup.DisplayStateType.SHOWN); + FocusManager.Instance.SetCurrentFocusActor((_popup.FindChildByName( "Footer" )).FindChildByName("OKButton")); + return true; + }; + _contentContainer.AddChild(button, new TableView.CellPosition(((uint)idx / 5) * 2 + 1, (uint)idx % 5)); + } + if (item.name.CompareTo("Toast") == 0) + { + PushButton button = new PushButton(); + button.LabelText = "Toast"; + button.ParentOrigin = NDalic.ParentOriginCenter; + button.AnchorPoint = NDalic.AnchorPointCenter; + button.Clicked += (obj, ee) => + { + TypeInfo typeInfo = new TypeInfo(TypeRegistry.Get().GetTypeInfo( "PopupToast" )); + if( typeInfo ) + { + BaseHandle baseHandle = typeInfo.CreateInstance(); + if( baseHandle ) + { + Popup toast = Popup.DownCast( baseHandle ); + TextLabel text = new TextLabel("This is a Toast.\nIt will auto-hide itself"); + text.TextColor = Color.White; + text.MultiLine = true; + text.HorizontalAlignment = "center"; + toast.SetTitle( text); + _stage.Add(toast); + toast.SetDisplayState( Popup.DisplayStateType.SHOWN); + } + } + return true; + }; + _contentContainer.AddChild(button, new TableView.CellPosition(((uint)idx / 5) * 2 + 1, (uint)idx % 5)); + } + if (item.name.CompareTo("ItemView") == 0) + { + + } + } + else + { + ImageView notSupportView = new ImageView("images/not_yet_sign.png"); + notSupportView.Size = new Vector3(_stage.GetSize().Width * 0.2f, _stage.GetSize().Height * 0.25f, 0.0f); + notSupportView.SetKeyboardFocusable(true); + _contentContainer.AddChild(notSupportView, new TableView.CellPosition(((uint)idx / 5) * 2 + 1, (uint)idx % 5)); + } + } + Popup CreatePopup() + { + Popup confirmationPopup = new Popup(); + + Actor footer = new Actor(); + footer.SetName("Footer"); + footer.SetResizePolicy(ResizePolicyType.FILL_TO_PARENT, DimensionType.WIDTH); + footer.SetResizePolicy(ResizePolicyType.FIXED, DimensionType.HEIGHT); + footer.SetSize(0.0f, 80.0f); + footer.ParentOrigin = NDalic.ParentOriginCenter; + footer.AnchorPoint = NDalic.AnchorPointCenter; + + PushButton okButton = CreateOKButton(); + okButton.ParentOrigin = NDalic.ParentOriginCenter; + okButton.AnchorPoint = NDalic.AnchorPointCenter; + okButton.SetResizePolicy(ResizePolicyType.SIZE_FIXED_OFFSET_FROM_PARENT, DimensionType.ALL_DIMENSIONS); + okButton.SetSizeModeFactor(new Vector3(-20.0f, -20.0f, 0.0f)); + + PushButton cancelButton = CreateCancelButton(); + cancelButton.ParentOrigin = NDalic.ParentOriginCenter; + cancelButton.AnchorPoint = NDalic.AnchorPointCenter; + cancelButton.SetResizePolicy(ResizePolicyType.SIZE_FIXED_OFFSET_FROM_PARENT, DimensionType.ALL_DIMENSIONS); + cancelButton.SetSizeModeFactor(new Vector3(-20.0f, -20.0f, 0.0f)); + + TableView controlLayout = new TableView(1, 2); + controlLayout.ParentOrigin = NDalic.ParentOriginCenter; + controlLayout.AnchorPoint = NDalic.AnchorPointCenter; + controlLayout.SetResizePolicy(ResizePolicyType.FILL_TO_PARENT, DimensionType.ALL_DIMENSIONS); + controlLayout.SetCellPadding(new Size(10.0f, 10.0f)); + controlLayout.SetRelativeWidth(0, 0.5f); + controlLayout.SetRelativeWidth(1, 0.5f); + controlLayout.SetCellAlignment(new TableView.CellPosition(0, 0), HorizontalAlignmentType.CENTER, VerticalAlignmentType.CENTER); + controlLayout.SetCellAlignment(new TableView.CellPosition(0, 1), HorizontalAlignmentType.CENTER, VerticalAlignmentType.CENTER); + controlLayout.AddChild(okButton, new TableView.CellPosition(0, 0)); + controlLayout.AddChild(cancelButton, new TableView.CellPosition(0, 1)); + + footer.Add(controlLayout); + + confirmationPopup.SetFooter(footer); + return confirmationPopup; + } + Actor CreateTitle(string title) + { + TextLabel titleActor = new TextLabel(title); + titleActor.TextColor = Color.White; + titleActor.MultiLine = true; + titleActor.HorizontalAlignment = "center"; + return titleActor; + } + + PushButton CreateOKButton() + { + PushButton okayButton = new PushButton(); + okayButton.SetName("OKButton"); + okayButton.LabelText = "OK"; + okayButton.SetKeyboardFocusable(true); + okayButton.Clicked += (obj, ee) => + { + _popup.SetDisplayState(Popup.DisplayStateType.HIDDEN); + return true; + }; + return okayButton; + } + PushButton CreateCancelButton() + { + PushButton cancelButton = new PushButton(); + cancelButton.LabelText = "Cancel"; + cancelButton.SetKeyboardFocusable(true); + cancelButton.Clicked += (obj, ee) => + { + _popup.SetDisplayState(Popup.DisplayStateType.HIDDEN); + return true; + }; + return cancelButton; + } + + public void MainLoop() + { + _application.MainLoop(); + } + + /// + /// The main entry point for the application. + /// + + [STAThread] + static void Main(string[] args) + { + Console.WriteLine("Hello Mono World"); + + Example example = new Example(Application.NewApplication("json/control-dashboard.json")); + example.MainLoop(); + } + } +} diff --git a/etc/SampleApplication/NUISamples/NUISamples.Tizen/examples/custom-control.cs b/NUISamples/NUISamples.TizenTV/examples/custom-control.cs similarity index 94% rename from etc/SampleApplication/NUISamples/NUISamples.Tizen/examples/custom-control.cs rename to NUISamples/NUISamples.TizenTV/examples/custom-control.cs index 5d48461..20531a2 100755 --- a/etc/SampleApplication/NUISamples/NUISamples.Tizen/examples/custom-control.cs +++ b/NUISamples/NUISamples.TizenTV/examples/custom-control.cs @@ -17,7 +17,7 @@ using System; using System.Runtime.InteropServices; -using NUI; +using Dali; namespace MyCSharpExample { @@ -62,7 +62,7 @@ namespace MyCSharpExample UpdateStartImages(_myRating); // Enable pan gesture detection - EnableGestureDetection(Gesture.Type.Pan); + EnableGestureDetection(Gesture.GestureType.Pan); _myDragEnabled = true; // Allow dragging by default (can be disabled) } @@ -72,18 +72,18 @@ namespace MyCSharpExample // Only handle pan gesture if dragging is allowed if(_myDragEnabled) { - switch (gesture.state) + switch (gesture.State) { - case Gesture.State.Started: + case Gesture.StateType.Started: { _gestureDisplacement = new Vector3(0.0f, 0.0f, 0.0f); _currentValue = 0; break; } - case Gesture.State.Continuing: + case Gesture.StateType.Continuing: { // Calculate the rating according to pan desture displacement - _gestureDisplacement.X += gesture.displacement.X; + _gestureDisplacement.X += gesture.Displacement.X; int delta = (int)Math.Ceiling(_gestureDisplacement.X / 40.0f); _currentValue = _myRating + delta; @@ -152,18 +152,18 @@ namespace MyCSharpExample class Example { - private NUI.Application _application; + private Dali.Application _application; [UnmanagedFunctionPointer(CallingConvention.StdCall)] delegate void CallbackDelegate(); - public Example(NUI.Application application) + public Example(Dali.Application application) { _application = application; _application.Initialized += Initialize; } - public void Initialize(object source, EventArgs e) + public void Initialize(object source, NUIApplicationInitEventArgs e) { Stage stage = Stage.GetCurrent(); stage.BackgroundColor = Color.White; diff --git a/etc/SampleApplication/NUISamples/NUISamples.Tizen/examples/dali-test.cs b/NUISamples/NUISamples.TizenTV/examples/dali-test.cs similarity index 97% rename from etc/SampleApplication/NUISamples/NUISamples.Tizen/examples/dali-test.cs rename to NUISamples/NUISamples.TizenTV/examples/dali-test.cs index 8893760..9c02eee 100755 --- a/etc/SampleApplication/NUISamples/NUISamples.Tizen/examples/dali-test.cs +++ b/NUISamples/NUISamples.TizenTV/examples/dali-test.cs @@ -17,7 +17,7 @@ using System; using System.Runtime.InteropServices; -using NUI; +using Dali; namespace MyCSharpExample { @@ -26,9 +26,9 @@ namespace MyCSharpExample [UnmanagedFunctionPointer(CallingConvention.StdCall)] delegate void CallbackDelegate(IntPtr appPtr); // void, void delgate - private NUI.Application _application; + private Dali.Application _application; - public Example(NUI.Application application) + public Example(Dali.Application application) { _application = application; Console.WriteLine( "InitSignal connection count = " + _application.InitSignal().GetConnectionCount() ); @@ -37,7 +37,7 @@ namespace MyCSharpExample Console.WriteLine( "InitSignal connection count = " + _application.InitSignal().GetConnectionCount() ); } - public void Initialize(object source, EventArgs e) + public void Initialize(object source, NUIApplicationInitEventArgs e) { OperatorTests(); @@ -147,7 +147,7 @@ namespace MyCSharpExample Position.Y += 10; Position.Z += 10; Console.WriteLine( " Position width = " + Position.X + ", height = " + Position.Y + ", depth = " + Position.Z ); - Position parentOrigin = new Position(NDalic.ParentOriginBottomRight); + Position parentOrigin = new Dali.Position(NDalic.ParentOriginBottomRight); Console.WriteLine( " parentOrigin x = " + parentOrigin.X + ", y = " + parentOrigin.Y + ", z = " + parentOrigin.Z ); Console.WriteLine( " *************************" ); diff --git a/NUISamples/NUISamples.TizenTV/examples/date-picker-using-json.cs b/NUISamples/NUISamples.TizenTV/examples/date-picker-using-json.cs new file mode 100755 index 0000000..dbc388c --- /dev/null +++ b/NUISamples/NUISamples.TizenTV/examples/date-picker-using-json.cs @@ -0,0 +1,170 @@ +/* + * Copyright (c) 2016 Samsung Electronics Co., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +using System; +using System.Runtime.InteropServices; +using Dali; + +namespace MyCSharpExample +{ + // A spin control (for continously changing values when users can easily predict a set of values) + + class Example + { + private Dali.Application _application; + private Spin _spinYear; // spin control for year + private Spin _spinMonth; // spin control for month + private Spin _spinDay; // spin control for day + private Builder _builder; // DALi Builder + + public Example(Dali.Application application) + { + _application = application; + _application.Initialized += Initialize; + } + + public void Initialize(object source, NUIApplicationInitEventArgs e) + { + + Stage stage = Stage.GetCurrent(); + stage.BackgroundColor = Color.White; + + // load date JSON template... + + _builder = new Builder (); + + // Optional constant to see logging information coming out + // of DALi JSON parser (builder) + Property.Map constants = new Property.Map(); + constants.Insert( "CONFIG_SCRIPT_LOG_LEVEL", new Property.Value( "Verbose") ); + _builder.AddConstants( constants ); + + _builder.LoadFromFile( "./json/date-picker.json" ); + + // create the date-picker from the template in the json file + BaseHandle handle = _builder.Create( "date-picker"); + + Actor actorTree = Actor.DownCast( handle ); + + stage.Add( actorTree ); + + Actor year = actorTree.FindChildByName("Year"); + Actor month = actorTree.FindChildByName("Month" ); + Actor day = actorTree.FindChildByName("Day"); + + // need to get the actual C# View associated with the actor, + _spinYear = (Spin ) ViewRegistry.GetCustomViewFromActor( year ); + _spinMonth = (Spin ) ViewRegistry.GetCustomViewFromActor( month ); + _spinDay = (Spin ) ViewRegistry.GetCustomViewFromActor( day ); + + _spinYear.Value = 2099; + _spinMonth.Value = 5; + _spinDay.Value = 23; + + + _spinYear.SetKeyboardFocusable(true); + _spinMonth.SetKeyboardFocusable(true); + _spinDay.SetKeyboardFocusable(true); + + + FocusManager keyboardFocusManager = FocusManager.Instance; + keyboardFocusManager.PreFocusChange += OnKeyboardPreFocusChange; + keyboardFocusManager.FocusedActorEnterKeyPressed += OnFocusedActorEnterKeyPressed; + + } + + private Actor OnKeyboardPreFocusChange(object source, FocusManager.PreFocusChangeEventArgs e) + { + Actor nextFocusActor = e.Proposed; + + // When nothing has been focused initially, focus the text field in the first spin + if (!e.Current && !e.Proposed) + { + nextFocusActor = _spinYear.SpinText; + } + else if(e.Direction == View.KeyboardFocus.Direction.LEFT) + { + // Move the focus to the spin in the left of the current focused spin + if(e.Current == _spinMonth.SpinText) + { + nextFocusActor = _spinYear.SpinText; + } + else if(e.Current == _spinDay.SpinText) + { + nextFocusActor = _spinMonth.SpinText; + } + } + else if(e.Direction == View.KeyboardFocus.Direction.RIGHT) + { + // Move the focus to the spin in the right of the current focused spin + if(e.Current == _spinYear.SpinText) + { + nextFocusActor = _spinMonth.SpinText; + } + else if(e.Current == _spinMonth.SpinText) + { + nextFocusActor = _spinDay.SpinText; + } + } + + return nextFocusActor; + } + + private void OnFocusedActorEnterKeyPressed(object source, FocusManager.FocusedActorEnterKeyEventArgs e) + { + // Make the text field in the current focused spin to take the key input + KeyInputFocusManager manager = KeyInputFocusManager.Get(); + + if (e.Actor == _spinYear.SpinText) + { + if (manager.GetCurrentFocusControl() != _spinYear.SpinText) + { + manager.SetFocus(_spinYear.SpinText); + } + } + else if (e.Actor == _spinMonth.SpinText) + { + if (manager.GetCurrentFocusControl() != _spinMonth.SpinText) + { + manager.SetFocus(_spinMonth.SpinText); + } + } + else if (e.Actor == _spinDay.SpinText) + { + if (manager.GetCurrentFocusControl() != _spinDay.SpinText) + { + manager.SetFocus(_spinDay.SpinText); + } + } + } + + public void MainLoop() + { + _application.MainLoop (); + } + + /// + /// The main entry point for the application. + /// + [STAThread] + static void Main(string[] args) + { + Example example = new Example(Application.NewApplication()); + example.MainLoop (); + } + } +} diff --git a/NUISamples/NUISamples.TizenTV/examples/date-picker.cs b/NUISamples/NUISamples.TizenTV/examples/date-picker.cs new file mode 100755 index 0000000..c9701cf --- /dev/null +++ b/NUISamples/NUISamples.TizenTV/examples/date-picker.cs @@ -0,0 +1,196 @@ +/* + * Copyright (c) 2016 Samsung Electronics Co., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +using System; +using System.Runtime.InteropServices; +using Dali; + +namespace MyCSharpExample +{ + // A spin control (for continously changing values when users can easily predict a set of values) + + class Example + { + private Dali.Application _application; + private FlexContainer _container; // Flex container to hold spin controls + private Spin _spinYear; // spin control for year + private Spin _spinMonth; // spin control for month + private Spin _spinDay; // spin control for day + + public Example(Dali.Application application) + { + _application = application; + _application.Initialized += Initialize; + } + + public void Initialize(object source, NUIApplicationInitEventArgs e) + { + + Stage stage = Stage.GetCurrent(); + stage.BackgroundColor = Color.White; + + // Create a container for the spins + _container = new FlexContainer(); + + _container.ParentOrigin = NDalic.ParentOriginCenter; + _container.AnchorPoint = NDalic.AnchorPointCenter; + _container.FlexDirection = (int)FlexContainer.FlexDirectionType.ROW; + _container.Size = new Vector3(480.0f, 150.0f, 0.0f); + + stage.Add(_container); + + // Create a Spin control for year + _spinYear = new Spin(); + _spinYear.ParentOrigin = NDalic.ParentOriginCenter; + _spinYear.AnchorPoint = NDalic.AnchorPointCenter; + _spinYear.Flex = 0.3f; + _spinYear.FlexMargin = new Vector4(5.0f, 0.0f, 5.0f, 0.0f); + _container.Add(_spinYear); + + _spinYear.MinValue = 1900; + _spinYear.MaxValue = 2100; + _spinYear.Value = 2016; + _spinYear.Step = 1; + _spinYear.MaxTextLength = 4; + _spinYear.TextPointSize = 26; + _spinYear.TextColor = Color.White; + _spinYear.SetKeyboardFocusable(true); + _spinYear.Name = "_spinYear"; + + // Create a Spin control for month + _spinMonth = new Spin(); + _spinMonth.ParentOrigin = NDalic.ParentOriginCenter; + _spinMonth.AnchorPoint = NDalic.AnchorPointCenter; + _spinMonth.Flex = 0.3f; + _spinMonth.FlexMargin = new Vector4(5.0f, 0.0f, 5.0f, 0.0f); + _container.Add(_spinMonth); + + _spinMonth.MinValue = 1; + _spinMonth.MaxValue = 12; + _spinMonth.Value = 10; + _spinMonth.Step = 1; + _spinMonth.MaxTextLength = 2; + _spinMonth.TextPointSize = 26; + _spinMonth.TextColor = Color.White; + _spinMonth.SetKeyboardFocusable(true); + _spinMonth.Name = "_spinMonth"; + + // Create a Spin control for day + _spinDay = new Spin(); + _spinDay.ParentOrigin = NDalic.ParentOriginCenter; + _spinDay.AnchorPoint = NDalic.AnchorPointCenter; + _spinDay.Flex = 0.3f; + _spinDay.FlexMargin = new Vector4(5.0f, 0.0f, 5.0f, 0.0f); + _container.Add(_spinDay); + + _spinDay.MinValue = 1; + _spinDay.MaxValue = 31; + _spinDay.Value = 26; + _spinDay.Step = 1; + _spinDay.MaxTextLength = 2; + _spinDay.TextPointSize = 26; + _spinDay.TextColor = Color.White; + _spinDay.SetKeyboardFocusable(true); + _spinDay.Name = "_spinDay"; + + FocusManager keyboardFocusManager = FocusManager.Instance; + keyboardFocusManager.PreFocusChange += OnKeyboardPreFocusChange; + keyboardFocusManager.FocusedActorEnterKeyPressed += OnFocusedActorEnterKeyPressed; + + } + + private Actor OnKeyboardPreFocusChange(object source, FocusManager.PreFocusChangeEventArgs e) + { + Actor nextFocusActor = e.Proposed; + + // When nothing has been focused initially, focus the text field in the first spin + if (!e.Current && !e.Proposed) + { + nextFocusActor = _spinYear.SpinText; + } + else if(e.Direction == View.KeyboardFocus.Direction.LEFT) + { + // Move the focus to the spin in the left of the current focused spin + if(e.Current == _spinMonth.SpinText) + { + nextFocusActor = _spinYear.SpinText; + } + else if(e.Current == _spinDay.SpinText) + { + nextFocusActor = _spinMonth.SpinText; + } + } + else if(e.Direction == View.KeyboardFocus.Direction.RIGHT) + { + // Move the focus to the spin in the right of the current focused spin + if(e.Current == _spinYear.SpinText) + { + nextFocusActor = _spinMonth.SpinText; + } + else if(e.Current == _spinMonth.SpinText) + { + nextFocusActor = _spinDay.SpinText; + } + } + + return nextFocusActor; + } + + private void OnFocusedActorEnterKeyPressed(object source, FocusManager.FocusedActorEnterKeyEventArgs e) + { + // Make the text field in the current focused spin to take the key input + KeyInputFocusManager manager = KeyInputFocusManager.Get(); + + if (e.Actor == _spinYear.SpinText) + { + if (manager.GetCurrentFocusControl() != _spinYear.SpinText) + { + manager.SetFocus(_spinYear.SpinText); + } + } + else if (e.Actor == _spinMonth.SpinText) + { + if (manager.GetCurrentFocusControl() != _spinMonth.SpinText) + { + manager.SetFocus(_spinMonth.SpinText); + } + } + else if (e.Actor == _spinDay.SpinText) + { + if (manager.GetCurrentFocusControl() != _spinDay.SpinText) + { + manager.SetFocus(_spinDay.SpinText); + } + } + } + + public void MainLoop() + { + _application.MainLoop (); + } + + /// + /// The main entry point for the application. + /// + [STAThread] + static void Main(string[] args) + { + Example example = new Example(Application.NewApplication()); + example.MainLoop (); + } + } +} diff --git a/etc/SampleApplication/NUISamples/NUISamples.Tizen/examples/hello-test.cs b/NUISamples/NUISamples.TizenTV/examples/hello-test.cs old mode 100644 new mode 100755 similarity index 100% rename from etc/SampleApplication/NUISamples/NUISamples.Tizen/examples/hello-test.cs rename to NUISamples/NUISamples.TizenTV/examples/hello-test.cs diff --git a/etc/SampleApplication/NUISamples/NUISamples.Tizen/examples/hello-world.cs b/NUISamples/NUISamples.TizenTV/examples/hello-world.cs similarity index 92% rename from etc/SampleApplication/NUISamples/NUISamples.Tizen/examples/hello-world.cs rename to NUISamples/NUISamples.TizenTV/examples/hello-world.cs index d84e64e..314c9a8 100755 --- a/etc/SampleApplication/NUISamples/NUISamples.Tizen/examples/hello-world.cs +++ b/NUISamples/NUISamples.TizenTV/examples/hello-world.cs @@ -17,29 +17,29 @@ using System; using System.Runtime.InteropServices; -using NUI; -using NUI.Constants; +using Dali; +using Dali.Constants; namespace MyCSharpExample { class Example { - private NUI.Application _application; + private Dali.Application _application; private Animation _animation; private TextLabel _text; - public Example(NUI.Application application) + public Example(Dali.Application application) { _application = application; _application.Initialized += Initialize; } - public void Initialize(object source, EventArgs e) + public void Initialize(object source, NUIApplicationInitEventArgs e) { Console.WriteLine("Customized Application Initialize event handler"); Stage stage = Stage.Instance; stage.BackgroundColor = Color.White; - stage.TouchEvent += OnStageTouched; + stage.Touch += OnStageTouched; // Add a _text label to the stage _text = new TextLabel("Hello Mono World"); @@ -66,7 +66,7 @@ namespace MyCSharpExample public void OnStageTouched(object sender, Stage.TouchEventArgs e) { // Only animate the _text label when touch down happens - if( e.TouchData.GetState(0) == PointStateType.DOWN ) + if( e.Touch.GetState(0) == PointStateType.DOWN ) { Console.WriteLine("Customized Stage Touch event handler"); // Create a new _animation diff --git a/etc/SampleApplication/NUISamples/NUISamples.Tizen/examples/image-view.cs b/NUISamples/NUISamples.TizenTV/examples/image-view.cs similarity index 91% rename from etc/SampleApplication/NUISamples/NUISamples.Tizen/examples/image-view.cs rename to NUISamples/NUISamples.TizenTV/examples/image-view.cs index 17968ee..7cd5359 100755 --- a/etc/SampleApplication/NUISamples/NUISamples.Tizen/examples/image-view.cs +++ b/NUISamples/NUISamples.TizenTV/examples/image-view.cs @@ -17,8 +17,8 @@ using System; using System.Runtime.InteropServices; -using NUI; -using NUI.Constants; +using Dali; +using Dali.Constants; namespace ImageViewExample { @@ -30,7 +30,7 @@ namespace ImageViewExample Console.WriteLine("[DALI C# SAMPLE] " + str); } - private Application _application; + private Dali.Application _application; private Animation _animation; private ImageView _imageView; private bool _isAniFinised = true; @@ -38,20 +38,20 @@ namespace ImageViewExample private PushButton _pushButton1, _pushButton2; private Stage stage; - public Example(Application application) + public Example(Dali.Application application) { _application = application; _application.Initialized += Initialize; } - public void Initialize(object source, EventArgs e) + public void Initialize(object source, NUIApplicationInitEventArgs e) { Log("Customized Application Initialize event handler"); stage = Stage.Instance; stage.BackgroundColor = Color.Cyan; - stage.TouchEvent += OnStageTouched; - stage.WheelEvent += OnStageWheelMoved; - stage.KeyEvent += OnStageKeyPressed; + stage.Touch += OnStageTouched; + stage.Wheel += OnStageWheelMoved; + stage.Key += OnStageKeyPressed; //stage.EventProcessingFinished += OnStageEventProcessingFinished; layer = stage.GetDefaultLayer(); @@ -92,7 +92,7 @@ namespace ImageViewExample } - public bool OnPushButtonClicked2(object sender, EventArgs e) + public bool OnPushButtonClicked2(object sender, Button.ClickedEventArgs e) { if( _imageView ) { @@ -111,7 +111,7 @@ namespace ImageViewExample } - public bool OnPushButtonClicked1(object sender, EventArgs e) + public bool OnPushButtonClicked1(object sender, Button.ClickedEventArgs e) { if( _isAniFinised == true ) { @@ -202,21 +202,21 @@ namespace ImageViewExample public void OnStageKeyPressed(object sender, Stage.KeyEventArgs e) { Log("OnStageKeyEventOccured()!"); - Log("keyPressedName=" + e.KeyEvent.keyPressedName); - Log("state=" + e.KeyEvent.state); + Log("keyPressedName=" + e.Key.KeyPressedName); + Log("state=" + e.Key.State); } public void OnStageWheelMoved(object sender, Stage.WheelEventArgs e) { Log("OnStageWheelEventOccured()!"); - Log("direction=" + e.WheelEvent.direction); - Log("type=" + e.WheelEvent.type); + Log("direction=" + e.Wheel.Direction); + Log("type=" + e.Wheel.Type); } // Callback for stage touched signal handling public void OnStageTouched(object sender, Stage.TouchEventArgs e) { - Log("OnStageTouched()! e.TouchData.GetState(0)=" + e.TouchData.GetState(0) ); + Log("OnStageTouched()! e.TouchData.GetState(0)=" + e.Touch.GetState(0)); } public void MainLoop() diff --git a/NUISamples/NUISamples.TizenTV/examples/json-loader.cs b/NUISamples/NUISamples.TizenTV/examples/json-loader.cs new file mode 100755 index 0000000..db00c9e --- /dev/null +++ b/NUISamples/NUISamples.TizenTV/examples/json-loader.cs @@ -0,0 +1,97 @@ +/* + * Copyright (c) 2016 Samsung Electronics Co., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +using System; +using System.Runtime.InteropServices; +using Dali; + +namespace MyExampleApp +{ + class Example + { + private Dali.Application _application; + private Builder _builder; + private string _jsonFileName; + + public Example(Dali.Application application, string fileName) + { + _application = application; + _jsonFileName = fileName; + _application.Initialized += Initialize; + } + + public void Initialize(object source, NUIApplicationInitEventArgs e) + { + if( _jsonFileName.Length == 0) + { + Console.WriteLine("Please specify JSON file to load"); + return; + } + + _builder = new Builder (); + + Property.Map constants = new Property.Map(); + + // In dali-demo we have some JSON files that can be loaded, but they need 3 different macros defining. + // The JSON folder is typically installed into dali-env/opt/share/com.samsung.dali-demo/res: + // + //string demoDirectory = ".../dali-env/opt/share/com.samsung.dali-demo/res"; + //constants.Insert( "DEMO_IMAGE_DIR" , new Property.Value( demoDirectory+"/images") ); + //constants.Insert( "DEMO_MODEL_DIR" , new Property.Value( demoDirectory+"/models") ); + //constants.Insert( "DEMO_SCRIPT_DIR", new Property.Value( demoDirectory+"/scripts") ); + constants.Insert( "CONFIG_SCRIPT_LOG_LEVEL", new Property.Value( "Verbose") ); + + _builder.AddConstants( constants ); + + + Stage stage = Stage.GetCurrent(); + stage.BackgroundColor = Color.White; + + _builder.LoadFromFile( _jsonFileName ); + + _builder.AddActors( stage.GetRootLayer() ); + + } + + + public void MainLoop() + { + _application.MainLoop (); + } + + /// + /// The main entry point for the application. + /// + [STAThread] + static void Main(string[] args) + { + string fileName= ""; + + if( args.Length > 0) + { + fileName = args[0]; + } + + Console.WriteLine("arguments = " + args.Length); + + fileName = "./json/date-picker.json"; + + Example example = new Example(Application.NewApplication(), fileName); + example.MainLoop (); + } + } +} diff --git a/etc/SampleApplication/NUISamples/NUISamples.Tizen/examples/scroll-view.cs b/NUISamples/NUISamples.TizenTV/examples/scroll-view.cs similarity index 94% rename from etc/SampleApplication/NUISamples/NUISamples.Tizen/examples/scroll-view.cs rename to NUISamples/NUISamples.TizenTV/examples/scroll-view.cs index 64a23fc..834c4bd 100755 --- a/etc/SampleApplication/NUISamples/NUISamples.Tizen/examples/scroll-view.cs +++ b/NUISamples/NUISamples.TizenTV/examples/scroll-view.cs @@ -17,7 +17,7 @@ using System; using System.Runtime.InteropServices; -using NUI; +using Dali; namespace MyCSharpExample { @@ -29,20 +29,20 @@ namespace MyCSharpExample [UnmanagedFunctionPointer(CallingConvention.StdCall)] delegate void ActorCallbackDelegate(IntPtr data); - private NUI.Application _application; + private Dali.Application _application; private ScrollView _scrollView; private ScrollBar _scrollBar; private Animation _animation; private TextLabel _text; - public Example(NUI.Application application) + public Example(Dali.Application application) { _application = application; _application.Initialized += Initialize; } - public void Initialize(object source, EventArgs e) + public void Initialize(object source, NUIApplicationInitEventArgs e) { CreateScrollView(); } @@ -138,7 +138,7 @@ namespace MyCSharpExample { Console.WriteLine("Customized Animation Finished Event handler"); } - private void OnKey(object source, EventArgs e) + private void OnKey(object source, View.KeyInputFocusGainedEventArgs e) { Console.WriteLine("View Keyevent EVENT callback...."); } @@ -154,7 +154,7 @@ namespace MyCSharpExample Console.WriteLine("View TOUCH EVENT callback...."); // Only animate the _text label when touch down happens - if( e.TouchData.GetState(0) == PointStateType.DOWN ) + if( e.Touch.GetState(0) == PointStateType.DOWN ) { Console.WriteLine("Customized Stage Touch event handler"); // Create a new _animation @@ -177,7 +177,7 @@ namespace MyCSharpExample return true; } - private void OnScrollViewRelayout(object source, EventArgs e) + private void OnScrollViewRelayout(object source, View.OnRelayoutEventArgs e) { Console.WriteLine("View OnRelayoutEventArgs EVENT callback...."); diff --git a/etc/SampleApplication/NUISamples/NUISamples.Tizen/examples/user-alphafunction.cs b/NUISamples/NUISamples.TizenTV/examples/user-alphafunction.cs similarity index 53% rename from etc/SampleApplication/NUISamples/NUISamples.Tizen/examples/user-alphafunction.cs rename to NUISamples/NUISamples.TizenTV/examples/user-alphafunction.cs index 12ef404..5b521b0 100755 --- a/etc/SampleApplication/NUISamples/NUISamples.Tizen/examples/user-alphafunction.cs +++ b/NUISamples/NUISamples.TizenTV/examples/user-alphafunction.cs @@ -17,29 +17,26 @@ using System; using System.Runtime.InteropServices; -using NUI; -using NUI.Constants; +using Dali; +using Dali.Constants; namespace MyCSharpExample { class Example { - private Application _application; + private Dali.Application _application; private Animation _animation; private TextLabel _text; private View _view1, _view2, _view3; - private PushButton _pButton, _pButton2; private UserAlphaFunctionDelegate _user_alpha_func; private int myCount; - private int myCount2; - private bool _isAnimationFinished = true; public static void Log(string str) { Console.WriteLine("[DALI C# SAMPLE] " + str); } - public Example(Application application) + public Example(Dali.Application application) { _application = application; _application.Initialized += Initialize; @@ -49,37 +46,15 @@ namespace MyCSharpExample [UnmanagedFunctionPointer(CallingConvention.StdCall)] delegate float UserAlphaFunctionDelegate(float progress); - public void Initialize(object source, EventArgs e) + public void Initialize(object source, NUIApplicationInitEventArgs e) { Log("Initialize() is called!"); Stage stage = Stage.GetCurrent(); stage.BackgroundColor = Color.White; - stage.TouchEvent += OnStageTouched; - stage.TouchEvent += OnStageTouched2; - stage.WheelEvent += OnStageWheelEvent; - stage.EventProcessingFinished += OnEventProcessingFinished; - stage.KeyEvent += OnKeyEvent; - stage.ContextLost += OnContextLost; - stage.ContextRegained += OnContextRegained; - stage.SceneCreated += OnSceneCreated; - - //Add push button - _pButton = new PushButton(); - _pButton.ParentOrigin = ParentOrigin.TopLeft; - _pButton.AnchorPoint = AnchorPoint.TopLeft; - _pButton.LabelText = "Start Animation"; - _pButton.Position = new Size3D(0.0f, stage.Size.Height * 0.1f, 0.0f); - _pButton.Clicked += OnPushButtonClicked1; - stage.Add(_pButton); - - //Add push button - _pButton2 = new PushButton(); - _pButton2.ParentOrigin = ParentOrigin.TopLeft; - _pButton2.AnchorPoint = AnchorPoint.TopLeft; - _pButton2.LabelText = "Stop Animation"; - _pButton2.Position = new Size3D(0.0f, stage.Size.Height * 0.2f, 0.0f); - _pButton2.Clicked += OnPushButtonClicked2; - stage.Add(_pButton2); + stage.Touch += OnStageTouched; + stage.Touch += OnStageTouched2; + //stage.EventProcessingFinished += OnEventProcessingFinished; + stage.Wheel += OnStageWheelEvent; // Add a _text label to the stage _text = new TextLabel("Hello Mono World"); @@ -96,9 +71,6 @@ namespace MyCSharpExample _view1.AnchorPoint = AnchorPoint.Center; _view1.SetResizePolicy(ResizePolicyType.FIXED, DimensionType.ALL_DIMENSIONS); _view1.OnStageEvent += OnStage; - _view1.KeyPressed += OnViewKeyPressed; - Console.WriteLine("StateFocusEnable =" + _view1.StateFocusEnable); - _view1.StateFocusEnable = true; stage.Add(_view1); _view2 = new View(); @@ -107,7 +79,6 @@ namespace MyCSharpExample _view2.ParentOrigin = ParentOrigin.TopLeft; _view2.AnchorPoint = AnchorPoint.TopLeft; _view2.SetResizePolicy(ResizePolicyType.FIXED, DimensionType.ALL_DIMENSIONS); - _view2.Hovered +=OnViewHovered; _view1.Add(_view2); _view3 = new View(); @@ -141,28 +112,20 @@ namespace MyCSharpExample public void AnimationFinished(object sender, EventArgs e) { Log("AnimationFinished() is called!"); - _isAnimationFinished = true; myCount = 0; } public void MyAnimating() { // Create a new _animation - if (_isAnimationFinished == true) - { - if(_animation) - { - _animation.Clear(); - _animation.Reset(); - } - } - else + if( _animation ) { - return; + _animation.Clear(); + _animation.Reset(); } _animation = new Animation(10000); // 10000 milli-second of duration - _animation.StartTime = 0; + _animation.StartTime = 5000; _animation.EndTime = 10000; _animation.TargetProperty = "Position"; _animation.AlphaFunction = new AlphaFunction(_user_alpha_func); @@ -170,100 +133,50 @@ namespace MyCSharpExample _animation.AnimateTo(_view2); // Connect the signal callback for animaiton finished signal _animation.Finished += AnimationFinished; - _animation.EndAction = Animation.EndActions.StopFinal; + _animation.EndAction = Animation.EndActions.Discard; // Play the _animation _animation.Play(); - _isAnimationFinished = false; } // Callback for stage touched signal handling public void OnStageTouched(object source, Stage.TouchEventArgs e) { - TouchData _tdata = e.TouchData; - - Log("OnStageTouched() is called!GetTime=" + _tdata.GetTime() + " GetPointCount=" + _tdata.GetPointCount() + " GetState=" + _tdata.GetState(0) ); + // Only animate the _text label when touch down happens + if( e.Touch.GetState(0) == PointStateType.DOWN ) + { + Log("OnStageTouched() is called! PointStateType.DOWN came!"); + myCount++; + if( myCount > 1 ) + { + _animation.Stop(); + Log("_animation.Stop() is called!"); + } + } } // Callback for stage touched signal handling public void OnStageTouched2(object source, Stage.TouchEventArgs e) { - TouchData _tdata = e.TouchData; - - Log("OnStageTouched2() is called!GetTime="+ _tdata.GetTime() + " GetScreenPosition.X=" + _tdata.GetScreenPosition(0).X + " GetScreenPosition.Y=" + _tdata.GetScreenPosition(0).Y); + Log("OnStageTouched2() is called!state="+ e.Touch.GetState(0) ); } - public void OnEventProcessingFinished(object sender, EventArgs e) + public void OnEventProcessingFinished(object source) { - if (myCount % 20 == 0) - { - Log("OnEventProcessingFinished() is called!" + myCount + "times!"); - } - myCount++; + Log("OnEventProcessingFinished() is called!"); } public void OnStageWheelEvent(object source, Stage.WheelEventArgs e) { Log("OnStageWheelEvent() is called!"); - Log("OnStageWheelEvent() is called!direction="+ e.WheelEvent.direction + " timeStamp=" + e.WheelEvent.timeStamp ); - } - - public void OnKeyEvent(object source, Stage.KeyEventArgs e) - { - KeyEvent _kevent = e.KeyEvent; - - Log("OnKeyEvent() is called!keyPressedName="+ _kevent.keyPressedName + " time=" + _kevent.time + " state=" + _kevent.state); - } - - public void OnContextLost(object sender, EventArgs e) - { - Log("OnContextLost() is called!"); + //Log("OnStageWheelEvent() is called!direction="+ e.WheelEvent.direction + " timeStamp=" + e.WheelEvent.timeStamp ); } - public void OnContextRegained(object sender, EventArgs e) - { - Log("OnContextRegained() is called!"); - } - - public void OnSceneCreated(object sender, EventArgs e) - { - Log("OnSceneCreated() is called!"); - } - public void OnStage(object source , EventArgs e) + public void OnStage(object source , View.OnStageEventArgs e) { Log("OnStage() is called!"); } - public bool OnViewKeyPressed(object sender, View.KeyEventArgs e) - { - KeyEvent _kevent = e.KeyEvent; - - Log("OnViewKeyPressed() is called!keyPressedName="+ _kevent.keyPressedName + " time=" + _kevent.time + " state=" + _kevent.state); - return true; - } - - public bool OnViewHovered(object sender, View.HoverEventArgs e) - { - HoverEvent _hevent = e.HoverEvent; - - Log("OnViewHovered() is called!GetPointCount()="+ _hevent.GetPointCount() + " time=" + _hevent.time + " state=" + _hevent.GetPoint(0).state); - return true; - } - - public bool OnPushButtonClicked1(object sender, EventArgs e) - { - Log("OnPushButtonClicked1() is called!"); - MyAnimating(); - return true; - } - - public bool OnPushButtonClicked2(object sender, EventArgs e) - { - Log("OnPushButtonClicked2() is called!"); - _animation.Stop(Animation.EndActions.Discard); - return true; - } - public void MainLoop() { _application.MainLoop (); diff --git a/NUISamples/NUISamples.TizenTV/firstscreen/App.cs b/NUISamples/NUISamples.TizenTV/firstscreen/App.cs new file mode 100755 index 0000000..a963c79 --- /dev/null +++ b/NUISamples/NUISamples.TizenTV/firstscreen/App.cs @@ -0,0 +1,477 @@ +using Tizen.NUI; +using System; +using System.Runtime.InteropServices; +using System.Collections.Generic; +using Tizen.NUI.Constants; + +namespace FirstScreen +{ + public class FirstScreenApp + { + private Application _application; // Reference to Dali Application. + private Stage _stage; // Reference to Dali stage. + private Size2D _stageSize; // Reference to Dali stage size. + + private View _topContainer; // Top Container added to the Stage will contain Poster ScrollContainers. + private View _bottomContainer; // Bottom Container added to the Stage will contain Menu ScrollContainer. + private int _currentPostersContainerID; // Current Poster Container ID visible on the Top Container / Stage. + private int _totalPostersContainers; // Number of Poster ScrollContainers to be added on Top Container. + private List _postersContainer; // List collection of Poster ScrollContainers used on the Top Container in this demo application. + private ScrollContainer _menuContainer; // Menu ScrollContainer used on the Bottom Container in this demo application. + private Layer _bottomClipLayer; // Clip layer (Dali Clip Layer instance) used for Bottom Container. + private Layer _topClipLayer; // Clip layer (Dali Clip Layer instance) used for Top Container. + + private FocusEffect _focusEffect; // FocusEffect is used to apply Focus animation effect on any supplied item/image. + private string _imagePath; // Contains the physical location of all images used in the demo application. + + private ImageView _keyboardFocusIndicator; // Reference to the ImageView (Keyboard Focus indicator) applied to the focused item on ScrollContainer. + private ImageView _launcherSeparator; // Reference to the ImageView used for launcher separation (Launcher consists of three image icons on left of Menu ScrollContainer). + private ImageView[] launcherIcon; // ImageViews used for launcher Icons. + private Animation _showBottomContainerAnimation; // Animation used to show/unhide Bottom Container (Menu ScrollContainer) when it is focused. + private Animation _hideBottomContainerAnimation; // Animation used to hide Bottom Container (Menu ScrollContainer) when it is focused. + private Animation _showAnimation; // Animation used to move Poster scrollContainer from bottom to top and make it non-transparent. + private Animation _hideAnimation; // Animation used to make the unused specified Poster scrollContainer transparent. + private ScrollContainer _hideScrollContainer; // The unused Poster scrollContainer which needs to be transparent. + FocusManager _keyboardFocusManager; // Reference to Dali KeyboardFocusManager. + + private FirstScreenApp(Application application) + { + Tizen.Log.Debug("NUI", "FirstScreenApp() is called!!"); + + _application = application; + _application.Initialized += OnInitialize; + } + + public static void Run() + { + Tizen.Log.Debug("NUI", "Run() is called!"); + + FirstScreenApp tVApp = new FirstScreenApp(Application.NewApplication()); + tVApp.MainLoop(); + } + + private void MainLoop() + { + _application.MainLoop(); + } + + // Create Items for Poster ScrollContainer + private void CreatePosters() + { + for (int j = 0; j < _totalPostersContainers; j++) + { + View posterContainer = _postersContainer[j].Container; + for (int i = 0; i < Constants.PostersItemsCount; i++) + { + if (j % _totalPostersContainers == 0) + { + View item = new ImageView(_imagePath + "/poster" + j + "/" + (i % 14) + ".jpg"); + item.Name = ("poster-item-" + _postersContainer[j].ItemCount); + _postersContainer[j].Add(item); + } + else + { + View item = new ImageView(_imagePath + "/poster" + j + "/" + (i % 6) + ".jpg"); + item.Name = ("poster-item-" + _postersContainer[j].ItemCount); + _postersContainer[j].Add(item); + } + } + + if (j == 0) + { + Show(_postersContainer[j]); + } + else + { + Hide(_postersContainer[j]); + } + + _postersContainer[j].SetFocused(false); + } + + _currentPostersContainerID = 0; + } + + // Create Items for Menu ScrollContainer + private void CreateMenu() + { + View menuContainer = _menuContainer.Container; + menuContainer.Position = new Position(Constants.LauncherWidth, 0.0f, 0.0f); + + for (int i = 0; i < Constants.MenuItemsCount; i++) + { + View menuItem = new ImageView(_imagePath + "/menu/" + i % 7 + ".png"); + menuItem.Name = ("menu-item-" + _menuContainer.ItemCount); + _menuContainer.Add(menuItem); + } + } + + private View OnKeyboardPreFocusChangeSignal(object source, FocusManager.PreFocusChangeEventArgs e) + { + if (!e.CurrentView && !e.ProposedView) + { + return _menuContainer; + } + + Actor actor = _menuContainer.Container; + + if (e.Direction == View.FocusDirection.Up) + { + // Move the Focus to Poster ScrollContainer and hide Bottom Container (Menu ScrollContainer) + if (_menuContainer.IsFocused) + { + actor = _postersContainer[_currentPostersContainerID].GetCurrentFocusedActor(); + _menuContainer.SetFocused(false); + _postersContainer[_currentPostersContainerID].SetFocused(true); + HideBottomContainer(); + + // Also apply Focus animation on Focused item on Poster ScrollContainer + FocusAnimation(_postersContainer[_currentPostersContainerID], FocusEffectDirection.BottomToTop); + } + } + else if (e.Direction == View.FocusDirection.Down) + { + // Show Bottom Container (Menu ScrollContainer) and move the Focus to it + if (!_menuContainer.IsFocused) + { + ShowBottomContainer(); + actor = _menuContainer.GetCurrentFocusedActor(); + _postersContainer[_currentPostersContainerID].SetFocused(false); + _menuContainer.SetFocused(true); + + // Also apply Focus animation on Focused item on Menu ScrollContainer + FocusAnimation(_menuContainer, FocusEffectDirection.TopToBottom); + } + } + else + { + actor = e.ProposedView; + } + + if (e.Direction == View.FocusDirection.Left) + { + if (_menuContainer.IsFocused) + { + int id = _menuContainer.FocusedItemID % _totalPostersContainers; + if (id != _currentPostersContainerID) + { + Hide(_postersContainer[_currentPostersContainerID]); + _currentPostersContainerID = id; + + Show(_postersContainer[_currentPostersContainerID]); + } + } + } + else if (e.Direction == View.FocusDirection.Right) + { + if (_menuContainer.IsFocused) + { + int id = _menuContainer.FocusedItemID % _totalPostersContainers; + if (id != _currentPostersContainerID) + { + Hide(_postersContainer[_currentPostersContainerID]); + _currentPostersContainerID = id; + Show(_postersContainer[_currentPostersContainerID]); + } + } + } + + return (Tizen.NUI.View)actor; + } + + // Perform Focus animation Effect on the current Focused Item on ScrollContainer. + private void FocusAnimation(ScrollContainer scrollContainer, FocusEffectDirection direction) + { + _focusEffect.FocusAnimation(scrollContainer.GetCurrentFocusedActor(), scrollContainer.ItemSize, 1000, direction); + } + + // Perform Show animation on ScrollContainer (used only for Poster Container) + private void Show(ScrollContainer scrollContainer) + { + scrollContainer.Add(scrollContainer.Container); + + _hideScrollContainer = null; + + // This animation will move Poster scrollContainer from bottom to top and make it non-transparent. + _showAnimation = new Animation(350); + _showAnimation.AnimateTo(scrollContainer.Container, "ColorAlpha", 1.0f); + + scrollContainer.Container.PositionY = scrollContainer.Container.Position.Y + 200.0f; + float targetPositionY = scrollContainer.Container.Position.Y - 200.0f; + + _showAnimation.AnimateTo(scrollContainer.Container, "PositionY", targetPositionY, new AlphaFunction(AlphaFunction.BuiltinFunctions.EaseOutSine)); + + _showAnimation.Play(); + } + + // Perform Hide animation on ScrollContainer (used only for Poster Container) + private void Hide(ScrollContainer scrollContainer) + { + if (_hideAnimation) + { + _hideAnimation.Clear(); + _hideAnimation.Reset(); + } + + int duration = 350; + _hideAnimation = new Animation(duration); + _hideAnimation.Duration = duration; + _hideAnimation.AnimateTo(scrollContainer.Container, "ColorAlpha", 0.0f, 0, (int)((float)duration * 0.75f), new AlphaFunction(AlphaFunction.BuiltinFunctions.EaseOutSine)); + _hideAnimation.Finished += OnHideAnimationFinished; + _hideScrollContainer = scrollContainer; + _hideAnimation.Play(); + } + + // This removes all the items from the specified unused Poster ScrollContainer (hence Stage) to improve performance. + private void OnHideAnimationFinished(object source, EventArgs e) + { + if (_hideScrollContainer) + { + _hideScrollContainer.Remove(_hideScrollContainer.Container); + } + } + + // Hide Bottom Container (Menu ScrollContainer) when it is not focused + private void HideBottomContainer() + { + _topClipLayer.ClippingBox = new RectInteger(0, + Convert.ToInt32(_stageSize.Height * Constants.TopContainerPositionFactor), + Convert.ToInt32((_stageSize.Width)), + Convert.ToInt32((_stageSize.Height * Constants.TopClipLayerExpandHeightFactor))); // X, Y, Width, Height + + + _hideBottomContainerAnimation.AnimateTo(_bottomContainer, "Position", new Position(0.0f, _stageSize.Height * Constants.BottomContainerHidePositionFactor, 0.0f), + new AlphaFunction(AlphaFunction.BuiltinFunctions.EaseOutSine)); + + _hideBottomContainerAnimation.Play(); + } + + // Show (unhide) Bottom Container (Menu ScrollContainer) when it is focused + private void ShowBottomContainer() + { + _topClipLayer.ClippingBox = new RectInteger(0, + Convert.ToInt32(_stageSize.Height * Constants.TopContainerPositionFactor), + Convert.ToInt32((_stageSize.Width)), + Convert.ToInt32((_stageSize.Height * Constants.TopClipLayerHeightFactor))); // X, Y, Width, Height + + _showBottomContainerAnimation.AnimateTo(_bottomContainer, "Position", new Position(0.0f, _stageSize.Height * Constants.BottomContainerShowPositionFactor, 0.0f), + new AlphaFunction(AlphaFunction.BuiltinFunctions.EaseOutSine)); + _showBottomContainerAnimation.Play(); + } + + // First screen demo Application initialisation + private void OnInitialize(object source, EventArgs e) + { + Tizen.Log.Debug("NUI", "OnInitialize() is called!"); + + _hideScrollContainer = null; + _stage = Stage.Instance; + _stageSize = _stage.Size; + _totalPostersContainers = Constants.TotalPostersContainers; + _imagePath = Constants.ImageResourcePath; + + _postersContainer = new List(); + _menuContainer = new ScrollContainer(); + + _hideBottomContainerAnimation = new Animation(250); + _showBottomContainerAnimation = new Animation(250); + + // Create a Top Container for poster items + _topContainer = new View(); + _topContainer.Size = new Size(_stageSize.Width, _stageSize.Height * Constants.TopContainerHeightFactor, 0); + _topContainer.Position = new Position(0.0f, _stageSize.Height * Constants.TopContainerPositionFactor, 0.0f); + _topContainer.ParentOrigin = ParentOrigin.TopLeft; + _topContainer.AnchorPoint = AnchorPoint.TopLeft; + + // Add a background to Top container + PropertyMap visual = new PropertyMap(); + visual.Insert(Visual.Property.Type, new PropertyValue((int)Visual.Type.Image)); + visual.Insert(ImageVisualProperty.URL, new PropertyValue(_imagePath + "/focuseffect/background.png")); + _topContainer.Background = visual; + _topContainer.Name = "TopControl"; + + // Create a Bottom Container + _bottomContainer = new View(); + _bottomContainer.Size = new Size(_stageSize.Width, _stageSize.Height * Constants.BottomContainerHeightFactor, 0); + _bottomContainer.Position = new Position(0.0f, _stageSize.Height * Constants.BottomContainerHidePositionFactor, 0.0f); + _bottomContainer.ParentOrigin = ParentOrigin.TopLeft; + _bottomContainer.AnchorPoint = AnchorPoint.TopLeft; + + // Add a background to Bottom Container + visual = new PropertyMap(); + visual.Insert(Visual.Property.Type, new PropertyValue((int)Visual.Type.Image)); + visual.Insert(ImageVisualProperty.URL, new PropertyValue(_imagePath + "/focuseffect/background.png")); + _bottomContainer.Background = visual; + _bottomContainer.Name = "BottomControl"; + + // Add both Top and Bottom Containers to Stage + _stage.GetDefaultLayer().Add(_topContainer); + _stage.GetDefaultLayer().Add(_bottomContainer); + + // Add a clip layer to Top Container + _topClipLayer = new Layer(); + _topClipLayer.AnchorPoint = AnchorPoint.BottomCenter; + _topClipLayer.ParentOrigin = ParentOrigin.BottomCenter; + _topClipLayer.ClippingEnable = true; + _topClipLayer.ClippingBox = new RectInteger(0, + Convert.ToInt32(_stageSize.Height * Constants.TopContainerPositionFactor), + Convert.ToInt32((_stageSize.Width)), + Convert.ToInt32((_stageSize.Height * Constants.TopClipLayerHeightFactor))); // X, Y, Width, Height + _topContainer.Add(_topClipLayer); + + // Create a SpotLight for items / images of both Poster and Menu ScrollContainers + ImageView spotLight = new ImageView(_imagePath + "/focuseffect/highlight_spot.png"); + spotLight.WidthResizePolicy = ResizePolicyType.UseNaturalSize; + spotLight.HeightResizePolicy = ResizePolicyType.UseNaturalSize; + spotLight.ParentOrigin = ParentOrigin.Center; + spotLight.AnchorPoint = AnchorPoint.Center; + spotLight.Name = "spotLight"; + + // Create a shadowBorder for items / images of Poster ScrollContainers + ImageView shadowBorder = new ImageView(_imagePath + "/focuseffect/thumbnail_shadow.9.png"); + shadowBorder.ParentOrigin = ParentOrigin.Center; + shadowBorder.AnchorPoint = AnchorPoint.Center; + shadowBorder.WidthResizePolicy = ResizePolicyType.SizeFixedOffsetFromParent; + shadowBorder.HeightResizePolicy = ResizePolicyType.SizeFixedOffsetFromParent; + shadowBorder.SizeModeFactor = (new Vector3(32.0f, 41.0f, 0.0f)); + shadowBorder.Name = "poster shadowBorder"; + + // Create Poster Containers and add them to Top Clip layer + for (int i = 0; i < _totalPostersContainers; i++) + { + _postersContainer.Add(new ScrollContainer()); + _postersContainer[i].Container.Name = "poster" + i; + if (i == 0) + { + _postersContainer[i].ItemSize = new Size((_stageSize.Width * Constants.Poster0ItemWidthFactor) - Constants.PostersContainerPadding, + _stageSize.Height * Constants.PostersItemHeightFactor, 0.0f); + } + else + { + _postersContainer[i].ItemSize = new Size((_stageSize.Width * Constants.Poster1ItemWidthFactor) - Constants.PostersContainerPadding, + _stageSize.Height * Constants.PostersItemHeightFactor, 0.0f); + } + + _postersContainer[i].Gap = Constants.PostersContainerPadding; + _postersContainer[i].MarginX = Constants.PostersContainerMargin; + _postersContainer[i].OffsetYFator = Constants.PostersContainerOffsetYFactor; + _postersContainer[i].Width = _stageSize.Width; + _postersContainer[i].Height = _stageSize.Height * Constants.PostersContainerHeightFactor; + _postersContainer[i].ShadowBorder = shadowBorder; + _postersContainer[i].ShadowBorder.Position = new Position(0.0f, 4.0f, 0.0f); + _postersContainer[i].SpotLight = spotLight; + _topClipLayer.Add(_postersContainer[i]); + } + + // Add a clip layer to Bottom Container + _bottomClipLayer = new Layer(); + _bottomClipLayer.AnchorPoint = AnchorPoint.BottomCenter; + _bottomClipLayer.ParentOrigin = ParentOrigin.BottomCenter; + _bottomClipLayer.ClippingEnable = true; + _bottomClipLayer.ClippingBox = new RectInteger(Convert.ToInt32(Constants.LauncherWidth), + Convert.ToInt32(_stageSize.Height * Constants.BottomContainerShowPositionFactor), + Convert.ToInt32((_stageSize.Width)), + Convert.ToInt32((_stageSize.Height - (_stageSize.Height * Constants.BottomClipLayerHeightFactor)))); // X, Y, Width, Height + _bottomContainer.Add(_bottomClipLayer); + + // Add Launcher items to Bottom Container. Launcher is used to display three images on left of Menu ScrollContainer + launcherIcon = new ImageView[Convert.ToInt32(Constants.LauncherItemsCount)]; + for (int launcherIndex = 0; launcherIndex < Constants.LauncherItemsCount; launcherIndex++) + { + launcherIcon[launcherIndex] = new ImageView(_imagePath + "/focuseffect/" + launcherIndex + "-normal.png"); + launcherIcon[launcherIndex].Name = "launcherIcon" + launcherIndex; + launcherIcon[launcherIndex].WidthResizePolicy = ResizePolicyType.UseNaturalSize; + launcherIcon[launcherIndex].HeightResizePolicy = ResizePolicyType.UseNaturalSize; + launcherIcon[launcherIndex].ParentOrigin = ParentOrigin.CenterLeft; + launcherIcon[launcherIndex].AnchorPoint = AnchorPoint.CenterLeft; + launcherIcon[launcherIndex].Position = new Position(Constants.LauncherIconWidth * launcherIndex + Constants.LauncherLeftMargin, 0.0f, 0.0f); + _bottomContainer.Add(launcherIcon[launcherIndex]); + } + + // Add a shadow seperator image between last Launcher icon and Menu ScrollContainer + _launcherSeparator = new ImageView(_imagePath + "/focuseffect/focus_launcher_shadow_n.png"); + _launcherSeparator.Name = "launcherSeparator"; + _launcherSeparator.WidthResizePolicy = ResizePolicyType.UseNaturalSize; + _launcherSeparator.HeightResizePolicy = ResizePolicyType.FillToParent; + _launcherSeparator.ParentOrigin = ParentOrigin.CenterLeft; + _launcherSeparator.AnchorPoint = AnchorPoint.CenterLeft; + _launcherSeparator.Position = new Position(Constants.LauncherIconWidth * Constants.LauncherItemsCount + Constants.LauncherLeftMargin, 0.0f, 0.0f); + _bottomContainer.Add(_launcherSeparator); + + // Create Menu Container and add it to Bottom Clip Layer + Size menuItemSize = new Size((_stageSize.Width * Constants.MenuItemWidthFactor) - Constants.MenuContainerPadding, + _stageSize.Height * Constants.MenuItemHeightFactor, 0.0f); + _menuContainer.Container.Name = "menu"; + _menuContainer.ItemSize = menuItemSize; + _menuContainer.Gap = Constants.MenuContainerPadding; + _menuContainer.MarginX = Constants.MenuContainerMargin; + _menuContainer.OffsetYFator = Constants.MenuContainerOffsetYFactor; + _menuContainer.OffsetX = Constants.LauncherWidth; + _menuContainer.Width = _stageSize.Width - Constants.LauncherWidth; + _menuContainer.Height = _stageSize.Height * Constants.MenuContainerHeightFactor; + _menuContainer.ShadowBorder = new ImageView(_imagePath + "/focuseffect/focus_launcher_shadow.9.png"); + _menuContainer.ShadowBorder.Name = "_menuContainer.ShadowBorder"; + _menuContainer.ShadowBorder.Size = new Size(_menuContainer.ItemSize.Width + 40.0f, _menuContainer.ItemSize.Height + 50.0f, 0.0f); + _menuContainer.ShadowBorder.Position = new Position(0.0f, 5.0f, 0.0f); + _menuContainer.ShadowBorder.ParentOrigin = ParentOrigin.Center; + _menuContainer.ShadowBorder.AnchorPoint = AnchorPoint.Center; + _menuContainer.ShadowBorder.MixColor = Color.Red; + _menuContainer.SpotLight = spotLight; + _bottomClipLayer.Add(_menuContainer); + + CreatePosters(); // Create Items for Poster ScrollContainer + CreateMenu(); // Create Items for Menu ScrollContainer + + // Initialize PreFocusChange event of KeyboardFocusManager + _keyboardFocusManager = FocusManager.Instance; + _keyboardFocusManager.PreFocusChange += OnKeyboardPreFocusChangeSignal; + + _keyboardFocusIndicator = new ImageView(_imagePath + "/focuseffect/highlight_stroke.9.png"); + _keyboardFocusIndicator.ParentOrigin = ParentOrigin.Center; + _keyboardFocusIndicator.AnchorPoint = AnchorPoint.Center; + _keyboardFocusIndicator.WidthResizePolicy = ResizePolicyType.FillToParent; + _keyboardFocusIndicator.HeightResizePolicy = ResizePolicyType.FillToParent; + + _keyboardFocusManager.FocusIndicator = (_keyboardFocusIndicator); + + _keyboardFocusManager.SetAsFocusGroup(_menuContainer, true); + _keyboardFocusManager.SetAsFocusGroup(_postersContainer[0], true); + _keyboardFocusManager.SetAsFocusGroup(_postersContainer[1], true); + _keyboardFocusManager.FocusGroupLoop = (true); + + _focusEffect = new FocusEffect(); + + // Move Fcous to Bottom Container (Menu ScrollContainer) + ShowBottomContainer(); + _menuContainer.SetFocused(true); + +#if true + //test. + TextLabel _dateOfTest = new TextLabel(); + _dateOfTest.WidthResizePolicy = ResizePolicyType.FillToParent; + _dateOfTest.HeightResizePolicy = ResizePolicyType.SizeRelativeToParent; + _dateOfTest.AnchorPoint = AnchorPoint.TopCenter; + _dateOfTest.ParentOrigin = ParentOrigin.TopCenter; + _dateOfTest.SizeModeFactor = new Vector3(0.0f, 0.1f, 0.0f); + _dateOfTest.BackgroundColor = new Color(43.0f / 255.0f, 145.0f / 255.0f, 175.0f / 255.0f, 1.0f); + _dateOfTest.TextColor = Color.White; + _dateOfTest.Text = " Common Interface Define Verification Test of 2017-02-10 #1"; + _dateOfTest.HorizontalAlignment = "BEGIN"; + _dateOfTest.VerticalAlignment = "CENTER"; + _dateOfTest.PointSize = 12.0f; + _dateOfTest.UnderlineEnabled = true; + _stage.GetDefaultLayer().Add(_dateOfTest); + Tizen.Log.Debug("NUI", "### 1) ColorMode = " + _dateOfTest.ColorMode); + _dateOfTest.ColorMode = ColorMode.UseParentColor; + Tizen.Log.Debug("NUI", "### 2) ColorMode = " + _dateOfTest.ColorMode); + _dateOfTest.ColorMode = ColorMode.UseOwnMultiplyParentColor; + Tizen.Log.Debug("NUI", "### 3) ColorMode = " + _dateOfTest.ColorMode); + Tizen.Log.Debug("NUI", "### 1) DrawModeType = " + _dateOfTest.DrawMode); + _dateOfTest.DrawMode = DrawModeType.Overlay2D; + Tizen.Log.Debug("NUI", "### 2) DrawModeType = " + _dateOfTest.DrawMode); + +#endif + + } + } +} diff --git a/NUISamples/NUISamples.TizenTV/firstscreen/Constants.cs b/NUISamples/NUISamples.TizenTV/firstscreen/Constants.cs new file mode 100755 index 0000000..5913793 --- /dev/null +++ b/NUISamples/NUISamples.TizenTV/firstscreen/Constants.cs @@ -0,0 +1,51 @@ +using System; + +namespace FirstScreen +{ + public class Constants + { + public const int TotalPostersContainers = 2; // Number of Poster ScrollContainers to be added on Top Container + + public const float TopContainerHeightFactor = 0.38f; // Height Factor of stage height used for Top Container total height + public const float TopContainerPositionFactor = 0.50f; // Position Factor of stage height used for Top Container position + public const float TopClipLayerHeightFactor = 0.34f; // Height Factor of stage height used for Top Clip layer height + public const float TopClipLayerExpandHeightFactor = 0.36f; // Expanded Height Factor of stage height used for Top Clip layer height (used when Bottom container is hidden) + public const float PostersContainerHeightFactor = 0.32f; // Height Factor of stage height used for Poster ScrollContainers + public const float PostersContainerPadding = 2.0f; // Padding size used between items / images in Poster ScrollContainer + public const float PostersContainerMargin = 60.0f; // Extra margin Padding size used between items / images in Poster ScrollContainer when item / image is focused + public const float PostersContainerOffsetYFactor = 0.17f; // Position Factor of Poster item height used for Poster items / images position + + public const float BottomContainerHeightFactor = 0.16f; // Height Factor of stage height used for Bottom Container total height + public const float BottomContainerHidePositionFactor = 0.88f; // Position Factor of stage height used for Bottom Container position when bottom container is hidden (not focused) + public const float BottomContainerShowPositionFactor = 0.84f; // Position Factor of stage height used for Bottom Container position when bottom container is not hidden (focused) + public const float MenuContainerHeightFactor = 0.16f; // Height Factor of stage height used for Bottom ScrollContainers + public const float BottomClipLayerHeightFactor = 0.84f; // Height Factor of stage height used for Bottom Clip layer height + public const float MenuContainerPadding = 10.0f; // Padding size used between items / images in Menu ScrollContainer + public const float MenuContainerMargin = 25.0f; // Extra margin Padding size used between items / images in Menu ScrollContainer when item / image is focused + public const float MenuContainerOffsetYFactor = 0.35f; // Position Factor of Menu item height used for Menu items / images position + + public const float MenuItemWidthFactor = 0.125f; // Width Factor (1/8) of stage Width used for Menu items / images Width + public const float MenuItemHeightFactor = 0.10f; // Height Factor of stage height used for Menu items / images Height + public const float MenuItemsCount = 14; // Number of Menu items / images used in a Menu ScrollContainer + + public const float Poster0ItemWidthFactor = 0.25f; // Width Factor (1/4) of stage Width used for Poster items / images Width in a Poster ScrollContainer 0 + public const float Poster1ItemWidthFactor = 0.20f; // Width Factor of stage Width used for Poster items / images Width in a Poster ScrollContainer 1 + public const float PostersItemHeightFactor = 0.24f; // Height Factor of stage height used for Poster items / images Height + public const float PostersItemsCount = 24; // Number of Menu items / images used in a Poster ScrollContainer + + public const float LauncherWidth = 280.0f; // Width of Launcher. Launcher is used to display three images on left of Menu ScrollContainer + public const float LauncherLeftMargin = 40.0f; // Extra Spaces to the left of first Launcher item / image + public const float LauncherSeparatorWidth = 20.0f; // Extra area / space to the left of Menu ScrollContainer used for a speration shadow image + public const float LauncherItemsCount = 3.0f; // Total number of Launcher items / images + public const float LauncherIconWidth = (LauncherWidth - LauncherLeftMargin - LauncherSeparatorWidth) / LauncherItemsCount; // Width of each Launcher item / image + + public const int SpotLightDuration = 5000; // Duration of Spot Light Animation. + public const int FocusTransitionDuration = 350; // MilliSecond Duration of Focus Transition Animation. + public const int FocusDuration = 350; // Duration of Focus Animation. + public const int ScrollDuration = 350; // Duration of Scroll Animation. + + // public const string ImageResourcePath = "./firstscreen/images/"; // for Ubuntu + public const string ImageResourcePath = "/home/owner/apps_rw/NUISamples.TizenTV/res/images/"; // for target + + } +} diff --git a/NUISamples/NUISamples.TizenTV/firstscreen/FocusData.cs b/NUISamples/NUISamples.TizenTV/firstscreen/FocusData.cs new file mode 100755 index 0000000..e457f8f --- /dev/null +++ b/NUISamples/NUISamples.TizenTV/firstscreen/FocusData.cs @@ -0,0 +1,107 @@ +using Tizen.NUI; +using Tizen.NUI.Constants; +using System; + +namespace FirstScreen +{ + public class FocusData + { + private string _name; // Name used for FocusData object (mainly to differentiate key frame animation ) + private string _imageName; // Image File Name (to be loaded from disk) used for ImageView used in key frame animation + private Position _parentOrigin; // ParentOrigin applied to ImageView + private Size _initSize; // InitSize used for key frame animation + private Size _targetSize; // TargetSize used for key frame animation + private float _keyFrameStart; // KeyFrameStart used for key frame animation + private float _keyFrameEnd; // KeyFrameEnd used for key frame animation + private Direction _direction; // Direction used for key frame animation + private ImageView _imageFocus; // ImageView used in key frame animation + + // Initialize FocusData used for key frame animation + public FocusData(string name, string imageName, Direction direction, Position parentOrigin, Size initSize, + Size targetSize, float keyFrameStart, float keyFrameEnd) + { + _name = name; + _imageName = imageName; + _parentOrigin = parentOrigin; + _initSize = initSize; + _targetSize = targetSize; + _keyFrameStart = keyFrameStart; + _keyFrameEnd = keyFrameEnd; + _direction = direction; + + _imageFocus = new ImageView(Constants.ImageResourcePath + "/focuseffect/" + _imageName); // Target + + _imageFocus.ParentOrigin = _parentOrigin; + _imageFocus.AnchorPoint = AnchorPoint.Center; + _imageFocus.Name = _name; + } + + public enum Direction + { + Horizontal, + Vertical + }; + + public Direction FocusDirection + { + get { return _direction; } + set { _direction = value; } + } + + public string Name + { + get { return _name; } + set { _name = value; } + } + + public string ImageName + { + get { return _imageName; } + set { _imageName = value; } + } + + public Position ParentOrigin + { + get + { + return _parentOrigin; + } + + set + { + _parentOrigin = value; + _imageFocus.ParentOrigin = _parentOrigin; + } + } + + public Size InitSize + { + get { return _initSize; } + set { _initSize = value; } + } + + public Size TargetSize + { + get { return _targetSize; } + set { _targetSize = value; } + } + + public float KeyFrameStart + { + get { return _keyFrameStart; } + set { _keyFrameStart = value; } + } + + public float KeyFrameEnd + { + get { return _keyFrameEnd; } + set { _keyFrameEnd = value; } + } + + public ImageView ImageItem + { + get { return _imageFocus; } + } + + } +} diff --git a/NUISamples/NUISamples.TizenTV/firstscreen/FocusEffect.cs b/NUISamples/NUISamples.TizenTV/firstscreen/FocusEffect.cs new file mode 100755 index 0000000..9448829 --- /dev/null +++ b/NUISamples/NUISamples.TizenTV/firstscreen/FocusEffect.cs @@ -0,0 +1,206 @@ +using Tizen.NUI; +using Tizen.NUI.Constants; +using System; +using System.Collections.Generic; + +namespace FirstScreen +{ + public class FocusEffect : IFocusEffect + { + private float _frameThickness; + private FocusData[] _focusData; // Each FocusData is used for one key frame animation (total 6 key frame animations needed for EddenEffect) + private Animation _animation; // Animation used to apply all six key frame animations + + public FocusEffect() + { + _frameThickness = 10.0f; + float _bottomFrameTime = 0.6f; // complete the halo/bottom animation 60% of the way through + float _sideFrameTime = 0.8f; // Start the side frame animation after the bottom animation and complete at 80% of the way through + float _topFrameTime = 1.0f; // start the top frame animation after the side frame animation and complete at 100% way through + + // Six key frame animations (FocusData objects) needed for EddenEffect + // Two key frame animations for top horizontal effect + // Two key frame animations for bottom horizontal effect + // Two key frame animations for vertical horizontal effect + _focusData = new FocusData[6]; + + FocusData focusData = new FocusData("halo", "halo.png", FocusData.Direction.Horizontal, ParentOrigin.TopCenter, + new Size(50.0f, 20.0f, 0.0f), new Size(0.0f, 100.0f, 0.0f), 0.0f, _bottomFrameTime); + _focusData[0] = focusData; + + focusData = new FocusData("bottom", "horizontalFrame.png", FocusData.Direction.Horizontal, ParentOrigin.TopCenter, + new Size(0.0f, 0.0f, 0.0f), new Size(0.0f, _frameThickness, 0.0f), 0.0f, _bottomFrameTime); + _focusData[1] = focusData; + + focusData = new FocusData("left", "verticalFrame.png", FocusData.Direction.Vertical, ParentOrigin.BottomLeft, + new Size(0.0f, 0.0f, 0.0f), new Size(_frameThickness, 0.0f, 0.0f), _bottomFrameTime, _sideFrameTime); + _focusData[2] = focusData; + + focusData = new FocusData("right", "verticalFrame.png", FocusData.Direction.Vertical, ParentOrigin.BottomRight, + new Size(0.0f, 0.0f, 0.0f), new Size(_frameThickness, 0.0f, 0.0f), _bottomFrameTime, _sideFrameTime); + _focusData[3] = focusData; + + focusData = new FocusData("top-left", "horizontalFrame.png", FocusData.Direction.Horizontal, ParentOrigin.BottomLeft, + new Size(0.0f, 0.0f, 0.0f), new Size(0.0f, _frameThickness, 0.0f), _sideFrameTime, _topFrameTime); + _focusData[4] = focusData; + + focusData = new FocusData("top-right", "horizontalFrame.png", FocusData.Direction.Horizontal, ParentOrigin.BottomRight, + new Size(0.0f, 0.0f, 0.0f), new Size(0.0f, _frameThickness, 0.0f), _sideFrameTime, _topFrameTime); + _focusData[5] = focusData; + } + + public void FocusAnimation(View parentItem, Size itemSize, int duration, FocusEffectDirection direction) + { + var itemWidth = itemSize.Width + _frameThickness / 2; + var itemHeight = itemSize.Height + _frameThickness / 3; + + if (_animation) + { + _animation.Clear(); + _animation.Reset(); + } + + _animation = new Animation(duration); + _animation.Duration = duration; + + if (direction == FocusEffectDirection.BottomToTop) + { + _focusData[0].ParentOrigin = ParentOrigin.BottomCenter; + _focusData[1].ParentOrigin = ParentOrigin.BottomCenter; + _focusData[2].ParentOrigin = ParentOrigin.BottomLeft; + _focusData[3].ParentOrigin = ParentOrigin.BottomRight; + _focusData[4].ParentOrigin = ParentOrigin.TopLeft; + _focusData[5].ParentOrigin = ParentOrigin.TopRight; + } + else + { + _focusData[0].ParentOrigin = ParentOrigin.TopCenter; + _focusData[1].ParentOrigin = ParentOrigin.TopCenter; + _focusData[2].ParentOrigin = ParentOrigin.BottomLeft; + _focusData[3].ParentOrigin = ParentOrigin.BottomRight; + _focusData[4].ParentOrigin = ParentOrigin.BottomLeft; + _focusData[5].ParentOrigin = ParentOrigin.BottomRight; + } + + foreach (FocusData focusData in _focusData) + { + var currentParent = focusData.ImageItem.Parent; + + // first parent the controls + if (parentItem != currentParent) + { + parentItem.Add(focusData.ImageItem); + } + + focusData.ImageItem.Size = new Size(100.0f, 100.0f, 0.0f); + parentItem.Add(focusData.ImageItem); + + Size targetSize = focusData.TargetSize; + Size initSize = focusData.InitSize; + + if (focusData.FocusDirection == FocusData.Direction.Horizontal) + { + // adjust the width to match the parent + targetSize.Width = itemWidth; + } + else // vertical frame + { + // adjust the height to match the parent + targetSize.Height = itemHeight; + } + + // half the size for the top frame as we come out from both left / right sides + if (focusData.Name == "top-right" || focusData.Name == "top-left") + { + targetSize.Width = itemWidth - _frameThickness; + } + + KeyFrames keyFrames = new KeyFrames(); + + keyFrames.Add(0.0f, initSize); + keyFrames.Add(focusData.KeyFrameStart, initSize); + keyFrames.Add(focusData.KeyFrameEnd, targetSize); + + // for halo add an extra keyframe to shrink it ( in 20% of time after it has finished) + if (focusData.Name == "halo") + { + keyFrames.Add(focusData.KeyFrameEnd + 0.2f, initSize); + } + + _animation.AnimateBetween(focusData.ImageItem, "Size", keyFrames, new AlphaFunction(AlphaFunction.BuiltinFunctions.EaseOutSine)); + + // Simulate the vertical frame growing from the top. + // Vertical items are anchored to the bottom of the parent... so when they grow + // we need to move them to the middle of the parent ( otherwise they stick out the bottom) + if (focusData.FocusDirection == FocusData.Direction.Vertical) + { + //animate position as well so it looks like animation is coming from bottom + KeyFrames keyFramesV = new KeyFrames(); + + if (direction == FocusEffectDirection.BottomToTop) + { + keyFramesV.Add(0.0f, 0.0f); + keyFramesV.Add(focusData.KeyFrameStart, 0.0f); + } + else + { + keyFramesV.Add(0.0f, -itemHeight); + keyFramesV.Add(focusData.KeyFrameStart, -itemHeight); + } + + keyFramesV.Add(focusData.KeyFrameEnd, (-itemHeight / 2)); // animate to halfway up the control + + + _animation.AnimateBetween(focusData.ImageItem, "PositionY", keyFramesV, new AlphaFunction(AlphaFunction.BuiltinFunctions.EaseOutSine)); + + + } + + // Simulate the top frame growing from the sides. + if (focusData.Name == "top-left") + { + KeyFrames keyFramesTL = new KeyFrames(); + + keyFramesTL.Add(0.0f, 0.0f); + keyFramesTL.Add(focusData.KeyFrameStart, 0.0f); + keyFramesTL.Add(focusData.KeyFrameEnd, (itemWidth / 2)); // animate to halfway up the control + + // grow these from the left or right + _animation.AnimateBetween(focusData.ImageItem, "PositionX", keyFramesTL, new AlphaFunction(AlphaFunction.BuiltinFunctions.EaseOutSine)); + + + } + + if (focusData.Name == "top-right") + { + KeyFrames keyFramesTR = new KeyFrames(); + + keyFramesTR.Add(0.0f, 0.0f); + keyFramesTR.Add(focusData.KeyFrameStart, 0.0f); + keyFramesTR.Add(focusData.KeyFrameEnd, (-itemWidth / 2)); // animate to halfway up the control + + // grow these from the left or right + _animation.AnimateBetween(focusData.ImageItem, "PositionX", keyFramesTR, new AlphaFunction(AlphaFunction.BuiltinFunctions.EaseOutSine)); + + } + + _animation.Finished += OnAnimationFinished; + + _animation.Play(); + } + } + + private void OnAnimationFinished(object source, EventArgs e) + { + foreach (FocusData focusData in _focusData) + { + var currentParent = focusData.ImageItem.Parent; + + if (currentParent) + { + currentParent.Remove(focusData.ImageItem); + } + } + } + } +} diff --git a/NUISamples/NUISamples.TizenTV/firstscreen/IFocusEffect.cs b/NUISamples/NUISamples.TizenTV/firstscreen/IFocusEffect.cs new file mode 100755 index 0000000..7380d08 --- /dev/null +++ b/NUISamples/NUISamples.TizenTV/firstscreen/IFocusEffect.cs @@ -0,0 +1,16 @@ +using Tizen.NUI; +using System; + +namespace FirstScreen +{ + public enum FocusEffectDirection + { + TopToBottom, + BottomToTop + }; + + public interface IFocusEffect + { + void FocusAnimation(View parentItem, Size itemSize, int duration, FocusEffectDirection direction); + } +} diff --git a/NUISamples/NUISamples.TizenTV/firstscreen/Program.cs b/NUISamples/NUISamples.TizenTV/firstscreen/Program.cs new file mode 100755 index 0000000..527d99a --- /dev/null +++ b/NUISamples/NUISamples.TizenTV/firstscreen/Program.cs @@ -0,0 +1,15 @@ +using System; + + +namespace FirstScreen +{ + public class MainClass + { + [STAThread] + static void Main(string[] args) + { + Tizen.Log.Debug("NUI", "Main() is called! "); + FirstScreenApp.Run(); + } + } +} diff --git a/NUISamples/NUISamples.TizenTV/firstscreen/ScrollContainer.cs b/NUISamples/NUISamples.TizenTV/firstscreen/ScrollContainer.cs new file mode 100755 index 0000000..d2f20fd --- /dev/null +++ b/NUISamples/NUISamples.TizenTV/firstscreen/ScrollContainer.cs @@ -0,0 +1,629 @@ +using Tizen.NUI; +using Tizen.NUI.Constants; +using System; +using System.Runtime.InteropServices; +using System.Collections.Generic; + +namespace FirstScreen +{ + public class ScrollContainer : CustomView + { + private View _container; // View Container will be the first item added to ScrollContainer and parent to all the items added to the ScrollContainer. + private Size _itemSize; // Size of the item / images added to the ScrollContainer. + private List _itemList; // List collection of View items/images added to the ScrollContainer. + private int _itemCount; // Number of items / images added to the ScrollContainer. + private int _focusedItem; // Index of currently focused View item / image on the ScrollContainer. + private float _scrollDisplacement; // Used for horizontal pan displacement. + private float _currentScrollPosition; // Used for horizontal scroll position. + private float _gap; // Used for gap / padding between items / images on the ScrollContainer. + private float _width; // Width of the ScrollContainer. + private float _height; // Height of the ScrollContainer. + private bool _isFocused; // Flag to check if ScrollContainer is enabled or not. + private float _marginX; // Extra horizontal margin is used to add an extra gap between items / images after a focused and scaled item / image. + private float _marginY; // Extra vertical margin (not used at the moment). + private float _offsetYFactor; // Vertical Position offset Factor of item height. + private float _offsetX; // Horizontal Position offset of ScrollContainer. + private Stage _stage; // Reference to Dali stage. + private Size2D _stageSize; // Reference to Dali stage size. + private ImageView _shadowBorder; // Reference to Shadow border ImageView applied to the focused item on ScrollContainer. + private ImageView _spotLight; // Reference to SpotLight ImageView applied to the focused item on ScrollContainer. + private Animation _spotLightAnimation; // SpotLight Animation applied to the focused item on ScrollContainer. + private Animation _focusAnimation; // Focused position animation on ScrollContainer. + private Animation _scrollAnimation; // Scroll animation on items of ScrollContainer. + private Animation _focusTransitionAnimation; // Focus Transition (scaling /unscaling) animation on items of ScrollContainer. + private Path _circularPath; // Circular path used for SpotLight Animation applied to the focused item on ScrollContainer. + + public ScrollContainer() : base(ViewBehaviour.DisableStyleChangeSignals | + ViewBehaviour.RequiresKeyboardNavigationSupport) + { + } + public bool IsFocused + { + get + { + return _isFocused; + } + } + + public Tizen.NUI.View Container + { + get + { + return _container; + } + } + + public int ItemCount + { + get + { + return _itemCount; + } + } + + public Size ItemSize + { + get + { + return _itemSize; + } + + set + { + _itemSize = value; + + Position topLeft = new Position(-0.25f * _itemSize.Width, -0.25f * _itemSize.Height, 0.0f); + Position topRight = new Position(0.25f * _itemSize.Width, -0.25f * _itemSize.Height, 0.0f); + Position bottomRight = new Position(0.25f * _itemSize.Width, 0.25f * _itemSize.Height, 0.0f); + Position bottomLeft = new Position(-0.25f * _itemSize.Width, 0.25f * _itemSize.Height, 0.0f); + + _circularPath = new Path(); + _circularPath.AddPoint(topLeft); + _circularPath.AddPoint(topRight); + _circularPath.AddPoint(bottomRight); + _circularPath.AddPoint(bottomLeft); + _circularPath.AddPoint(topLeft); + _circularPath.GenerateControlPoints(0.5f); + } + } + + public float Gap + { + get + { + return _gap; + } + + set + { + _gap = value; + } + } + + public float MarginX + { + get + { + return _marginX; + } + + set + { + _marginX = value; + } + } + + public float OffsetYFator + { + get + { + return _offsetYFactor; + } + + set + { + _offsetYFactor = value; + } + } + + public float OffsetX + { + get + { + return _offsetX; + } + + set + { + _offsetX = value; + } + } + + public float MarginY + { + get + { + return _marginY; + } + + set + { + _marginY = value; + } + } + + public float Width + { + get + { + return _width; + } + + set + { + _width = value; + } + } + + public float Height + { + get + { + return _height; + } + + set + { + _height = value; + } + } + + public ImageView ShadowBorder + { + get + { + return _shadowBorder; + } + + set + { + _shadowBorder = value; + } + } + + public ImageView SpotLight + { + get + { + return _spotLight; + } + + set + { + _spotLight = value; + } + } + + public int FocusedItemID + { + get + { + if (_focusedItem < 0) + { + _focusedItem = 0; + } + + return _focusedItem; + } + } + + // This override method is called automatically after the Control has been initialized. + // Any second phase initialization is done here. + public override void OnInitialize() + { + _itemSize = new Size(0.0f, 0.0f, 0.0f); + _gap = 0.0f; + _width = 0.0f; + _height = 0.0f; + _currentScrollPosition = 0.0f; + _itemCount = 0; + _focusedItem = -1; + _isFocused = false; + _marginX = 50.0f; + _marginY = 0.0f; + _offsetYFactor = 0.0f; + _offsetX = 0.0f; + + _container = new View(); + this.Add(_container); + + _itemList = new List(); + + this.ParentOrigin = Tizen.NUI.ParentOrigin.TopLeft; + this.AnchorPoint = Tizen.NUI.AnchorPoint.TopLeft; + this.WidthResizePolicy = ResizePolicyType.FillToParent; + this.HeightResizePolicy = ResizePolicyType.FillToParent; + this.Focusable = (true); + + _container.ParentOrigin = Tizen.NUI.ParentOrigin.TopLeft; + _container.AnchorPoint = Tizen.NUI.AnchorPoint.TopLeft; + _container.WidthResizePolicy = ResizePolicyType.FillToParent; + _container.HeightResizePolicy = ResizePolicyType.FillToParent; + + _stage = Stage.Instance; + _stageSize = _stage.Size; + + _spotLightAnimation = new Animation(Constants.SpotLightDuration); + _focusTransitionAnimation = new Animation(Constants.FocusTransitionDuration); + _focusAnimation = new Animation(Constants.FocusDuration); + _focusAnimation.EndAction = Animation.EndActions.StopFinal; + _scrollAnimation = new Animation(Constants.ScrollDuration); + _scrollAnimation.EndAction = Animation.EndActions.StopFinal; + + //changed to internal + //EnableGestureDetection(Gesture.Type.Pan); + } + + // This will be invoked automatically if an item/image is added to the ScrollContainer + public override void OnChildAdd(Actor actor) + { + View item = View.DownCast(actor); + //View item = actor as View; + + if (item is View && item != _container) + { + item.AnchorPoint = Tizen.NUI.AnchorPoint.BottomCenter; + item.ParentOrigin = Tizen.NUI.ParentOrigin.BottomCenter; + + item.Size = _itemSize; + item.Focusable = (true); + item.Position = GetItemPosition(_itemCount, _currentScrollPosition); + item.Name = _itemCount.ToString(); + + _container.Add(item); + _itemList.Add(item); + + _itemCount++; + } + } + + // This will be invoked automatically if an item/image is removed from the ScrollContainer + public override void OnChildRemove(Actor actor) + { + View item = View.DownCast(actor); + //View item = actor as View; + + if (item is View && item != _container) + { + _container.Remove(item); + + _itemCount--; + _itemList.Remove(item); + } + } + + // This override function supports two dimensional keyboard navigation. + // This function returns the next keyboard focusable actor in ScrollContainer control towards the given direction. + public override View GetNextFocusableView(View currentFocusedView, View.FocusDirection direction, bool loopEnabled) + { + if (direction == View.FocusDirection.Left) + { + return View.DownCast(FocusPrevious(loopEnabled)); + } + else if (direction == View.FocusDirection.Right) + { + return View.DownCast(FocusNext(loopEnabled)); + } + else + { + return View.DownCast(currentFocusedView); + } + } + + public override void OnFocusChangeCommitted(View commitedFocusableView) + { + Focus(_focusedItem); + } + + + // This override function is invoked before chosen focusable actor will be focused. + // This allows the application to preform any actions (i.e. Scroll and SpotLight animations) before the focus is actually moved to the chosen actor. + + // This override function is invoked whenever a pan gesture is detected on this control. + // Perform Scroll Animation based upon pan gesture velocity / speed. + /*public override void OnPan(PanGesture pan) + { + return; //currently not used + }*/ + + // This function returns current focused actor + public View GetCurrentFocusedActor() + { + if (_focusedItem < 0) + { + _focusedItem = 0; + } + + return _itemList[_focusedItem]; + } + + public void SetFocused(bool focused) + { + _isFocused = focused; + + // Perform Focus animation if the ScrollContainer is not focused already + if (!_isFocused) + { + Actor parent = _shadowBorder.Parent; + if (parent) + { + parent.Remove(_shadowBorder); + } + + parent = _spotLight.Parent; + if (parent) + { + parent.Remove(_spotLight); + } + + _focusTransitionAnimation.Clear(); + + for (int i = 0; i < _itemList.Count; ++i) + { + Position targetPosition = GetItemPosition(i, _currentScrollPosition); + + _focusTransitionAnimation.AnimateTo(_itemList[i], "Position", targetPosition, new AlphaFunction(AlphaFunction.BuiltinFunctions.EaseOutSine)); + + _focusTransitionAnimation.AnimateTo(_itemList[i], "Scale", new Size(1.0f, 1.0f, 1.0f), new AlphaFunction(AlphaFunction.BuiltinFunctions.EaseOutSine)); + } + + _focusTransitionAnimation.Play(); + } + else + { + Focus(_focusedItem); + } + } + + // Obtain ID of first visible item/image on the screen of the ScrollContainer + private int GetFirstVisibleItemId() + { + int firstItemId = -1; + + if (_isFocused) + { + firstItemId = (int)Math.Floor((-1.0 * _currentScrollPosition + _marginX * 2.0f) / (_itemSize.Width + _gap)); + } + else + { + firstItemId = (int)Math.Floor(-1.0 * _currentScrollPosition / (_itemSize.Width + _gap)); + } + + if (firstItemId < 0) + { + firstItemId = 0; + } + + return firstItemId; + } + + // Obtain ID of last visible item/image on the screen of the ScrollContainer + private int GetLastVisibleItemId() + { + int lastItemId = -1; + + if (_isFocused) + { + lastItemId = (int)Math.Ceiling(((_width - _currentScrollPosition - _marginX * 2.0f) / _itemSize.Width) - 1); + } + else + { + lastItemId = (int)Math.Ceiling(((_width - _currentScrollPosition) / _itemSize.Width) - 1); + } + + if (lastItemId >= _itemList.Count) + { + + lastItemId = _itemList.Count - 1; + } + + return lastItemId; + } + + // Obtain Next item/image (Right of the currently focused item) of the ScrollContainer + private Actor FocusNext(bool loopEnabled) + { + int nextItem = -1; + + if (_focusedItem < GetFirstVisibleItemId() || _focusedItem > GetLastVisibleItemId()) + { + nextItem = GetFirstVisibleItemId(); + } + else + { + nextItem = _focusedItem + 1; + } + + if (nextItem >= _itemList.Count) + { + if (loopEnabled) + { + nextItem = 0; + } + else + { + nextItem = _itemList.Count - 1; + } + } + + _focusedItem = nextItem; + return _itemList[_focusedItem]; + } + + // Obtain Previous item/image (left of the currently focused item) of the ScrollContainer + private Actor FocusPrevious(bool loopEnabled) + { + int previousItem = -1; + + if (_focusedItem < GetFirstVisibleItemId() || _focusedItem > GetLastVisibleItemId()) + { + previousItem = GetFirstVisibleItemId(); + } + else + { + previousItem = _focusedItem - 1; + } + + if (previousItem < 0) + { + if (loopEnabled) + { + previousItem = _itemList.Count - 1; + } + else + { + previousItem = 0; + } + } + + _focusedItem = previousItem; + return _itemList[_focusedItem]; + } + + // Perform ScrollAnimation on each item + private void Scroll(float amount, int baseItem) + { + float tagetScrollPosition = _currentScrollPosition + amount; + float totalItemSize = _itemList.Count * (_itemSize.Width + _gap) + _gap + (_marginX * 2.0f); + + float maxScrollPosition = _width - totalItemSize; + + if (tagetScrollPosition < maxScrollPosition) + { + tagetScrollPosition = maxScrollPosition; + } + + if (tagetScrollPosition > 0.0f) + { + tagetScrollPosition = 0.0f; + } + + _scrollAnimation.Clear(); + + for (int i = 0; i < _itemList.Count; ++i) + { + Position targetPosition = GetItemPosition(i, tagetScrollPosition); + + _scrollAnimation.AnimateTo(_itemList[i], "Position", targetPosition, new AlphaFunction(AlphaFunction.BuiltinFunctions.EaseOutSine)); + } + + _currentScrollPosition = tagetScrollPosition; + _scrollAnimation.Play(); + } + + // This function uses ItemId as next FocusedItem and preforms Scroll and SpotLight animations on that item. + private void Focus(int itemId) + { + + if (itemId < 0) + { + itemId = 0; + } + else if (itemId >= _itemList.Count) + { + itemId = _itemList.Count - 1; + } + + _itemList[itemId].Add(_shadowBorder); + _itemList[itemId].Add(_spotLight); + + // Perform Spot Light animation + if (_focusedItem != itemId && _spotLight != null) + { + _spotLightAnimation.Clear(); + _spotLightAnimation.AnimatePath(_spotLight, _circularPath, new Vector3(0.0f, 0.0f, 0.0f)); + _spotLightAnimation.Looping = true; + _spotLightAnimation.Play(); + } + + _focusedItem = itemId; + + Position itemPosition = GetItemPosition(_focusedItem, _currentScrollPosition); + + _focusAnimation.Clear(); + + float relativeItemPositionX = itemPosition.X - _itemSize.Width * 0.5f + (_stageSize.Width * 0.5f) + _offsetX; + if (relativeItemPositionX < _marginX + _offsetX + _gap) + { + float amount = _marginX + _offsetX + _gap - relativeItemPositionX; + Scroll(amount, itemId + 1); // Perform Scroll animation + } + else if (relativeItemPositionX + _itemSize.Width + _gap + _marginX > _stageSize.Width) + { + float amount = relativeItemPositionX + _marginX + _gap + _itemSize.Width - _stageSize.Width; + Scroll(-amount, itemId - 1); // Perform Scroll animation + } + else + { + // Perform animation when item is focused + for (int i = 0; i < _itemList.Count; ++i) + { + Position targetPosition = GetItemPosition(i, _currentScrollPosition); + + _focusAnimation.AnimateTo(_itemList[i], "Position",targetPosition, new AlphaFunction(AlphaFunction.BuiltinFunctions.EaseOutSine) ); + } + } + + for (int i = 0; i < _itemList.Count; ++i) + { + // Perform scale animation on Focused item + if (i == _focusedItem) + { + _focusAnimation.AnimateTo(_itemList[i], "Scale", new Size(1.2f, 1.2f, 1.2f), new AlphaFunction(AlphaFunction.BuiltinFunctions.EaseOutSine)); + } + else + { + + _focusAnimation.AnimateTo(_itemList[i], "Scale", new Size(1.0f, 1.0f, 1.0f), new AlphaFunction(AlphaFunction.BuiltinFunctions.EaseOutSine) ); + } + } + + _focusAnimation.Play(); + + } + + // Calculate Position of any item/image of ScrollContainer + private Position GetItemPosition(int itemId, float scrollPosition) + { + if (_isFocused) + { + // used (_itemSize.Width * 0.5f) because of AnchorPointCenter + // used (_stageSize.Width * 0.5f) because of ParentOriginCenter + if (_focusedItem > itemId) + { + float positionX = (_itemSize.Width * itemId) + (_gap * (itemId + 1)) + scrollPosition + (_itemSize.Width * 0.5f) - (_stageSize.Width * 0.5f); + return new Position(positionX, -_itemSize.Height * _offsetYFactor, 0.0f); + } + else if (_focusedItem == itemId) + { + float positionX = (_itemSize.Width * itemId) + (_gap * (itemId + 1)) + scrollPosition + _marginX + (_itemSize.Width * 0.5f) - (_stageSize.Width * 0.5f); + return new Position(positionX, -_itemSize.Height * _offsetYFactor, 0.0f); + } + else + { + float positionX = (_itemSize.Width * itemId) + (_gap * (itemId + 1)) + scrollPosition + _marginX * 2.0f + (_itemSize.Width * 0.5f) - (_stageSize.Width * 0.5f); + return new Position(positionX, -_itemSize.Height * _offsetYFactor, 0.0f); + } + } + else + { + float positionX = (_itemSize.Width * itemId) + (_gap * (itemId + 1)) + scrollPosition + (_itemSize.Width * 0.5f) - (_stageSize.Width * 0.5f); + return new Position(positionX, -_itemSize.Height * _offsetYFactor, 0.0f); + } + } + + + } + +} + diff --git a/NUISamples/NUISamples.TizenTV/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/NUISamples/NUISamples.TizenTV/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache new file mode 100755 index 0000000..686ad83 Binary files /dev/null and b/NUISamples/NUISamples.TizenTV/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache differ diff --git a/etc/SampleApplication/NUISamples/NUISamples.Tizen/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs b/NUISamples/NUISamples.TizenTV/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs similarity index 100% rename from etc/SampleApplication/NUISamples/NUISamples.Tizen/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs rename to NUISamples/NUISamples.TizenTV/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs diff --git a/etc/SampleApplication/NUISamples/NUISamples.Tizen/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs b/NUISamples/NUISamples.TizenTV/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs similarity index 100% rename from etc/SampleApplication/NUISamples/NUISamples.Tizen/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs rename to NUISamples/NUISamples.TizenTV/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs diff --git a/etc/SampleApplication/NUISamples/NUISamples.Tizen/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs b/NUISamples/NUISamples.TizenTV/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs similarity index 100% rename from etc/SampleApplication/NUISamples/NUISamples.Tizen/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs rename to NUISamples/NUISamples.TizenTV/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs diff --git a/etc/SampleApplication/NUISamples/NUISamples.Tizen/res/images/arrow.png b/NUISamples/NUISamples.TizenTV/res/images/arrow.png old mode 100644 new mode 100755 similarity index 100% rename from etc/SampleApplication/NUISamples/NUISamples.Tizen/res/images/arrow.png rename to NUISamples/NUISamples.TizenTV/res/images/arrow.png diff --git a/etc/SampleApplication/NUISamples/NUISamples.Tizen/res/images/gallery-0.jpg b/NUISamples/NUISamples.TizenTV/res/images/gallery-0.jpg old mode 100644 new mode 100755 similarity index 100% rename from etc/SampleApplication/NUISamples/NUISamples.Tizen/res/images/gallery-0.jpg rename to NUISamples/NUISamples.TizenTV/res/images/gallery-0.jpg diff --git a/etc/SampleApplication/NUISamples/NUISamples.Tizen/res/images/gallery-1.jpg b/NUISamples/NUISamples.TizenTV/res/images/gallery-1.jpg old mode 100644 new mode 100755 similarity index 100% rename from etc/SampleApplication/NUISamples/NUISamples.Tizen/res/images/gallery-1.jpg rename to NUISamples/NUISamples.TizenTV/res/images/gallery-1.jpg diff --git a/etc/SampleApplication/NUISamples/NUISamples.Tizen/res/images/gallery-2.jpg b/NUISamples/NUISamples.TizenTV/res/images/gallery-2.jpg old mode 100644 new mode 100755 similarity index 100% rename from etc/SampleApplication/NUISamples/NUISamples.Tizen/res/images/gallery-2.jpg rename to NUISamples/NUISamples.TizenTV/res/images/gallery-2.jpg diff --git a/etc/SampleApplication/NUISamples/NUISamples.Tizen/res/images/gallery-3.jpg b/NUISamples/NUISamples.TizenTV/res/images/gallery-3.jpg old mode 100644 new mode 100755 similarity index 100% rename from etc/SampleApplication/NUISamples/NUISamples.Tizen/res/images/gallery-3.jpg rename to NUISamples/NUISamples.TizenTV/res/images/gallery-3.jpg diff --git a/etc/SampleApplication/NUISamples/NUISamples.Tizen/res/images/gallery-4.jpg b/NUISamples/NUISamples.TizenTV/res/images/gallery-4.jpg old mode 100644 new mode 100755 similarity index 100% rename from etc/SampleApplication/NUISamples/NUISamples.Tizen/res/images/gallery-4.jpg rename to NUISamples/NUISamples.TizenTV/res/images/gallery-4.jpg diff --git a/etc/SampleApplication/NUISamples/NUISamples.Tizen/res/images/gallery-5.jpg b/NUISamples/NUISamples.TizenTV/res/images/gallery-5.jpg old mode 100644 new mode 100755 similarity index 100% rename from etc/SampleApplication/NUISamples/NUISamples.Tizen/res/images/gallery-5.jpg rename to NUISamples/NUISamples.TizenTV/res/images/gallery-5.jpg diff --git a/etc/SampleApplication/NUISamples/NUISamples.Tizen/res/images/image-1.jpg b/NUISamples/NUISamples.TizenTV/res/images/image-1.jpg old mode 100644 new mode 100755 similarity index 100% rename from etc/SampleApplication/NUISamples/NUISamples.Tizen/res/images/image-1.jpg rename to NUISamples/NUISamples.TizenTV/res/images/image-1.jpg diff --git a/etc/SampleApplication/NUISamples/NUISamples.Tizen/res/images/image-2.jpg b/NUISamples/NUISamples.TizenTV/res/images/image-2.jpg old mode 100644 new mode 100755 similarity index 100% rename from etc/SampleApplication/NUISamples/NUISamples.Tizen/res/images/image-2.jpg rename to NUISamples/NUISamples.TizenTV/res/images/image-2.jpg diff --git a/etc/SampleApplication/NUISamples/NUISamples.Tizen/res/images/image-3.jpg b/NUISamples/NUISamples.TizenTV/res/images/image-3.jpg old mode 100644 new mode 100755 similarity index 100% rename from etc/SampleApplication/NUISamples/NUISamples.Tizen/res/images/image-3.jpg rename to NUISamples/NUISamples.TizenTV/res/images/image-3.jpg diff --git a/etc/SampleApplication/NUISamples/NUISamples.Tizen/res/images/not_yet_sign.png b/NUISamples/NUISamples.TizenTV/res/images/not_yet_sign.png old mode 100644 new mode 100755 similarity index 100% rename from etc/SampleApplication/NUISamples/NUISamples.Tizen/res/images/not_yet_sign.png rename to NUISamples/NUISamples.TizenTV/res/images/not_yet_sign.png diff --git a/etc/SampleApplication/NUISamples/NUISamples.Tizen/res/images/star-dim.png b/NUISamples/NUISamples.TizenTV/res/images/star-dim.png old mode 100644 new mode 100755 similarity index 100% rename from etc/SampleApplication/NUISamples/NUISamples.Tizen/res/images/star-dim.png rename to NUISamples/NUISamples.TizenTV/res/images/star-dim.png diff --git a/etc/SampleApplication/NUISamples/NUISamples.Tizen/res/images/star-highlight.png b/NUISamples/NUISamples.TizenTV/res/images/star-highlight.png old mode 100644 new mode 100755 similarity index 100% rename from etc/SampleApplication/NUISamples/NUISamples.Tizen/res/images/star-highlight.png rename to NUISamples/NUISamples.TizenTV/res/images/star-highlight.png diff --git a/NUISamples/NUISamples.TizenTV/res/images/star-mod.png b/NUISamples/NUISamples.TizenTV/res/images/star-mod.png new file mode 100755 index 0000000..2e3212e Binary files /dev/null and b/NUISamples/NUISamples.TizenTV/res/images/star-mod.png differ diff --git a/etc/SampleApplication/NUISamples/NUISamples.Tizen/res/style/control-dashboard-theme.json b/NUISamples/NUISamples.TizenTV/res/json/control-dashboard-theme.json similarity index 100% rename from etc/SampleApplication/NUISamples/NUISamples.Tizen/res/style/control-dashboard-theme.json rename to NUISamples/NUISamples.TizenTV/res/json/control-dashboard-theme.json diff --git a/NUISamples/NUISamples.TizenTV/res/json/control-dashboard.json b/NUISamples/NUISamples.TizenTV/res/json/control-dashboard.json new file mode 100755 index 0000000..c2609c4 --- /dev/null +++ b/NUISamples/NUISamples.TizenTV/res/json/control-dashboard.json @@ -0,0 +1,26 @@ +/* + * Copyright (c) 2017 Samsung Electronics Co., Ltd. + * + * This file is part of Dali Toolkit + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +{ + "styles": + { + "ProgressBar": + { + } + } +} diff --git a/NUISamples/NUISamples.TizenTV/res/json/date-picker-template.json b/NUISamples/NUISamples.TizenTV/res/json/date-picker-template.json new file mode 100755 index 0000000..dd01d8f --- /dev/null +++ b/NUISamples/NUISamples.TizenTV/res/json/date-picker-template.json @@ -0,0 +1,84 @@ +/* + * Copyright (c) 2014 Samsung Electronics Co., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ +{ + // Data picker loaded directly on to the stage + // + "templates": { + "date-picker": + { + "type":"FlexContainer", + "name":"exampleDatePicker", + "parentOrigin": "CENTER", + "anchorPoint": "CENTER", + "flexDirection":"ROW", + "size":[480.0, 150, 0 ], + "actors": [ + { + + "type": "Spin", + "name": "Year", + "parentOrigin": "CENTER", + "anchorPoint": "CENTER", + "Value":2017, + "MinValue":1900, + "MaxValue":2100, + "Step":1, + "TextColor":[0.0,0.0,1.0,1.0], + "properties": { // properties registered dynamically + "flex":0.3, + "flexMargin": [5.0,0.0,5.0,0.0] + } + }, + { + + "type": "Spin", + "name": "Month", + "parentOrigin": "CENTER", + "anchorPoint": "CENTER", + "parentOrigin": "CENTER", + "Value":10, + "Step":1, + "MinValue":1, + "MaxValue":12, + "TextColor":[1.0,1.0,1.0,1.0], + "properties": { // properties registered dynamically + "flex":0.3, + "flexMargin": [5.0,0.0,5.0,0.0] + } + + }, + { + + "type": "Spin", + "name": "Day", + "parentOrigin": "CENTER", + "anchorPoint": "CENTER", + "Value":1, + "MinValue":1, + "MaxValue":31, + "TextColor":[1.0,0.0,0.0,1.0], + "properties": { // properties registered dynamically + "flex":0.3, + "flexMargin": [5.0,0.0,5.0,0.0] + } + }] + + } +} + +} + diff --git a/NUISamples/NUISamples.TizenTV/res/json/date-picker.json b/NUISamples/NUISamples.TizenTV/res/json/date-picker.json new file mode 100755 index 0000000..3126aa3 --- /dev/null +++ b/NUISamples/NUISamples.TizenTV/res/json/date-picker.json @@ -0,0 +1,82 @@ +/* + * Copyright (c) 2014 Samsung Electronics Co., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ +{ + // Data picker loaded directly on to the stage + // + "stage": [{ + + "type":"FlexContainer", + "name":"exampleDatePicker", + "parentOrigin": "CENTER", + "anchorPoint": "CENTER", + "flexDirection":"ROW", + "size":[480.0, 150, 0 ], + "actors": [ + { + + "type": "Spin", + "name": "Year", + "parentOrigin": "CENTER", + "anchorPoint": "CENTER", + "MinValue":1900, + "MaxValue":2100, + "Value":2017, + "Step":1, + "TextColor":[0.0,0.0,1.0,1.0], + "properties": { // properties registered dynamically + "flex":0.3, + "flexMargin": [5.0,0.0,5.0,0.0] + } + }, + { + + "type": "Spin", + "name": "Month", + "parentOrigin": "CENTER", + "anchorPoint": "CENTER", + "parentOrigin": "CENTER", + "Step":1, + "MinValue":1, + "MaxValue":12, + "Value":10, + "TextColor":[1.0,1.0,1.0,1.0], + "properties": { // properties registered dynamically + "flex":0.3, + "flexMargin": [5.0,0.0,5.0,0.0] + } + + }, + { + + "type": "Spin", + "name": "Day", + "parentOrigin": "CENTER", + "anchorPoint": "CENTER", + "MinValue":1, + "MaxValue":31, + "Value":1, + "TextColor":[1.0,0.0,0.0,1.0], + "properties": { // properties registered dynamically + "flex":0.3, + "flexMargin": [5.0,0.0,5.0,0.0] + } + }] + +}] + +} + diff --git a/NUISamples/NUISamples.TizenTV/res/json/spin.json b/NUISamples/NUISamples.TizenTV/res/json/spin.json new file mode 100755 index 0000000..df9b10c --- /dev/null +++ b/NUISamples/NUISamples.TizenTV/res/json/spin.json @@ -0,0 +1,30 @@ +/* + * Copyright (c) 2014 Samsung Electronics Co., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ +{ + // a tree of actors + "stage": [ + // You can add an array of Actors / Views here + // Lets add a spin to the stage + { + "type":"Spin", + "parentOrigin":"CENTER", + "size":[120,120,0] + // now lets use the C# app json-loader.exe to load it + } + + ] +} diff --git a/etc/SampleApplication/NUISamples/NUISamples.Tizen/shared/res/NUISamples.Tizen.png b/NUISamples/NUISamples.TizenTV/shared/res/NUISamples.TizenTV.png similarity index 100% rename from etc/SampleApplication/NUISamples/NUISamples.Tizen/shared/res/NUISamples.Tizen.png rename to NUISamples/NUISamples.TizenTV/shared/res/NUISamples.TizenTV.png diff --git a/etc/SampleApplication/NUISamples/NUISamples.Tizen/tizen-manifest.xml b/NUISamples/NUISamples.TizenTV/tizen-manifest.xml similarity index 50% rename from etc/SampleApplication/NUISamples/NUISamples.Tizen/tizen-manifest.xml rename to NUISamples/NUISamples.TizenTV/tizen-manifest.xml index 05b7647..65157a3 100755 --- a/etc/SampleApplication/NUISamples/NUISamples.Tizen/tizen-manifest.xml +++ b/NUISamples/NUISamples.TizenTV/tizen-manifest.xml @@ -1,13 +1,14 @@ - - - - - NUISamples.Tizen.png - - - + + + + + NUISamples.TizenTV.png + + + diff --git a/NUISamples/NUISamples/DoNotUse!.csproj b/NUISamples/NUISamples/DoNotUse!.csproj new file mode 100755 index 0000000..95f3310 --- /dev/null +++ b/NUISamples/NUISamples/DoNotUse!.csproj @@ -0,0 +1,73 @@ + + + + Debug + AnyCPU + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + {3B1120FD-0E02-45A6-A3A4-AC3EBCB61083} + Library + NUISamples + NUISamples + v4.5 + Profile259 + 10.0 + + + + + true + portable + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + false + + + portable + true + bin\Release\ + TRACE + prompt + 4 + false + + + + + + + + + + + + ..\..\packages\Xamarin.Forms.2.3.3.175\lib\portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20\Xamarin.Forms.Core.dll + True + + + ..\..\packages\Xamarin.Forms.2.3.3.175\lib\portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20\Xamarin.Forms.Platform.dll + True + + + ..\..\packages\Xamarin.Forms.2.3.3.175\lib\portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20\Xamarin.Forms.Xaml.dll + True + + + + + + + This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}. + + + + + \ No newline at end of file diff --git a/NUISamples/NUISamples/NUISamples.cs b/NUISamples/NUISamples/NUISamples.cs new file mode 100755 index 0000000..30f959a --- /dev/null +++ b/NUISamples/NUISamples/NUISamples.cs @@ -0,0 +1,45 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; + +using Xamarin.Forms; + +namespace NUISamples +{ + public class App : Application + { + public App() + { + // The root page of your application + MainPage = new ContentPage + { + Content = new StackLayout + { + VerticalOptions = LayoutOptions.Center, + Children = { + new Label { + HorizontalTextAlignment = TextAlignment.Center, + Text = "Welcome to Xamarin Forms!" + } + } + } + }; + } + + protected override void OnStart() + { + // Handle when your app starts + } + + protected override void OnSleep() + { + // Handle when your app sleeps + } + + protected override void OnResume() + { + // Handle when your app resumes + } + } +} diff --git a/NUISamples/NUISamples/Properties/AssemblyInfo.cs b/NUISamples/NUISamples/Properties/AssemblyInfo.cs new file mode 100755 index 0000000..e349d7a --- /dev/null +++ b/NUISamples/NUISamples/Properties/AssemblyInfo.cs @@ -0,0 +1,29 @@ +using System.Resources; +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// General Information about an assembly is controlled through the following +// set of attributes. Change these attribute values to modify the information +// associated with an assembly. +[assembly: AssemblyTitle("NUISamples")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("Microsoft")] +[assembly: AssemblyProduct("NUISamples")] +[assembly: AssemblyCopyright("Copyright © Microsoft 2017")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// Version information for an assembly consists of the following four values: +// +// Major Version +// Minor Version +// Build Number +// Revision +// +// You can specify all the values or you can default the Build and Revision Numbers +// by using the '*' as shown below: +// [assembly: AssemblyVersion("1.0.*")] +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/NUISamples/NUISamples/obj/Debug/DesignTimeResolveAssemblyReferences.cache b/NUISamples/NUISamples/obj/Debug/DesignTimeResolveAssemblyReferences.cache new file mode 100755 index 0000000..d2be2ab Binary files /dev/null and b/NUISamples/NUISamples/obj/Debug/DesignTimeResolveAssemblyReferences.cache differ diff --git a/NUISamples/NUISamples/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/NUISamples/NUISamples/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache new file mode 100755 index 0000000..39cf9c8 Binary files /dev/null and b/NUISamples/NUISamples/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache differ diff --git a/NUISamples/NUISamples/obj/Debug/NUISamples.csproj.FileListAbsolute.txt b/NUISamples/NUISamples/obj/Debug/NUISamples.csproj.FileListAbsolute.txt new file mode 100755 index 0000000..b1c886c --- /dev/null +++ b/NUISamples/NUISamples/obj/Debug/NUISamples.csproj.FileListAbsolute.txt @@ -0,0 +1,13 @@ +D:\ssong2best\work\2017\workspace\csharp-0217\Tizen.NUI\NUISamples\NUISamples\bin\Debug\NUISamples.dll +D:\ssong2best\work\2017\workspace\csharp-0217\Tizen.NUI\NUISamples\NUISamples\bin\Debug\NUISamples.pdb +D:\ssong2best\work\2017\workspace\csharp-0217\Tizen.NUI\NUISamples\NUISamples\bin\Debug\Xamarin.Forms.Core.dll +D:\ssong2best\work\2017\workspace\csharp-0217\Tizen.NUI\NUISamples\NUISamples\bin\Debug\Xamarin.Forms.Platform.dll +D:\ssong2best\work\2017\workspace\csharp-0217\Tizen.NUI\NUISamples\NUISamples\bin\Debug\Xamarin.Forms.Xaml.dll +D:\ssong2best\work\2017\workspace\csharp-0217\Tizen.NUI\NUISamples\NUISamples\bin\Debug\Xamarin.Forms.Core.pdb +D:\ssong2best\work\2017\workspace\csharp-0217\Tizen.NUI\NUISamples\NUISamples\bin\Debug\Xamarin.Forms.Core.xml +D:\ssong2best\work\2017\workspace\csharp-0217\Tizen.NUI\NUISamples\NUISamples\bin\Debug\Xamarin.Forms.Platform.pdb +D:\ssong2best\work\2017\workspace\csharp-0217\Tizen.NUI\NUISamples\NUISamples\bin\Debug\Xamarin.Forms.Xaml.pdb +D:\ssong2best\work\2017\workspace\csharp-0217\Tizen.NUI\NUISamples\NUISamples\bin\Debug\Xamarin.Forms.Xaml.xml +D:\ssong2best\work\2017\workspace\csharp-0217\Tizen.NUI\NUISamples\NUISamples\obj\Debug\NUISamples.csprojResolveAssemblyReference.cache +D:\ssong2best\work\2017\workspace\csharp-0217\Tizen.NUI\NUISamples\NUISamples\obj\Debug\NUISamples.dll +D:\ssong2best\work\2017\workspace\csharp-0217\Tizen.NUI\NUISamples\NUISamples\obj\Debug\NUISamples.pdb diff --git a/NUISamples/NUISamples/obj/Debug/NUISamples.csprojResolveAssemblyReference.cache b/NUISamples/NUISamples/obj/Debug/NUISamples.csprojResolveAssemblyReference.cache new file mode 100755 index 0000000..5fdfd73 Binary files /dev/null and b/NUISamples/NUISamples/obj/Debug/NUISamples.csprojResolveAssemblyReference.cache differ diff --git a/NUISamples/NUISamples/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs b/NUISamples/NUISamples/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs new file mode 100755 index 0000000..e69de29 diff --git a/NUISamples/NUISamples/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs b/NUISamples/NUISamples/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs new file mode 100755 index 0000000..e69de29 diff --git a/NUISamples/NUISamples/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs b/NUISamples/NUISamples/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs new file mode 100755 index 0000000..e69de29 diff --git a/NUISamples/NUISamples/packages.config b/NUISamples/NUISamples/packages.config new file mode 100755 index 0000000..602d312 --- /dev/null +++ b/NUISamples/NUISamples/packages.config @@ -0,0 +1,4 @@ + + + + diff --git a/Tizen.NUI.sln b/Tizen.NUI.sln new file mode 100755 index 0000000..1aedc34 --- /dev/null +++ b/Tizen.NUI.sln @@ -0,0 +1,34 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 14 +VisualStudioVersion = 14.0.25420.1 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Tizen.NUI", "Tizen.NUI\Tizen.NUI.csproj", "{F03A3B48-9D9B-4BF3-92CE-BD63CADC3CD3}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NUISamples.TizenTV", "NUISamples\NUISamples.TizenTV\NUISamples.TizenTV.csproj", "{B47E2552-F995-49F6-AC29-58B9CCFB7056}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DoNotUse!", "NUISamples\NUISamples\DoNotUse!.csproj", "{3B1120FD-0E02-45A6-A3A4-AC3EBCB61083}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {F03A3B48-9D9B-4BF3-92CE-BD63CADC3CD3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {F03A3B48-9D9B-4BF3-92CE-BD63CADC3CD3}.Debug|Any CPU.Build.0 = Debug|Any CPU + {F03A3B48-9D9B-4BF3-92CE-BD63CADC3CD3}.Release|Any CPU.ActiveCfg = Release|Any CPU + {F03A3B48-9D9B-4BF3-92CE-BD63CADC3CD3}.Release|Any CPU.Build.0 = Release|Any CPU + {B47E2552-F995-49F6-AC29-58B9CCFB7056}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {B47E2552-F995-49F6-AC29-58B9CCFB7056}.Debug|Any CPU.Build.0 = Debug|Any CPU + {B47E2552-F995-49F6-AC29-58B9CCFB7056}.Release|Any CPU.ActiveCfg = Release|Any CPU + {B47E2552-F995-49F6-AC29-58B9CCFB7056}.Release|Any CPU.Build.0 = Release|Any CPU + {3B1120FD-0E02-45A6-A3A4-AC3EBCB61083}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {3B1120FD-0E02-45A6-A3A4-AC3EBCB61083}.Debug|Any CPU.Build.0 = Debug|Any CPU + {3B1120FD-0E02-45A6-A3A4-AC3EBCB61083}.Release|Any CPU.ActiveCfg = Release|Any CPU + {3B1120FD-0E02-45A6-A3A4-AC3EBCB61083}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/Tizen.NUI/.vs/ClassLibrary1/v14/.suo b/Tizen.NUI/.vs/ClassLibrary1/v14/.suo deleted file mode 100755 index 7926ba0..0000000 Binary files a/Tizen.NUI/.vs/ClassLibrary1/v14/.suo and /dev/null differ diff --git a/Tizen.NUI/.vs/config/applicationhost.config b/Tizen.NUI/.vs/config/applicationhost.config deleted file mode 100755 index 5d4c0ab..0000000 --- a/Tizen.NUI/.vs/config/applicationhost.config +++ /dev/null @@ -1,1031 +0,0 @@ - - - - - - - -
-
-
-
-
-
-
-
- - - -
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- -
-
- -
-
-
-
-
-
- -
-
-
-
-
- -
-
-
- -
-
- -
-
- -
-
-
- - -
-
-
-
-
-
- -
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/Tizen.NUI/ClassLibrary1.project.json b/Tizen.NUI/ClassLibrary1.project.json deleted file mode 100755 index f134708..0000000 --- a/Tizen.NUI/ClassLibrary1.project.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "dependencies": { - "Microsoft.CSharp": "4.0.1", - "NETStandard.Library": "1.6.0", - "System.Reflection": "4.1.0", - "System.Reflection.TypeExtensions": "4.1.0" - }, - "frameworks": { - "netstandard1.3": {} - } -} \ No newline at end of file diff --git a/Tizen.NUI/ClassLibrary1.sln b/Tizen.NUI/ClassLibrary1.sln deleted file mode 100755 index ea95a65..0000000 --- a/Tizen.NUI/ClassLibrary1.sln +++ /dev/null @@ -1,28 +0,0 @@ - -Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio 14 -VisualStudioVersion = 14.0.25420.1 -MinimumVisualStudioVersion = 10.0.40219.1 -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ClassLibrary1", "ClassLibrary1.csproj", "{5037EB12-A7D9-47B4-A79C-4B2B0C8F0E23}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NUISamples.Tizen", "..\NUISamples\NUISamples.Tizen\NUISamples.Tizen.csproj", "{EF6B2FA4-3A77-4AF5-8C76-C05FFAD9D064}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Any CPU = Debug|Any CPU - Release|Any CPU = Release|Any CPU - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {5037EB12-A7D9-47B4-A79C-4B2B0C8F0E23}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {5037EB12-A7D9-47B4-A79C-4B2B0C8F0E23}.Debug|Any CPU.Build.0 = Debug|Any CPU - {5037EB12-A7D9-47B4-A79C-4B2B0C8F0E23}.Release|Any CPU.ActiveCfg = Release|Any CPU - {5037EB12-A7D9-47B4-A79C-4B2B0C8F0E23}.Release|Any CPU.Build.0 = Release|Any CPU - {EF6B2FA4-3A77-4AF5-8C76-C05FFAD9D064}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {EF6B2FA4-3A77-4AF5-8C76-C05FFAD9D064}.Debug|Any CPU.Build.0 = Debug|Any CPU - {EF6B2FA4-3A77-4AF5-8C76-C05FFAD9D064}.Release|Any CPU.ActiveCfg = Release|Any CPU - {EF6B2FA4-3A77-4AF5-8C76-C05FFAD9D064}.Release|Any CPU.Build.0 = Release|Any CPU - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection -EndGlobal diff --git a/Tizen.NUI/Properties/AssemblyInfo.cs b/Tizen.NUI/Properties/AssemblyInfo.cs index 56f744d..7ae1586 100755 --- a/Tizen.NUI/Properties/AssemblyInfo.cs +++ b/Tizen.NUI/Properties/AssemblyInfo.cs @@ -5,11 +5,11 @@ using System.Runtime.InteropServices; // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated with an assembly. -[assembly: AssemblyTitle("ClassLibrary1")] +[assembly: AssemblyTitle("Tizen.NUI")] [assembly: AssemblyDescription("")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Microsoft")] -[assembly: AssemblyProduct("ClassLibrary1")] +[assembly: AssemblyProduct("Tizen.NUI")] [assembly: AssemblyCopyright("Copyright © Microsoft 2017")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] @@ -20,7 +20,7 @@ using System.Runtime.InteropServices; [assembly: ComVisible(false)] // The following GUID is for the ID of the typelib if this project is exposed to COM -[assembly: Guid("5037eb12-a7d9-47b4-a79c-4b2b0c8f0e23")] +[assembly: Guid("f03a3b48-9d9b-4bf3-92ce-bd63cadc3cd3")] // Version information for an assembly consists of the following four values: // diff --git a/Tizen.NUI/ClassLibrary1.csproj b/Tizen.NUI/Tizen.NUI.csproj similarity index 80% rename from Tizen.NUI/ClassLibrary1.csproj rename to Tizen.NUI/Tizen.NUI.csproj index 2076e5f..c1bbf8b 100755 --- a/Tizen.NUI/ClassLibrary1.csproj +++ b/Tizen.NUI/Tizen.NUI.csproj @@ -6,10 +6,11 @@ AnyCPU 8.0.30703 2.0 - {5037EB12-A7D9-47B4-A79C-4B2B0C8F0E23} + {2F98DAC9-6F16-457B-AED7-D43CAC379341};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + {F03A3B48-9D9B-4BF3-92CE-BD63CADC3CD3} Library Properties - NUI + Tizen.NUI Tizen.NUI 512 en-US @@ -41,27 +42,28 @@ 4 - + + - - - - + - + - + + + + @@ -75,31 +77,30 @@ - - - - + + + + + - - @@ -111,11 +112,15 @@ + + + + - + @@ -125,15 +130,21 @@ + + + + + + @@ -147,28 +158,33 @@ + + + - - + + + + @@ -176,24 +192,30 @@ + + + + + + - + + - @@ -203,19 +225,21 @@ + - + - + + @@ -229,7 +253,6 @@ - @@ -237,16 +260,19 @@ + + + - + @@ -263,110 +289,97 @@ - + + + + + - - - - - - - - - - - + - - + - - - - - - - - - - - - - - - - - - - - - - + - - + + + + False + bin\Debug\Tizen.Applications.dll + + - - - <_TargetFrameworkDirectories>$(MSBuildThisFileDirectory) <_FullFrameworkReferenceAssemblyPaths>$(MSBuildThisFileDirectory) true + + + + + + + + + + \ No newline at end of file diff --git a/Tizen.NUI/ClassLibrary1.csproj.user b/Tizen.NUI/Tizen.NUI.csproj.user similarity index 100% rename from Tizen.NUI/ClassLibrary1.csproj.user rename to Tizen.NUI/Tizen.NUI.csproj.user diff --git a/Tizen.NUI/Tizen.NUI.nuspec b/Tizen.NUI/Tizen.NUI.nuspec old mode 100644 new mode 100755 diff --git a/Tizen.NUI/Tizen.NUI.project.json b/Tizen.NUI/Tizen.NUI.project.json new file mode 100755 index 0000000..8112d31 --- /dev/null +++ b/Tizen.NUI/Tizen.NUI.project.json @@ -0,0 +1,11 @@ +{ + "dependencies": { + "Microsoft.CSharp": "4.3.0", + "NETStandard.Library": "1.6.0", + "System.Reflection": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0" + }, + "frameworks": { + "netstandard1.3": {} + } +} \ No newline at end of file diff --git a/Tizen.NUI/ClassLibrary1.project.lock.json b/Tizen.NUI/Tizen.NUI.project.lock.json similarity index 90% rename from Tizen.NUI/ClassLibrary1.project.lock.json rename to Tizen.NUI/Tizen.NUI.project.lock.json index f435833..743e9c1 100755 --- a/Tizen.NUI/ClassLibrary1.project.lock.json +++ b/Tizen.NUI/Tizen.NUI.project.lock.json @@ -3,25 +3,25 @@ "version": 2, "targets": { ".NETStandard,Version=v1.3": { - "Microsoft.CSharp/4.0.1": { + "Microsoft.CSharp/4.3.0": { "type": "package", "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Dynamic.Runtime": "4.0.11", - "System.Globalization": "4.0.11", - "System.Linq": "4.1.0", - "System.Linq.Expressions": "4.1.0", - "System.ObjectModel": "4.0.12", - "System.Reflection": "4.1.0", - "System.Reflection.Extensions": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.InteropServices": "4.1.0", - "System.Threading": "4.0.11" + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Dynamic.Runtime": "4.3.0", + "System.Globalization": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Threading": "4.3.0" }, "compile": { "ref/netstandard1.0/Microsoft.CSharp.dll": {} @@ -30,7 +30,7 @@ "lib/netstandard1.3/Microsoft.CSharp.dll": {} } }, - "Microsoft.NETCore.Platforms/1.0.1": { + "Microsoft.NETCore.Platforms/1.1.0": { "type": "package", "compile": { "lib/netstandard1.0/_._": {} @@ -39,7 +39,7 @@ "lib/netstandard1.0/_._": {} } }, - "Microsoft.NETCore.Targets/1.0.1": { + "Microsoft.NETCore.Targets/1.1.0": { "type": "package", "compile": { "lib/netstandard1.0/_._": {} @@ -172,12 +172,12 @@ "lib/netstandard1.1/System.Buffers.dll": {} } }, - "System.Collections/4.0.11": { + "System.Collections/4.3.0": { "type": "package", "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0" + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" }, "compile": { "ref/netstandard1.3/System.Collections.dll": {} @@ -217,12 +217,12 @@ "ref/netstandard1.3/System.Console.dll": {} } }, - "System.Diagnostics.Debug/4.0.11": { + "System.Diagnostics.Debug/4.3.0": { "type": "package", "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0" + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" }, "compile": { "ref/netstandard1.3/System.Diagnostics.Debug.dll": {} @@ -266,24 +266,23 @@ "ref/netstandard1.3/System.Diagnostics.Tracing.dll": {} } }, - "System.Dynamic.Runtime/4.0.11": { + "System.Dynamic.Runtime/4.3.0": { "type": "package", "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Globalization": "4.0.11", - "System.Linq": "4.1.0", - "System.Linq.Expressions": "4.1.0", - "System.ObjectModel": "4.0.12", - "System.Reflection": "4.1.0", - "System.Reflection.Emit": "4.0.1", - "System.Reflection.Emit.ILGeneration": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Reflection.TypeExtensions": "4.1.0", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Threading": "4.0.11" + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" }, "compile": { "ref/netstandard1.3/System.Dynamic.Runtime.dll": {} @@ -292,12 +291,12 @@ "lib/netstandard1.3/System.Dynamic.Runtime.dll": {} } }, - "System.Globalization/4.0.11": { + "System.Globalization/4.3.0": { "type": "package", "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0" + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" }, "compile": { "ref/netstandard1.3/System.Globalization.dll": {} @@ -315,14 +314,14 @@ "ref/netstandard1.3/System.Globalization.Calendars.dll": {} } }, - "System.IO/4.1.0": { + "System.IO/4.3.0": { "type": "package", "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0", - "System.Text.Encoding": "4.0.11", - "System.Threading.Tasks": "4.0.11" + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" }, "compile": { "ref/netstandard1.3/System.IO.dll": {} @@ -408,21 +407,21 @@ "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} } }, - "System.Linq/4.1.0": { + "System.Linq/4.3.0": { "type": "package", "dependencies": { - "System.Collections": "4.0.11", - "System.Runtime": "4.1.0" + "System.Collections": "4.3.0", + "System.Runtime": "4.3.0" }, "compile": { "ref/netstandard1.0/System.Linq.dll": {} } }, - "System.Linq.Expressions/4.1.0": { + "System.Linq.Expressions/4.3.0": { "type": "package", "dependencies": { - "System.Reflection": "4.1.0", - "System.Runtime": "4.1.0" + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" }, "compile": { "ref/netstandard1.3/System.Linq.Expressions.dll": {} @@ -487,14 +486,14 @@ "ref/netstandard1.3/System.Net.Sockets.dll": {} } }, - "System.ObjectModel/4.0.12": { + "System.ObjectModel/4.3.0": { "type": "package", "dependencies": { - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Threading": "4.0.11" + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" }, "compile": { "ref/netstandard1.3/System.ObjectModel.dll": {} @@ -503,27 +502,27 @@ "lib/netstandard1.3/System.ObjectModel.dll": {} } }, - "System.Reflection/4.1.0": { + "System.Reflection/4.3.0": { "type": "package", "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.IO": "4.1.0", - "System.Reflection.Primitives": "4.0.1", - "System.Runtime": "4.1.0" + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" }, "compile": { "ref/netstandard1.3/System.Reflection.dll": {} } }, - "System.Reflection.Emit/4.0.1": { + "System.Reflection.Emit/4.3.0": { "type": "package", "dependencies": { - "System.IO": "4.1.0", - "System.Reflection": "4.1.0", - "System.Reflection.Emit.ILGeneration": "4.0.1", - "System.Reflection.Primitives": "4.0.1", - "System.Runtime": "4.1.0" + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" }, "compile": { "ref/netstandard1.1/_._": {} @@ -532,12 +531,12 @@ "lib/netstandard1.3/System.Reflection.Emit.dll": {} } }, - "System.Reflection.Emit.ILGeneration/4.0.1": { + "System.Reflection.Emit.ILGeneration/4.3.0": { "type": "package", "dependencies": { - "System.Reflection": "4.1.0", - "System.Reflection.Primitives": "4.0.1", - "System.Runtime": "4.1.0" + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" }, "compile": { "ref/netstandard1.0/_._": {} @@ -546,93 +545,93 @@ "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {} } }, - "System.Reflection.Extensions/4.0.1": { + "System.Reflection.Extensions/4.3.0": { "type": "package", "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Reflection": "4.1.0", - "System.Runtime": "4.1.0" + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" }, "compile": { "ref/netstandard1.0/System.Reflection.Extensions.dll": {} } }, - "System.Reflection.Primitives/4.0.1": { + "System.Reflection.Primitives/4.3.0": { "type": "package", "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0" + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" }, "compile": { "ref/netstandard1.0/System.Reflection.Primitives.dll": {} } }, - "System.Reflection.TypeExtensions/4.1.0": { + "System.Reflection.TypeExtensions/4.3.0": { "type": "package", "dependencies": { - "System.Reflection": "4.1.0", - "System.Runtime": "4.1.0" + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" }, "compile": { "ref/netstandard1.3/System.Reflection.TypeExtensions.dll": {} } }, - "System.Resources.ResourceManager/4.0.1": { + "System.Resources.ResourceManager/4.3.0": { "type": "package", "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Globalization": "4.0.11", - "System.Reflection": "4.1.0", - "System.Runtime": "4.1.0" + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" }, "compile": { "ref/netstandard1.0/System.Resources.ResourceManager.dll": {} } }, - "System.Runtime/4.1.0": { + "System.Runtime/4.3.0": { "type": "package", "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1" + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" }, "compile": { "ref/netstandard1.3/System.Runtime.dll": {} } }, - "System.Runtime.Extensions/4.1.0": { + "System.Runtime.Extensions/4.3.0": { "type": "package", "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0" + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" }, "compile": { "ref/netstandard1.3/System.Runtime.Extensions.dll": {} } }, - "System.Runtime.Handles/4.0.1": { + "System.Runtime.Handles/4.3.0": { "type": "package", "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0" + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" }, "compile": { "ref/netstandard1.3/System.Runtime.Handles.dll": {} } }, - "System.Runtime.InteropServices/4.1.0": { + "System.Runtime.InteropServices/4.3.0": { "type": "package", "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Reflection": "4.1.0", - "System.Reflection.Primitives": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Handles": "4.0.1" + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" }, "compile": { "ref/netstandard1.3/System.Runtime.InteropServices.dll": {} @@ -749,12 +748,12 @@ "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll": {} } }, - "System.Text.Encoding/4.0.11": { + "System.Text.Encoding/4.3.0": { "type": "package", "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0" + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" }, "compile": { "ref/netstandard1.3/System.Text.Encoding.dll": {} @@ -781,11 +780,11 @@ "ref/netstandard1.3/System.Text.RegularExpressions.dll": {} } }, - "System.Threading/4.0.11": { + "System.Threading/4.3.0": { "type": "package", "dependencies": { - "System.Runtime": "4.1.0", - "System.Threading.Tasks": "4.0.11" + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" }, "compile": { "ref/netstandard1.3/System.Threading.dll": {} @@ -794,12 +793,12 @@ "lib/netstandard1.3/System.Threading.dll": {} } }, - "System.Threading.Tasks/4.0.11": { + "System.Threading.Tasks/4.3.0": { "type": "package", "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1", - "Microsoft.NETCore.Targets": "1.0.1", - "System.Runtime": "4.1.0" + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" }, "compile": { "ref/netstandard1.3/System.Threading.Tasks.dll": {} @@ -882,12 +881,12 @@ } }, "libraries": { - "Microsoft.CSharp/4.0.1": { - "sha512": "17h8b5mXa87XYKrrVqdgZ38JefSUqLChUQpXgSnpzsM0nDOhE40FTeNWOJ/YmySGV6tG6T8+hjz6vxbknHJr6A==", + "Microsoft.CSharp/4.3.0": { + "sha512": "P+MBhIM0YX+JqROuf7i306ZLJEjQYA9uUyRDE+OqwUI5sh41e2ZbPQV3LfAPh+29cmceE1pUffXsGfR4eMY3KA==", "type": "package", - "path": "Microsoft.CSharp/4.0.1", + "path": "Microsoft.CSharp/4.3.0", "files": [ - "Microsoft.CSharp.4.0.1.nupkg.sha512", + "Microsoft.CSharp.4.3.0.nupkg.sha512", "Microsoft.CSharp.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -939,12 +938,12 @@ "ref/xamarinwatchos10/_._" ] }, - "Microsoft.NETCore.Platforms/1.0.1": { - "sha512": "2G6OjjJzwBfNOO8myRV/nFrbTw5iA+DEm0N+qUqhrOmaVtn4pC77h38I1jsXGw5VH55+dPfQsqHD0We9sCl9FQ==", + "Microsoft.NETCore.Platforms/1.1.0": { + "sha512": "kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==", "type": "package", - "path": "Microsoft.NETCore.Platforms/1.0.1", + "path": "Microsoft.NETCore.Platforms/1.1.0", "files": [ - "Microsoft.NETCore.Platforms.1.0.1.nupkg.sha512", + "Microsoft.NETCore.Platforms.1.1.0.nupkg.sha512", "Microsoft.NETCore.Platforms.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -952,12 +951,12 @@ "runtime.json" ] }, - "Microsoft.NETCore.Targets/1.0.1": { - "sha512": "rkn+fKobF/cbWfnnfBOQHKVKIOpxMZBvlSHkqDWgBpwGDcLRduvs3D9OLGeV6GWGvVwNlVi2CBbTjuPmtHvyNw==", + "Microsoft.NETCore.Targets/1.1.0": { + "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==", "type": "package", - "path": "Microsoft.NETCore.Targets/1.0.1", + "path": "Microsoft.NETCore.Targets/1.1.0", "files": [ - "Microsoft.NETCore.Targets.1.0.1.nupkg.sha512", + "Microsoft.NETCore.Targets.1.1.0.nupkg.sha512", "Microsoft.NETCore.Targets.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -1114,12 +1113,12 @@ "lib/netstandard1.1/System.Buffers.dll" ] }, - "System.Collections/4.0.11": { - "sha512": "YUJGz6eFKqS0V//mLt25vFGrrCvOnsXjlvFQs+KimpwNxug9x0Pzy4PlFMU3Q2IzqAa9G2L4LsK3+9vCBK7oTg==", + "System.Collections/4.3.0": { + "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", "type": "package", - "path": "System.Collections/4.0.11", + "path": "System.Collections/4.3.0", "files": [ - "System.Collections.4.0.11.nupkg.sha512", + "System.Collections.4.3.0.nupkg.sha512", "System.Collections.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -1282,12 +1281,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Diagnostics.Debug/4.0.11": { - "sha512": "w5U95fVKHY4G8ASs/K5iK3J5LY+/dLFd4vKejsnI/ZhBsWS9hQakfx3Zr7lRWKg4tAw9r4iktyvsTagWkqYCiw==", + "System.Diagnostics.Debug/4.3.0": { + "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", "type": "package", - "path": "System.Diagnostics.Debug/4.0.11", + "path": "System.Diagnostics.Debug/4.3.0", "files": [ - "System.Diagnostics.Debug.4.0.11.nupkg.sha512", + "System.Diagnostics.Debug.4.3.0.nupkg.sha512", "System.Diagnostics.Debug.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -1510,12 +1509,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Dynamic.Runtime/4.0.11": { - "sha512": "db34f6LHYM0U0JpE+sOmjar27BnqTVkbLJhgfwMpTdgTigG/Hna3m2MYVwnFzGGKnEJk2UXFuoVTr8WUbU91/A==", + "System.Dynamic.Runtime/4.3.0": { + "sha512": "SNVi1E/vfWUAs/WYKhE9+qlS6KqK0YVhnlT0HQtr8pMIA8YX3lwy3uPMownDwdYISBdmAF/2holEIldVp85Wag==", "type": "package", - "path": "System.Dynamic.Runtime/4.0.11", + "path": "System.Dynamic.Runtime/4.3.0", "files": [ - "System.Dynamic.Runtime.4.0.11.nupkg.sha512", + "System.Dynamic.Runtime.4.3.0.nupkg.sha512", "System.Dynamic.Runtime.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -1579,12 +1578,12 @@ "runtimes/aot/lib/netcore50/System.Dynamic.Runtime.dll" ] }, - "System.Globalization/4.0.11": { - "sha512": "B95h0YLEL2oSnwF/XjqSWKnwKOy/01VWkNlsCeMTFJLLabflpGV26nK164eRs5GiaRSBGpOxQ3pKoSnnyZN5pg==", + "System.Globalization/4.3.0": { + "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", "type": "package", - "path": "System.Globalization/4.0.11", + "path": "System.Globalization/4.3.0", "files": [ - "System.Globalization.4.0.11.nupkg.sha512", + "System.Globalization.4.3.0.nupkg.sha512", "System.Globalization.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -1681,12 +1680,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.IO/4.1.0": { - "sha512": "3KlTJceQc3gnGIaHZ7UBZO26SHL1SHE4ddrmiwumFnId+CEHP+O8r386tZKaE6zlk5/mF8vifMBzHj9SaXN+mQ==", + "System.IO/4.3.0": { + "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", "type": "package", - "path": "System.IO/4.1.0", + "path": "System.IO/4.3.0", "files": [ - "System.IO.4.1.0.nupkg.sha512", + "System.IO.4.3.0.nupkg.sha512", "System.IO.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -1939,12 +1938,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Linq/4.1.0": { - "sha512": "bQ0iYFOQI0nuTnt+NQADns6ucV4DUvMdwN6CbkB1yj8i7arTGiTN5eok1kQwdnnNWSDZfIUySQY+J3d5KjWn0g==", + "System.Linq/4.3.0": { + "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", "type": "package", - "path": "System.Linq/4.1.0", + "path": "System.Linq/4.3.0", "files": [ - "System.Linq.4.1.0.nupkg.sha512", + "System.Linq.4.3.0.nupkg.sha512", "System.Linq.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -2009,12 +2008,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Linq.Expressions/4.1.0": { - "sha512": "I+y02iqkgmCAyfbqOmSDOgqdZQ5tTj80Akm5BPSS8EeB0VGWdy6X1KCoYe8Pk6pwDoAKZUOdLVxnTJcExiv5zw==", + "System.Linq.Expressions/4.3.0": { + "sha512": "PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==", "type": "package", - "path": "System.Linq.Expressions/4.1.0", + "path": "System.Linq.Expressions/4.3.0", "files": [ - "System.Linq.Expressions.4.1.0.nupkg.sha512", + "System.Linq.Expressions.4.3.0.nupkg.sha512", "System.Linq.Expressions.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -2284,12 +2283,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.ObjectModel/4.0.12": { - "sha512": "tAgJM1xt3ytyMoW4qn4wIqgJYm7L7TShRZG4+Q4Qsi2PCcj96pXN7nRywS9KkB3p/xDUjc2HSwP9SROyPYDYKQ==", + "System.ObjectModel/4.3.0": { + "sha512": "bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==", "type": "package", - "path": "System.ObjectModel/4.0.12", + "path": "System.ObjectModel/4.3.0", "files": [ - "System.ObjectModel.4.0.12.nupkg.sha512", + "System.ObjectModel.4.3.0.nupkg.sha512", "System.ObjectModel.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -2352,12 +2351,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Reflection/4.1.0": { - "sha512": "JCKANJ0TI7kzoQzuwB/OoJANy1Lg338B6+JVacPl4TpUwi3cReg3nMLplMq2uqYfHFQpKIlHAUVAJlImZz/4ng==", + "System.Reflection/4.3.0": { + "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", "type": "package", - "path": "System.Reflection/4.1.0", + "path": "System.Reflection/4.3.0", "files": [ - "System.Reflection.4.1.0.nupkg.sha512", + "System.Reflection.4.3.0.nupkg.sha512", "System.Reflection.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -2431,20 +2430,24 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Reflection.Emit/4.0.1": { - "sha512": "P2wqAj72fFjpP6wb9nSfDqNBMab+2ovzSDzUZK7MVIm54tBJEPr9jWfSjjoTpPwj1LeKcmX3vr0ttyjSSFM47g==", + "System.Reflection.Emit/4.3.0": { + "sha512": "228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==", "type": "package", - "path": "System.Reflection.Emit/4.0.1", + "path": "System.Reflection.Emit/4.3.0", "files": [ - "System.Reflection.Emit.4.0.1.nupkg.sha512", + "System.Reflection.Emit.4.3.0.nupkg.sha512", "System.Reflection.Emit.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", "lib/MonoAndroid10/_._", + "lib/monotouch10/_._", "lib/net45/_._", "lib/netcore50/System.Reflection.Emit.dll", "lib/netstandard1.3/System.Reflection.Emit.dll", + "lib/xamarinios10/_._", "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", "ref/MonoAndroid10/_._", "ref/net45/_._", "ref/netstandard1.1/System.Reflection.Emit.dll", @@ -2461,20 +2464,28 @@ "ref/xamarinmac20/_._" ] }, - "System.Reflection.Emit.ILGeneration/4.0.1": { - "sha512": "Ov6dU8Bu15Bc7zuqttgHF12J5lwSWyTf1S+FJouUXVMSqImLZzYaQ+vRr1rQ0OZ0HqsrwWl4dsKHELckQkVpgA==", + "System.Reflection.Emit.ILGeneration/4.3.0": { + "sha512": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==", "type": "package", - "path": "System.Reflection.Emit.ILGeneration/4.0.1", + "path": "System.Reflection.Emit.ILGeneration/4.3.0", "files": [ - "System.Reflection.Emit.ILGeneration.4.0.1.nupkg.sha512", + "System.Reflection.Emit.ILGeneration.4.3.0.nupkg.sha512", "System.Reflection.Emit.ILGeneration.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", "lib/net45/_._", "lib/netcore50/System.Reflection.Emit.ILGeneration.dll", "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll", "lib/portable-net45+wp8/_._", "lib/wp80/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", "ref/net45/_._", "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll", "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml", @@ -2489,15 +2500,19 @@ "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml", "ref/portable-net45+wp8/_._", "ref/wp80/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", "runtimes/aot/lib/netcore50/_._" ] }, - "System.Reflection.Extensions/4.0.1": { - "sha512": "GYrtRsZcMuHF3sbmRHfMYpvxZoIN2bQGrYGerUiWLEkqdEUQZhH3TRSaC/oI4wO0II1RKBPlpIa1TOMxIcOOzQ==", + "System.Reflection.Extensions/4.3.0": { + "sha512": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==", "type": "package", - "path": "System.Reflection.Extensions/4.0.1", + "path": "System.Reflection.Extensions/4.3.0", "files": [ - "System.Reflection.Extensions.4.0.1.nupkg.sha512", + "System.Reflection.Extensions.4.3.0.nupkg.sha512", "System.Reflection.Extensions.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -2547,12 +2562,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Reflection.Primitives/4.0.1": { - "sha512": "4inTox4wTBaDhB7V3mPvp9XlCbeGYWVEM9/fXALd52vNEAVisc1BoVWQPuUuD0Ga//dNbA/WeMy9u9mzLxGTHQ==", + "System.Reflection.Primitives/4.3.0": { + "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", "type": "package", - "path": "System.Reflection.Primitives/4.0.1", + "path": "System.Reflection.Primitives/4.3.0", "files": [ - "System.Reflection.Primitives.4.0.1.nupkg.sha512", + "System.Reflection.Primitives.4.3.0.nupkg.sha512", "System.Reflection.Primitives.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -2602,12 +2617,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Reflection.TypeExtensions/4.1.0": { - "sha512": "tsQ/ptQ3H5FYfON8lL4MxRk/8kFyE0A+tGPXmVP967cT/gzLHYxIejIYSxp4JmIeFHVP78g/F2FE1mUUTbDtrg==", + "System.Reflection.TypeExtensions/4.3.0": { + "sha512": "7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==", "type": "package", - "path": "System.Reflection.TypeExtensions/4.1.0", + "path": "System.Reflection.TypeExtensions/4.3.0", "files": [ - "System.Reflection.TypeExtensions.4.1.0.nupkg.sha512", + "System.Reflection.TypeExtensions.4.3.0.nupkg.sha512", "System.Reflection.TypeExtensions.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -2654,12 +2669,12 @@ "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll" ] }, - "System.Resources.ResourceManager/4.0.1": { - "sha512": "TxwVeUNoTgUOdQ09gfTjvW411MF+w9MBYL7AtNVc+HtBCFlutPLhUCdZjNkjbhj3bNQWMdHboF0KIWEOjJssbA==", + "System.Resources.ResourceManager/4.3.0": { + "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", "type": "package", - "path": "System.Resources.ResourceManager/4.0.1", + "path": "System.Resources.ResourceManager/4.3.0", "files": [ - "System.Resources.ResourceManager.4.0.1.nupkg.sha512", + "System.Resources.ResourceManager.4.3.0.nupkg.sha512", "System.Resources.ResourceManager.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -2709,12 +2724,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Runtime/4.1.0": { - "sha512": "v6c/4Yaa9uWsq+JMhnOFewrYkgdNHNG2eMKuNqRn8P733rNXeRCGvV5FkkjBXn2dbVkPXOsO0xjsEeM1q2zC0g==", + "System.Runtime/4.3.0": { + "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", "type": "package", - "path": "System.Runtime/4.1.0", + "path": "System.Runtime/4.3.0", "files": [ - "System.Runtime.4.1.0.nupkg.sha512", + "System.Runtime.4.3.0.nupkg.sha512", "System.Runtime.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -2799,12 +2814,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Runtime.Extensions/4.1.0": { - "sha512": "CUOHjTT/vgP0qGW22U4/hDlOqXmcPq5YicBaXdUR2UiUoLwBT+olO6we4DVbq57jeX5uXH2uerVZhf0qGj+sVQ==", + "System.Runtime.Extensions/4.3.0": { + "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", "type": "package", - "path": "System.Runtime.Extensions/4.1.0", + "path": "System.Runtime.Extensions/4.3.0", "files": [ - "System.Runtime.Extensions.4.1.0.nupkg.sha512", + "System.Runtime.Extensions.4.3.0.nupkg.sha512", "System.Runtime.Extensions.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -2878,12 +2893,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Runtime.Handles/4.0.1": { - "sha512": "nCJvEKguXEvk2ymk1gqj625vVnlK3/xdGzx0vOKicQkoquaTBJTP13AIYkocSUwHCLNBwUbXTqTWGDxBTWpt7g==", + "System.Runtime.Handles/4.3.0": { + "sha512": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==", "type": "package", - "path": "System.Runtime.Handles/4.0.1", + "path": "System.Runtime.Handles/4.3.0", "files": [ - "System.Runtime.Handles.4.0.1.nupkg.sha512", + "System.Runtime.Handles.4.3.0.nupkg.sha512", "System.Runtime.Handles.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -2914,12 +2929,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Runtime.InteropServices/4.1.0": { - "sha512": "16eu3kjHS633yYdkjwShDHZLRNMKVi/s0bY8ODiqJ2RfMhDMAwxZaUaWVnZ2P71kr/or+X9o/xFWtNqz8ivieQ==", + "System.Runtime.InteropServices/4.3.0": { + "sha512": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==", "type": "package", - "path": "System.Runtime.InteropServices/4.1.0", + "path": "System.Runtime.InteropServices/4.3.0", "files": [ - "System.Runtime.InteropServices.4.1.0.nupkg.sha512", + "System.Runtime.InteropServices.4.3.0.nupkg.sha512", "System.Runtime.InteropServices.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -2927,6 +2942,7 @@ "lib/MonoTouch10/_._", "lib/net45/_._", "lib/net462/System.Runtime.InteropServices.dll", + "lib/net463/System.Runtime.InteropServices.dll", "lib/portable-net45+win8+wpa81/_._", "lib/win8/_._", "lib/wpa81/_._", @@ -2938,6 +2954,7 @@ "ref/MonoTouch10/_._", "ref/net45/_._", "ref/net462/System.Runtime.InteropServices.dll", + "ref/net463/System.Runtime.InteropServices.dll", "ref/netcore50/System.Runtime.InteropServices.dll", "ref/netcore50/System.Runtime.InteropServices.xml", "ref/netcore50/de/System.Runtime.InteropServices.xml", @@ -2949,6 +2966,7 @@ "ref/netcore50/ru/System.Runtime.InteropServices.xml", "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml", "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml", + "ref/netcoreapp1.1/System.Runtime.InteropServices.dll", "ref/netstandard1.1/System.Runtime.InteropServices.dll", "ref/netstandard1.1/System.Runtime.InteropServices.xml", "ref/netstandard1.1/de/System.Runtime.InteropServices.xml", @@ -3247,12 +3265,12 @@ "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll" ] }, - "System.Text.Encoding/4.0.11": { - "sha512": "U3gGeMlDZXxCEiY4DwVLSacg+DFWCvoiX+JThA/rvw37Sqrku7sEFeVBBBMBnfB6FeZHsyDx85HlKL19x0HtZA==", + "System.Text.Encoding/4.3.0": { + "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", "type": "package", - "path": "System.Text.Encoding/4.0.11", + "path": "System.Text.Encoding/4.3.0", "files": [ - "System.Text.Encoding.4.0.11.nupkg.sha512", + "System.Text.Encoding.4.3.0.nupkg.sha512", "System.Text.Encoding.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -3460,12 +3478,12 @@ "ref/xamarinwatchos10/_._" ] }, - "System.Threading/4.0.11": { - "sha512": "N+3xqIcg3VDKyjwwCGaZ9HawG9aC6cSDI+s7ROma310GQo8vilFZa86hqKppwTHleR/G0sfOzhvgnUxWCR/DrQ==", + "System.Threading/4.3.0": { + "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", "type": "package", - "path": "System.Threading/4.0.11", + "path": "System.Threading/4.3.0", "files": [ - "System.Threading.4.0.11.nupkg.sha512", + "System.Threading.4.3.0.nupkg.sha512", "System.Threading.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -3529,12 +3547,12 @@ "runtimes/aot/lib/netcore50/System.Threading.dll" ] }, - "System.Threading.Tasks/4.0.11": { - "sha512": "k1S4Gc6IGwtHGT8188RSeGaX86Qw/wnrgNLshJvsdNUOPP9etMmo8S07c+UlOAx4K/xLuN9ivA1bD0LVurtIxQ==", + "System.Threading.Tasks/4.3.0": { + "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", "type": "package", - "path": "System.Threading.Tasks/4.0.11", + "path": "System.Threading.Tasks/4.3.0", "files": [ - "System.Threading.Tasks.4.0.11.nupkg.sha512", + "System.Threading.Tasks.4.3.0.nupkg.sha512", "System.Threading.Tasks.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -3802,10 +3820,10 @@ }, "projectFileDependencyGroups": { "": [ - "Microsoft.CSharp >= 4.0.1", + "Microsoft.CSharp >= 4.3.0", "NETStandard.Library >= 1.6.0", - "System.Reflection >= 4.1.0", - "System.Reflection.TypeExtensions >= 4.1.0" + "System.Reflection >= 4.3.0", + "System.Reflection.TypeExtensions >= 4.3.0" ], ".NETStandard,Version=v1.3": [] }, diff --git a/Tizen.NUI/bin/Debug/Tizen.Applications.dll b/Tizen.NUI/bin/Debug/Tizen.Applications.dll new file mode 100755 index 0000000..3a9c4cd Binary files /dev/null and b/Tizen.NUI/bin/Debug/Tizen.Applications.dll differ diff --git a/Tizen.NUI/obj/Debug/ClassLibrary1.csproj.FileListAbsolute.txt b/Tizen.NUI/obj/Debug/ClassLibrary1.csproj.FileListAbsolute.txt deleted file mode 100755 index 6e19498..0000000 --- a/Tizen.NUI/obj/Debug/ClassLibrary1.csproj.FileListAbsolute.txt +++ /dev/null @@ -1,10 +0,0 @@ -D:\ssong2best\work\2017\dali-csharp\VS_WorkSpace\dali-csharp-0102\ClassLibrary1\bin\Debug\dali-csharp-binder.dll -D:\ssong2best\work\2017\dali-csharp\VS_WorkSpace\dali-csharp-0102\ClassLibrary1\bin\Debug\dali-csharp-binder.pdb -D:\ssong2best\work\2017\dali-csharp\VS_WorkSpace\dali-csharp-0102\ClassLibrary1\obj\Debug\dali-csharp-binder.dll -D:\ssong2best\work\2017\dali-csharp\VS_WorkSpace\dali-csharp-0102\ClassLibrary1\obj\Debug\dali-csharp-binder.pdb -D:\ssong2best\work\2017\dali-csharp\VS_WorkSpace\dali-csharp-0102\ClassLibrary1\obj\Debug\ClassLibrary1.csprojResolveAssemblyReference.cache -L:\work\git\csharp\2\refer\test-dali-1\dali-test\bin\Debug\dali-csharp-binder.dll -L:\work\git\csharp\2\refer\test-dali-1\dali-test\bin\Debug\dali-csharp-binder.pdb -L:\work\git\csharp\2\refer\test-dali-1\dali-test\obj\Debug\ClassLibrary1.csprojResolveAssemblyReference.cache -L:\work\git\csharp\2\refer\test-dali-1\dali-test\obj\Debug\dali-csharp-binder.dll -L:\work\git\csharp\2\refer\test-dali-1\dali-test\obj\Debug\dali-csharp-binder.pdb diff --git a/Tizen.NUI/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/Tizen.NUI/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache new file mode 100755 index 0000000..14e1eed Binary files /dev/null and b/Tizen.NUI/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache differ diff --git a/Tizen.NUI/obj/Debug/dali-csharp-binder.dll b/Tizen.NUI/obj/Debug/dali-csharp-binder.dll deleted file mode 100755 index 61b8e69..0000000 Binary files a/Tizen.NUI/obj/Debug/dali-csharp-binder.dll and /dev/null differ diff --git a/Tizen.NUI/obj/Debug/dali-csharp-binder.pdb b/Tizen.NUI/obj/Debug/dali-csharp-binder.pdb deleted file mode 100755 index ba0e4bb..0000000 Binary files a/Tizen.NUI/obj/Debug/dali-csharp-binder.pdb and /dev/null differ diff --git a/Tizen.NUI/src/internal/AccessibilityActionScrollSignal.cs b/Tizen.NUI/src/internal/AccessibilityActionScrollSignal.cs deleted file mode 100755 index cfae9dd..0000000 --- a/Tizen.NUI/src/internal/AccessibilityActionScrollSignal.cs +++ /dev/null @@ -1,89 +0,0 @@ -//------------------------------------------------------------------------------ -// -// -// This file was automatically generated by SWIG (http://www.swig.org). -// Version 3.0.9 -// -// Do not make changes to this file unless you know what you are doing--modify -// the SWIG interface file instead. -//------------------------------------------------------------------------------ - -namespace NUI { - -public class AccessibilityActionScrollSignal : global::System.IDisposable { - private global::System.Runtime.InteropServices.HandleRef swigCPtr; - protected bool swigCMemOwn; - - internal AccessibilityActionScrollSignal(global::System.IntPtr cPtr, bool cMemoryOwn) { - swigCMemOwn = cMemoryOwn; - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); - } - - internal static global::System.Runtime.InteropServices.HandleRef getCPtr(AccessibilityActionScrollSignal obj) { - return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; - } - - ~AccessibilityActionScrollSignal() { - DisposeQueue.Instance.Add(this); - } - - public virtual void Dispose() { - if (!Stage.IsInstalled()) { - DisposeQueue.Instance.Add(this); - return; - } - - lock(this) { - if (swigCPtr.Handle != global::System.IntPtr.Zero) { - if (swigCMemOwn) { - swigCMemOwn = false; - NDalicPINVOKE.delete_AccessibilityActionScrollSignal(swigCPtr); - } - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); - } - global::System.GC.SuppressFinalize(this); - } - } - - - internal bool Empty() { - bool ret = NDalicPINVOKE.AccessibilityActionScrollSignal_Empty(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - internal uint GetConnectionCount() { - uint ret = NDalicPINVOKE.AccessibilityActionScrollSignal_GetConnectionCount(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - internal void Connect(System.Delegate func) { -System.IntPtr ip = System.Runtime.InteropServices.Marshal.GetFunctionPointerForDelegate(func); - { - NDalicPINVOKE.AccessibilityActionScrollSignal_Connect(swigCPtr, new System.Runtime.InteropServices.HandleRef(this, ip)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - } - - internal void Disconnect(System.Delegate func) { -System.IntPtr ip = System.Runtime.InteropServices.Marshal.GetFunctionPointerForDelegate(func); - { - NDalicPINVOKE.AccessibilityActionScrollSignal_Disconnect(swigCPtr, new System.Runtime.InteropServices.HandleRef(this, ip)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - } - - internal bool Emit(AccessibilityManager arg1, TouchEvent arg2) { - bool ret = NDalicPINVOKE.AccessibilityActionScrollSignal_Emit(swigCPtr, AccessibilityManager.getCPtr(arg1), TouchEvent.getCPtr(arg2)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - internal AccessibilityActionScrollSignal() : this(NDalicPINVOKE.new_AccessibilityActionScrollSignal(), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - -} - -} diff --git a/Tizen.NUI/src/internal/AccessibilityActionSignal.cs b/Tizen.NUI/src/internal/AccessibilityActionSignal.cs index f10612e..e087fa5 100755 --- a/Tizen.NUI/src/internal/AccessibilityActionSignal.cs +++ b/Tizen.NUI/src/internal/AccessibilityActionSignal.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class AccessibilityActionSignal : global::System.IDisposable { private global::System.Runtime.InteropServices.HandleRef swigCPtr; @@ -46,19 +46,19 @@ public class AccessibilityActionSignal : global::System.IDisposable { } - internal bool Empty() { + public bool Empty() { bool ret = NDalicPINVOKE.AccessibilityActionSignal_Empty(swigCPtr); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } - internal uint GetConnectionCount() { + public uint GetConnectionCount() { uint ret = NDalicPINVOKE.AccessibilityActionSignal_GetConnectionCount(swigCPtr); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } - internal void Connect(System.Delegate func) { + public void Connect(System.Delegate func) { System.IntPtr ip = System.Runtime.InteropServices.Marshal.GetFunctionPointerForDelegate(func); { NDalicPINVOKE.AccessibilityActionSignal_Connect(swigCPtr, new System.Runtime.InteropServices.HandleRef(this, ip)); @@ -66,7 +66,7 @@ System.IntPtr ip = System.Runtime.InteropServices.Marshal.GetFunctionPointerForD } } - internal void Disconnect(System.Delegate func) { + public void Disconnect(System.Delegate func) { System.IntPtr ip = System.Runtime.InteropServices.Marshal.GetFunctionPointerForDelegate(func); { NDalicPINVOKE.AccessibilityActionSignal_Disconnect(swigCPtr, new System.Runtime.InteropServices.HandleRef(this, ip)); @@ -74,13 +74,13 @@ System.IntPtr ip = System.Runtime.InteropServices.Marshal.GetFunctionPointerForD } } - internal bool Emit(AccessibilityManager arg) { + public bool Emit(AccessibilityManager arg) { bool ret = NDalicPINVOKE.AccessibilityActionSignal_Emit(swigCPtr, AccessibilityManager.getCPtr(arg)); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } - internal AccessibilityActionSignal() : this(NDalicPINVOKE.new_AccessibilityActionSignal(), true) { + public AccessibilityActionSignal() : this(NDalicPINVOKE.new_AccessibilityActionSignal(), true) { if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } diff --git a/Tizen.NUI/src/internal/AccessibilityFocusOvershotSignal.cs b/Tizen.NUI/src/internal/AccessibilityFocusOvershotSignal.cs index d2c207f..69329e3 100755 --- a/Tizen.NUI/src/internal/AccessibilityFocusOvershotSignal.cs +++ b/Tizen.NUI/src/internal/AccessibilityFocusOvershotSignal.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class AccessibilityFocusOvershotSignal : global::System.IDisposable { private global::System.Runtime.InteropServices.HandleRef swigCPtr; @@ -46,19 +46,19 @@ public class AccessibilityFocusOvershotSignal : global::System.IDisposable { } - internal bool Empty() { + public bool Empty() { bool ret = NDalicPINVOKE.AccessibilityFocusOvershotSignal_Empty(swigCPtr); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } - internal uint GetConnectionCount() { + public uint GetConnectionCount() { uint ret = NDalicPINVOKE.AccessibilityFocusOvershotSignal_GetConnectionCount(swigCPtr); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } - internal void Connect(System.Delegate func) { + public void Connect(System.Delegate func) { System.IntPtr ip = System.Runtime.InteropServices.Marshal.GetFunctionPointerForDelegate(func); { NDalicPINVOKE.AccessibilityFocusOvershotSignal_Connect(swigCPtr, new System.Runtime.InteropServices.HandleRef(this, ip)); @@ -66,7 +66,7 @@ System.IntPtr ip = System.Runtime.InteropServices.Marshal.GetFunctionPointerForD } } - internal void Disconnect(System.Delegate func) { + public void Disconnect(System.Delegate func) { System.IntPtr ip = System.Runtime.InteropServices.Marshal.GetFunctionPointerForDelegate(func); { NDalicPINVOKE.AccessibilityFocusOvershotSignal_Disconnect(swigCPtr, new System.Runtime.InteropServices.HandleRef(this, ip)); @@ -74,12 +74,12 @@ System.IntPtr ip = System.Runtime.InteropServices.Marshal.GetFunctionPointerForD } } - internal void Emit(Actor arg1, AccessibilityManager.FocusOvershotDirection arg2) { + public void Emit(Actor arg1, AccessibilityManager.FocusOvershotDirection arg2) { NDalicPINVOKE.AccessibilityFocusOvershotSignal_Emit(swigCPtr, Actor.getCPtr(arg1), (int)arg2); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } - internal AccessibilityFocusOvershotSignal() : this(NDalicPINVOKE.new_AccessibilityFocusOvershotSignal(), true) { + public AccessibilityFocusOvershotSignal() : this(NDalicPINVOKE.new_AccessibilityFocusOvershotSignal(), true) { if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } diff --git a/Tizen.NUI/src/public/AccessibilityManager.cs b/Tizen.NUI/src/internal/AccessibilityManager.cs old mode 100644 new mode 100755 similarity index 92% rename from Tizen.NUI/src/public/AccessibilityManager.cs rename to Tizen.NUI/src/internal/AccessibilityManager.cs index 5afc2fc..dcfe800 --- a/Tizen.NUI/src/public/AccessibilityManager.cs +++ b/Tizen.NUI/src/internal/AccessibilityManager.cs @@ -8,12 +8,12 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { using System; using System.Runtime.InteropServices; - -public class AccessibilityManager : BaseHandle { + + public class AccessibilityManager : BaseHandle { private global::System.Runtime.InteropServices.HandleRef swigCPtr; internal AccessibilityManager(global::System.IntPtr cPtr, bool cMemoryOwn) : base(NDalicPINVOKE.AccessibilityManager_SWIGUpcast(cPtr), cMemoryOwn) { @@ -600,6 +600,8 @@ public class AccessibilityManager : BaseHandle { * @brief Event arguments that passed via ActionScroll signal * */ +/* + // To be replaced by a new event that takes Touch public class ActionScrollEventArgs : EventArgs { private AccessibilityManager _accessibilityManager; @@ -629,6 +631,7 @@ public class AccessibilityManager : BaseHandle { } } } +*/ /** * @brief Event arguments that passed via ActionPageUp signal @@ -723,138 +726,141 @@ public class AccessibilityManager : BaseHandle { [UnmanagedFunctionPointer(CallingConvention.StdCall)] private delegate bool StatusChangedEventCallbackDelegate(IntPtr accessibilityManager); - private EventHandlerWithReturnType _accessibilityManagerStatusChangedEventHandler; + private DaliEventHandlerWithReturnType _accessibilityManagerStatusChangedEventHandler; private StatusChangedEventCallbackDelegate _accessibilityManagerStatusChangedEventCallbackDelegate; [UnmanagedFunctionPointer(CallingConvention.StdCall)] private delegate bool ActionNextEventCallbackDelegate(IntPtr accessibilityManager); - private EventHandlerWithReturnType _accessibilityManagerActionNextEventHandler; + private DaliEventHandlerWithReturnType _accessibilityManagerActionNextEventHandler; private ActionNextEventCallbackDelegate _accessibilityManagerActionNextEventCallbackDelegate; [UnmanagedFunctionPointer(CallingConvention.StdCall)] private delegate bool ActionPreviousEventCallbackDelegate(IntPtr accessibilityManager); - private EventHandlerWithReturnType _accessibilityManagerActionPreviousEventHandler; + private DaliEventHandlerWithReturnType _accessibilityManagerActionPreviousEventHandler; private ActionPreviousEventCallbackDelegate _accessibilityManagerActionPreviousEventCallbackDelegate; [UnmanagedFunctionPointer(CallingConvention.StdCall)] private delegate bool ActionActivateEventCallbackDelegate(IntPtr accessibilityManager); - private EventHandlerWithReturnType _accessibilityManagerActionActivateEventHandler; + private DaliEventHandlerWithReturnType _accessibilityManagerActionActivateEventHandler; private ActionActivateEventCallbackDelegate _accessibilityManagerActionActivateEventCallbackDelegate; [UnmanagedFunctionPointer(CallingConvention.StdCall)] private delegate bool ActionReadEventCallbackDelegate(IntPtr accessibilityManager); - private EventHandlerWithReturnType _accessibilityManagerActionReadEventHandler; + private DaliEventHandlerWithReturnType _accessibilityManagerActionReadEventHandler; private ActionReadEventCallbackDelegate _accessibilityManagerActionReadEventCallbackDelegate; [UnmanagedFunctionPointer(CallingConvention.StdCall)] private delegate bool ActionOverEventCallbackDelegate(IntPtr accessibilityManager); - private EventHandlerWithReturnType _accessibilityManagerActionOverEventHandler; + private DaliEventHandlerWithReturnType _accessibilityManagerActionOverEventHandler; private ActionOverEventCallbackDelegate _accessibilityManagerActionOverEventCallbackDelegate; [UnmanagedFunctionPointer(CallingConvention.StdCall)] private delegate bool ActionReadNextEventCallbackDelegate(IntPtr accessibilityManager); - private EventHandlerWithReturnType _accessibilityManagerActionReadNextEventHandler; + private DaliEventHandlerWithReturnType _accessibilityManagerActionReadNextEventHandler; private ActionReadNextEventCallbackDelegate _accessibilityManagerActionReadNextEventCallbackDelegate; [UnmanagedFunctionPointer(CallingConvention.StdCall)] private delegate bool ActionReadPreviousEventCallbackDelegate(IntPtr accessibilityManager); - private EventHandlerWithReturnType _accessibilityManagerActionReadPreviousEventHandler; + private DaliEventHandlerWithReturnType _accessibilityManagerActionReadPreviousEventHandler; private ActionReadPreviousEventCallbackDelegate _accessibilityManagerActionReadPreviousEventCallbackDelegate; [UnmanagedFunctionPointer(CallingConvention.StdCall)] private delegate bool ActionUpEventCallbackDelegate(IntPtr accessibilityManager); - private EventHandlerWithReturnType _accessibilityManagerActionUpEventHandler; + private DaliEventHandlerWithReturnType _accessibilityManagerActionUpEventHandler; private ActionUpEventCallbackDelegate _accessibilityManagerActionUpEventCallbackDelegate; [UnmanagedFunctionPointer(CallingConvention.StdCall)] private delegate bool ActionDownEventCallbackDelegate(IntPtr accessibilityManager); - private EventHandlerWithReturnType _accessibilityManagerActionDownEventHandler; + private DaliEventHandlerWithReturnType _accessibilityManagerActionDownEventHandler; private ActionDownEventCallbackDelegate _accessibilityManagerActionDownEventCallbackDelegate; [UnmanagedFunctionPointer(CallingConvention.StdCall)] private delegate bool ActionClearFocusEventCallbackDelegate(IntPtr accessibilityManager); - private EventHandlerWithReturnType _accessibilityManagerActionClearFocusEventHandler; + private DaliEventHandlerWithReturnType _accessibilityManagerActionClearFocusEventHandler; private ActionClearFocusEventCallbackDelegate _accessibilityManagerActionClearFocusEventCallbackDelegate; [UnmanagedFunctionPointer(CallingConvention.StdCall)] private delegate bool ActionBackEventCallbackDelegate(IntPtr accessibilityManager); - private EventHandlerWithReturnType _accessibilityManagerActionBackEventHandler; + private DaliEventHandlerWithReturnType _accessibilityManagerActionBackEventHandler; private ActionBackEventCallbackDelegate _accessibilityManagerActionBackEventCallbackDelegate; [UnmanagedFunctionPointer(CallingConvention.StdCall)] private delegate bool ActionScrollUpEventCallbackDelegate(IntPtr accessibilityManager); - private EventHandlerWithReturnType _accessibilityManagerActionScrollUpEventHandler; + private DaliEventHandlerWithReturnType _accessibilityManagerActionScrollUpEventHandler; private ActionScrollUpEventCallbackDelegate _accessibilityManagerActionScrollUpEventCallbackDelegate; [UnmanagedFunctionPointer(CallingConvention.StdCall)] private delegate bool ActionScrollDownEventCallbackDelegate(IntPtr accessibilityManager); - private EventHandlerWithReturnType _accessibilityManagerActionScrollDownEventHandler; + private DaliEventHandlerWithReturnType _accessibilityManagerActionScrollDownEventHandler; private ActionScrollDownEventCallbackDelegate _accessibilityManagerActionScrollDownEventCallbackDelegate; [UnmanagedFunctionPointer(CallingConvention.StdCall)] private delegate bool ActionPageLeftEventCallbackDelegate(IntPtr accessibilityManager); - private EventHandlerWithReturnType _accessibilityManagerActionPageLeftEventHandler; + private DaliEventHandlerWithReturnType _accessibilityManagerActionPageLeftEventHandler; private ActionPageLeftEventCallbackDelegate _accessibilityManagerActionPageLeftEventCallbackDelegate; [UnmanagedFunctionPointer(CallingConvention.StdCall)] private delegate bool ActionPageRightEventCallbackDelegate(IntPtr accessibilityManager); - private EventHandlerWithReturnType _accessibilityManagerActionPageRightEventHandler; + private DaliEventHandlerWithReturnType _accessibilityManagerActionPageRightEventHandler; private ActionPageRightEventCallbackDelegate _accessibilityManagerActionPageRightEventCallbackDelegate; [UnmanagedFunctionPointer(CallingConvention.StdCall)] private delegate bool ActionPageUpEventCallbackDelegate(IntPtr accessibilityManager); - private EventHandlerWithReturnType _accessibilityManagerActionPageUpEventHandler; + private DaliEventHandlerWithReturnType _accessibilityManagerActionPageUpEventHandler; private ActionPageUpEventCallbackDelegate _accessibilityManagerActionPageUpEventCallbackDelegate; [UnmanagedFunctionPointer(CallingConvention.StdCall)] private delegate bool ActionPageDownEventCallbackDelegate(IntPtr accessibilityManager); - private EventHandlerWithReturnType _accessibilityManagerActionPageDownEventHandler; + private DaliEventHandlerWithReturnType _accessibilityManagerActionPageDownEventHandler; private ActionPageDownEventCallbackDelegate _accessibilityManagerActionPageDownEventCallbackDelegate; [UnmanagedFunctionPointer(CallingConvention.StdCall)] private delegate bool ActionMoveToFirstEventCallbackDelegate(IntPtr accessibilityManager); - private EventHandlerWithReturnType _accessibilityManagerActionMoveToFirstEventHandler; + private DaliEventHandlerWithReturnType _accessibilityManagerActionMoveToFirstEventHandler; private ActionMoveToFirstEventCallbackDelegate _accessibilityManagerActionMoveToFirstEventCallbackDelegate; [UnmanagedFunctionPointer(CallingConvention.StdCall)] private delegate bool ActionMoveToLastEventCallbackDelegate(IntPtr accessibilityManager); - private EventHandlerWithReturnType _accessibilityManagerActionMoveToLastEventHandler; + private DaliEventHandlerWithReturnType _accessibilityManagerActionMoveToLastEventHandler; private ActionMoveToLastEventCallbackDelegate _accessibilityManagerActionMoveToLastEventCallbackDelegate; [UnmanagedFunctionPointer(CallingConvention.StdCall)] private delegate bool ActionReadFromTopEventCallbackDelegate(IntPtr accessibilityManager); - private EventHandlerWithReturnType _accessibilityManagerActionReadFromTopEventHandler; + private DaliEventHandlerWithReturnType _accessibilityManagerActionReadFromTopEventHandler; private ActionReadFromTopEventCallbackDelegate _accessibilityManagerActionReadFromTopEventCallbackDelegate; [UnmanagedFunctionPointer(CallingConvention.StdCall)] private delegate bool ActionReadFromNextEventCallbackDelegate(IntPtr accessibilityManager); - private EventHandlerWithReturnType _accessibilityManagerActionReadFromNextEventHandler; + private DaliEventHandlerWithReturnType _accessibilityManagerActionReadFromNextEventHandler; private ActionReadFromNextEventCallbackDelegate _accessibilityManagerActionReadFromNextEventCallbackDelegate; [UnmanagedFunctionPointer(CallingConvention.StdCall)] private delegate bool ActionZoomEventCallbackDelegate(IntPtr accessibilityManager); - private EventHandlerWithReturnType _accessibilityManagerActionZoomEventHandler; + private DaliEventHandlerWithReturnType _accessibilityManagerActionZoomEventHandler; private ActionZoomEventCallbackDelegate _accessibilityManagerActionZoomEventCallbackDelegate; [UnmanagedFunctionPointer(CallingConvention.StdCall)] private delegate bool ActionReadIndicatorInformationEventCallbackDelegate(IntPtr accessibilityManager); - private EventHandlerWithReturnType _accessibilityManagerActionReadIndicatorInformationEventHandler; + private DaliEventHandlerWithReturnType _accessibilityManagerActionReadIndicatorInformationEventHandler; private ActionReadIndicatorInformationEventCallbackDelegate _accessibilityManagerActionReadIndicatorInformationEventCallbackDelegate; [UnmanagedFunctionPointer(CallingConvention.StdCall)] private delegate bool ActionReadPauseResumeEventCallbackDelegate(IntPtr accessibilityManager); - private EventHandlerWithReturnType _accessibilityManagerActionReadPauseResumeEventHandler; + private DaliEventHandlerWithReturnType _accessibilityManagerActionReadPauseResumeEventHandler; private ActionReadPauseResumeEventCallbackDelegate _accessibilityManagerActionReadPauseResumeEventCallbackDelegate; [UnmanagedFunctionPointer(CallingConvention.StdCall)] private delegate bool ActionStartStopEventCallbackDelegate(IntPtr accessibilityManager); - private EventHandlerWithReturnType _accessibilityManagerActionStartStopEventHandler; + private DaliEventHandlerWithReturnType _accessibilityManagerActionStartStopEventHandler; private ActionStartStopEventCallbackDelegate _accessibilityManagerActionStartStopEventCallbackDelegate; +/* + // To be replaced by a new event that takes Touch [UnmanagedFunctionPointer(CallingConvention.StdCall)] private delegate bool ActionScrollEventCallbackDelegate(IntPtr accessibilityManager, IntPtr touchEvent); - private EventHandlerWithReturnType _accessibilityManagerActionScrollEventHandler; + private DaliEventHandlerWithReturnType _accessibilityManagerActionScrollEventHandler; private ActionScrollEventCallbackDelegate _accessibilityManagerActionScrollEventCallbackDelegate; +*/ [UnmanagedFunctionPointer(CallingConvention.StdCall)] private delegate void FocusChangedEventCallbackDelegate(IntPtr actor1, IntPtr actor2); @@ -871,7 +877,7 @@ public class AccessibilityManager : BaseHandle { private DaliEventHandler _accessibilityManagerFocusOvershotEventHandler; private FocusOvershotEventCallbackDelegate _accessibilityManagerFocusOvershotEventCallbackDelegate; - public event EventHandlerWithReturnType StatusChanged + public event DaliEventHandlerWithReturnType StatusChanged { add { @@ -918,7 +924,7 @@ public class AccessibilityManager : BaseHandle { return false; } - public event EventHandlerWithReturnType ActionNext + public event DaliEventHandlerWithReturnType ActionNext { add { @@ -965,7 +971,7 @@ public class AccessibilityManager : BaseHandle { return false; } - public event EventHandlerWithReturnType ActionPrevious + public event DaliEventHandlerWithReturnType ActionPrevious { add { @@ -1012,7 +1018,7 @@ public class AccessibilityManager : BaseHandle { return false; } - public event EventHandlerWithReturnType ActionActivate + public event DaliEventHandlerWithReturnType ActionActivate { add { @@ -1059,7 +1065,7 @@ public class AccessibilityManager : BaseHandle { return false; } - public event EventHandlerWithReturnType ActionRead + public event DaliEventHandlerWithReturnType ActionRead { add { @@ -1106,7 +1112,7 @@ public class AccessibilityManager : BaseHandle { return false; } - public event EventHandlerWithReturnType ActionOver + public event DaliEventHandlerWithReturnType ActionOver { add { @@ -1153,7 +1159,7 @@ public class AccessibilityManager : BaseHandle { return false; } - public event EventHandlerWithReturnType ActionReadNext + public event DaliEventHandlerWithReturnType ActionReadNext { add { @@ -1201,7 +1207,7 @@ public class AccessibilityManager : BaseHandle { } - public event EventHandlerWithReturnType ActionReadPrevious + public event DaliEventHandlerWithReturnType ActionReadPrevious { add { @@ -1248,7 +1254,7 @@ public class AccessibilityManager : BaseHandle { return false; } - public event EventHandlerWithReturnType ActionUp + public event DaliEventHandlerWithReturnType ActionUp { add { @@ -1295,7 +1301,7 @@ public class AccessibilityManager : BaseHandle { return false; } - public event EventHandlerWithReturnType ActionDown + public event DaliEventHandlerWithReturnType ActionDown { add { @@ -1342,7 +1348,7 @@ public class AccessibilityManager : BaseHandle { return false; } - public event EventHandlerWithReturnType ActionClearFocus + public event DaliEventHandlerWithReturnType ActionClearFocus { add { @@ -1389,7 +1395,7 @@ public class AccessibilityManager : BaseHandle { return false; } - public event EventHandlerWithReturnType ActionBack + public event DaliEventHandlerWithReturnType ActionBack { add { @@ -1436,7 +1442,7 @@ public class AccessibilityManager : BaseHandle { return false; } - public event EventHandlerWithReturnType ActionScrollUp + public event DaliEventHandlerWithReturnType ActionScrollUp { add { @@ -1483,7 +1489,7 @@ public class AccessibilityManager : BaseHandle { return false; } - public event EventHandlerWithReturnType ActionScrollDown + public event DaliEventHandlerWithReturnType ActionScrollDown { add { @@ -1531,7 +1537,7 @@ public class AccessibilityManager : BaseHandle { } - public event EventHandlerWithReturnType ActionPageLeft + public event DaliEventHandlerWithReturnType ActionPageLeft { add { @@ -1578,7 +1584,7 @@ public class AccessibilityManager : BaseHandle { return false; } - public event EventHandlerWithReturnType ActionPageRight + public event DaliEventHandlerWithReturnType ActionPageRight { add { @@ -1625,7 +1631,7 @@ public class AccessibilityManager : BaseHandle { return false; } - public event EventHandlerWithReturnType ActionPageUp + public event DaliEventHandlerWithReturnType ActionPageUp { add { @@ -1673,7 +1679,7 @@ public class AccessibilityManager : BaseHandle { } - public event EventHandlerWithReturnType ActionPageDown + public event DaliEventHandlerWithReturnType ActionPageDown { add { @@ -1721,7 +1727,7 @@ public class AccessibilityManager : BaseHandle { } - public event EventHandlerWithReturnType ActionMoveToFirst + public event DaliEventHandlerWithReturnType ActionMoveToFirst { add { @@ -1768,7 +1774,7 @@ public class AccessibilityManager : BaseHandle { return false; } - public event EventHandlerWithReturnType ActionMoveToLast + public event DaliEventHandlerWithReturnType ActionMoveToLast { add { @@ -1815,7 +1821,7 @@ public class AccessibilityManager : BaseHandle { return false; } - public event EventHandlerWithReturnType ActionReadFromTop + public event DaliEventHandlerWithReturnType ActionReadFromTop { add { @@ -1862,7 +1868,7 @@ public class AccessibilityManager : BaseHandle { return false; } - public event EventHandlerWithReturnType ActionReadFromNext + public event DaliEventHandlerWithReturnType ActionReadFromNext { add { @@ -1909,7 +1915,7 @@ public class AccessibilityManager : BaseHandle { return false; } - public event EventHandlerWithReturnType ActionZoom + public event DaliEventHandlerWithReturnType ActionZoom { add { @@ -1956,7 +1962,7 @@ public class AccessibilityManager : BaseHandle { return false; } - public event EventHandlerWithReturnType ActionReadIndicatorInformation + public event DaliEventHandlerWithReturnType ActionReadIndicatorInformation { add { @@ -2003,7 +2009,7 @@ public class AccessibilityManager : BaseHandle { return false; } - public event EventHandlerWithReturnType ActionReadPauseResume + public event DaliEventHandlerWithReturnType ActionReadPauseResume { add { @@ -2050,7 +2056,7 @@ public class AccessibilityManager : BaseHandle { return false; } - public event EventHandlerWithReturnType ActionStartStop + public event DaliEventHandlerWithReturnType ActionStartStop { add { @@ -2097,7 +2103,9 @@ public class AccessibilityManager : BaseHandle { return false; } - public event EventHandlerWithReturnType ActionScroll +/* + // To be replaced by a new event that takes Touch + public event DaliEventHandlerWithReturnType ActionScroll { add { @@ -2144,6 +2152,7 @@ public class AccessibilityManager : BaseHandle { } return false; } +*/ public event DaliEventHandler FocusChanged { @@ -2614,8 +2623,8 @@ public class AccessibilityManager : BaseHandle { return ret; } - public AccessibilityActionScrollSignal ActionScrollSignal() { - AccessibilityActionScrollSignal ret = new AccessibilityActionScrollSignal(NDalicPINVOKE.AccessibilityManager_ActionScrollSignal(swigCPtr), false); + public SWIGTYPE_p_Dali__SignalT_bool_fDali__Toolkit__AccessibilityManager_R_Dali__TouchEvent_const_RF_t ActionScrollSignal() { + SWIGTYPE_p_Dali__SignalT_bool_fDali__Toolkit__AccessibilityManager_R_Dali__TouchEvent_const_RF_t ret = new SWIGTYPE_p_Dali__SignalT_bool_fDali__Toolkit__AccessibilityManager_R_Dali__TouchEvent_const_RF_t(NDalicPINVOKE.AccessibilityManager_ActionScrollSignal(swigCPtr), false); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } diff --git a/Tizen.NUI/src/internal/ActorContainer.cs b/Tizen.NUI/src/internal/ActorContainer.cs index dd7e5d8..debd8eb 100755 --- a/Tizen.NUI/src/internal/ActorContainer.cs +++ b/Tizen.NUI/src/internal/ActorContainer.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class ActorContainer : global::System.IDisposable, global::System.Collections.IEnumerable , global::System.Collections.Generic.IEnumerable @@ -42,7 +42,7 @@ public class ActorContainer : global::System.IDisposable, global::System.Collect } } - internal ActorContainer(global::System.Collections.ICollection c) : this() { + public ActorContainer(global::System.Collections.ICollection c) : this() { if (c == null) throw new global::System.ArgumentNullException("c"); foreach (Actor element in c) { @@ -50,19 +50,19 @@ public class ActorContainer : global::System.IDisposable, global::System.Collect } } - internal bool IsFixedSize { + public bool IsFixedSize { get { return false; } } - internal bool IsReadOnly { + public bool IsReadOnly { get { return false; } } - internal Actor this[int index] { + public Actor this[int index] { get { return getitem(index); } @@ -71,7 +71,7 @@ public class ActorContainer : global::System.IDisposable, global::System.Collect } } - internal int Capacity { + public int Capacity { get { return (int)capacity(); } @@ -82,29 +82,29 @@ public class ActorContainer : global::System.IDisposable, global::System.Collect } } - internal int Count { + public int Count { get { return (int)size(); } } - internal bool IsSynchronized { + public bool IsSynchronized { get { return false; } } - internal void CopyTo(Actor[] array) + public void CopyTo(Actor[] array) { CopyTo(0, array, 0, this.Count); } - internal void CopyTo(Actor[] array, int arrayIndex) + public void CopyTo(Actor[] array, int arrayIndex) { CopyTo(0, array, arrayIndex, this.Count); } - internal void CopyTo(int index, Actor[] array, int arrayIndex, int count) + public void CopyTo(int index, Actor[] array, int arrayIndex, int count) { if (array == null) throw new global::System.ArgumentNullException("array"); @@ -130,7 +130,7 @@ public class ActorContainer : global::System.IDisposable, global::System.Collect return new ActorContainerEnumerator(this); } - internal ActorContainerEnumerator GetEnumerator() { + public ActorContainerEnumerator GetEnumerator() { return new ActorContainerEnumerator(this); } @@ -200,12 +200,12 @@ public class ActorContainer : global::System.IDisposable, global::System.Collect } } - internal void Clear() { + public void Clear() { NDalicPINVOKE.ActorContainer_Clear(swigCPtr); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } - internal void Add(Actor x) { + public void Add(Actor x) { NDalicPINVOKE.ActorContainer_Add(swigCPtr, Actor.getCPtr(x)); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } @@ -227,15 +227,15 @@ public class ActorContainer : global::System.IDisposable, global::System.Collect if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } - internal ActorContainer() : this(NDalicPINVOKE.new_ActorContainer__SWIG_0(), true) { + public ActorContainer() : this(NDalicPINVOKE.new_ActorContainer__SWIG_0(), true) { if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } - internal ActorContainer(ActorContainer other) : this(NDalicPINVOKE.new_ActorContainer__SWIG_1(ActorContainer.getCPtr(other)), true) { + public ActorContainer(ActorContainer other) : this(NDalicPINVOKE.new_ActorContainer__SWIG_1(ActorContainer.getCPtr(other)), true) { if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } - internal ActorContainer(int capacity) : this(NDalicPINVOKE.new_ActorContainer__SWIG_2(capacity), true) { + public ActorContainer(int capacity) : this(NDalicPINVOKE.new_ActorContainer__SWIG_2(capacity), true) { if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } @@ -256,56 +256,56 @@ public class ActorContainer : global::System.IDisposable, global::System.Collect if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } - internal void AddRange(ActorContainer values) { + public void AddRange(ActorContainer values) { NDalicPINVOKE.ActorContainer_AddRange(swigCPtr, ActorContainer.getCPtr(values)); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } - internal ActorContainer GetRange(int index, int count) { + public ActorContainer GetRange(int index, int count) { global::System.IntPtr cPtr = NDalicPINVOKE.ActorContainer_GetRange(swigCPtr, index, count); ActorContainer ret = (cPtr == global::System.IntPtr.Zero) ? null : new ActorContainer(cPtr, true); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } - internal void Insert(int index, Actor x) { + public void Insert(int index, Actor x) { NDalicPINVOKE.ActorContainer_Insert(swigCPtr, index, Actor.getCPtr(x)); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } - internal void InsertRange(int index, ActorContainer values) { + public void InsertRange(int index, ActorContainer values) { NDalicPINVOKE.ActorContainer_InsertRange(swigCPtr, index, ActorContainer.getCPtr(values)); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } - internal void RemoveAt(int index) { + public void RemoveAt(int index) { NDalicPINVOKE.ActorContainer_RemoveAt(swigCPtr, index); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } - internal void RemoveRange(int index, int count) { + public void RemoveRange(int index, int count) { NDalicPINVOKE.ActorContainer_RemoveRange(swigCPtr, index, count); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } - internal static ActorContainer Repeat(Actor value, int count) { + public static ActorContainer Repeat(Actor value, int count) { global::System.IntPtr cPtr = NDalicPINVOKE.ActorContainer_Repeat(Actor.getCPtr(value), count); ActorContainer ret = (cPtr == global::System.IntPtr.Zero) ? null : new ActorContainer(cPtr, true); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } - internal void Reverse() { + public void Reverse() { NDalicPINVOKE.ActorContainer_Reverse__SWIG_0(swigCPtr); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } - internal void Reverse(int index, int count) { + public void Reverse(int index, int count) { NDalicPINVOKE.ActorContainer_Reverse__SWIG_1(swigCPtr, index, count); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } - internal void SetRange(int index, ActorContainer values) { + public void SetRange(int index, ActorContainer values) { NDalicPINVOKE.ActorContainer_SetRange(swigCPtr, index, ActorContainer.getCPtr(values)); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } diff --git a/Tizen.NUI/src/internal/ControlKeyEventSignal.cs b/Tizen.NUI/src/internal/ActorHoverSignal.cs old mode 100644 new mode 100755 similarity index 72% rename from Tizen.NUI/src/internal/ControlKeyEventSignal.cs rename to Tizen.NUI/src/internal/ActorHoverSignal.cs index 5c61bc8..11ea3ec --- a/Tizen.NUI/src/internal/ControlKeyEventSignal.cs +++ b/Tizen.NUI/src/internal/ActorHoverSignal.cs @@ -8,22 +8,22 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { -public class ControlKeyEventSignal : global::System.IDisposable { +public class ActorHoverSignal : global::System.IDisposable { private global::System.Runtime.InteropServices.HandleRef swigCPtr; protected bool swigCMemOwn; - internal ControlKeyEventSignal(global::System.IntPtr cPtr, bool cMemoryOwn) { + internal ActorHoverSignal(global::System.IntPtr cPtr, bool cMemoryOwn) { swigCMemOwn = cMemoryOwn; swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); } - internal static global::System.Runtime.InteropServices.HandleRef getCPtr(ControlKeyEventSignal obj) { + internal static global::System.Runtime.InteropServices.HandleRef getCPtr(ActorHoverSignal obj) { return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; } - ~ControlKeyEventSignal() { + ~ActorHoverSignal() { Dispose(); } @@ -32,7 +32,7 @@ public class ControlKeyEventSignal : global::System.IDisposable { if (swigCPtr.Handle != global::System.IntPtr.Zero) { if (swigCMemOwn) { swigCMemOwn = false; - NDalicPINVOKE.delete_ControlKeyEventSignal(swigCPtr); + NDalicPINVOKE.delete_ActorHoverSignal(swigCPtr); } swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); } @@ -41,13 +41,13 @@ public class ControlKeyEventSignal : global::System.IDisposable { } public bool Empty() { - bool ret = NDalicPINVOKE.ControlKeyEventSignal_Empty(swigCPtr); + bool ret = NDalicPINVOKE.ActorHoverSignal_Empty(swigCPtr); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } public uint GetConnectionCount() { - uint ret = NDalicPINVOKE.ControlKeyEventSignal_GetConnectionCount(swigCPtr); + uint ret = NDalicPINVOKE.ActorHoverSignal_GetConnectionCount(swigCPtr); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } @@ -55,7 +55,7 @@ public class ControlKeyEventSignal : global::System.IDisposable { public void Connect(System.Delegate func) { System.IntPtr ip = System.Runtime.InteropServices.Marshal.GetFunctionPointerForDelegate(func); { - NDalicPINVOKE.ControlKeyEventSignal_Connect(swigCPtr, new System.Runtime.InteropServices.HandleRef(this, ip)); + NDalicPINVOKE.ActorHoverSignal_Connect(swigCPtr, new System.Runtime.InteropServices.HandleRef(this, ip)); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } } @@ -63,18 +63,18 @@ System.IntPtr ip = System.Runtime.InteropServices.Marshal.GetFunctionPointerForD public void Disconnect(System.Delegate func) { System.IntPtr ip = System.Runtime.InteropServices.Marshal.GetFunctionPointerForDelegate(func); { - NDalicPINVOKE.ControlKeyEventSignal_Disconnect(swigCPtr, new System.Runtime.InteropServices.HandleRef(this, ip)); + NDalicPINVOKE.ActorHoverSignal_Disconnect(swigCPtr, new System.Runtime.InteropServices.HandleRef(this, ip)); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } } - public bool Emit(View arg1, KeyEvent arg2) { - bool ret = NDalicPINVOKE.ControlKeyEventSignal_Emit(swigCPtr, View.getCPtr(arg1), KeyEvent.getCPtr(arg2)); + public bool Emit(Actor arg1, Hover arg2) { + bool ret = NDalicPINVOKE.ActorHoverSignal_Emit(swigCPtr, Actor.getCPtr(arg1), Hover.getCPtr(arg2)); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } - public ControlKeyEventSignal() : this(NDalicPINVOKE.new_ControlKeyEventSignal(), true) { + public ActorHoverSignal() : this(NDalicPINVOKE.new_ActorHoverSignal(), true) { if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } diff --git a/Tizen.NUI/src/internal/ActorSignal.cs b/Tizen.NUI/src/internal/ActorSignal.cs index a85fbd3..bc12edc 100755 --- a/Tizen.NUI/src/internal/ActorSignal.cs +++ b/Tizen.NUI/src/internal/ActorSignal.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class ActorSignal : global::System.IDisposable { private global::System.Runtime.InteropServices.HandleRef swigCPtr; @@ -46,19 +46,19 @@ public class ActorSignal : global::System.IDisposable { } - internal bool Empty() { + public bool Empty() { bool ret = NDalicPINVOKE.ActorSignal_Empty(swigCPtr); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } - internal uint GetConnectionCount() { + public uint GetConnectionCount() { uint ret = NDalicPINVOKE.ActorSignal_GetConnectionCount(swigCPtr); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } - internal void Connect(System.Delegate func) { + public void Connect(System.Delegate func) { System.IntPtr ip = System.Runtime.InteropServices.Marshal.GetFunctionPointerForDelegate(func); { NDalicPINVOKE.ActorSignal_Connect(swigCPtr, new System.Runtime.InteropServices.HandleRef(this, ip)); @@ -66,7 +66,7 @@ System.IntPtr ip = System.Runtime.InteropServices.Marshal.GetFunctionPointerForD } } - internal void Disconnect(System.Delegate func) { + public void Disconnect(System.Delegate func) { System.IntPtr ip = System.Runtime.InteropServices.Marshal.GetFunctionPointerForDelegate(func); { NDalicPINVOKE.ActorSignal_Disconnect(swigCPtr, new System.Runtime.InteropServices.HandleRef(this, ip)); @@ -74,12 +74,12 @@ System.IntPtr ip = System.Runtime.InteropServices.Marshal.GetFunctionPointerForD } } - internal void Emit(Actor arg) { + public void Emit(Actor arg) { NDalicPINVOKE.ActorSignal_Emit(swigCPtr, Actor.getCPtr(arg)); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } - internal ActorSignal() : this(NDalicPINVOKE.new_ActorSignal(), true) { + public ActorSignal() : this(NDalicPINVOKE.new_ActorSignal(), true) { if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } diff --git a/Tizen.NUI/src/internal/ActorTouchDataSignal.cs b/Tizen.NUI/src/internal/ActorTouchDataSignal.cs index b67b595..f0fc274 100755 --- a/Tizen.NUI/src/internal/ActorTouchDataSignal.cs +++ b/Tizen.NUI/src/internal/ActorTouchDataSignal.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class ActorTouchDataSignal : global::System.IDisposable { private global::System.Runtime.InteropServices.HandleRef swigCPtr; @@ -40,19 +40,19 @@ public class ActorTouchDataSignal : global::System.IDisposable { } } - internal bool Empty() { + public bool Empty() { bool ret = NDalicPINVOKE.ActorTouchDataSignal_Empty(swigCPtr); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } - internal uint GetConnectionCount() { + public uint GetConnectionCount() { uint ret = NDalicPINVOKE.ActorTouchDataSignal_GetConnectionCount(swigCPtr); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } - internal void Connect(System.Delegate func) { + public void Connect(System.Delegate func) { System.IntPtr ip = System.Runtime.InteropServices.Marshal.GetFunctionPointerForDelegate(func); { NDalicPINVOKE.ActorTouchDataSignal_Connect(swigCPtr, new System.Runtime.InteropServices.HandleRef(this, ip)); @@ -60,7 +60,7 @@ System.IntPtr ip = System.Runtime.InteropServices.Marshal.GetFunctionPointerForD } } - internal void Disconnect(System.Delegate func) { + public void Disconnect(System.Delegate func) { System.IntPtr ip = System.Runtime.InteropServices.Marshal.GetFunctionPointerForDelegate(func); { NDalicPINVOKE.ActorTouchDataSignal_Disconnect(swigCPtr, new System.Runtime.InteropServices.HandleRef(this, ip)); @@ -68,13 +68,13 @@ System.IntPtr ip = System.Runtime.InteropServices.Marshal.GetFunctionPointerForD } } - internal bool Emit(Actor arg1, TouchData arg2) { - bool ret = NDalicPINVOKE.ActorTouchDataSignal_Emit(swigCPtr, Actor.getCPtr(arg1), TouchData.getCPtr(arg2)); + public bool Emit(Actor arg1, Touch arg2) { + bool ret = NDalicPINVOKE.ActorTouchDataSignal_Emit(swigCPtr, Actor.getCPtr(arg1), Touch.getCPtr(arg2)); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } - internal ActorTouchDataSignal() : this(NDalicPINVOKE.new_ActorTouchDataSignal(), true) { + public ActorTouchDataSignal() : this(NDalicPINVOKE.new_ActorTouchDataSignal(), true) { if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } diff --git a/Tizen.NUI/src/internal/ActorHoverEventSignal.cs b/Tizen.NUI/src/internal/ActorWheelSignal.cs similarity index 65% rename from Tizen.NUI/src/internal/ActorHoverEventSignal.cs rename to Tizen.NUI/src/internal/ActorWheelSignal.cs index 221a97f..cf7f8db 100755 --- a/Tizen.NUI/src/internal/ActorHoverEventSignal.cs +++ b/Tizen.NUI/src/internal/ActorWheelSignal.cs @@ -8,22 +8,22 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { -public class ActorHoverEventSignal : global::System.IDisposable { +public class ActorWheelSignal : global::System.IDisposable { private global::System.Runtime.InteropServices.HandleRef swigCPtr; protected bool swigCMemOwn; - internal ActorHoverEventSignal(global::System.IntPtr cPtr, bool cMemoryOwn) { + internal ActorWheelSignal(global::System.IntPtr cPtr, bool cMemoryOwn) { swigCMemOwn = cMemoryOwn; swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); } - internal static global::System.Runtime.InteropServices.HandleRef getCPtr(ActorHoverEventSignal obj) { + internal static global::System.Runtime.InteropServices.HandleRef getCPtr(ActorWheelSignal obj) { return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; } - ~ActorHoverEventSignal() { + ~ActorWheelSignal() { Dispose(); } @@ -32,7 +32,7 @@ public class ActorHoverEventSignal : global::System.IDisposable { if (swigCPtr.Handle != global::System.IntPtr.Zero) { if (swigCMemOwn) { swigCMemOwn = false; - NDalicPINVOKE.delete_ActorHoverEventSignal(swigCPtr); + NDalicPINVOKE.delete_ActorWheelSignal(swigCPtr); } swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); } @@ -40,41 +40,41 @@ public class ActorHoverEventSignal : global::System.IDisposable { } } - internal bool Empty() { - bool ret = NDalicPINVOKE.ActorHoverEventSignal_Empty(swigCPtr); + public bool Empty() { + bool ret = NDalicPINVOKE.ActorWheelSignal_Empty(swigCPtr); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } - internal uint GetConnectionCount() { - uint ret = NDalicPINVOKE.ActorHoverEventSignal_GetConnectionCount(swigCPtr); + public uint GetConnectionCount() { + uint ret = NDalicPINVOKE.ActorWheelSignal_GetConnectionCount(swigCPtr); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } - internal void Connect(System.Delegate func) { + public void Connect(System.Delegate func) { System.IntPtr ip = System.Runtime.InteropServices.Marshal.GetFunctionPointerForDelegate(func); { - NDalicPINVOKE.ActorHoverEventSignal_Connect(swigCPtr, new System.Runtime.InteropServices.HandleRef(this, ip)); + NDalicPINVOKE.ActorWheelSignal_Connect(swigCPtr, new System.Runtime.InteropServices.HandleRef(this, ip)); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } } - internal void Disconnect(System.Delegate func) { + public void Disconnect(System.Delegate func) { System.IntPtr ip = System.Runtime.InteropServices.Marshal.GetFunctionPointerForDelegate(func); { - NDalicPINVOKE.ActorHoverEventSignal_Disconnect(swigCPtr, new System.Runtime.InteropServices.HandleRef(this, ip)); + NDalicPINVOKE.ActorWheelSignal_Disconnect(swigCPtr, new System.Runtime.InteropServices.HandleRef(this, ip)); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } } - internal bool Emit(Actor arg1, HoverEvent arg2) { - bool ret = NDalicPINVOKE.ActorHoverEventSignal_Emit(swigCPtr, Actor.getCPtr(arg1), HoverEvent.getCPtr(arg2)); + public bool Emit(Actor arg1, Wheel arg2) { + bool ret = NDalicPINVOKE.ActorWheelSignal_Emit(swigCPtr, Actor.getCPtr(arg1), Wheel.getCPtr(arg2)); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } - internal ActorHoverEventSignal() : this(NDalicPINVOKE.new_ActorHoverEventSignal(), true) { + public ActorWheelSignal() : this(NDalicPINVOKE.new_ActorWheelSignal(), true) { if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } diff --git a/Tizen.NUI/src/internal/Alignment.cs b/Tizen.NUI/src/internal/Alignment.cs index c25bfa3..5acc2cd 100755 --- a/Tizen.NUI/src/internal/Alignment.cs +++ b/Tizen.NUI/src/internal/Alignment.cs @@ -24,7 +24,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class Alignment : View { private global::System.Runtime.InteropServices.HandleRef swigCPtr; @@ -65,7 +65,7 @@ public class Alignment : View { private global::System.Runtime.InteropServices.HandleRef swigCPtr; protected bool swigCMemOwn; - public Padding(global::System.IntPtr cPtr, bool cMemoryOwn) { + internal Padding(global::System.IntPtr cPtr, bool cMemoryOwn) { swigCMemOwn = cMemoryOwn; swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); } @@ -91,15 +91,15 @@ public class Alignment : View { } } - internal Padding() : this(NDalicPINVOKE.new_Alignment_Padding__SWIG_0(), true) { + public Padding() : this(NDalicPINVOKE.new_Alignment_Padding__SWIG_0(), true) { if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } - internal Padding(float l, float r, float t, float b) : this(NDalicPINVOKE.new_Alignment_Padding__SWIG_1(l, r, t, b), true) { + public Padding(float l, float r, float t, float b) : this(NDalicPINVOKE.new_Alignment_Padding__SWIG_1(l, r, t, b), true) { if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } - internal float left { + public float left { set { NDalicPINVOKE.Alignment_Padding_left_set(swigCPtr, value); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); @@ -111,7 +111,7 @@ public class Alignment : View { } } - internal float right { + public float right { set { NDalicPINVOKE.Alignment_Padding_right_set(swigCPtr, value); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); @@ -123,7 +123,7 @@ public class Alignment : View { } } - internal float top { + public float top { set { NDalicPINVOKE.Alignment_Padding_top_set(swigCPtr, value); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); @@ -135,7 +135,7 @@ public class Alignment : View { } } - internal float bottom { + public float bottom { set { NDalicPINVOKE.Alignment_Padding_bottom_set(swigCPtr, value); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); @@ -149,68 +149,68 @@ public class Alignment : View { } - internal Alignment (Alignment.Type horizontal, Alignment.Type vertical) : this (NDalicPINVOKE.Alignment_New__SWIG_0((int)horizontal, (int)vertical), true) { + public Alignment (Alignment.Type horizontal, Alignment.Type vertical) : this (NDalicPINVOKE.Alignment_New__SWIG_0((int)horizontal, (int)vertical), true) { if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } - internal Alignment (Alignment.Type horizontal) : this (NDalicPINVOKE.Alignment_New__SWIG_1((int)horizontal), true) { + public Alignment (Alignment.Type horizontal) : this (NDalicPINVOKE.Alignment_New__SWIG_1((int)horizontal), true) { if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } - internal Alignment () : this (NDalicPINVOKE.Alignment_New__SWIG_2(), true) { + public Alignment () : this (NDalicPINVOKE.Alignment_New__SWIG_2(), true) { if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } - internal Alignment(Alignment alignment) : this(NDalicPINVOKE.new_Alignment__SWIG_1(Alignment.getCPtr(alignment)), true) { + public Alignment(Alignment alignment) : this(NDalicPINVOKE.new_Alignment__SWIG_1(Alignment.getCPtr(alignment)), true) { if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } - internal new static Alignment DownCast(BaseHandle handle) { + public new static Alignment DownCast(BaseHandle handle) { Alignment ret = new Alignment(NDalicPINVOKE.Alignment_DownCast(BaseHandle.getCPtr(handle)), true); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } - internal void SetAlignmentType(Alignment.Type type) { + public void SetAlignmentType(Alignment.Type type) { NDalicPINVOKE.Alignment_SetAlignmentType(swigCPtr, (int)type); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } - internal Alignment.Type GetAlignmentType() { + public Alignment.Type GetAlignmentType() { Alignment.Type ret = (Alignment.Type)NDalicPINVOKE.Alignment_GetAlignmentType(swigCPtr); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } - internal void SetScaling(Alignment.Scaling scaling) { + public void SetScaling(Alignment.Scaling scaling) { NDalicPINVOKE.Alignment_SetScaling(swigCPtr, (int)scaling); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } - internal Alignment.Scaling GetScaling() { + public Alignment.Scaling GetScaling() { Alignment.Scaling ret = (Alignment.Scaling)NDalicPINVOKE.Alignment_GetScaling(swigCPtr); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } - internal void SetPadding(Alignment.Padding padding) { + public void SetPadding(Alignment.Padding padding) { NDalicPINVOKE.Alignment_SetPadding(swigCPtr, Alignment.Padding.getCPtr(padding)); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } - internal Alignment.Padding GetPadding() { + public Alignment.Padding GetPadding() { Alignment.Padding ret = new Alignment.Padding(NDalicPINVOKE.Alignment_GetPadding(swigCPtr), false); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } - internal Alignment Assign(Alignment alignment) { + public Alignment Assign(Alignment alignment) { Alignment ret = new Alignment(NDalicPINVOKE.Alignment_Assign(swigCPtr, Alignment.getCPtr(alignment)), false); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } - internal enum Type { + public enum Type { HorizontalLeft = 1, HorizontalCenter = 2, HorizontalRight = 4, @@ -219,7 +219,7 @@ public class Alignment : View { VerticalBottom = 32 } - internal enum Scaling { + public enum Scaling { ScaleNone, ScaleToFill, ScaleToFitKeepAspect, diff --git a/Tizen.NUI/src/public/AngleAxis.cs b/Tizen.NUI/src/internal/AngleAxis.cs old mode 100644 new mode 100755 similarity index 99% rename from Tizen.NUI/src/public/AngleAxis.cs rename to Tizen.NUI/src/internal/AngleAxis.cs index e64331b..a5c79cc --- a/Tizen.NUI/src/public/AngleAxis.cs +++ b/Tizen.NUI/src/internal/AngleAxis.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class AngleAxis : global::System.IDisposable { private global::System.Runtime.InteropServices.HandleRef swigCPtr; diff --git a/Tizen.NUI/src/internal/AngleThresholdPair.cs b/Tizen.NUI/src/internal/AngleThresholdPair.cs index 58eb50d..186f190 100755 --- a/Tizen.NUI/src/internal/AngleThresholdPair.cs +++ b/Tizen.NUI/src/internal/AngleThresholdPair.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class AngleThresholdPair : global::System.IDisposable { private global::System.Runtime.InteropServices.HandleRef swigCPtr; @@ -40,19 +40,19 @@ public class AngleThresholdPair : global::System.IDisposable { } } - internal AngleThresholdPair() : this(NDalicPINVOKE.new_AngleThresholdPair__SWIG_0(), true) { + public AngleThresholdPair() : this(NDalicPINVOKE.new_AngleThresholdPair__SWIG_0(), true) { if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } - internal AngleThresholdPair(Radian t, Radian u) : this(NDalicPINVOKE.new_AngleThresholdPair__SWIG_1(Radian.getCPtr(t), Radian.getCPtr(u)), true) { + public AngleThresholdPair(Radian t, Radian u) : this(NDalicPINVOKE.new_AngleThresholdPair__SWIG_1(Radian.getCPtr(t), Radian.getCPtr(u)), true) { if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } - internal AngleThresholdPair(AngleThresholdPair p) : this(NDalicPINVOKE.new_AngleThresholdPair__SWIG_2(AngleThresholdPair.getCPtr(p)), true) { + public AngleThresholdPair(AngleThresholdPair p) : this(NDalicPINVOKE.new_AngleThresholdPair__SWIG_2(AngleThresholdPair.getCPtr(p)), true) { if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } - internal Radian first { + public Radian first { set { NDalicPINVOKE.AngleThresholdPair_first_set(swigCPtr, Radian.getCPtr(value)); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); @@ -65,7 +65,7 @@ public class AngleThresholdPair : global::System.IDisposable { } } - internal Radian second { + public Radian second { set { NDalicPINVOKE.AngleThresholdPair_second_set(swigCPtr, Radian.getCPtr(value)); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); diff --git a/Tizen.NUI/src/internal/AnimatablePropertyComponentRegistration.cs b/Tizen.NUI/src/internal/AnimatablePropertyComponentRegistration.cs index 3a3d2e6..9d4c53b 100755 --- a/Tizen.NUI/src/internal/AnimatablePropertyComponentRegistration.cs +++ b/Tizen.NUI/src/internal/AnimatablePropertyComponentRegistration.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class AnimatablePropertyComponentRegistration : global::System.IDisposable { private global::System.Runtime.InteropServices.HandleRef swigCPtr; @@ -40,7 +40,7 @@ public class AnimatablePropertyComponentRegistration : global::System.IDisposabl } } - internal AnimatablePropertyComponentRegistration(TypeRegistration registered, string name, int index, int baseIndex, uint componentIndex) : this(NDalicPINVOKE.new_AnimatablePropertyComponentRegistration(TypeRegistration.getCPtr(registered), name, index, baseIndex, componentIndex), true) { + public AnimatablePropertyComponentRegistration(TypeRegistration registered, string name, int index, int baseIndex, uint componentIndex) : this(NDalicPINVOKE.new_AnimatablePropertyComponentRegistration(TypeRegistration.getCPtr(registered), name, index, baseIndex, componentIndex), true) { if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } diff --git a/Tizen.NUI/src/internal/AnimatablePropertyRegistration.cs b/Tizen.NUI/src/internal/AnimatablePropertyRegistration.cs index 3614eeb..29e44c5 100755 --- a/Tizen.NUI/src/internal/AnimatablePropertyRegistration.cs +++ b/Tizen.NUI/src/internal/AnimatablePropertyRegistration.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class AnimatablePropertyRegistration : global::System.IDisposable { private global::System.Runtime.InteropServices.HandleRef swigCPtr; @@ -40,11 +40,11 @@ public class AnimatablePropertyRegistration : global::System.IDisposable { } } - internal AnimatablePropertyRegistration(TypeRegistration registered, string name, int index, Property.Type type) : this(NDalicPINVOKE.new_AnimatablePropertyRegistration__SWIG_0(TypeRegistration.getCPtr(registered), name, index, (int)type), true) { + public AnimatablePropertyRegistration(TypeRegistration registered, string name, int index, PropertyType type) : this(NDalicPINVOKE.new_AnimatablePropertyRegistration__SWIG_0(TypeRegistration.getCPtr(registered), name, index, (int)type), true) { if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } - internal AnimatablePropertyRegistration(TypeRegistration registered, string name, int index, Property.Value value) : this(NDalicPINVOKE.new_AnimatablePropertyRegistration__SWIG_1(TypeRegistration.getCPtr(registered), name, index, Property.Value.getCPtr(value)), true) { + public AnimatablePropertyRegistration(TypeRegistration registered, string name, int index, PropertyValue value) : this(NDalicPINVOKE.new_AnimatablePropertyRegistration__SWIG_1(TypeRegistration.getCPtr(registered), name, index, PropertyValue.getCPtr(value)), true) { if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } diff --git a/Tizen.NUI/src/internal/AnimationSignal.cs b/Tizen.NUI/src/internal/AnimationSignal.cs index eb2fab1..52f3ed0 100755 --- a/Tizen.NUI/src/internal/AnimationSignal.cs +++ b/Tizen.NUI/src/internal/AnimationSignal.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class AnimationSignal : global::System.IDisposable { private global::System.Runtime.InteropServices.HandleRef swigCPtr; @@ -46,19 +46,19 @@ public class AnimationSignal : global::System.IDisposable { } - internal bool Empty() { + public bool Empty() { bool ret = NDalicPINVOKE.AnimationSignal_Empty(swigCPtr); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } - internal uint GetConnectionCount() { + public uint GetConnectionCount() { uint ret = NDalicPINVOKE.AnimationSignal_GetConnectionCount(swigCPtr); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } - internal void Connect(System.Delegate func) { + public void Connect(System.Delegate func) { System.IntPtr ip = System.Runtime.InteropServices.Marshal.GetFunctionPointerForDelegate(func); { NDalicPINVOKE.AnimationSignal_Connect(swigCPtr, new System.Runtime.InteropServices.HandleRef(this, ip)); @@ -66,7 +66,7 @@ System.IntPtr ip = System.Runtime.InteropServices.Marshal.GetFunctionPointerForD } } - internal void Disconnect(System.Delegate func) { + public void Disconnect(System.Delegate func) { System.IntPtr ip = System.Runtime.InteropServices.Marshal.GetFunctionPointerForDelegate(func); { NDalicPINVOKE.AnimationSignal_Disconnect(swigCPtr, new System.Runtime.InteropServices.HandleRef(this, ip)); @@ -74,12 +74,12 @@ System.IntPtr ip = System.Runtime.InteropServices.Marshal.GetFunctionPointerForD } } - internal void Emit(Animation arg) { + public void Emit(Animation arg) { NDalicPINVOKE.AnimationSignal_Emit(swigCPtr, Animation.getCPtr(arg)); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } - internal AnimationSignal() : this(NDalicPINVOKE.new_AnimationSignal(), true) { + public AnimationSignal() : this(NDalicPINVOKE.new_AnimationSignal(), true) { if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } diff --git a/Tizen.NUI/src/internal/Any.cs b/Tizen.NUI/src/internal/Any.cs index 714ff23..fe00c2b 100755 --- a/Tizen.NUI/src/internal/Any.cs +++ b/Tizen.NUI/src/internal/Any.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class Any : global::System.IDisposable { private global::System.Runtime.InteropServices.HandleRef swigCPtr; @@ -46,32 +46,32 @@ public class Any : global::System.IDisposable { } - internal Any() : this(NDalicPINVOKE.new_Any__SWIG_0(), true) { + public Any() : this(NDalicPINVOKE.new_Any__SWIG_0(), true) { if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } - internal static void AssertAlways(string assertMessage) { + public static void AssertAlways(string assertMessage) { NDalicPINVOKE.Any_AssertAlways(assertMessage); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } - internal Any(Any any) : this(NDalicPINVOKE.new_Any__SWIG_2(Any.getCPtr(any)), true) { + public Any(Any any) : this(NDalicPINVOKE.new_Any__SWIG_2(Any.getCPtr(any)), true) { if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } - internal Any Assign(Any any) { + public Any Assign(Any any) { Any ret = new Any(NDalicPINVOKE.Any_Assign(swigCPtr, Any.getCPtr(any)), false); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } - internal SWIGTYPE_p_std__type_info GetType() { + public SWIGTYPE_p_std__type_info GetType() { SWIGTYPE_p_std__type_info ret = new SWIGTYPE_p_std__type_info(NDalicPINVOKE.Any_GetType(swigCPtr), false); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } - internal bool Empty() { + public bool Empty() { bool ret = NDalicPINVOKE.Any_Empty(swigCPtr); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; @@ -81,7 +81,7 @@ public class Any : global::System.IDisposable { private global::System.Runtime.InteropServices.HandleRef swigCPtr; protected bool swigCMemOwn; - public AnyContainerBase(global::System.IntPtr cPtr, bool cMemoryOwn) { + internal AnyContainerBase(global::System.IntPtr cPtr, bool cMemoryOwn) { swigCMemOwn = cMemoryOwn; swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); } @@ -107,17 +107,17 @@ public class Any : global::System.IDisposable { } } - internal AnyContainerBase(SWIGTYPE_p_std__type_info type, SWIGTYPE_p_f_r_q_const__Dali__Any__AnyContainerBase__p_Dali__Any__AnyContainerBase cloneFunc, SWIGTYPE_p_f_p_q_const__Dali__Any__AnyContainerBase__void deleteFunc) : this(NDalicPINVOKE.new_Any_AnyContainerBase(SWIGTYPE_p_std__type_info.getCPtr(type), SWIGTYPE_p_f_r_q_const__Dali__Any__AnyContainerBase__p_Dali__Any__AnyContainerBase.getCPtr(cloneFunc), SWIGTYPE_p_f_p_q_const__Dali__Any__AnyContainerBase__void.getCPtr(deleteFunc)), true) { + public AnyContainerBase(SWIGTYPE_p_std__type_info type, SWIGTYPE_p_f_r_q_const__Dali__Any__AnyContainerBase__p_Dali__Any__AnyContainerBase cloneFunc, SWIGTYPE_p_f_p_q_const__Dali__Any__AnyContainerBase__void deleteFunc) : this(NDalicPINVOKE.new_Any_AnyContainerBase(SWIGTYPE_p_std__type_info.getCPtr(type), SWIGTYPE_p_f_r_q_const__Dali__Any__AnyContainerBase__p_Dali__Any__AnyContainerBase.getCPtr(cloneFunc), SWIGTYPE_p_f_p_q_const__Dali__Any__AnyContainerBase__void.getCPtr(deleteFunc)), true) { if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } - internal SWIGTYPE_p_std__type_info GetType() { + public SWIGTYPE_p_std__type_info GetType() { SWIGTYPE_p_std__type_info ret = new SWIGTYPE_p_std__type_info(NDalicPINVOKE.Any_AnyContainerBase_GetType(swigCPtr), false); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } - internal SWIGTYPE_p_std__type_info mType { + public SWIGTYPE_p_std__type_info mType { get { SWIGTYPE_p_std__type_info ret = new SWIGTYPE_p_std__type_info(NDalicPINVOKE.Any_AnyContainerBase_mType_get(swigCPtr), false); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); @@ -125,7 +125,7 @@ public class Any : global::System.IDisposable { } } - internal SWIGTYPE_p_f_r_q_const__Dali__Any__AnyContainerBase__p_Dali__Any__AnyContainerBase mCloneFunc { + public SWIGTYPE_p_f_r_q_const__Dali__Any__AnyContainerBase__p_Dali__Any__AnyContainerBase mCloneFunc { set { NDalicPINVOKE.Any_AnyContainerBase_mCloneFunc_set(swigCPtr, SWIGTYPE_p_f_r_q_const__Dali__Any__AnyContainerBase__p_Dali__Any__AnyContainerBase.getCPtr(value)); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); @@ -138,7 +138,7 @@ public class Any : global::System.IDisposable { } } - internal SWIGTYPE_p_f_p_q_const__Dali__Any__AnyContainerBase__void mDeleteFunc { + public SWIGTYPE_p_f_p_q_const__Dali__Any__AnyContainerBase__void mDeleteFunc { set { NDalicPINVOKE.Any_AnyContainerBase_mDeleteFunc_set(swigCPtr, SWIGTYPE_p_f_p_q_const__Dali__Any__AnyContainerBase__void.getCPtr(value)); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); @@ -153,7 +153,7 @@ public class Any : global::System.IDisposable { } - internal Any.AnyContainerBase mContainer { + public Any.AnyContainerBase mContainer { set { NDalicPINVOKE.Any_mContainer_set(swigCPtr, Any.AnyContainerBase.getCPtr(value)); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); diff --git a/Tizen.NUI/src/internal/Application.cs b/Tizen.NUI/src/internal/Application.cs new file mode 100755 index 0000000..bca2be3 --- /dev/null +++ b/Tizen.NUI/src/internal/Application.cs @@ -0,0 +1,1247 @@ +//------------------------------------------------------------------------------ +// +// +// This file was automatically generated by SWIG (http://www.swig.org). +// Version 3.0.9 +// +// Do not make changes to this file unless you know what you are doing--modify +// the SWIG interface file instead. +//------------------------------------------------------------------------------ + +namespace Tizen.NUI { + + using System; + using System.Runtime.InteropServices; + + /** + * @brief Event arguments that passed via NUIApplicationInit signal + * + */ + public class NUIApplicationInitEventArgs : EventArgs + { + private Application _application; + + /** + * @brief Application - is the application that is being initialized + * + */ + public Application Application + { + get + { + return _application; + } + set + { + _application = value; + } + } + } + + /** + * @brief Event arguments that passed via NUIApplicationTerminate signal + * + */ + public class NUIApplicationTerminateEventArgs : EventArgs + { + private Application _application; + /** + * @brief Application - is the application that is being Terminated + * + */ + public Application Application + { + get + { + return _application; + } + set + { + _application = value; + } + } + } + + /** + * @brief Event arguments that passed via NUIApplicationPause signal + * + */ + public class NUIApplicationPauseEventArgs : EventArgs + { + private Application _application; + /** + * @brief Application - is the application that is being Paused + * + */ + public Application Application + { + get + { + return _application; + } + set + { + _application = value; + } + } + } + + /** + * @brief Event arguments that passed via NUIApplicationResume signal + * + */ + public class NUIApplicationResumeEventArgs : EventArgs + { + private Application _application; + /** + * @brief Application - is the application that is being Resumed + * + */ + public Application Application + { + get + { + return _application; + } + set + { + _application = value; + } + } + } + + /** + * @brief Event arguments that passed via NUIApplicationReset signal + * + */ + public class NUIApplicationResetEventArgs : EventArgs + { + private Application _application; + /** + * @brief Application - is the application that is being Reset + * + */ + public Application Application + { + get + { + return _application; + } + set + { + _application = value; + } + } + } + + /** + * @brief Event arguments that passed via NUIApplicationResize signal + * + */ + public class NUIApplicationResizeEventArgs : EventArgs + { + private Application _application; + /** + * @brief Application - is the application that is being Resized + * + */ + public Application Application + { + get + { + return _application; + } + set + { + _application = value; + } + } + } + + /** + * @brief Event arguments that passed via NUIApplicationLanguageChanged signal + * + */ + public class NUIApplicationLanguageChangedEventArgs : EventArgs + { + private Application _application; + /** + * @brief Application - is the application that is being affected with Device's language change + * + */ + public Application Application + { + get + { + return _application; + } + set + { + _application = value; + } + } + } + + /** + * @brief Event arguments that passed via NUIApplicationRegionChanged signal + * + */ + public class NUIApplicationRegionChangedEventArgs : EventArgs + { + private Application _application; + /** + * @brief Application - is the application that is being affected with Device's region change + * + */ + public Application Application + { + get + { + return _application; + } + set + { + _application = value; + } + } + } + + /** + * @brief Event arguments that passed via NUIApplicationBatteryLow signal + * + */ + public class NUIApplicationBatteryLowEventArgs : EventArgs + { + private Application _application; + /** + * @brief Application - is the application that is being affected when the battery level of the device is low + * + */ + public Application Application + { + get + { + return _application; + } + set + { + _application = value; + } + } + } + + /** + * @brief Event arguments that passed via NUIApplicationMemoryLow signal + * + */ + public class NUIApplicationMemoryLowEventArgs : EventArgs + { + private Application _application; + /** + * @brief Application - is the application that is being affected when the memory level of the device is low + * + */ + public Application Application + { + get + { + return _application; + } + set + { + _application = value; + } + } + } + + /** + * @brief Event arguments that passed via NUIApplicationAppControl signal + * + */ + public class NUIApplicationAppControlEventArgs : EventArgs + { + private Application _application; + private IntPtr _voidp; + /** + * @brief Application - is the application that is receiving the launch request from another application + * + */ + public Application Application + { + get + { + return _application; + } + set + { + _application = value; + } + } + /** + * @brief VoidP - contains the information about why the application is launched + * + */ + public IntPtr VoidP + { + get + { + return _voidp; + } + set + { + _voidp = value; + } + } + } + +public class Application : BaseHandle { + private global::System.Runtime.InteropServices.HandleRef swigCPtr; + + internal Application(global::System.IntPtr cPtr, bool cMemoryOwn) : base(NDalicPINVOKE.Application_SWIGUpcast(cPtr), cMemoryOwn) { + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); + } + + internal static global::System.Runtime.InteropServices.HandleRef getCPtr(Application obj) { + return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; + } + + ~Application() { + DisposeQueue.Instance.Add(this); + } + + public override void Dispose() { + if (!Stage.IsInstalled()) { + DisposeQueue.Instance.Add(this); + return; + } + + lock(this) { + if (swigCPtr.Handle != global::System.IntPtr.Zero) { + if (swigCMemOwn) { + swigCMemOwn = false; + NDalicPINVOKE.delete_Application(swigCPtr); + } + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); + } + global::System.GC.SuppressFinalize(this); + base.Dispose(); + } + } + + + [UnmanagedFunctionPointer(CallingConvention.StdCall)] + private delegate void NUIApplicationInitEventCallbackDelegate(IntPtr application); + private DaliEventHandler _applicationInitEventHandler; + private NUIApplicationInitEventCallbackDelegate _applicationInitEventCallbackDelegate; + + + [UnmanagedFunctionPointer(CallingConvention.StdCall)] + private delegate void NUIApplicationTerminateEventCallbackDelegate(IntPtr application); + private DaliEventHandler _applicationTerminateEventHandler; + private NUIApplicationTerminateEventCallbackDelegate _applicationTerminateEventCallbackDelegate; + + + [UnmanagedFunctionPointer(CallingConvention.StdCall)] + private delegate void NUIApplicationPauseEventCallbackDelegate(IntPtr application); + private DaliEventHandler _applicationPauseEventHandler; + private NUIApplicationPauseEventCallbackDelegate _applicationPauseEventCallbackDelegate; + + [UnmanagedFunctionPointer(CallingConvention.StdCall)] + private delegate void NUIApplicationResumeEventCallbackDelegate(IntPtr application); + private DaliEventHandler _applicationResumeEventHandler; + private NUIApplicationResumeEventCallbackDelegate _applicationResumeEventCallbackDelegate; + + [UnmanagedFunctionPointer(CallingConvention.StdCall)] + private delegate void NUIApplicationResetEventCallbackDelegate(IntPtr application); + private DaliEventHandler _applicationResetEventHandler; + private NUIApplicationResetEventCallbackDelegate _applicationResetEventCallbackDelegate; + + [UnmanagedFunctionPointer(CallingConvention.StdCall)] + private delegate void NUIApplicationResizeEventCallbackDelegate(IntPtr application); + private DaliEventHandler _applicationResizeEventHandler; + private NUIApplicationResizeEventCallbackDelegate _applicationResizeEventCallbackDelegate; + + [UnmanagedFunctionPointer(CallingConvention.StdCall)] + private delegate void NUIApplicationLanguageChangedEventCallbackDelegate(IntPtr application); + private DaliEventHandler _applicationLanguageChangedEventHandler; + private NUIApplicationLanguageChangedEventCallbackDelegate _applicationLanguageChangedEventCallbackDelegate; + + + [UnmanagedFunctionPointer(CallingConvention.StdCall)] + private delegate void NUIApplicationRegionChangedEventCallbackDelegate(IntPtr application); + private DaliEventHandler _applicationRegionChangedEventHandler; + private NUIApplicationRegionChangedEventCallbackDelegate _applicationRegionChangedEventCallbackDelegate; + + [UnmanagedFunctionPointer(CallingConvention.StdCall)] + private delegate void NUIApplicationBatteryLowEventCallbackDelegate(IntPtr application); + private DaliEventHandler _applicationBatteryLowEventHandler; + private NUIApplicationBatteryLowEventCallbackDelegate _applicationBatteryLowEventCallbackDelegate; + + [UnmanagedFunctionPointer(CallingConvention.StdCall)] + private delegate void NUIApplicationMemoryLowEventCallbackDelegate(IntPtr application); + private DaliEventHandler _applicationMemoryLowEventHandler; + private NUIApplicationMemoryLowEventCallbackDelegate _applicationMemoryLowEventCallbackDelegate; + + [UnmanagedFunctionPointer(CallingConvention.StdCall)] + private delegate void NUIApplicationAppControlEventCallbackDelegate(IntPtr application, IntPtr voidp); + private DaliEventHandler _applicationAppControlEventHandler; + private NUIApplicationAppControlEventCallbackDelegate _applicationAppControlEventCallbackDelegate; + + /** + * @brief Event for Initialized signal which can be used to subscribe/unsubscribe the event handler + * (in the type of NUIApplicationInitEventHandler - DaliEventHandler) + * provided by the user. Initialized signal is emitted when application is initialised + */ + public event DaliEventHandler Initialized + { + add + { + lock(this) + { + // Restricted to only one listener + if (_applicationInitEventHandler == null) + { + _applicationInitEventHandler += value; + + _applicationInitEventCallbackDelegate = new NUIApplicationInitEventCallbackDelegate(OnApplicationInit); + this.InitSignal().Connect(_applicationInitEventCallbackDelegate); + } + } + } + + remove + { + lock(this) + { + if (_applicationInitEventHandler != null) + { + this.InitSignal().Disconnect(_applicationInitEventCallbackDelegate); + } + + _applicationInitEventHandler -= value; + } + } + } + + // Callback for Application InitSignal + private void OnApplicationInit(IntPtr data) + { + NUIApplicationInitEventArgs e = new NUIApplicationInitEventArgs(); + + // Populate all members of "e" (NUIApplicationInitEventArgs) with real data + e.Application = Application.GetApplicationFromPtr(data); + + if (_applicationInitEventHandler != null) + { + //here we send all data to user event handlers + _applicationInitEventHandler(this, e); + } + } + + /** + * @brief Event for Terminated signal which can be used to subscribe/unsubscribe the event handler + * (in the type of NUIApplicationTerminateEventHandler-DaliEventHandler) + * provided by the user. Terminated signal is emitted when application is terminated + */ + public event DaliEventHandler Terminated + { + add + { + lock(this) + { + // Restricted to only one listener + if (_applicationTerminateEventHandler == null) + { + _applicationTerminateEventHandler += value; + + _applicationTerminateEventCallbackDelegate = new NUIApplicationTerminateEventCallbackDelegate(OnNUIApplicationTerminate); + this.TerminateSignal().Connect(_applicationTerminateEventCallbackDelegate); + } + } + } + + remove + { + lock(this) + { + if (_applicationTerminateEventHandler != null) + { + this.TerminateSignal().Disconnect(_applicationTerminateEventCallbackDelegate); + } + + _applicationTerminateEventHandler -= value; + } + } + } + + // Callback for Application TerminateSignal + private void OnNUIApplicationTerminate(IntPtr data) + { + NUIApplicationTerminateEventArgs e = new NUIApplicationTerminateEventArgs(); + + // Populate all members of "e" (NUIApplicationTerminateEventArgs) with real data + e.Application = Application.GetApplicationFromPtr(data); + + if (_applicationTerminateEventHandler != null) + { + //here we send all data to user event handlers + _applicationTerminateEventHandler(this, e); + } + } + + /** + * @brief Event for Paused signal which can be used to subscribe/unsubscribe the event handler + * (in the type of NUIApplicationPauseEventHandler-DaliEventHandler) + * provided by the user. Paused signal is emitted when application is paused + */ + public event DaliEventHandler Paused + { + add + { + lock(this) + { + // Restricted to only one listener + if (_applicationPauseEventHandler == null) + { + _applicationPauseEventHandler += value; + + _applicationPauseEventCallbackDelegate = new NUIApplicationPauseEventCallbackDelegate(OnNUIApplicationPause); + this.PauseSignal().Connect(_applicationPauseEventCallbackDelegate); + } + } + } + + remove + { + lock(this) + { + if (_applicationPauseEventHandler != null) + { + this.PauseSignal().Disconnect(_applicationPauseEventCallbackDelegate); + } + + _applicationPauseEventHandler -= value; + } + } + } + + // Callback for Application PauseSignal + private void OnNUIApplicationPause(IntPtr data) + { + NUIApplicationPauseEventArgs e = new NUIApplicationPauseEventArgs(); + + // Populate all members of "e" (NUIApplicationPauseEventArgs) with real data + e.Application = Application.GetApplicationFromPtr(data); + + if (_applicationPauseEventHandler != null) + { + //here we send all data to user event handlers + _applicationPauseEventHandler(this, e); + } + } + + /** + * @brief Event for Resumed signal which can be used to subscribe/unsubscribe the event handler + * (in the type of NUIApplicationResumeEventHandler-DaliEventHandler) + * provided by the user. Resumed signal is emitted when application is resumed + */ + public event DaliEventHandler Resumed + { + add + { + lock(this) + { + // Restricted to only one listener + if (_applicationResumeEventHandler == null) + { + _applicationResumeEventHandler += value; + + _applicationResumeEventCallbackDelegate = new NUIApplicationResumeEventCallbackDelegate(OnNUIApplicationResume); + this.ResumeSignal().Connect(_applicationResumeEventCallbackDelegate); + } + } + } + + remove + { + lock(this) + { + if (_applicationResumeEventHandler != null) + { + this.ResumeSignal().Disconnect(_applicationResumeEventCallbackDelegate); + } + + _applicationResumeEventHandler -= value; + } + } + } + + // Callback for Application ResumeSignal + private void OnNUIApplicationResume(IntPtr data) + { + NUIApplicationResumeEventArgs e = new NUIApplicationResumeEventArgs(); + + // Populate all members of "e" (NUIApplicationResumeEventArgs) with real data + e.Application = Application.GetApplicationFromPtr(data); + + if (_applicationResumeEventHandler != null) + { + //here we send all data to user event handlers + _applicationResumeEventHandler(this, e); + } + } + + /** + * @brief Event for Reset signal which can be used to subscribe/unsubscribe the event handler + * (in the type of NUIApplicationResetEventHandler-DaliEventHandler) + * provided by the user. Reset signal is emitted when application is reset + */ + public event DaliEventHandler Reset + { + add + { + lock(this) + { + // Restricted to only one listener + if (_applicationResetEventHandler == null) + { + _applicationResetEventHandler += value; + + _applicationResetEventCallbackDelegate = new NUIApplicationResetEventCallbackDelegate(OnNUIApplicationReset); + this.ResetSignal().Connect(_applicationResetEventCallbackDelegate); + } + } + } + + remove + { + lock(this) + { + if (_applicationResetEventHandler != null) + { + this.ResetSignal().Disconnect(_applicationResetEventCallbackDelegate); + } + + _applicationResetEventHandler -= value; + } + } + } + + // Callback for Application ResetSignal + private void OnNUIApplicationReset(IntPtr data) + { + NUIApplicationResetEventArgs e = new NUIApplicationResetEventArgs(); + + // Populate all members of "e" (NUIApplicationResetEventArgs) with real data + e.Application = Application.GetApplicationFromPtr(data); + + if (_applicationResetEventHandler != null) + { + //here we send all data to user event handlers + _applicationResetEventHandler(this, e); + } + } + + /** + * @brief Event for Resized signal which can be used to subscribe/unsubscribe the event handler + * (in the type of NUIApplicationResizeEventHandler-DaliEventHandler) + * provided by the user. Resized signal is emitted when application is resized + */ + public event DaliEventHandler Resized + { + add + { + lock(this) + { + // Restricted to only one listener + if (_applicationResizeEventHandler == null) + { + _applicationResizeEventHandler += value; + + _applicationResizeEventCallbackDelegate = new NUIApplicationResizeEventCallbackDelegate(OnNUIApplicationResize); + this.ResizeSignal().Connect(_applicationResizeEventCallbackDelegate); + } + } + } + + remove + { + lock(this) + { + if (_applicationResizeEventHandler != null) + { + this.ResizeSignal().Disconnect(_applicationResizeEventCallbackDelegate); + } + + _applicationResizeEventHandler -= value; + } + } + } + + // Callback for Application ResizeSignal + private void OnNUIApplicationResize(IntPtr data) + { + NUIApplicationResizeEventArgs e = new NUIApplicationResizeEventArgs(); + + // Populate all members of "e" (NUIApplicationResizeEventArgs) with real data + e.Application = Application.GetApplicationFromPtr(data); + + if (_applicationResizeEventHandler != null) + { + //here we send all data to user event handlers + _applicationResizeEventHandler(this, e); + } + } + + /** + * @brief Event for LanguageChanged signal which can be used to subscribe/unsubscribe the event handler + * (in the type of NUIApplicationLanguageChangedEventHandler-DaliEventHandler) + * provided by the user. LanguageChanged signal is emitted when the region of the device is changed. + */ + public event DaliEventHandler LanguageChanged + { + add + { + lock(this) + { + // Restricted to only one listener + if (_applicationLanguageChangedEventHandler == null) + { + _applicationLanguageChangedEventHandler += value; + + _applicationLanguageChangedEventCallbackDelegate = new NUIApplicationLanguageChangedEventCallbackDelegate(OnNUIApplicationLanguageChanged); + this.LanguageChangedSignal().Connect(_applicationLanguageChangedEventCallbackDelegate); + } + } + } + + remove + { + lock(this) + { + if (_applicationLanguageChangedEventHandler != null) + { + this.LanguageChangedSignal().Disconnect(_applicationLanguageChangedEventCallbackDelegate); + } + + _applicationLanguageChangedEventHandler -= value; + } + } + } + + // Callback for Application LanguageChangedSignal + private void OnNUIApplicationLanguageChanged(IntPtr data) + { + NUIApplicationLanguageChangedEventArgs e = new NUIApplicationLanguageChangedEventArgs(); + + // Populate all members of "e" (NUIApplicationLanguageChangedEventArgs) with real data + e.Application = Application.GetApplicationFromPtr(data); + + if (_applicationLanguageChangedEventHandler != null) + { + //here we send all data to user event handlers + _applicationLanguageChangedEventHandler(this, e); + } + } + + /** + * @brief Event for RegionChanged signal which can be used to subscribe/unsubscribe the event handler + * (in the type of NUIApplicationRegionChangedEventHandler-DaliEventHandler) + * provided by the user. RegionChanged signal is emitted when the region of the device is changed. + */ + public event DaliEventHandler RegionChanged + { + add + { + lock(this) + { + // Restricted to only one listener + if (_applicationRegionChangedEventHandler == null) + { + _applicationRegionChangedEventHandler += value; + + _applicationRegionChangedEventCallbackDelegate = new NUIApplicationRegionChangedEventCallbackDelegate(OnNUIApplicationRegionChanged); + this.RegionChangedSignal().Connect(_applicationRegionChangedEventCallbackDelegate); + } + } + } + + remove + { + lock(this) + { + if (_applicationRegionChangedEventHandler != null) + { + this.RegionChangedSignal().Disconnect(_applicationRegionChangedEventCallbackDelegate); + } + + _applicationRegionChangedEventHandler -= value; + } + } + } + + // Callback for Application RegionChangedSignal + private void OnNUIApplicationRegionChanged(IntPtr data) + { + NUIApplicationRegionChangedEventArgs e = new NUIApplicationRegionChangedEventArgs(); + + // Populate all members of "e" (NUIApplicationRegionChangedEventArgs) with real data + e.Application = Application.GetApplicationFromPtr(data); + + if (_applicationRegionChangedEventHandler != null) + { + //here we send all data to user event handlers + _applicationRegionChangedEventHandler(this, e); + } + } + + /** + * @brief Event for BatteryLow signal which can be used to subscribe/unsubscribe the event handler + * (in the type of NUIApplicationBatteryLowEventHandler-DaliEventHandler) + * provided by the user. BatteryLow signal is emitted when the battery level of the device is low. + */ + public event DaliEventHandler BatteryLow + { + add + { + lock(this) + { + // Restricted to only one listener + if (_applicationBatteryLowEventHandler == null) + { + _applicationBatteryLowEventHandler += value; + + _applicationBatteryLowEventCallbackDelegate = new NUIApplicationBatteryLowEventCallbackDelegate(OnNUIApplicationBatteryLow); + this.BatteryLowSignal().Connect(_applicationBatteryLowEventCallbackDelegate); + } + } + } + + remove + { + lock(this) + { + if (_applicationBatteryLowEventHandler != null) + { + this.BatteryLowSignal().Disconnect(_applicationBatteryLowEventCallbackDelegate); + } + + _applicationBatteryLowEventHandler -= value; + } + } + } + + // Callback for Application BatteryLowSignal + private void OnNUIApplicationBatteryLow(IntPtr data) + { + NUIApplicationBatteryLowEventArgs e = new NUIApplicationBatteryLowEventArgs(); + + // Populate all members of "e" (NUIApplicationBatteryLowEventArgs) with real data + e.Application = Application.GetApplicationFromPtr(data); + + if (_applicationBatteryLowEventHandler != null) + { + //here we send all data to user event handlers + _applicationBatteryLowEventHandler(this, e); + } + } + + /** + * @brief Event for MemoryLow signal which can be used to subscribe/unsubscribe the event handler + * (in the type of NUIApplicationMemoryLowEventHandler-DaliEventHandler) + * provided by the user. MemoryLow signal is emitted when the memory level of the device is low. + */ + public event DaliEventHandler MemoryLow + { + add + { + lock(this) + { + // Restricted to only one listener + if (_applicationMemoryLowEventHandler == null) + { + _applicationMemoryLowEventHandler += value; + + _applicationMemoryLowEventCallbackDelegate = new NUIApplicationMemoryLowEventCallbackDelegate(OnNUIApplicationMemoryLow); + this.MemoryLowSignal().Connect(_applicationMemoryLowEventCallbackDelegate); + } + } + } + + remove + { + lock(this) + { + if (_applicationMemoryLowEventHandler != null) + { + this.MemoryLowSignal().Disconnect(_applicationMemoryLowEventCallbackDelegate); + } + + _applicationMemoryLowEventHandler -= value; + } + } + } + + // Callback for Application MemoryLowSignal + private void OnNUIApplicationMemoryLow(IntPtr data) + { + NUIApplicationMemoryLowEventArgs e = new NUIApplicationMemoryLowEventArgs(); + + // Populate all members of "e" (NUIApplicationMemoryLowEventArgs) with real data + e.Application = Application.GetApplicationFromPtr(data); + + if (_applicationMemoryLowEventHandler != null) + { + //here we send all data to user event handlers + _applicationMemoryLowEventHandler(this, e); + } + } + + /** + * @brief Event for AppControl signal which can be used to subscribe/unsubscribe the event handler + * (in the type of NUIApplicationAppControlEventHandler-DaliEventHandler) + * provided by the user. AppControl signal is emitted when another application sends a launch request to the application. + */ + public event DaliEventHandler AppControl + { + add + { + lock(this) + { + // Restricted to only one listener + if (_applicationAppControlEventHandler == null) + { + _applicationAppControlEventHandler += value; + + _applicationAppControlEventCallbackDelegate = new NUIApplicationAppControlEventCallbackDelegate(OnNUIApplicationAppControl); + this.AppControlSignal().Connect(_applicationAppControlEventCallbackDelegate); + } + } + } + + remove + { + lock(this) + { + if (_applicationAppControlEventHandler != null) + { + this.AppControlSignal().Disconnect(_applicationAppControlEventCallbackDelegate); + } + + _applicationAppControlEventHandler -= value; + } + } + } + + // Callback for Application AppControlSignal + private void OnNUIApplicationAppControl(IntPtr application, IntPtr voidp) + { + NUIApplicationAppControlEventArgs e = new NUIApplicationAppControlEventArgs(); + + // Populate all members of "e" (NUIApplicationAppControlEventArgs) with real data + e.Application = Application.GetApplicationFromPtr(application); + e.VoidP = voidp; + + if (_applicationAppControlEventHandler != null) + { + //here we send all data to user event handlers + _applicationAppControlEventHandler(this, e); + } + } + + private static Application _instance; // singleton + + public delegate void InitDelegate(); + + public delegate void TerminateDelegate(); + + public delegate void PauseDelegate(); + + public delegate void ResumeDelegate(); + + public delegate void ResizeDelegate(); + + public delegate void AppControlDelegate(); + + public delegate void LanguageChangedDelegate(); + + public delegate void RegionChangedDelegate(); + + public delegate void BatteryLowDelegate(); + + public delegate void MemoryLowDelegate(); + + [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)] + internal delegate void InitDelegateInternal(); + + [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)] + internal delegate void TerminateDelegateInternal(); + + [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)] + internal delegate void PauseDelegateInternal(); + + [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)] + internal delegate void ResumeDelegateInternal(); + + [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)] + internal delegate void ResizeDelegateInternal(); + + [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)] + internal delegate void AppControlDelegateInternal(); + + [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)] + internal delegate void LanguageChangedDelegateInternal(); + + [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)] + internal delegate void RegionChangedDelegateInternal(); + + [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)] + internal delegate void BatteryLowDelegateInternal(); + + [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)] + internal delegate void MemoryLowDelegateInternal(); + + static void Initialize() + { + // instance.InitDelegate(); + } + + public static Application Instance + { + get + { + return _instance; + } + } + + public static Application GetApplicationFromPtr(global::System.IntPtr cPtr) { + Application ret = new Application(cPtr, false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal void SetupDelegates() { + InitDelegateInternal initializeCallback = new InitDelegateInternal( Initialize ); + System.Console.WriteLine( "InitSignal connection count"); + + this.InitSignal().Connect( initializeCallback ); + //Console.WriteLine( "InitSignal connection count = " + app.InitSignal().GetConnectionCount() ); + } + + public static Application NewApplication() { + _instance = NewApplication("", Application.WINDOW_MODE.OPAQUE); + return _instance; + } + + public static Application NewApplication(string stylesheet) { + _instance = NewApplication(stylesheet, Application.WINDOW_MODE.OPAQUE); + return _instance; + } + + public static Application NewApplication(string stylesheet, Application.WINDOW_MODE windowMode) { + + // register all Views with the type registry, so that can be created / styled via JSON + ViewRegistryHelper.Initialize(); + + Application ret = New(1, stylesheet, windowMode); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + + // we've got an application now connect the signals + ret.SetupDelegates(); + // set the singleton + _instance = ret; + return ret; + } + + public bool AddIdle(System.Delegate func) { + System.IntPtr ip = System.Runtime.InteropServices.Marshal.GetFunctionPointerForDelegate(func); + System.IntPtr ip2 = NDalicManualPINVOKE.MakeCallback(new System.Runtime.InteropServices.HandleRef(this, ip)); + + bool ret = NDalicPINVOKE.Application_AddIdle(swigCPtr, new System.Runtime.InteropServices.HandleRef(this, ip2)); + + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + + + /** + * Outer::outer_method(int) + */ + public static Application New() { + Application ret = new Application(NDalicPINVOKE.Application_New__SWIG_0(), true); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public static Application New(int argc) { + Application ret = new Application(NDalicPINVOKE.Application_New__SWIG_1(argc), true); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public static Application New(int argc, string stylesheet) { + Application ret = new Application(NDalicPINVOKE.Application_New__SWIG_2(argc, stylesheet), true); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public static Application New(int argc, string stylesheet, Application.WINDOW_MODE windowMode) { + Application ret = new Application(NDalicPINVOKE.Application_New__SWIG_3(argc, stylesheet, (int)windowMode), true); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public Application() : this(NDalicPINVOKE.new_Application__SWIG_0(), true) { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public Application(Application application) : this(NDalicPINVOKE.new_Application__SWIG_1(Application.getCPtr(application)), true) { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public Application Assign(Application application) { + Application ret = new Application(NDalicPINVOKE.Application_Assign(swigCPtr, Application.getCPtr(application)), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public void MainLoop() { + NDalicPINVOKE.Application_MainLoop__SWIG_0(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public void MainLoop(SWIGTYPE_p_Configuration__ContextLoss configuration) { + NDalicPINVOKE.Application_MainLoop__SWIG_1(swigCPtr, SWIGTYPE_p_Configuration__ContextLoss.getCPtr(configuration)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public void Lower() { + NDalicPINVOKE.Application_Lower(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public void Quit() { + NDalicPINVOKE.Application_Quit(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public bool AddIdle(SWIGTYPE_p_Dali__CallbackBase callback) { + bool ret = NDalicPINVOKE.Application_AddIdle(swigCPtr, SWIGTYPE_p_Dali__CallbackBase.getCPtr(callback)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public Window GetWindow() { + Window ret = new Window(NDalicPINVOKE.Application_GetWindow(swigCPtr), true); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public void ReplaceWindow(RectInteger windowPosition, string name) { + NDalicPINVOKE.Application_ReplaceWindow(swigCPtr, RectInteger.getCPtr(windowPosition), name); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public static string GetResourcePath() { + string ret = NDalicPINVOKE.Application_GetResourcePath(); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public void SetViewMode(ViewMode viewMode) { + NDalicPINVOKE.Application_SetViewMode(swigCPtr, (int)viewMode); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public ViewMode GetViewMode() { + ViewMode ret = (ViewMode)NDalicPINVOKE.Application_GetViewMode(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public void SetStereoBase(float stereoBase) { + NDalicPINVOKE.Application_SetStereoBase(swigCPtr, stereoBase); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public float GetStereoBase() { + float ret = NDalicPINVOKE.Application_GetStereoBase(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public ApplicationSignal InitSignal() { + ApplicationSignal ret = new ApplicationSignal(NDalicPINVOKE.Application_InitSignal(swigCPtr), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public ApplicationSignal TerminateSignal() { + ApplicationSignal ret = new ApplicationSignal(NDalicPINVOKE.Application_TerminateSignal(swigCPtr), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public ApplicationSignal PauseSignal() { + ApplicationSignal ret = new ApplicationSignal(NDalicPINVOKE.Application_PauseSignal(swigCPtr), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public ApplicationSignal ResumeSignal() { + ApplicationSignal ret = new ApplicationSignal(NDalicPINVOKE.Application_ResumeSignal(swigCPtr), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public ApplicationSignal ResetSignal() { + ApplicationSignal ret = new ApplicationSignal(NDalicPINVOKE.Application_ResetSignal(swigCPtr), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public ApplicationSignal ResizeSignal() { + ApplicationSignal ret = new ApplicationSignal(NDalicPINVOKE.Application_ResizeSignal(swigCPtr), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public ApplicationControlSignal AppControlSignal() { + ApplicationControlSignal ret = new ApplicationControlSignal(NDalicPINVOKE.Application_AppControlSignal(swigCPtr), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public ApplicationSignal LanguageChangedSignal() { + ApplicationSignal ret = new ApplicationSignal(NDalicPINVOKE.Application_LanguageChangedSignal(swigCPtr), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public ApplicationSignal RegionChangedSignal() { + ApplicationSignal ret = new ApplicationSignal(NDalicPINVOKE.Application_RegionChangedSignal(swigCPtr), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public ApplicationSignal BatteryLowSignal() { + ApplicationSignal ret = new ApplicationSignal(NDalicPINVOKE.Application_BatteryLowSignal(swigCPtr), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public ApplicationSignal MemoryLowSignal() { + ApplicationSignal ret = new ApplicationSignal(NDalicPINVOKE.Application_MemoryLowSignal(swigCPtr), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public enum WINDOW_MODE { + OPAQUE = 0, + TRANSPARENT = 1 + } + +} + +} diff --git a/Tizen.NUI/src/internal/ApplicationControlSignal.cs b/Tizen.NUI/src/internal/ApplicationControlSignal.cs index c807231..0ea3b37 100755 --- a/Tizen.NUI/src/internal/ApplicationControlSignal.cs +++ b/Tizen.NUI/src/internal/ApplicationControlSignal.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class ApplicationControlSignal : global::System.IDisposable { private global::System.Runtime.InteropServices.HandleRef swigCPtr; @@ -46,19 +46,19 @@ public class ApplicationControlSignal : global::System.IDisposable { } - internal bool Empty() { + public bool Empty() { bool ret = NDalicPINVOKE.ApplicationControlSignal_Empty(swigCPtr); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } - internal uint GetConnectionCount() { + public uint GetConnectionCount() { uint ret = NDalicPINVOKE.ApplicationControlSignal_GetConnectionCount(swigCPtr); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } - internal void Connect(System.Delegate func) { + public void Connect(System.Delegate func) { System.IntPtr ip = System.Runtime.InteropServices.Marshal.GetFunctionPointerForDelegate(func); { NDalicPINVOKE.ApplicationControlSignal_Connect(swigCPtr, new System.Runtime.InteropServices.HandleRef(this, ip)); @@ -66,7 +66,7 @@ System.IntPtr ip = System.Runtime.InteropServices.Marshal.GetFunctionPointerForD } } - internal void Disconnect(System.Delegate func) { + public void Disconnect(System.Delegate func) { System.IntPtr ip = System.Runtime.InteropServices.Marshal.GetFunctionPointerForDelegate(func); { NDalicPINVOKE.ApplicationControlSignal_Disconnect(swigCPtr, new System.Runtime.InteropServices.HandleRef(this, ip)); @@ -74,12 +74,12 @@ System.IntPtr ip = System.Runtime.InteropServices.Marshal.GetFunctionPointerForD } } - internal void Emit(Application arg1, System.IntPtr arg2) { + public void Emit(Application arg1, System.IntPtr arg2) { NDalicPINVOKE.ApplicationControlSignal_Emit(swigCPtr, Application.getCPtr(arg1), arg2); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } - internal ApplicationControlSignal() : this(NDalicPINVOKE.new_ApplicationControlSignal(), true) { + public ApplicationControlSignal() : this(NDalicPINVOKE.new_ApplicationControlSignal(), true) { if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } diff --git a/Tizen.NUI/src/internal/ApplicationExtensions.cs b/Tizen.NUI/src/internal/ApplicationExtensions.cs index 5583e0a..02de13f 100755 --- a/Tizen.NUI/src/internal/ApplicationExtensions.cs +++ b/Tizen.NUI/src/internal/ApplicationExtensions.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class ApplicationExtensions : global::System.IDisposable { private global::System.Runtime.InteropServices.HandleRef swigCPtr; @@ -40,35 +40,35 @@ public class ApplicationExtensions : global::System.IDisposable { } } - internal ApplicationExtensions() : this(NDalicPINVOKE.new_ApplicationExtensions__SWIG_0(), true) { + public ApplicationExtensions() : this(NDalicPINVOKE.new_ApplicationExtensions__SWIG_0(), true) { if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } - internal ApplicationExtensions(Application application) : this(NDalicPINVOKE.new_ApplicationExtensions__SWIG_1(Application.getCPtr(application)), true) { + public ApplicationExtensions(Application application) : this(NDalicPINVOKE.new_ApplicationExtensions__SWIG_1(Application.getCPtr(application)), true) { if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } - internal void Init() { + public void Init() { NDalicPINVOKE.ApplicationExtensions_Init(swigCPtr); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } - internal void Terminate() { + public void Terminate() { NDalicPINVOKE.ApplicationExtensions_Terminate(swigCPtr); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } - internal void Pause() { + public void Pause() { NDalicPINVOKE.ApplicationExtensions_Pause(swigCPtr); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } - internal void Resume() { + public void Resume() { NDalicPINVOKE.ApplicationExtensions_Resume(swigCPtr); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } - internal void LanguageChange() { + public void LanguageChange() { NDalicPINVOKE.ApplicationExtensions_LanguageChange(swigCPtr); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } diff --git a/Tizen.NUI/src/internal/ApplicationSignal.cs b/Tizen.NUI/src/internal/ApplicationSignal.cs index 8fdb63a..363e732 100755 --- a/Tizen.NUI/src/internal/ApplicationSignal.cs +++ b/Tizen.NUI/src/internal/ApplicationSignal.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class ApplicationSignal : global::System.IDisposable { private global::System.Runtime.InteropServices.HandleRef swigCPtr; @@ -46,19 +46,19 @@ public class ApplicationSignal : global::System.IDisposable { } - internal bool Empty() { + public bool Empty() { bool ret = NDalicPINVOKE.ApplicationSignal_Empty(swigCPtr); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } - internal uint GetConnectionCount() { + public uint GetConnectionCount() { uint ret = NDalicPINVOKE.ApplicationSignal_GetConnectionCount(swigCPtr); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } - internal void Connect(System.Delegate func) { + public void Connect(System.Delegate func) { System.IntPtr ip = System.Runtime.InteropServices.Marshal.GetFunctionPointerForDelegate(func); { NDalicPINVOKE.ApplicationSignal_Connect(swigCPtr, new System.Runtime.InteropServices.HandleRef(this, ip)); @@ -66,7 +66,7 @@ System.IntPtr ip = System.Runtime.InteropServices.Marshal.GetFunctionPointerForD } } - internal void Disconnect(System.Delegate func) { + public void Disconnect(System.Delegate func) { System.IntPtr ip = System.Runtime.InteropServices.Marshal.GetFunctionPointerForDelegate(func); { NDalicPINVOKE.ApplicationSignal_Disconnect(swigCPtr, new System.Runtime.InteropServices.HandleRef(this, ip)); @@ -74,12 +74,12 @@ System.IntPtr ip = System.Runtime.InteropServices.Marshal.GetFunctionPointerForD } } - internal void Emit(Application arg) { + public void Emit(Application arg) { NDalicPINVOKE.ApplicationSignal_Emit(swigCPtr, Application.getCPtr(arg)); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } - internal ApplicationSignal() : this(NDalicPINVOKE.new_ApplicationSignal(), true) { + public ApplicationSignal() : this(NDalicPINVOKE.new_ApplicationSignal(), true) { if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } diff --git a/Tizen.NUI/src/internal/AsyncImageLoader.cs b/Tizen.NUI/src/internal/AsyncImageLoader.cs index 73df14b..535b1dc 100755 --- a/Tizen.NUI/src/internal/AsyncImageLoader.cs +++ b/Tizen.NUI/src/internal/AsyncImageLoader.cs @@ -24,7 +24,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class AsyncImageLoader : BaseHandle { private global::System.Runtime.InteropServices.HandleRef swigCPtr; @@ -55,62 +55,62 @@ public class AsyncImageLoader : BaseHandle { } } - internal AsyncImageLoader () : this (NDalicPINVOKE.AsyncImageLoader_New(), true) { + public AsyncImageLoader () : this (NDalicPINVOKE.AsyncImageLoader_New(), true) { if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } - internal AsyncImageLoader(AsyncImageLoader handle) : this(NDalicPINVOKE.new_AsyncImageLoader__SWIG_1(AsyncImageLoader.getCPtr(handle)), true) { + public AsyncImageLoader(AsyncImageLoader handle) : this(NDalicPINVOKE.new_AsyncImageLoader__SWIG_1(AsyncImageLoader.getCPtr(handle)), true) { if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } - internal AsyncImageLoader Assign(AsyncImageLoader handle) { + public AsyncImageLoader Assign(AsyncImageLoader handle) { AsyncImageLoader ret = new AsyncImageLoader(NDalicPINVOKE.AsyncImageLoader_Assign(swigCPtr, AsyncImageLoader.getCPtr(handle)), false); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } - internal static AsyncImageLoader DownCast(BaseHandle handle) { + public static AsyncImageLoader DownCast(BaseHandle handle) { AsyncImageLoader ret = new AsyncImageLoader(NDalicPINVOKE.AsyncImageLoader_DownCast(BaseHandle.getCPtr(handle)), true); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } - internal uint Load(string url) { + public uint Load(string url) { uint ret = NDalicPINVOKE.AsyncImageLoader_Load__SWIG_0(swigCPtr, url); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } - internal uint Load(string url, Uint16Pair dimensions) { + public uint Load(string url, Uint16Pair dimensions) { uint ret = NDalicPINVOKE.AsyncImageLoader_Load__SWIG_1(swigCPtr, url, Uint16Pair.getCPtr(dimensions)); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } - internal uint Load(string url, Uint16Pair dimensions, FittingModeType fittingMode, SamplingModeType samplingMode, bool orientationCorrection) { + public uint Load(string url, Uint16Pair dimensions, FittingModeType fittingMode, SamplingModeType samplingMode, bool orientationCorrection) { uint ret = NDalicPINVOKE.AsyncImageLoader_Load__SWIG_2(swigCPtr, url, Uint16Pair.getCPtr(dimensions), (int)fittingMode, (int)samplingMode, orientationCorrection); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } - internal bool Cancel(uint loadingTaskId) { + public bool Cancel(uint loadingTaskId) { bool ret = NDalicPINVOKE.AsyncImageLoader_Cancel(swigCPtr, loadingTaskId); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } - internal void CancelAll() { + public void CancelAll() { NDalicPINVOKE.AsyncImageLoader_CancelAll(swigCPtr); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } - internal SWIGTYPE_p_Dali__SignalT_void_fuint32_t_Dali__PixelDataF_t ImageLoadedSignal() { + public SWIGTYPE_p_Dali__SignalT_void_fuint32_t_Dali__PixelDataF_t ImageLoadedSignal() { SWIGTYPE_p_Dali__SignalT_void_fuint32_t_Dali__PixelDataF_t ret = new SWIGTYPE_p_Dali__SignalT_void_fuint32_t_Dali__PixelDataF_t(NDalicPINVOKE.AsyncImageLoader_ImageLoadedSignal(swigCPtr), false); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } - internal AsyncImageLoader(SWIGTYPE_p_Dali__Toolkit__Internal__AsyncImageLoader impl) : this(NDalicPINVOKE.new_AsyncImageLoader__SWIG_2(SWIGTYPE_p_Dali__Toolkit__Internal__AsyncImageLoader.getCPtr(impl)), true) { + public AsyncImageLoader(SWIGTYPE_p_Dali__Toolkit__Internal__AsyncImageLoader impl) : this(NDalicPINVOKE.new_AsyncImageLoader__SWIG_2(SWIGTYPE_p_Dali__Toolkit__Internal__AsyncImageLoader.getCPtr(impl)), true) { if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } diff --git a/Tizen.NUI/src/internal/BaseHandle.cs b/Tizen.NUI/src/internal/BaseHandle.cs index 3587e33..39407df 100755 --- a/Tizen.NUI/src/internal/BaseHandle.cs +++ b/Tizen.NUI/src/internal/BaseHandle.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class BaseHandle : global::System.IDisposable { private global::System.Runtime.InteropServices.HandleRef swigCPtr; @@ -158,43 +158,43 @@ public class BaseHandle : global::System.IDisposable { } - internal BaseHandle(BaseObject handle) : this(NDalicPINVOKE.new_BaseHandle__SWIG_0(BaseObject.getCPtr(handle)), true) { + public BaseHandle(BaseObject handle) : this(NDalicPINVOKE.new_BaseHandle__SWIG_0(BaseObject.getCPtr(handle)), true) { if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } - internal BaseHandle() : this(NDalicPINVOKE.new_BaseHandle__SWIG_1(), true) { + public BaseHandle() : this(NDalicPINVOKE.new_BaseHandle__SWIG_1(), true) { if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } - internal BaseHandle(BaseHandle handle) : this(NDalicPINVOKE.new_BaseHandle__SWIG_2(BaseHandle.getCPtr(handle)), true) { + public BaseHandle(BaseHandle handle) : this(NDalicPINVOKE.new_BaseHandle__SWIG_2(BaseHandle.getCPtr(handle)), true) { if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } - internal BaseHandle Assign(BaseHandle rhs) { + public BaseHandle Assign(BaseHandle rhs) { BaseHandle ret = new BaseHandle(NDalicPINVOKE.BaseHandle_Assign(swigCPtr, BaseHandle.getCPtr(rhs)), false); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } - internal bool DoAction(string actionName, Property.Map attributes) { - bool ret = NDalicPINVOKE.BaseHandle_DoAction(swigCPtr, actionName, Property.Map.getCPtr(attributes)); + public bool DoAction(string actionName, PropertyMap attributes) { + bool ret = NDalicPINVOKE.BaseHandle_DoAction(swigCPtr, actionName, PropertyMap.getCPtr(attributes)); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } - internal string GetTypeName() { + public string GetTypeName() { string ret = NDalicPINVOKE.BaseHandle_GetTypeName(swigCPtr); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } - internal bool GetTypeInfo(TypeInfo info) { + public bool GetTypeInfo(TypeInfo info) { bool ret = NDalicPINVOKE.BaseHandle_GetTypeInfo(swigCPtr, TypeInfo.getCPtr(info)); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } - internal BaseObject GetBaseObject() { + public BaseObject GetBaseObject() { BaseObject ret = new BaseObject(NDalicPINVOKE.BaseHandle_GetBaseObject__SWIG_0(swigCPtr), false); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; @@ -205,32 +205,32 @@ public class BaseHandle : global::System.IDisposable { if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } - internal bool EqualTo(BaseHandle rhs) { + public bool EqualTo(BaseHandle rhs) { bool ret = NDalicPINVOKE.BaseHandle_EqualTo(swigCPtr, BaseHandle.getCPtr(rhs)); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } - internal bool NotEqualTo(BaseHandle rhs) { + public bool NotEqualTo(BaseHandle rhs) { bool ret = NDalicPINVOKE.BaseHandle_NotEqualTo(swigCPtr, BaseHandle.getCPtr(rhs)); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } - internal RefObject GetObjectPtr() { + public RefObject GetObjectPtr() { global::System.IntPtr cPtr = NDalicPINVOKE.BaseHandle_GetObjectPtr(swigCPtr); RefObject ret = (cPtr == global::System.IntPtr.Zero) ? null : new RefObject(cPtr, false); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } - internal bool HasBody() { + public bool HasBody() { bool ret = NDalicPINVOKE.BaseHandle_HasBody(swigCPtr); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } - internal bool IsEqual(BaseHandle rhs) { + public bool IsEqual(BaseHandle rhs) { bool ret = NDalicPINVOKE.BaseHandle_IsEqual(swigCPtr, BaseHandle.getCPtr(rhs)); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; diff --git a/Tizen.NUI/src/internal/BaseObject.cs b/Tizen.NUI/src/internal/BaseObject.cs index da5cd24..36e2f86 100755 --- a/Tizen.NUI/src/internal/BaseObject.cs +++ b/Tizen.NUI/src/internal/BaseObject.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class BaseObject : RefObject { private global::System.Runtime.InteropServices.HandleRef swigCPtr; @@ -35,25 +35,25 @@ public class BaseObject : RefObject { } } - internal bool DoAction(string actionName, Property.Map attributes) { - bool ret = NDalicPINVOKE.BaseObject_DoAction(swigCPtr, actionName, Property.Map.getCPtr(attributes)); + public bool DoAction(string actionName, PropertyMap attributes) { + bool ret = NDalicPINVOKE.BaseObject_DoAction(swigCPtr, actionName, PropertyMap.getCPtr(attributes)); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } - internal string GetTypeName() { + public string GetTypeName() { string ret = NDalicPINVOKE.BaseObject_GetTypeName(swigCPtr); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } - internal bool GetTypeInfo(TypeInfo info) { + public bool GetTypeInfo(TypeInfo info) { bool ret = NDalicPINVOKE.BaseObject_GetTypeInfo(swigCPtr, TypeInfo.getCPtr(info)); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } - internal bool DoConnectSignal(ConnectionTrackerInterface connectionTracker, string signalName, SWIGTYPE_p_FunctorDelegate functorDelegate) { + public bool DoConnectSignal(ConnectionTrackerInterface connectionTracker, string signalName, SWIGTYPE_p_FunctorDelegate functorDelegate) { bool ret = NDalicPINVOKE.BaseObject_DoConnectSignal(swigCPtr, ConnectionTrackerInterface.getCPtr(connectionTracker), signalName, SWIGTYPE_p_FunctorDelegate.getCPtr(functorDelegate)); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; diff --git a/Tizen.NUI/src/internal/BlendEquationType.cs b/Tizen.NUI/src/internal/BlendEquationType.cs index 39d843b..515df7d 100755 --- a/Tizen.NUI/src/internal/BlendEquationType.cs +++ b/Tizen.NUI/src/internal/BlendEquationType.cs @@ -8,9 +8,9 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { -internal enum BlendEquationType { +public enum BlendEquationType { ADD = 0x8006, SUBTRACT = 0x800A, REVERSE_SUBTRACT = 0x800B diff --git a/Tizen.NUI/src/internal/BlendFactorType.cs b/Tizen.NUI/src/internal/BlendFactorType.cs index 96ac904..a2c2b4d 100755 --- a/Tizen.NUI/src/internal/BlendFactorType.cs +++ b/Tizen.NUI/src/internal/BlendFactorType.cs @@ -8,9 +8,9 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { -internal enum BlendFactorType { +public enum BlendFactorType { ZERO = 0, ONE = 1, SRC_COLOR = 0x0300, diff --git a/Tizen.NUI/src/internal/BlendModeType.cs b/Tizen.NUI/src/internal/BlendModeType.cs index 900c6a1..1066d9b 100755 --- a/Tizen.NUI/src/internal/BlendModeType.cs +++ b/Tizen.NUI/src/internal/BlendModeType.cs @@ -8,9 +8,9 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { -internal enum BlendModeType { +public enum BlendModeType { OFF, AUTO, ON diff --git a/Tizen.NUI/src/internal/BoolSignal.cs b/Tizen.NUI/src/internal/BoolSignal.cs index 4f7a134..15ab8ad 100755 --- a/Tizen.NUI/src/internal/BoolSignal.cs +++ b/Tizen.NUI/src/internal/BoolSignal.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class BoolSignal : global::System.IDisposable { private global::System.Runtime.InteropServices.HandleRef swigCPtr; @@ -40,38 +40,38 @@ public class BoolSignal : global::System.IDisposable { } } - internal BoolSignal() : this(NDalicPINVOKE.new_BoolSignal(), true) { + public BoolSignal() : this(NDalicPINVOKE.new_BoolSignal(), true) { if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } - internal bool Empty() { + public bool Empty() { bool ret = NDalicPINVOKE.BoolSignal_Empty(swigCPtr); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } - internal uint GetConnectionCount() { + public uint GetConnectionCount() { uint ret = NDalicPINVOKE.BoolSignal_GetConnectionCount(swigCPtr); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } - internal void Connect(SWIGTYPE_p_f___bool func) { + public void Connect(SWIGTYPE_p_f___bool func) { NDalicPINVOKE.BoolSignal_Connect__SWIG_0(swigCPtr, SWIGTYPE_p_f___bool.getCPtr(func)); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } - internal void Disconnect(SWIGTYPE_p_f___bool func) { + public void Disconnect(SWIGTYPE_p_f___bool func) { NDalicPINVOKE.BoolSignal_Disconnect(swigCPtr, SWIGTYPE_p_f___bool.getCPtr(func)); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } - internal void Connect(ConnectionTrackerInterface connectionTracker, SWIGTYPE_p_Dali__FunctorDelegate arg1) { + public void Connect(ConnectionTrackerInterface connectionTracker, SWIGTYPE_p_Dali__FunctorDelegate arg1) { NDalicPINVOKE.BoolSignal_Connect__SWIG_4(swigCPtr, ConnectionTrackerInterface.getCPtr(connectionTracker), SWIGTYPE_p_Dali__FunctorDelegate.getCPtr(arg1)); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } - internal bool Emit() { + public bool Emit() { bool ret = NDalicPINVOKE.BoolSignal_Emit(swigCPtr); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; diff --git a/Tizen.NUI/src/internal/BufferImage.cs b/Tizen.NUI/src/internal/BufferImage.cs index d0b09af..69c3e4b 100755 --- a/Tizen.NUI/src/internal/BufferImage.cs +++ b/Tizen.NUI/src/internal/BufferImage.cs @@ -24,7 +24,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class BufferImage : Image { private global::System.Runtime.InteropServices.HandleRef swigCPtr; @@ -61,84 +61,84 @@ public class BufferImage : Image { } - internal BufferImage (uint width, uint height, PixelFormat pixelformat) : this (NDalicPINVOKE.BufferImage_New__SWIG_0(width, height, (int)pixelformat), true) { + public BufferImage (uint width, uint height, PixelFormat pixelformat) : this (NDalicPINVOKE.BufferImage_New__SWIG_0(width, height, (int)pixelformat), true) { if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } - internal BufferImage (uint width, uint height) : this (NDalicPINVOKE.BufferImage_New__SWIG_1(width, height), true) { + public BufferImage (uint width, uint height) : this (NDalicPINVOKE.BufferImage_New__SWIG_1(width, height), true) { if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } - internal BufferImage (byte[] pixelBuffer, uint width, uint height, PixelFormat pixelFormat, uint stride) : this (NDalicPINVOKE.BufferImage_New__SWIG_2(pixelBuffer, width, height, (int)pixelFormat, stride), true) { + public BufferImage (byte[] pixelBuffer, uint width, uint height, PixelFormat pixelFormat, uint stride) : this (NDalicPINVOKE.BufferImage_New__SWIG_2(pixelBuffer, width, height, (int)pixelFormat, stride), true) { if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } - internal BufferImage (byte[] pixelBuffer, uint width, uint height, PixelFormat pixelFormat) : this (NDalicPINVOKE.BufferImage_New__SWIG_3(pixelBuffer, width, height, (int)pixelFormat), true) { + public BufferImage (byte[] pixelBuffer, uint width, uint height, PixelFormat pixelFormat) : this (NDalicPINVOKE.BufferImage_New__SWIG_3(pixelBuffer, width, height, (int)pixelFormat), true) { if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } - internal BufferImage (byte[] pixelBuffer, uint width, uint height) : this (NDalicPINVOKE.BufferImage_New__SWIG_4(pixelBuffer, width, height), true) { + public BufferImage (byte[] pixelBuffer, uint width, uint height) : this (NDalicPINVOKE.BufferImage_New__SWIG_4(pixelBuffer, width, height), true) { if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } - internal new static BufferImage DownCast(BaseHandle handle) { + public new static BufferImage DownCast(BaseHandle handle) { BufferImage ret = new BufferImage(NDalicPINVOKE.BufferImage_DownCast(BaseHandle.getCPtr(handle)), true); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } - internal BufferImage(BufferImage handle) : this(NDalicPINVOKE.new_BufferImage__SWIG_1(BufferImage.getCPtr(handle)), true) { + public BufferImage(BufferImage handle) : this(NDalicPINVOKE.new_BufferImage__SWIG_1(BufferImage.getCPtr(handle)), true) { if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } - internal BufferImage Assign(BufferImage rhs) { + public BufferImage Assign(BufferImage rhs) { BufferImage ret = new BufferImage(NDalicPINVOKE.BufferImage_Assign(swigCPtr, BufferImage.getCPtr(rhs)), false); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } - internal static BufferImage WHITE() { + public static BufferImage WHITE() { BufferImage ret = new BufferImage(NDalicPINVOKE.BufferImage_WHITE(), true); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } - internal SWIGTYPE_p_unsigned_char GetBuffer() { + public SWIGTYPE_p_unsigned_char GetBuffer() { global::System.IntPtr cPtr = NDalicPINVOKE.BufferImage_GetBuffer(swigCPtr); SWIGTYPE_p_unsigned_char ret = (cPtr == global::System.IntPtr.Zero) ? null : new SWIGTYPE_p_unsigned_char(cPtr, false); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } - internal uint GetBufferSize() { + public uint GetBufferSize() { uint ret = NDalicPINVOKE.BufferImage_GetBufferSize(swigCPtr); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } - internal uint GetBufferStride() { + public uint GetBufferStride() { uint ret = NDalicPINVOKE.BufferImage_GetBufferStride(swigCPtr); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } - internal PixelFormat GetPixelFormat() { + public PixelFormat GetPixelFormat() { PixelFormat ret = (PixelFormat)NDalicPINVOKE.BufferImage_GetPixelFormat(swigCPtr); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } - internal void Update() { + public void Update() { NDalicPINVOKE.BufferImage_Update__SWIG_0(swigCPtr); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } - internal void Update(RectUnsignedInteger updateArea) { + public void Update(RectUnsignedInteger updateArea) { NDalicPINVOKE.BufferImage_Update__SWIG_1(swigCPtr, RectUnsignedInteger.getCPtr(updateArea)); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } - internal bool IsDataExternal() { + public bool IsDataExternal() { bool ret = NDalicPINVOKE.BufferImage_IsDataExternal(swigCPtr); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; diff --git a/Tizen.NUI/src/internal/Builder.cs b/Tizen.NUI/src/internal/Builder.cs index 8e97230..653e25c 100755 --- a/Tizen.NUI/src/internal/Builder.cs +++ b/Tizen.NUI/src/internal/Builder.cs @@ -24,7 +24,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { using System; using System.Runtime.InteropServices; @@ -66,7 +66,7 @@ public class Builder : BaseHandle { - internal class QuitEventArgs : EventArgs + public class QuitEventArgs : EventArgs { } @@ -75,7 +75,7 @@ public class Builder : BaseHandle { private DaliEventHandler _builderQuitEventHandler; private QuitEventCallbackDelegate _builderQuitEventCallbackDelegate; - internal event DaliEventHandler Quit + public event DaliEventHandler Quit { add { @@ -118,143 +118,166 @@ public class Builder : BaseHandle { } } + /// + public void LoadFromFile( string fileName ) + { + try + { + string json = System.IO.File.ReadAllText( fileName ); + if( json.Length > 0 ) + { + LoadFromString( json ); + } + else + { + throw new global::System.InvalidOperationException("Failed to load file " +fileName); + + } + } + catch ( System.Exception e) + { + throw new global::System.InvalidOperationException("Failed to parse " +fileName); + } + } + + - internal Builder () : this (NDalicPINVOKE.Builder_New(), true) { + public Builder () : this (NDalicPINVOKE.Builder_New(), true) { if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } - internal void LoadFromString(string data, Builder.UIFormat format) { + public void LoadFromString(string data, Builder.UIFormat format) { NDalicPINVOKE.Builder_LoadFromString__SWIG_0(swigCPtr, data, (int)format); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } - internal void LoadFromString(string data) { + public void LoadFromString(string data) { NDalicPINVOKE.Builder_LoadFromString__SWIG_1(swigCPtr, data); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } - internal void AddConstants(Property.Map map) { - NDalicPINVOKE.Builder_AddConstants(swigCPtr, Property.Map.getCPtr(map)); + public void AddConstants(PropertyMap map) { + NDalicPINVOKE.Builder_AddConstants(swigCPtr, PropertyMap.getCPtr(map)); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } - internal void AddConstant(string key, Property.Value value) { - NDalicPINVOKE.Builder_AddConstant(swigCPtr, key, Property.Value.getCPtr(value)); + public void AddConstant(string key, PropertyValue value) { + NDalicPINVOKE.Builder_AddConstant(swigCPtr, key, PropertyValue.getCPtr(value)); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } - internal Property.Map GetConstants() { - Property.Map ret = new Property.Map(NDalicPINVOKE.Builder_GetConstants(swigCPtr), false); + public PropertyMap GetConstants() { + PropertyMap ret = new PropertyMap(NDalicPINVOKE.Builder_GetConstants(swigCPtr), false); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } - internal Property.Value GetConstant(string key) { - Property.Value ret = new Property.Value(NDalicPINVOKE.Builder_GetConstant(swigCPtr, key), false); + public PropertyValue GetConstant(string key) { + PropertyValue ret = new PropertyValue(NDalicPINVOKE.Builder_GetConstant(swigCPtr, key), false); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } - internal Animation CreateAnimation(string animationName) { + public Animation CreateAnimation(string animationName) { Animation ret = new Animation(NDalicPINVOKE.Builder_CreateAnimation__SWIG_0(swigCPtr, animationName), true); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } - internal Animation CreateAnimation(string animationName, Property.Map map) { - Animation ret = new Animation(NDalicPINVOKE.Builder_CreateAnimation__SWIG_1(swigCPtr, animationName, Property.Map.getCPtr(map)), true); + public Animation CreateAnimation(string animationName, PropertyMap map) { + Animation ret = new Animation(NDalicPINVOKE.Builder_CreateAnimation__SWIG_1(swigCPtr, animationName, PropertyMap.getCPtr(map)), true); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } - internal Animation CreateAnimation(string animationName, Actor sourceActor) { + public Animation CreateAnimation(string animationName, Actor sourceActor) { Animation ret = new Animation(NDalicPINVOKE.Builder_CreateAnimation__SWIG_2(swigCPtr, animationName, Actor.getCPtr(sourceActor)), true); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } - internal Animation CreateAnimation(string animationName, Property.Map map, Actor sourceActor) { - Animation ret = new Animation(NDalicPINVOKE.Builder_CreateAnimation__SWIG_3(swigCPtr, animationName, Property.Map.getCPtr(map), Actor.getCPtr(sourceActor)), true); + public Animation CreateAnimation(string animationName, PropertyMap map, Actor sourceActor) { + Animation ret = new Animation(NDalicPINVOKE.Builder_CreateAnimation__SWIG_3(swigCPtr, animationName, PropertyMap.getCPtr(map), Actor.getCPtr(sourceActor)), true); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } - internal BaseHandle Create(string templateName) { + public BaseHandle Create(string templateName) { BaseHandle ret = new BaseHandle(NDalicPINVOKE.Builder_Create__SWIG_0(swigCPtr, templateName), true); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } - internal BaseHandle Create(string templateName, Property.Map map) { - BaseHandle ret = new BaseHandle(NDalicPINVOKE.Builder_Create__SWIG_1(swigCPtr, templateName, Property.Map.getCPtr(map)), true); + public BaseHandle Create(string templateName, PropertyMap map) { + BaseHandle ret = new BaseHandle(NDalicPINVOKE.Builder_Create__SWIG_1(swigCPtr, templateName, PropertyMap.getCPtr(map)), true); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } - internal BaseHandle CreateFromJson(string json) { + public BaseHandle CreateFromJson(string json) { BaseHandle ret = new BaseHandle(NDalicPINVOKE.Builder_CreateFromJson(swigCPtr, json), true); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } - internal bool ApplyStyle(string styleName, Handle handle) { + public bool ApplyStyle(string styleName, Handle handle) { bool ret = NDalicPINVOKE.Builder_ApplyStyle(swigCPtr, styleName, Handle.getCPtr(handle)); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } - internal bool ApplyFromJson(Handle handle, string json) { + public bool ApplyFromJson(Handle handle, string json) { bool ret = NDalicPINVOKE.Builder_ApplyFromJson(swigCPtr, Handle.getCPtr(handle), json); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } - internal void AddActors(Actor toActor) { + public void AddActors(Actor toActor) { NDalicPINVOKE.Builder_AddActors__SWIG_0(swigCPtr, Actor.getCPtr(toActor)); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } - internal void AddActors(string sectionName, Actor toActor) { + public void AddActors(string sectionName, Actor toActor) { NDalicPINVOKE.Builder_AddActors__SWIG_1(swigCPtr, sectionName, Actor.getCPtr(toActor)); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } - internal void CreateRenderTask(string name) { + public void CreateRenderTask(string name) { NDalicPINVOKE.Builder_CreateRenderTask(swigCPtr, name); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } - internal FrameBufferImage GetFrameBufferImage(string name) { + public FrameBufferImage GetFrameBufferImage(string name) { FrameBufferImage ret = new FrameBufferImage(NDalicPINVOKE.Builder_GetFrameBufferImage(swigCPtr, name), true); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } - internal Path GetPath(string name) { + public Path GetPath(string name) { Path ret = new Path(NDalicPINVOKE.Builder_GetPath(swigCPtr, name), true); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } - internal PathConstrainer GetPathConstrainer(string pathConstrainerName) { + public PathConstrainer GetPathConstrainer(string pathConstrainerName) { PathConstrainer ret = new PathConstrainer(NDalicPINVOKE.Builder_GetPathConstrainer(swigCPtr, pathConstrainerName), true); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } - internal LinearConstrainer GetLinearConstrainer(string linearConstrainerName) { + public LinearConstrainer GetLinearConstrainer(string linearConstrainerName) { LinearConstrainer ret = new LinearConstrainer(NDalicPINVOKE.Builder_GetLinearConstrainer(swigCPtr, linearConstrainerName), true); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } - internal VoidSignal QuitSignal() { + public VoidSignal QuitSignal() { VoidSignal ret = new VoidSignal(NDalicPINVOKE.Builder_QuitSignal(swigCPtr), false); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } - internal enum UIFormat { + public enum UIFormat { JSON } diff --git a/Tizen.NUI/src/internal/ButtonSignal.cs b/Tizen.NUI/src/internal/ButtonSignal.cs old mode 100644 new mode 100755 index 9c84223..da42891 --- a/Tizen.NUI/src/internal/ButtonSignal.cs +++ b/Tizen.NUI/src/internal/ButtonSignal.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class ButtonSignal : global::System.IDisposable { private global::System.Runtime.InteropServices.HandleRef swigCPtr; diff --git a/Tizen.NUI/src/internal/ChildPropertyRegistration.cs b/Tizen.NUI/src/internal/ChildPropertyRegistration.cs old mode 100644 new mode 100755 index a08e95e..c986c64 --- a/Tizen.NUI/src/internal/ChildPropertyRegistration.cs +++ b/Tizen.NUI/src/internal/ChildPropertyRegistration.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class ChildPropertyRegistration : global::System.IDisposable { private global::System.Runtime.InteropServices.HandleRef swigCPtr; @@ -40,7 +40,7 @@ public class ChildPropertyRegistration : global::System.IDisposable { } } - public ChildPropertyRegistration(TypeRegistration registered, string name, int index, Property.Type type) : this(NDalicPINVOKE.new_ChildPropertyRegistration(TypeRegistration.getCPtr(registered), name, index, (int)type), true) { + public ChildPropertyRegistration(TypeRegistration registered, string name, int index, PropertyType type) : this(NDalicPINVOKE.new_ChildPropertyRegistration(TypeRegistration.getCPtr(registered), name, index, (int)type), true) { if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } diff --git a/Tizen.NUI/src/internal/ClampState.cs b/Tizen.NUI/src/internal/ClampState.cs old mode 100644 new mode 100755 index 6d299d9..ef4588a --- a/Tizen.NUI/src/internal/ClampState.cs +++ b/Tizen.NUI/src/internal/ClampState.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public enum ClampState { NotClamped, diff --git a/Tizen.NUI/src/internal/ClampState2D.cs b/Tizen.NUI/src/internal/ClampState2D.cs old mode 100644 new mode 100755 index 786d8df..e975843 --- a/Tizen.NUI/src/internal/ClampState2D.cs +++ b/Tizen.NUI/src/internal/ClampState2D.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class ClampState2D : global::System.IDisposable { private global::System.Runtime.InteropServices.HandleRef swigCPtr; diff --git a/Tizen.NUI/src/internal/ColorMode.cs b/Tizen.NUI/src/internal/ColorMode.cs deleted file mode 100644 index 5bef95a..0000000 --- a/Tizen.NUI/src/internal/ColorMode.cs +++ /dev/null @@ -1,20 +0,0 @@ -//------------------------------------------------------------------------------ -// -// -// This file was automatically generated by SWIG (http://www.swig.org). -// Version 3.0.9 -// -// Do not make changes to this file unless you know what you are doing--modify -// the SWIG interface file instead. -//------------------------------------------------------------------------------ - -namespace NUI { - -public enum ColorMode { - USE_OWN_COLOR, - USE_PARENT_COLOR, - USE_OWN_MULTIPLY_PARENT_COLOR, - USE_OWN_MULTIPLY_PARENT_ALPHA -} - -} diff --git a/Tizen.NUI/src/internal/ConnectionTracker.cs b/Tizen.NUI/src/internal/ConnectionTracker.cs old mode 100644 new mode 100755 index f0c8298..f7d2cd5 --- a/Tizen.NUI/src/internal/ConnectionTracker.cs +++ b/Tizen.NUI/src/internal/ConnectionTracker.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class ConnectionTracker : ConnectionTrackerInterface { private global::System.Runtime.InteropServices.HandleRef swigCPtr; diff --git a/Tizen.NUI/src/internal/ConnectionTrackerInterface.cs b/Tizen.NUI/src/internal/ConnectionTrackerInterface.cs old mode 100644 new mode 100755 index 1f233c3..7b2cfd8 --- a/Tizen.NUI/src/internal/ConnectionTrackerInterface.cs +++ b/Tizen.NUI/src/internal/ConnectionTrackerInterface.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class ConnectionTrackerInterface : SignalObserver { private global::System.Runtime.InteropServices.HandleRef swigCPtr; diff --git a/Tizen.NUI/src/internal/ActorWheelEventSignal.cs b/Tizen.NUI/src/internal/ControlKeySignal.cs similarity index 65% rename from Tizen.NUI/src/internal/ActorWheelEventSignal.cs rename to Tizen.NUI/src/internal/ControlKeySignal.cs index 7ba9c52..82dc439 100755 --- a/Tizen.NUI/src/internal/ActorWheelEventSignal.cs +++ b/Tizen.NUI/src/internal/ControlKeySignal.cs @@ -8,22 +8,22 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { -public class ActorWheelEventSignal : global::System.IDisposable { +public class ControlKeySignal : global::System.IDisposable { private global::System.Runtime.InteropServices.HandleRef swigCPtr; protected bool swigCMemOwn; - internal ActorWheelEventSignal(global::System.IntPtr cPtr, bool cMemoryOwn) { + internal ControlKeySignal(global::System.IntPtr cPtr, bool cMemoryOwn) { swigCMemOwn = cMemoryOwn; swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); } - internal static global::System.Runtime.InteropServices.HandleRef getCPtr(ActorWheelEventSignal obj) { + internal static global::System.Runtime.InteropServices.HandleRef getCPtr(ControlKeySignal obj) { return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; } - ~ActorWheelEventSignal() { + ~ControlKeySignal() { Dispose(); } @@ -32,7 +32,7 @@ public class ActorWheelEventSignal : global::System.IDisposable { if (swigCPtr.Handle != global::System.IntPtr.Zero) { if (swigCMemOwn) { swigCMemOwn = false; - NDalicPINVOKE.delete_ActorWheelEventSignal(swigCPtr); + NDalicPINVOKE.delete_ControlKeySignal(swigCPtr); } swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); } @@ -40,41 +40,41 @@ public class ActorWheelEventSignal : global::System.IDisposable { } } - internal bool Empty() { - bool ret = NDalicPINVOKE.ActorWheelEventSignal_Empty(swigCPtr); + public bool Empty() { + bool ret = NDalicPINVOKE.ControlKeySignal_Empty(swigCPtr); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } - internal uint GetConnectionCount() { - uint ret = NDalicPINVOKE.ActorWheelEventSignal_GetConnectionCount(swigCPtr); + public uint GetConnectionCount() { + uint ret = NDalicPINVOKE.ControlKeySignal_GetConnectionCount(swigCPtr); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } - internal void Connect(System.Delegate func) { + public void Connect(System.Delegate func) { System.IntPtr ip = System.Runtime.InteropServices.Marshal.GetFunctionPointerForDelegate(func); { - NDalicPINVOKE.ActorWheelEventSignal_Connect(swigCPtr, new System.Runtime.InteropServices.HandleRef(this, ip)); + NDalicPINVOKE.ControlKeySignal_Connect(swigCPtr, new System.Runtime.InteropServices.HandleRef(this, ip)); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } } - internal void Disconnect(System.Delegate func) { + public void Disconnect(System.Delegate func) { System.IntPtr ip = System.Runtime.InteropServices.Marshal.GetFunctionPointerForDelegate(func); { - NDalicPINVOKE.ActorWheelEventSignal_Disconnect(swigCPtr, new System.Runtime.InteropServices.HandleRef(this, ip)); + NDalicPINVOKE.ControlKeySignal_Disconnect(swigCPtr, new System.Runtime.InteropServices.HandleRef(this, ip)); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } } - internal bool Emit(Actor arg1, WheelEvent arg2) { - bool ret = NDalicPINVOKE.ActorWheelEventSignal_Emit(swigCPtr, Actor.getCPtr(arg1), WheelEvent.getCPtr(arg2)); + public bool Emit(View arg1, Key arg2) { + bool ret = NDalicPINVOKE.ControlKeySignal_Emit(swigCPtr, View.getCPtr(arg1), Key.getCPtr(arg2)); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } - internal ActorWheelEventSignal() : this(NDalicPINVOKE.new_ActorWheelEventSignal(), true) { + public ControlKeySignal() : this(NDalicPINVOKE.new_ControlKeySignal(), true) { if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } diff --git a/Tizen.NUI/src/internal/ControlOrientationType.cs b/Tizen.NUI/src/internal/ControlOrientationType.cs old mode 100644 new mode 100755 index 98cc977..f0490d3 --- a/Tizen.NUI/src/internal/ControlOrientationType.cs +++ b/Tizen.NUI/src/internal/ControlOrientationType.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public enum ControlOrientationType { Up, diff --git a/Tizen.NUI/src/internal/CustomActor.cs b/Tizen.NUI/src/internal/CustomActor.cs old mode 100644 new mode 100755 index 106e739..268eab2 --- a/Tizen.NUI/src/internal/CustomActor.cs +++ b/Tizen.NUI/src/internal/CustomActor.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class CustomActor : Actor { private global::System.Runtime.InteropServices.HandleRef swigCPtr; diff --git a/Tizen.NUI/src/internal/CustomActorImpl.cs b/Tizen.NUI/src/internal/CustomActorImpl.cs old mode 100644 new mode 100755 index 7cad1f2..b9e71ec --- a/Tizen.NUI/src/internal/CustomActorImpl.cs +++ b/Tizen.NUI/src/internal/CustomActorImpl.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class CustomActorImpl : RefObject { private global::System.Runtime.InteropServices.HandleRef swigCPtr; @@ -61,8 +61,8 @@ public class CustomActorImpl : RefObject { if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } - public virtual void OnPropertySet(int index, Property.Value propertyValue) { - NDalicPINVOKE.CustomActorImpl_OnPropertySet(swigCPtr, index, Property.Value.getCPtr(propertyValue)); + public virtual void OnPropertySet(int index, PropertyValue propertyValue) { + NDalicPINVOKE.CustomActorImpl_OnPropertySet(swigCPtr, index, PropertyValue.getCPtr(propertyValue)); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } @@ -76,26 +76,26 @@ public class CustomActorImpl : RefObject { if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } - public virtual bool OnTouchEvent(TouchEvent arg0) { - bool ret = NDalicPINVOKE.CustomActorImpl_OnTouchEvent(swigCPtr, TouchEvent.getCPtr(arg0)); + public virtual bool OnTouchEvent(SWIGTYPE_p_Dali__TouchEvent arg0) { + bool ret = NDalicPINVOKE.CustomActorImpl_OnTouchEvent(swigCPtr, SWIGTYPE_p_Dali__TouchEvent.getCPtr(arg0)); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } - public virtual bool OnHoverEvent(HoverEvent arg0) { - bool ret = NDalicPINVOKE.CustomActorImpl_OnHoverEvent(swigCPtr, HoverEvent.getCPtr(arg0)); + public virtual bool OnHoverEvent(Hover arg0) { + bool ret = NDalicPINVOKE.CustomActorImpl_OnHoverEvent(swigCPtr, Hover.getCPtr(arg0)); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } - public virtual bool OnKeyEvent(KeyEvent arg0) { - bool ret = NDalicPINVOKE.CustomActorImpl_OnKeyEvent(swigCPtr, KeyEvent.getCPtr(arg0)); + public virtual bool OnKeyEvent(Key arg0) { + bool ret = NDalicPINVOKE.CustomActorImpl_OnKeyEvent(swigCPtr, Key.getCPtr(arg0)); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } - public virtual bool OnWheelEvent(WheelEvent arg0) { - bool ret = NDalicPINVOKE.CustomActorImpl_OnWheelEvent(swigCPtr, WheelEvent.getCPtr(arg0)); + public virtual bool OnWheelEvent(Wheel arg0) { + bool ret = NDalicPINVOKE.CustomActorImpl_OnWheelEvent(swigCPtr, Wheel.getCPtr(arg0)); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } diff --git a/Tizen.NUI/src/public/DaliApplication.cs b/Tizen.NUI/src/internal/DaliApplication.cs similarity index 87% rename from Tizen.NUI/src/public/DaliApplication.cs rename to Tizen.NUI/src/internal/DaliApplication.cs index d0c9138..1f5316e 100755 --- a/Tizen.NUI/src/public/DaliApplication.cs +++ b/Tizen.NUI/src/internal/DaliApplication.cs @@ -16,7 +16,7 @@ */ using System; -using NUI; +using Tizen.NUI; //------------------------------------------------------------------------------ // This file can only run on Tizen target. You should compile it with hello-test.cs, and @@ -35,12 +35,12 @@ namespace Tizen.Applications /// /// This application is created before OnCreate() or created event. And the DaliApplication will be terminated when this application is closed. /// - protected NUI.Application application; + protected Tizen.NUI.Application application; /// /// The instance of the Dali Application extension. /// - protected NUI.ApplicationExtensions applicationExt; + protected Tizen.NUI.ApplicationExtensions applicationExt; /// /// Store the stylesheet value. @@ -50,7 +50,7 @@ namespace Tizen.Applications /// /// Store the window mode value. /// - protected NUI.Application.WINDOW_MODE m_windowMode; + protected Tizen.NUI.Application.WINDOW_MODE m_windowMode; /// /// Store the app mode value. @@ -83,7 +83,7 @@ namespace Tizen.Applications /// /// The constructor with stylesheet and window mode. /// - public DaliApplication(string stylesheet, NUI.Application.WINDOW_MODE windowMode) + public DaliApplication(string stylesheet, Tizen.NUI.Application.WINDOW_MODE windowMode) : base() { //handle the stylesheet and windowMode @@ -101,23 +101,23 @@ namespace Tizen.Applications switch(appMode) { case APP_MODE.DEFAULT: - application = NUI.Application.NewApplication(); + application = Tizen.NUI.Application.NewApplication(); break; case APP_MODE.STYLESHEETONLY: - application = NUI.Application.NewApplication(m_stylesheet); + application = Tizen.NUI.Application.NewApplication(m_stylesheet); break; case APP_MODE.STYLESHEETWITHWINDOWMODE: - application = NUI.Application.NewApplication(m_stylesheet, m_windowMode); + application = Tizen.NUI.Application.NewApplication(m_stylesheet, m_windowMode); break; default: break; } - applicationExt = new NUI.ApplicationExtensions(application); + applicationExt = new Tizen.NUI.ApplicationExtensions(application); applicationExt.Init(); stage = Stage.GetCurrent(); - stage.SetBackgroundColor( NDalic.WHITE ); + stage.SetBackgroundColor( Color.White ); } /// diff --git a/Tizen.NUI/src/internal/DaliEnumConstants.cs b/Tizen.NUI/src/internal/DaliEnumConstants.cs new file mode 100755 index 0000000..3f991b5 --- /dev/null +++ b/Tizen.NUI/src/internal/DaliEnumConstants.cs @@ -0,0 +1,186 @@ +/** Copyright (c) 2016 Samsung Electronics Co., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ +using System; + +namespace Tizen.NUI +{ + namespace Constants + { + + public enum TextureType + { + Texture2D = Tizen.NUI.TextureType.TEXTURE_2D, ///< One 2D image @SINCE_1_1.43 + TextureCube = Tizen.NUI.TextureType.TEXTURE_CUBE ///< Six 2D images arranged in a cube-shape @SINCE_1_1.43 + } + + public enum ViewMode + { + Mono = Tizen.NUI.ViewMode.MONO, ///< Monoscopic (single camera). This is the default @SINCE_1_0.0 + StereoHorizontal = Tizen.NUI.ViewMode.STEREO_HORIZONTAL, ///< Stereoscopic. Frame buffer is split horizontally with the left and right camera views in their respective sides. @SINCE_1_0.0 + StereoVertical = Tizen.NUI.ViewMode.STEREO_VERTICAL, ///< Stereoscopic. Frame buffer is split vertically with the left camera view at the top and the right camera view at the bottom. @SINCE_1_0.0 + StereoInterlaced = Tizen.NUI.ViewMode.STEREO_INTERLACED ///< @DEPRECATED_1_1.19 @brief Stereoscopic. Left/Right camera views are rendered into the framebuffer on alternate frames. @SINCE_1_0.0 + } + + public enum MeshVisualShadingModeValue + { + TexturelessWithDiffuseLighting = Tizen.NUI.MeshVisualShadingModeValue.TEXTURELESS_WITH_DIFFUSE_LIGHTING, ///< *Simplest*. One color that is lit by ambient and diffuse lighting. @SINCE_1_1.45 + TexturedWithSpecularLigting = Tizen.NUI.MeshVisualShadingModeValue.TEXTURED_WITH_SPECULAR_LIGHTING, ///< Uses only the visual image textures provided with specular lighting in addition to ambient and diffuse lighting. @SINCE_1_1.45 + TexturedWithDetailedSpecularLighting = Tizen.NUI.MeshVisualShadingModeValue.TEXTURED_WITH_DETAILED_SPECULAR_LIGHTING ///< Uses all textures provided including a gloss, normal and texture map along with specular, ambient and diffuse lighting. @SINCE_1_1.45 + } + + public struct Visual + { + public enum Type + { + Border = Tizen.NUI.VisualType.BORDER, + Color = Tizen.NUI.VisualType.COLOR, + Gradient = Tizen.NUI.VisualType.GRADIENT, + Image = Tizen.NUI.VisualType.IMAGE, + Mesh = Tizen.NUI.VisualType.MESH, + Primitive = Tizen.NUI.VisualType.PRIMITIVE, + WireFrame = Tizen.NUI.VisualType.WIREFRAME, + Text = Tizen.NUI.VisualType.TEXT + } + + public struct Property + { + public static readonly int Type = NDalic.VISUAL_PROPERTY_TYPE; + public static readonly int Shader = NDalic.VISUAL_PROPERTY_SHADER; + public static readonly int Transform = NDalic.VISUAL_PROPERTY_TRANSFORM; + public static readonly int PremultipliedAlpha = NDalic.VISUAL_PROPERTY_PREMULTIPLIED_ALPHA; + public static readonly int MixCOlor = NDalic.VISUAL_PROPERTY_MIX_COLOR; + } + + public struct ShaderProperty + { + public static readonly int VertexShader = NDalic.VISUAL_SHADER_VERTEX; + public static readonly int FragmentShader = NDalic.VISUAL_SHADER_FRAGMENT; + public static readonly int ShaderSubdivideGridX = NDalic.VISUAL_SHADER_SUBDIVIDE_GRID_X; + public static readonly int ShaderSubdivideGridY = NDalic.VISUAL_SHADER_SUBDIVIDE_GRID_Y; + public static readonly int ShaderHints = NDalic.VISUAL_SHADER_HINTS; + } + } + + public struct BorderVisualProperty + { + public static readonly int Color = NDalic.BORDER_VISUAL_COLOR; + public static readonly int Size = NDalic.BORDER_VISUAL_SIZE; + public static readonly int AntiAliasing = NDalic.BORDER_VISUAL_ANTI_ALIASING; + } + + public struct ColorVisualProperty + { + public static readonly int MixColor = NDalic.COLOR_VISUAL_MIX_COLOR; + } + + public struct GradientVisualProperty + { + public static readonly int StartPosition = NDalic.GRADIENT_VISUAL_START_POSITION; + public static readonly int EndPosition = NDalic.GRADIENT_VISUAL_END_POSITION; + public static readonly int Center = NDalic.GRADIENT_VISUAL_CENTER; + public static readonly int Radius = NDalic.GRADIENT_VISUAL_RADIUS; + public static readonly int StopOffset = NDalic.GRADIENT_VISUAL_STOP_OFFSET; + public static readonly int StopColor = NDalic.GRADIENT_VISUAL_STOP_COLOR; + public static readonly int Units = NDalic.GRADIENT_VISUAL_UNITS; + public static readonly int SpreadMethod = NDalic.GRADIENT_VISUAL_SPREAD_METHOD; + } + + public struct ImageVisualProperty + { + public static readonly int URL = NDalic.IMAGE_VISUAL_URL; + public static readonly int FittingMode = NDalic.IMAGE_VISUAL_FITTING_MODE; + public static readonly int SamplingMode = NDalic.IMAGE_VISUAL_SAMPLING_MODE; + public static readonly int DesiredWidth = NDalic.IMAGE_VISUAL_DESIRED_WIDTH; + public static readonly int DesiredHeight = NDalic.IMAGE_VISUAL_DESIRED_HEIGHT; + public static readonly int SynchronousLoading = NDalic.IMAGE_VISUAL_SYNCHRONOUS_LOADING; + public static readonly int BorderOnly = NDalic.IMAGE_VISUAL_BORDER_ONLY; + public static readonly int BatchingEnabled = NDalic.IMAGE_VISUAL_BATCHING_ENABLED; + public static readonly int PixelArea = NDalic.IMAGE_VISUAL_PIXEL_AREA; + public static readonly int WrapModeU = NDalic.IMAGE_VISUAL_WRAP_MODE_U; + public static readonly int WrapModeV = NDalic.IMAGE_VISUAL_WRAP_MODE_V; + } + + public struct MeshVisualProperty + { + public static readonly int ObjectURL = NDalic.MESH_VISUAL_OBJECT_URL; + public static readonly int MaterialtURL = NDalic.MESH_VISUAL_MATERIAL_URL; + public static readonly int TexturesPath = NDalic.MESH_VISUAL_TEXTURES_PATH; + public static readonly int ShadingMode = NDalic.MESH_VISUAL_SHADING_MODE; + public static readonly int UseMipmapping = NDalic.MESH_VISUAL_USE_MIPMAPPING; + public static readonly int UseSoftNormals = NDalic.MESH_VISUAL_USE_SOFT_NORMALS; + public static readonly int LightPosition = NDalic.MESH_VISUAL_LIGHT_POSITION; + } + + public struct PrimitiveVisualProperty + { + public static readonly int Shape = NDalic.PRIMITIVE_VISUAL_SHAPE; + public static readonly int MixColor = NDalic.PRIMITIVE_VISUAL_MIX_COLOR; + public static readonly int Slices = NDalic.PRIMITIVE_VISUAL_SLICES; + public static readonly int Stacks = NDalic.PRIMITIVE_VISUAL_STACKS; + public static readonly int ScaleTopRadius = NDalic.PRIMITIVE_VISUAL_SCALE_TOP_RADIUS; + public static readonly int ScaleBottomRadius = NDalic.PRIMITIVE_VISUAL_SCALE_BOTTOM_RADIUS; + public static readonly int ScaleHeight = NDalic.PRIMITIVE_VISUAL_SCALE_HEIGHT; + public static readonly int ScaleRadius = NDalic.PRIMITIVE_VISUAL_SCALE_RADIUS; + public static readonly int ScaleDimensions = NDalic.PRIMITIVE_VISUAL_SCALE_DIMENSIONS; + public static readonly int BevelPercentage = NDalic.PRIMITIVE_VISUAL_BEVEL_PERCENTAGE; + public static readonly int BevelSmoothness = NDalic.PRIMITIVE_VISUAL_BEVEL_SMOOTHNESS; + public static readonly int LightPosition = NDalic.PRIMITIVE_VISUAL_LIGHT_POSITION; + } + + public struct TextVisualProperty + { + public static readonly int Text = NDalic.TEXT_VISUAL_TEXT; + public static readonly int FontFamily = NDalic.TEXT_VISUAL_FONT_FAMILY; + public static readonly int FontStyle = NDalic.TEXT_VISUAL_FONT_STYLE; + public static readonly int PointSize = NDalic.TEXT_VISUAL_POINT_SIZE; + public static readonly int MultiLine = NDalic.TEXT_VISUAL_MULTI_LINE; + public static readonly int HorizontalAlignment = NDalic.TEXT_VISUAL_HORIZONTAL_ALIGNMENT; + public static readonly int VerticalAlignment = NDalic.TEXT_VISUAL_VERTICAL_ALIGNMENT; + public static readonly int TextColor = NDalic.TEXT_VISUAL_TEXT_COLOR; + public static readonly int EnableMarkup = NDalic.TEXT_VISUAL_ENABLE_MARKUP; + } + + public struct Tooltip + { + public struct Property + { + public static readonly int Content = NDalic.TOOLTIP_CONTENT; + public static readonly int Layout = NDalic.TOOLTIP_LAYOUT; + public static readonly int WaitTime = NDalic.TOOLTIP_WAIT_TIME; + public static readonly int Background = NDalic.TOOLTIP_BACKGROUND; + public static readonly int Tail = NDalic.TOOLTIP_TAIL; + public static readonly int Position = NDalic.TOOLTIP_POSITION; + public static readonly int HoverPointOffset = NDalic.TOOLTIP_HOVER_POINT_OFFSET; + public static readonly int MovementThreshold = NDalic.TOOLTIP_MOVEMENT_THRESHOLD; + public static readonly int DisappearOnMovement = NDalic.TOOLTIP_DISAPPEAR_ON_MOVEMENT; + } + + public struct BackgroundProperty + { + public static readonly int Visual = NDalic.TOOLTIP_BACKGROUND_VISUAL; + public static readonly int Border = NDalic.TOOLTIP_BACKGROUND_BORDER; + } + + public struct TailProperty + { + public static readonly int Visibility = NDalic.TOOLTIP_TAIL_VISIBILITY; + public static readonly int AboveVisual = NDalic.TOOLTIP_TAIL_ABOVE_VISUAL; + public static readonly int BelowVisual = NDalic.TOOLTIP_TAIL_BELOW_VISUAL; + } + } + + } // namespace Constants +} // namesapce Dali diff --git a/Tizen.NUI/src/public/DaliEventHandler.cs b/Tizen.NUI/src/internal/DaliEventHandler.cs similarity index 59% rename from Tizen.NUI/src/public/DaliEventHandler.cs rename to Tizen.NUI/src/internal/DaliEventHandler.cs index 8a10216..ab9733e 100755 --- a/Tizen.NUI/src/public/DaliEventHandler.cs +++ b/Tizen.NUI/src/internal/DaliEventHandler.cs @@ -13,18 +13,31 @@ * See the License for the specific language governing permissions and * limitations under the License. * - */ -namespace NUI { + */ + +namespace Tizen.NUI { using System; using System.Runtime.InteropServices; [UnmanagedFunctionPointer(CallingConvention.StdCall)] - public delegate R EventHandlerWithReturnType(T source, U e); + public delegate R DaliEventHandlerWithReturnType(T source, U e); - //this should be removed with EventHandler from .NET [UnmanagedFunctionPointer(CallingConvention.StdCall)] - public delegate void DaliEventHandler(T source, U e); + internal delegate void EventCallbackDelegateType0(); + [UnmanagedFunctionPointer(CallingConvention.StdCall)] + internal delegate void EventCallbackDelegateType1(IntPtr arg1); + + [UnmanagedFunctionPointer(CallingConvention.StdCall)] + internal delegate void EventCallbackDelegateType2(T arg1, U arg2); + + + //this should be removed with EventHandler from .NET + [UnmanagedFunctionPointer(CallingConvention.StdCall)] + public delegate void DaliEventHandler(T source, U e); + + [UnmanagedFunctionPointer(CallingConvention.StdCall)] + public delegate R EventHandlerWithReturnType(T source, U e); } diff --git a/Tizen.NUI/src/internal/DaliException.cs b/Tizen.NUI/src/internal/DaliException.cs old mode 100644 new mode 100755 index 3e76e32..34f0482 --- a/Tizen.NUI/src/internal/DaliException.cs +++ b/Tizen.NUI/src/internal/DaliException.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class DaliException : global::System.IDisposable { private global::System.Runtime.InteropServices.HandleRef swigCPtr; diff --git a/Tizen.NUI/src/internal/DefaultItemLayoutProperty.cs b/Tizen.NUI/src/internal/DefaultItemLayoutProperty.cs old mode 100644 new mode 100755 index 92714b9..3906eaa --- a/Tizen.NUI/src/internal/DefaultItemLayoutProperty.cs +++ b/Tizen.NUI/src/internal/DefaultItemLayoutProperty.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public enum DefaultItemLayoutProperty { TYPE = 0, diff --git a/Tizen.NUI/src/internal/DefaultItemLayoutType.cs b/Tizen.NUI/src/internal/DefaultItemLayoutType.cs old mode 100644 new mode 100755 index d421019..ee0c0d9 --- a/Tizen.NUI/src/internal/DefaultItemLayoutType.cs +++ b/Tizen.NUI/src/internal/DefaultItemLayoutType.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public enum DefaultItemLayoutType { DEPTH, diff --git a/Tizen.NUI/src/internal/DefaultRuler.cs b/Tizen.NUI/src/internal/DefaultRuler.cs old mode 100644 new mode 100755 index 5488b1b..ff9f4f0 --- a/Tizen.NUI/src/internal/DefaultRuler.cs +++ b/Tizen.NUI/src/internal/DefaultRuler.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class DefaultRuler : Ruler { private global::System.Runtime.InteropServices.HandleRef swigCPtr; diff --git a/Tizen.NUI/src/public/Degree.cs b/Tizen.NUI/src/internal/Degree.cs old mode 100644 new mode 100755 similarity index 99% rename from Tizen.NUI/src/public/Degree.cs rename to Tizen.NUI/src/internal/Degree.cs index 262c645..d82ee6f --- a/Tizen.NUI/src/public/Degree.cs +++ b/Tizen.NUI/src/internal/Degree.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class Degree : global::System.IDisposable { private global::System.Runtime.InteropServices.HandleRef swigCPtr; diff --git a/Tizen.NUI/src/internal/DepthFunctionType.cs b/Tizen.NUI/src/internal/DepthFunctionType.cs old mode 100644 new mode 100755 index 0d7f8a7..8bc54eb --- a/Tizen.NUI/src/internal/DepthFunctionType.cs +++ b/Tizen.NUI/src/internal/DepthFunctionType.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public enum DepthFunctionType { NEVER, diff --git a/Tizen.NUI/src/internal/DepthTestModeType.cs b/Tizen.NUI/src/internal/DepthTestModeType.cs old mode 100644 new mode 100755 index 11bf8ac..f66f1cf --- a/Tizen.NUI/src/internal/DepthTestModeType.cs +++ b/Tizen.NUI/src/internal/DepthTestModeType.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public enum DepthTestModeType { OFF, diff --git a/Tizen.NUI/src/internal/DepthWriteModeType.cs b/Tizen.NUI/src/internal/DepthWriteModeType.cs old mode 100644 new mode 100755 index 326bf2e..9ac3d6b --- a/Tizen.NUI/src/internal/DepthWriteModeType.cs +++ b/Tizen.NUI/src/internal/DepthWriteModeType.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public enum DepthWriteModeType { OFF, diff --git a/Tizen.NUI/src/internal/DimensionType.cs b/Tizen.NUI/src/internal/DimensionType.cs deleted file mode 100644 index 9ab0d6c..0000000 --- a/Tizen.NUI/src/internal/DimensionType.cs +++ /dev/null @@ -1,19 +0,0 @@ -//------------------------------------------------------------------------------ -// -// -// This file was automatically generated by SWIG (http://www.swig.org). -// Version 3.0.9 -// -// Do not make changes to this file unless you know what you are doing--modify -// the SWIG interface file instead. -//------------------------------------------------------------------------------ - -namespace NUI { - -public enum DimensionType { - WIDTH = 0x1, - HEIGHT = 0x2, - ALL_DIMENSIONS = 0x3 -} - -} diff --git a/Tizen.NUI/src/internal/DirectionBias.cs b/Tizen.NUI/src/internal/DirectionBias.cs old mode 100644 new mode 100755 index c4beacf..3cead2a --- a/Tizen.NUI/src/internal/DirectionBias.cs +++ b/Tizen.NUI/src/internal/DirectionBias.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public enum DirectionBias { DirectionBiasLeft = -1, diff --git a/Tizen.NUI/src/internal/DisposeQueue.cs b/Tizen.NUI/src/internal/DisposeQueue.cs index 972b479..2035a34 100755 --- a/Tizen.NUI/src/internal/DisposeQueue.cs +++ b/Tizen.NUI/src/internal/DisposeQueue.cs @@ -10,7 +10,7 @@ using System; using System.Collections.Generic; -namespace NUI +namespace Tizen.NUI { public class DisposeQueue diff --git a/Tizen.NUI/src/internal/DragAndDropDetector.cs b/Tizen.NUI/src/internal/DragAndDropDetector.cs old mode 100644 new mode 100755 index fa4eeda..40fd90b --- a/Tizen.NUI/src/internal/DragAndDropDetector.cs +++ b/Tizen.NUI/src/internal/DragAndDropDetector.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class DragAndDropDetector : BaseHandle { private global::System.Runtime.InteropServices.HandleRef swigCPtr; diff --git a/Tizen.NUI/src/internal/DrawModeType.cs b/Tizen.NUI/src/internal/DrawModeType.cs deleted file mode 100644 index db64fa9..0000000 --- a/Tizen.NUI/src/internal/DrawModeType.cs +++ /dev/null @@ -1,19 +0,0 @@ -//------------------------------------------------------------------------------ -// -// -// This file was automatically generated by SWIG (http://www.swig.org). -// Version 3.0.9 -// -// Do not make changes to this file unless you know what you are doing--modify -// the SWIG interface file instead. -//------------------------------------------------------------------------------ - -namespace NUI { - -public enum DrawModeType { - NORMAL = 0, - OVERLAY_2D = 1, - STENCIL = 3 -} - -} diff --git a/Tizen.NUI/src/internal/EncodedBufferImage.cs b/Tizen.NUI/src/internal/EncodedBufferImage.cs old mode 100644 new mode 100755 index 12d6026..02e934a --- a/Tizen.NUI/src/internal/EncodedBufferImage.cs +++ b/Tizen.NUI/src/internal/EncodedBufferImage.cs @@ -24,7 +24,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class EncodedBufferImage : Image { private global::System.Runtime.InteropServices.HandleRef swigCPtr; diff --git a/Tizen.NUI/src/internal/FaceCullingModeType.cs b/Tizen.NUI/src/internal/FaceCullingModeType.cs old mode 100644 new mode 100755 index 6255a76..635547d --- a/Tizen.NUI/src/internal/FaceCullingModeType.cs +++ b/Tizen.NUI/src/internal/FaceCullingModeType.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public enum FaceCullingModeType { NONE, diff --git a/Tizen.NUI/src/internal/FilterModeType.cs b/Tizen.NUI/src/internal/FilterModeType.cs old mode 100644 new mode 100755 index c4d64a4..4f1f612 --- a/Tizen.NUI/src/internal/FilterModeType.cs +++ b/Tizen.NUI/src/internal/FilterModeType.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public enum FilterModeType { NONE = 0, diff --git a/Tizen.NUI/src/internal/FittingModeType.cs b/Tizen.NUI/src/internal/FittingModeType.cs old mode 100644 new mode 100755 index c468cdf..6b818d5 --- a/Tizen.NUI/src/internal/FittingModeType.cs +++ b/Tizen.NUI/src/internal/FittingModeType.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public enum FittingModeType { SHRINK_TO_FIT, diff --git a/Tizen.NUI/src/internal/FixedRuler.cs b/Tizen.NUI/src/internal/FixedRuler.cs old mode 100644 new mode 100755 index 96b44ae..f1bab8e --- a/Tizen.NUI/src/internal/FixedRuler.cs +++ b/Tizen.NUI/src/internal/FixedRuler.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class FixedRuler : Ruler { private global::System.Runtime.InteropServices.HandleRef swigCPtr; diff --git a/Tizen.NUI/src/internal/FloatSignal.cs b/Tizen.NUI/src/internal/FloatSignal.cs old mode 100644 new mode 100755 index 67076d5..b2a803d --- a/Tizen.NUI/src/internal/FloatSignal.cs +++ b/Tizen.NUI/src/internal/FloatSignal.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class FloatSignal : global::System.IDisposable { private global::System.Runtime.InteropServices.HandleRef swigCPtr; diff --git a/Tizen.NUI/src/internal/FocusChangedSignal.cs b/Tizen.NUI/src/internal/FocusChangedSignal.cs old mode 100644 new mode 100755 index 55a8c2b..c764f9c --- a/Tizen.NUI/src/internal/FocusChangedSignal.cs +++ b/Tizen.NUI/src/internal/FocusChangedSignal.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class FocusChangedSignal : global::System.IDisposable { private global::System.Runtime.InteropServices.HandleRef swigCPtr; diff --git a/Tizen.NUI/src/internal/FocusGroupChangedSignal.cs b/Tizen.NUI/src/internal/FocusGroupChangedSignal.cs old mode 100644 new mode 100755 index 41788ca..4237230 --- a/Tizen.NUI/src/internal/FocusGroupChangedSignal.cs +++ b/Tizen.NUI/src/internal/FocusGroupChangedSignal.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class FocusGroupChangedSignal : global::System.IDisposable { private global::System.Runtime.InteropServices.HandleRef swigCPtr; diff --git a/Tizen.NUI/src/internal/FrameBuffer.cs b/Tizen.NUI/src/internal/FrameBuffer.cs old mode 100644 new mode 100755 index 9d025d7..e58d1b1 --- a/Tizen.NUI/src/internal/FrameBuffer.cs +++ b/Tizen.NUI/src/internal/FrameBuffer.cs @@ -24,7 +24,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class FrameBuffer : BaseHandle { private global::System.Runtime.InteropServices.HandleRef swigCPtr; diff --git a/Tizen.NUI/src/internal/FrameBufferImage.cs b/Tizen.NUI/src/internal/FrameBufferImage.cs old mode 100644 new mode 100755 index 4f1a406..da58c67 --- a/Tizen.NUI/src/internal/FrameBufferImage.cs +++ b/Tizen.NUI/src/internal/FrameBufferImage.cs @@ -24,7 +24,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class FrameBufferImage : Image { private global::System.Runtime.InteropServices.HandleRef swigCPtr; diff --git a/Tizen.NUI/src/public/GaussianBlurView.cs b/Tizen.NUI/src/internal/GaussianBlurView.cs old mode 100644 new mode 100755 similarity index 99% rename from Tizen.NUI/src/public/GaussianBlurView.cs rename to Tizen.NUI/src/internal/GaussianBlurView.cs index 4e0c55d..3aa191a --- a/Tizen.NUI/src/public/GaussianBlurView.cs +++ b/Tizen.NUI/src/internal/GaussianBlurView.cs @@ -24,7 +24,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { using System; using System.Runtime.InteropServices; diff --git a/Tizen.NUI/src/internal/GaussianBlurViewSignal.cs b/Tizen.NUI/src/internal/GaussianBlurViewSignal.cs old mode 100644 new mode 100755 index ff31328..0ca3832 --- a/Tizen.NUI/src/internal/GaussianBlurViewSignal.cs +++ b/Tizen.NUI/src/internal/GaussianBlurViewSignal.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class GaussianBlurViewSignal : global::System.IDisposable { private global::System.Runtime.InteropServices.HandleRef swigCPtr; diff --git a/Tizen.NUI/src/public/Geometry.cs b/Tizen.NUI/src/internal/Geometry.cs old mode 100644 new mode 100755 similarity index 99% rename from Tizen.NUI/src/public/Geometry.cs rename to Tizen.NUI/src/internal/Geometry.cs index a7b5eec..819a960 --- a/Tizen.NUI/src/public/Geometry.cs +++ b/Tizen.NUI/src/internal/Geometry.cs @@ -24,7 +24,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class Geometry : BaseHandle { private global::System.Runtime.InteropServices.HandleRef swigCPtr; diff --git a/Tizen.NUI/src/public/Gesture.cs b/Tizen.NUI/src/internal/Gesture.cs old mode 100644 new mode 100755 similarity index 84% rename from Tizen.NUI/src/public/Gesture.cs rename to Tizen.NUI/src/internal/Gesture.cs index 26df198..ffcb582 --- a/Tizen.NUI/src/public/Gesture.cs +++ b/Tizen.NUI/src/internal/Gesture.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class Gesture : global::System.IDisposable { private global::System.Runtime.InteropServices.HandleRef swigCPtr; @@ -46,6 +46,30 @@ public class Gesture : global::System.IDisposable { } + public Gesture.GestureType Type + { + get + { + return type; + } + } + + public Gesture.StateType State + { + get + { + return state; + } + } + + public uint Time + { + get + { + return time; + } + } + public Gesture(Gesture rhs) : this(NDalicPINVOKE.new_Gesture(Gesture.getCPtr(rhs)), true) { if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } @@ -56,31 +80,31 @@ public class Gesture : global::System.IDisposable { return ret; } - public Gesture.Type type { + private Gesture.GestureType type { set { NDalicPINVOKE.Gesture_type_set(swigCPtr, (int)value); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } get { - Gesture.Type ret = (Gesture.Type)NDalicPINVOKE.Gesture_type_get(swigCPtr); + Gesture.GestureType ret = (Gesture.GestureType)NDalicPINVOKE.Gesture_type_get(swigCPtr); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } } - public Gesture.State state { + private Gesture.StateType state { set { NDalicPINVOKE.Gesture_state_set(swigCPtr, (int)value); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } get { - Gesture.State ret = (Gesture.State)NDalicPINVOKE.Gesture_state_get(swigCPtr); + Gesture.StateType ret = (Gesture.StateType)NDalicPINVOKE.Gesture_state_get(swigCPtr); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } } - public uint time { + private uint time { set { NDalicPINVOKE.Gesture_time_set(swigCPtr, value); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); @@ -92,14 +116,14 @@ public class Gesture : global::System.IDisposable { } } - public enum Type { + public enum GestureType { Pinch = 1 << 0, Pan = 1 << 1, Tap = 1 << 2, LongPress = 1 << 3 } - public enum State { + public enum StateType { Clear, Started, Continuing, diff --git a/Tizen.NUI/src/public/GestureDetector.cs b/Tizen.NUI/src/internal/GestureDetector.cs old mode 100644 new mode 100755 similarity index 99% rename from Tizen.NUI/src/public/GestureDetector.cs rename to Tizen.NUI/src/internal/GestureDetector.cs index 83f9438..2998717 --- a/Tizen.NUI/src/public/GestureDetector.cs +++ b/Tizen.NUI/src/internal/GestureDetector.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class GestureDetector : Handle { private global::System.Runtime.InteropServices.HandleRef swigCPtr; diff --git a/Tizen.NUI/src/internal/GradientVisualSpreadMethodType.cs b/Tizen.NUI/src/internal/GradientVisualSpreadMethodType.cs old mode 100644 new mode 100755 index 1565166..5e61b32 --- a/Tizen.NUI/src/internal/GradientVisualSpreadMethodType.cs +++ b/Tizen.NUI/src/internal/GradientVisualSpreadMethodType.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public enum GradientVisualSpreadMethodType { PAD, diff --git a/Tizen.NUI/src/internal/GradientVisualUnitsType.cs b/Tizen.NUI/src/internal/GradientVisualUnitsType.cs old mode 100644 new mode 100755 index 95569dc..98cf03e --- a/Tizen.NUI/src/internal/GradientVisualUnitsType.cs +++ b/Tizen.NUI/src/internal/GradientVisualUnitsType.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public enum GradientVisualUnitsType { OBJECT_BOUNDING_BOX, diff --git a/Tizen.NUI/src/internal/Handle.cs b/Tizen.NUI/src/internal/Handle.cs old mode 100644 new mode 100755 index 491e98f..ac57095 --- a/Tizen.NUI/src/internal/Handle.cs +++ b/Tizen.NUI/src/internal/Handle.cs @@ -24,7 +24,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class Handle : BaseHandle { private global::System.Runtime.InteropServices.HandleRef swigCPtr; @@ -123,31 +123,31 @@ public class Handle : BaseHandle { return ret; } - public Property.Type GetPropertyType(int index) { - Property.Type ret = (Property.Type)NDalicPINVOKE.Handle_GetPropertyType(swigCPtr, index); + public PropertyType GetPropertyType(int index) { + PropertyType ret = (PropertyType)NDalicPINVOKE.Handle_GetPropertyType(swigCPtr, index); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } - public void SetProperty(int index, Property.Value propertyValue) { - NDalicPINVOKE.Handle_SetProperty(swigCPtr, index, Property.Value.getCPtr(propertyValue)); + public void SetProperty(int index, PropertyValue propertyValue) { + NDalicPINVOKE.Handle_SetProperty(swigCPtr, index, PropertyValue.getCPtr(propertyValue)); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } - public int RegisterProperty(string name, Property.Value propertyValue) { - int ret = NDalicPINVOKE.Handle_RegisterProperty__SWIG_0(swigCPtr, name, Property.Value.getCPtr(propertyValue)); + public int RegisterProperty(string name, PropertyValue propertyValue) { + int ret = NDalicPINVOKE.Handle_RegisterProperty__SWIG_0(swigCPtr, name, PropertyValue.getCPtr(propertyValue)); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } - public int RegisterProperty(string name, Property.Value propertyValue, Property.AccessMode accessMode) { - int ret = NDalicPINVOKE.Handle_RegisterProperty__SWIG_1(swigCPtr, name, Property.Value.getCPtr(propertyValue), (int)accessMode); + public int RegisterProperty(string name, PropertyValue propertyValue, PropertyAccessMode accessMode) { + int ret = NDalicPINVOKE.Handle_RegisterProperty__SWIG_1(swigCPtr, name, PropertyValue.getCPtr(propertyValue), (int)accessMode); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } - public Property.Value GetProperty(int index) { - Property.Value ret = new Property.Value(NDalicPINVOKE.Handle_GetProperty(swigCPtr, index), true); + public PropertyValue GetProperty(int index) { + PropertyValue ret = new PropertyValue(NDalicPINVOKE.Handle_GetProperty(swigCPtr, index), true); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } diff --git a/Tizen.NUI/src/internal/HorizontalAlignmentType.cs b/Tizen.NUI/src/internal/HorizontalAlignmentType.cs deleted file mode 100644 index 87e40ec..0000000 --- a/Tizen.NUI/src/internal/HorizontalAlignmentType.cs +++ /dev/null @@ -1,19 +0,0 @@ -//------------------------------------------------------------------------------ -// -// -// This file was automatically generated by SWIG (http://www.swig.org). -// Version 3.0.9 -// -// Do not make changes to this file unless you know what you are doing--modify -// the SWIG interface file instead. -//------------------------------------------------------------------------------ - -namespace NUI { - -public enum HorizontalAlignmentType { - LEFT, - CENTER, - RIGHT -} - -} diff --git a/Tizen.NUI/src/internal/Image.cs b/Tizen.NUI/src/internal/Image.cs old mode 100644 new mode 100755 index 343990c..46ad000 --- a/Tizen.NUI/src/internal/Image.cs +++ b/Tizen.NUI/src/internal/Image.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { using System; using System.Runtime.InteropServices; diff --git a/Tizen.NUI/src/internal/ImageSignal.cs b/Tizen.NUI/src/internal/ImageSignal.cs old mode 100644 new mode 100755 index 823340d..5414e1e --- a/Tizen.NUI/src/internal/ImageSignal.cs +++ b/Tizen.NUI/src/internal/ImageSignal.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class ImageSignal : global::System.IDisposable { private global::System.Runtime.InteropServices.HandleRef swigCPtr; diff --git a/Tizen.NUI/src/internal/Item.cs b/Tizen.NUI/src/internal/Item.cs old mode 100644 new mode 100755 index 8526afa..88ca512 --- a/Tizen.NUI/src/internal/Item.cs +++ b/Tizen.NUI/src/internal/Item.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class Item : global::System.IDisposable { private global::System.Runtime.InteropServices.HandleRef swigCPtr; diff --git a/Tizen.NUI/src/internal/ItemContainer.cs b/Tizen.NUI/src/internal/ItemContainer.cs old mode 100644 new mode 100755 index 4f7b87c..1a2b5ba --- a/Tizen.NUI/src/internal/ItemContainer.cs +++ b/Tizen.NUI/src/internal/ItemContainer.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class ItemContainer : global::System.IDisposable, global::System.Collections.IEnumerable , global::System.Collections.Generic.IEnumerable diff --git a/Tizen.NUI/src/internal/ItemFactory.cs b/Tizen.NUI/src/internal/ItemFactory.cs old mode 100644 new mode 100755 index 1da417a..15e04ff --- a/Tizen.NUI/src/internal/ItemFactory.cs +++ b/Tizen.NUI/src/internal/ItemFactory.cs @@ -8,7 +8,11 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +#if true +using System.Reflection; +#endif + +namespace Tizen.NUI { public class ItemFactory : global::System.IDisposable { private global::System.Runtime.InteropServices.HandleRef swigCPtr; @@ -59,10 +63,67 @@ public class ItemFactory : global::System.IDisposable { } public virtual void ItemReleased(uint itemId, Actor actor) { - NDalicPINVOKE.ItemFactory_ItemReleased(swigCPtr, itemId, Actor.getCPtr(actor)); + if (SwigDerivedClassHasMethod("ItemReleased", swigMethodTypes2)) NDalicPINVOKE.ItemFactory_ItemReleasedSwigExplicitItemFactory(swigCPtr, itemId, Actor.getCPtr(actor)); else NDalicPINVOKE.ItemFactory_ItemReleased(swigCPtr, itemId, Actor.getCPtr(actor)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public ItemFactory() : this(NDalicPINVOKE.new_ItemFactory(), true) { if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + SwigDirectorConnect(); + } + + private void SwigDirectorConnect() { + if (SwigDerivedClassHasMethod("GetNumberOfItems", swigMethodTypes0)) + swigDelegate0 = new SwigDelegateItemFactory_0(SwigDirectorGetNumberOfItems); + if (SwigDerivedClassHasMethod("NewItem", swigMethodTypes1)) + swigDelegate1 = new SwigDelegateItemFactory_1(SwigDirectorNewItem); + if (SwigDerivedClassHasMethod("ItemReleased", swigMethodTypes2)) + swigDelegate2 = new SwigDelegateItemFactory_2(SwigDirectorItemReleased); + NDalicPINVOKE.ItemFactory_director_connect(swigCPtr, swigDelegate0, swigDelegate1, swigDelegate2); + } + + + +#if true + private bool SwigDerivedClassHasMethod(string methodName, global::System.Type[] methodTypes) + { + global::System.Reflection.MethodInfo methodInfo = this.GetType().GetMethod(methodName, methodTypes); + bool hasDerivedMethod = methodInfo.GetType().GetTypeInfo().IsSubclassOf(typeof(ItemFactory)); + return hasDerivedMethod; + } +#else +//original + private bool SwigDerivedClassHasMethod(string methodName, global::System.Type[] methodTypes) { + global::System.Reflection.MethodInfo methodInfo = this.GetType().GetMethod(methodName, global::System.Reflection.BindingFlags.Public | global::System.Reflection.BindingFlags.NonPublic | global::System.Reflection.BindingFlags.Instance, null, methodTypes, null); + bool hasDerivedMethod = methodInfo.DeclaringType.IsSubclassOf(typeof(ItemFactory)); + return hasDerivedMethod; + } +#endif + + + private uint SwigDirectorGetNumberOfItems() { + return GetNumberOfItems(); } + private global::System.IntPtr SwigDirectorNewItem(uint itemId) { + return Actor.getCPtr(NewItem(itemId)).Handle; + } + + private void SwigDirectorItemReleased(uint itemId, global::System.IntPtr actor) { + ItemReleased(itemId, new Actor(actor, true)); + } + + public delegate uint SwigDelegateItemFactory_0(); + public delegate global::System.IntPtr SwigDelegateItemFactory_1(uint itemId); + public delegate void SwigDelegateItemFactory_2(uint itemId, global::System.IntPtr actor); + + private SwigDelegateItemFactory_0 swigDelegate0; + private SwigDelegateItemFactory_1 swigDelegate1; + private SwigDelegateItemFactory_2 swigDelegate2; + + private static global::System.Type[] swigMethodTypes0 = new global::System.Type[] { }; + private static global::System.Type[] swigMethodTypes1 = new global::System.Type[] { typeof(uint) }; + private static global::System.Type[] swigMethodTypes2 = new global::System.Type[] { typeof(uint), typeof(Actor) }; } } diff --git a/Tizen.NUI/src/internal/ItemIdContainer.cs b/Tizen.NUI/src/internal/ItemIdContainer.cs old mode 100644 new mode 100755 index 5bdc375..63f3e3e --- a/Tizen.NUI/src/internal/ItemIdContainer.cs +++ b/Tizen.NUI/src/internal/ItemIdContainer.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class ItemIdContainer : global::System.IDisposable, global::System.Collections.IEnumerable , global::System.Collections.Generic.IList diff --git a/Tizen.NUI/src/internal/ItemLayout.cs b/Tizen.NUI/src/internal/ItemLayout.cs old mode 100644 new mode 100755 index 4670b1c..cc023e1 --- a/Tizen.NUI/src/internal/ItemLayout.cs +++ b/Tizen.NUI/src/internal/ItemLayout.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class ItemLayout : RefObject { private global::System.Runtime.InteropServices.HandleRef swigCPtr; @@ -56,28 +56,17 @@ public class ItemLayout : RefObject { return ret; } - public void SetLayoutProperties(Property.Map properties) { - NDalicPINVOKE.ItemLayout_SetLayoutProperties(swigCPtr, Property.Map.getCPtr(properties)); + public void SetLayoutProperties(PropertyMap properties) { + NDalicPINVOKE.ItemLayout_SetLayoutProperties(swigCPtr, PropertyMap.getCPtr(properties)); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } - public Property.Map GetLayoutProperties() { - Property.Map ret = new Property.Map(NDalicPINVOKE.ItemLayout_GetLayoutProperties(swigCPtr), true); + public PropertyMap GetLayoutProperties() { + PropertyMap ret = new PropertyMap(NDalicPINVOKE.ItemLayout_GetLayoutProperties(swigCPtr), true); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } - public bool HasLayoutChanged() { - bool ret = NDalicPINVOKE.ItemLayout_HasLayoutChanged(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public void ResetLayoutChangedFlag() { - NDalicPINVOKE.ItemLayout_ResetLayoutChangedFlag(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - public void GetItemSize(uint itemId, Vector3 layoutSize, Vector3 itemSize) { NDalicPINVOKE.ItemLayout_GetItemSize(swigCPtr, itemId, Vector3.getCPtr(layoutSize), Vector3.getCPtr(itemSize)); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); @@ -153,7 +142,7 @@ public class ItemLayout : RefObject { return ret; } - public virtual int GetNextFocusItemID(int itemID, int maxItems, View.KeyboardFocus.Direction direction, bool loopEnabled) { + public virtual int GetNextFocusItemID(int itemID, int maxItems, View.FocusDirection direction, bool loopEnabled) { int ret = NDalicPINVOKE.ItemLayout_GetNextFocusItemID(swigCPtr, itemID, maxItems, (int)direction, loopEnabled); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; diff --git a/Tizen.NUI/src/internal/ItemRange.cs b/Tizen.NUI/src/internal/ItemRange.cs old mode 100644 new mode 100755 index 4e12634..1c46776 --- a/Tizen.NUI/src/internal/ItemRange.cs +++ b/Tizen.NUI/src/internal/ItemRange.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class ItemRange : global::System.IDisposable { private global::System.Runtime.InteropServices.HandleRef swigCPtr; diff --git a/Tizen.NUI/src/public/ItemView.cs b/Tizen.NUI/src/internal/ItemView.cs old mode 100644 new mode 100755 similarity index 87% rename from Tizen.NUI/src/public/ItemView.cs rename to Tizen.NUI/src/internal/ItemView.cs index 3fc7ec7..4b524ca --- a/Tizen.NUI/src/public/ItemView.cs +++ b/Tizen.NUI/src/internal/ItemView.cs @@ -24,7 +24,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { using System; using System.Runtime.InteropServices; @@ -65,60 +65,20 @@ public class ItemView : Scrollable { } - - public class LayoutActivatedEventArgs : EventArgs - { - } - - [UnmanagedFunctionPointer(CallingConvention.StdCall)] - private delegate void LayoutActivatedEventCallbackDelegate(); - private DaliEventHandler _itemViewLayoutActivatedEventHandler; - private LayoutActivatedEventCallbackDelegate _itemViewLayoutActivatedEventCallbackDelegate; - - public event DaliEventHandler LayoutActivated - { - add - { - lock(this) - { - // Restricted to only one listener - if (_itemViewLayoutActivatedEventHandler == null) - { - _itemViewLayoutActivatedEventHandler += value; - - _itemViewLayoutActivatedEventCallbackDelegate = new LayoutActivatedEventCallbackDelegate(OnLayoutActivated); - this.LayoutActivatedSignal().Connect(_itemViewLayoutActivatedEventCallbackDelegate); - } - } - } - - remove - { - lock(this) - { - if (_itemViewLayoutActivatedEventHandler != null) - { - this.LayoutActivatedSignal().Disconnect(_itemViewLayoutActivatedEventCallbackDelegate); - } - - _itemViewLayoutActivatedEventHandler -= value; - } - } - } - - // Callback for ItemView LayoutActivatedSignal - private void OnLayoutActivated() + public Tizen.NUI.PropertyArray Layout { - LayoutActivatedEventArgs e = new LayoutActivatedEventArgs(); - - if (_itemViewLayoutActivatedEventHandler != null) - { - //here we send all data to user event handlers - _itemViewLayoutActivatedEventHandler(this, e); - } + get + { + Tizen.NUI.PropertyArray temp = new Tizen.NUI.PropertyArray(); + GetProperty( ItemView.Property.LAYOUT).Get( temp ); + return temp; + } + set + { + SetProperty( ItemView.Property.LAYOUT, new Tizen.NUI.PropertyValue( value ) ); + } } - public class Property : global::System.IDisposable { private global::System.Runtime.InteropServices.HandleRef swigCPtr; protected bool swigCMemOwn; @@ -149,6 +109,8 @@ public class ItemView : Scrollable { } } + public static readonly int LAYOUT = NDalicManualPINVOKE.ItemView_Property_LAYOUT_get(); + public Property() : this(NDalicPINVOKE.new_ItemView_Property(), true) { if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } @@ -399,7 +361,7 @@ public class ItemView : Scrollable { } set { - SetProperty( ItemView.Property.MINIMUM_SWIPE_SPEED, new NUI.Property.Value( value ) ); + SetProperty( ItemView.Property.MINIMUM_SWIPE_SPEED, new Tizen.NUI.PropertyValue( value ) ); } } public float MinimumSwipeDistance @@ -412,7 +374,7 @@ public class ItemView : Scrollable { } set { - SetProperty( ItemView.Property.MINIMUM_SWIPE_DISTANCE, new NUI.Property.Value( value ) ); + SetProperty( ItemView.Property.MINIMUM_SWIPE_DISTANCE, new Tizen.NUI.PropertyValue( value ) ); } } public float WheelScrollDistanceStep @@ -425,7 +387,7 @@ public class ItemView : Scrollable { } set { - SetProperty( ItemView.Property.WHEEL_SCROLL_DISTANCE_STEP, new NUI.Property.Value( value ) ); + SetProperty( ItemView.Property.WHEEL_SCROLL_DISTANCE_STEP, new Tizen.NUI.PropertyValue( value ) ); } } public bool SnapToItemEnabled @@ -438,7 +400,7 @@ public class ItemView : Scrollable { } set { - SetProperty( ItemView.Property.SNAP_TO_ITEM_ENABLED, new NUI.Property.Value( value ) ); + SetProperty( ItemView.Property.SNAP_TO_ITEM_ENABLED, new Tizen.NUI.PropertyValue( value ) ); } } public float RefreshInterval @@ -451,7 +413,7 @@ public class ItemView : Scrollable { } set { - SetProperty( ItemView.Property.REFRESH_INTERVAL, new NUI.Property.Value( value ) ); + SetProperty( ItemView.Property.REFRESH_INTERVAL, new Tizen.NUI.PropertyValue( value ) ); } } public float LayoutPosition @@ -464,7 +426,7 @@ public class ItemView : Scrollable { } set { - SetProperty( ItemView.Property.LAYOUT_POSITION, new NUI.Property.Value( value ) ); + SetProperty( ItemView.Property.LAYOUT_POSITION, new Tizen.NUI.PropertyValue( value ) ); } } public float ScrollSpeed @@ -477,7 +439,7 @@ public class ItemView : Scrollable { } set { - SetProperty( ItemView.Property.SCROLL_SPEED, new NUI.Property.Value( value ) ); + SetProperty( ItemView.Property.SCROLL_SPEED, new Tizen.NUI.PropertyValue( value ) ); } } public float Overshoot @@ -490,7 +452,7 @@ public class ItemView : Scrollable { } set { - SetProperty( ItemView.Property.OVERSHOOT, new NUI.Property.Value( value ) ); + SetProperty( ItemView.Property.OVERSHOOT, new Tizen.NUI.PropertyValue( value ) ); } } public Vector2 ScrollDirection @@ -503,7 +465,7 @@ public class ItemView : Scrollable { } set { - SetProperty( ItemView.Property.SCROLL_DIRECTION, new NUI.Property.Value( value ) ); + SetProperty( ItemView.Property.SCROLL_DIRECTION, new Tizen.NUI.PropertyValue( value ) ); } } public int LayoutOrientation @@ -516,7 +478,7 @@ public class ItemView : Scrollable { } set { - SetProperty( ItemView.Property.LAYOUT_ORIENTATION, new NUI.Property.Value( value ) ); + SetProperty( ItemView.Property.LAYOUT_ORIENTATION, new Tizen.NUI.PropertyValue( value ) ); } } public float ScrollContentSize @@ -529,7 +491,7 @@ public class ItemView : Scrollable { } set { - SetProperty( ItemView.Property.SCROLL_CONTENT_SIZE, new NUI.Property.Value( value ) ); + SetProperty( ItemView.Property.SCROLL_CONTENT_SIZE, new Tizen.NUI.PropertyValue( value ) ); } } diff --git a/Tizen.NUI/src/internal/KeyEventSignal.cs b/Tizen.NUI/src/internal/KeyEventSignal.cs old mode 100644 new mode 100755 index bb07e73..41e24f3 --- a/Tizen.NUI/src/internal/KeyEventSignal.cs +++ b/Tizen.NUI/src/internal/KeyEventSignal.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class KeyEventSignal : global::System.IDisposable { private global::System.Runtime.InteropServices.HandleRef swigCPtr; @@ -68,8 +68,8 @@ System.IntPtr ip = System.Runtime.InteropServices.Marshal.GetFunctionPointerForD } } - public void Emit(KeyEvent arg) { - NDalicPINVOKE.KeyEventSignal_Emit(swigCPtr, KeyEvent.getCPtr(arg)); + public void Emit(Key arg) { + NDalicPINVOKE.KeyEventSignal_Emit(swigCPtr, Key.getCPtr(arg)); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } diff --git a/Tizen.NUI/src/public/KeyInputFocusManager.cs b/Tizen.NUI/src/internal/KeyInputFocusManager.cs old mode 100644 new mode 100755 similarity index 99% rename from Tizen.NUI/src/public/KeyInputFocusManager.cs rename to Tizen.NUI/src/internal/KeyInputFocusManager.cs index 81a03ca..14cca34 --- a/Tizen.NUI/src/public/KeyInputFocusManager.cs +++ b/Tizen.NUI/src/internal/KeyInputFocusManager.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class KeyInputFocusManager : BaseHandle { private global::System.Runtime.InteropServices.HandleRef swigCPtr; diff --git a/Tizen.NUI/src/internal/KeyInputFocusSignal.cs b/Tizen.NUI/src/internal/KeyInputFocusSignal.cs old mode 100644 new mode 100755 index 9eb3621..e11383c --- a/Tizen.NUI/src/internal/KeyInputFocusSignal.cs +++ b/Tizen.NUI/src/internal/KeyInputFocusSignal.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class KeyInputFocusSignal : global::System.IDisposable { private global::System.Runtime.InteropServices.HandleRef swigCPtr; diff --git a/Tizen.NUI/src/internal/KeyboardPreFocusChangeSignal.cs b/Tizen.NUI/src/internal/KeyboardPreFocusChangeSignal.cs index b2ba82c..0e2ea77 100755 --- a/Tizen.NUI/src/internal/KeyboardPreFocusChangeSignal.cs +++ b/Tizen.NUI/src/internal/KeyboardPreFocusChangeSignal.cs @@ -17,11 +17,11 @@ using System; -namespace NUI { +namespace Tizen.NUI { -internal delegate IntPtr SwigDelegatePreFocusChangeSignal(IntPtr current, IntPtr proposed, View.KeyboardFocus.Direction direction); +internal delegate IntPtr SwigDelegatePreFocusChangeSignal(IntPtr current, IntPtr proposed, View.FocusDirection direction); -public class PreFocusChangeSignal : global::System.IDisposable { +internal class PreFocusChangeSignal : global::System.IDisposable { private global::System.Runtime.InteropServices.HandleRef swigCPtr; protected bool swigCMemOwn; @@ -56,24 +56,24 @@ public class PreFocusChangeSignal : global::System.IDisposable { } } - internal bool Empty() { + public bool Empty() { bool ret = NDalicManualPINVOKE.PreFocusChangeSignal_Empty(swigCPtr); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } - internal uint GetConnectionCount() { + public uint GetConnectionCount() { uint ret = NDalicManualPINVOKE.PreFocusChangeSignal_GetConnectionCount(swigCPtr); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } - internal void Connect(FocusManager.PreFocusChangeEventCallback func) { + public void Connect(FocusManager.PreFocusChangeEventCallback func) { NDalicManualPINVOKE.PreFocusChangeSignal_Connect(swigCPtr, func); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } - internal void Disconnect(System.Delegate func) { + public void Disconnect(System.Delegate func) { System.IntPtr ip = System.Runtime.InteropServices.Marshal.GetFunctionPointerForDelegate(func); { NDalicManualPINVOKE.PreFocusChangeSignal_Disconnect(swigCPtr, new System.Runtime.InteropServices.HandleRef(this, ip)); @@ -81,13 +81,13 @@ public class PreFocusChangeSignal : global::System.IDisposable { } } - internal Actor Emit(Actor arg1, Actor arg2, View.KeyboardFocus.Direction arg3) { + public Actor Emit(Actor arg1, Actor arg2, View.FocusDirection arg3) { Actor ret = new Actor(NDalicManualPINVOKE.PreFocusChangeSignal_Emit(swigCPtr, Actor.getCPtr(arg1), Actor.getCPtr(arg2), (int)arg3), true); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } - internal PreFocusChangeSignal() : this(NDalicManualPINVOKE.new_PreFocusChangeSignal(), true) { + public PreFocusChangeSignal() : this(NDalicManualPINVOKE.new_PreFocusChangeSignal(), true) { if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } diff --git a/Tizen.NUI/src/internal/LoadingState.cs b/Tizen.NUI/src/internal/LoadingState.cs old mode 100644 new mode 100755 index 140e8a4..959d97f --- a/Tizen.NUI/src/internal/LoadingState.cs +++ b/Tizen.NUI/src/internal/LoadingState.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public enum LoadingState { ResourceLoading, diff --git a/Tizen.NUI/src/public/LongPressGesture.cs b/Tizen.NUI/src/internal/LongPressGesture.cs old mode 100644 new mode 100755 similarity index 84% rename from Tizen.NUI/src/public/LongPressGesture.cs rename to Tizen.NUI/src/internal/LongPressGesture.cs index daadaa3..959e820 --- a/Tizen.NUI/src/public/LongPressGesture.cs +++ b/Tizen.NUI/src/internal/LongPressGesture.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class LongPressGesture : Gesture { private global::System.Runtime.InteropServices.HandleRef swigCPtr; @@ -45,13 +45,37 @@ public class LongPressGesture : Gesture { } - public static LongPressGesture GetLongPressGestureFromPtr(global::System.IntPtr cPtr) { + public static LongPressGesture GetLongPressGestureFromPtr(global::System.IntPtr cPtr) { LongPressGesture ret = new LongPressGesture(cPtr, false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } - public LongPressGesture(Gesture.State state) : this(NDalicPINVOKE.new_LongPressGesture__SWIG_0((int)state), true) { + public uint NumberOfTouches + { + get + { + return numberOfTouches; + } + } + + public Vector2 ScreenPoint + { + get + { + return screenPoint; + } + } + + public Vector2 LocalPoint + { + get + { + return localPoint; + } + } + + public LongPressGesture(Gesture.StateType state) : this(NDalicPINVOKE.new_LongPressGesture__SWIG_0((int)state), true) { if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } @@ -65,7 +89,7 @@ public class LongPressGesture : Gesture { return ret; } - public uint numberOfTouches { + private uint numberOfTouches { set { NDalicPINVOKE.LongPressGesture_numberOfTouches_set(swigCPtr, value); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); @@ -77,7 +101,7 @@ public class LongPressGesture : Gesture { } } - public Vector2 screenPoint { + private Vector2 screenPoint { set { NDalicPINVOKE.LongPressGesture_screenPoint_set(swigCPtr, Vector2.getCPtr(value)); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); @@ -90,7 +114,7 @@ public class LongPressGesture : Gesture { } } - public Vector2 localPoint { + private Vector2 localPoint { set { NDalicPINVOKE.LongPressGesture_localPoint_set(swigCPtr, Vector2.getCPtr(value)); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); diff --git a/Tizen.NUI/src/internal/LongPressGestureDetectedSignal.cs b/Tizen.NUI/src/internal/LongPressGestureDetectedSignal.cs old mode 100644 new mode 100755 index 01692f8..55efff4 --- a/Tizen.NUI/src/internal/LongPressGestureDetectedSignal.cs +++ b/Tizen.NUI/src/internal/LongPressGestureDetectedSignal.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class LongPressGestureDetectedSignal : global::System.IDisposable { private global::System.Runtime.InteropServices.HandleRef swigCPtr; diff --git a/Tizen.NUI/src/internal/LongPressGestureDetector.cs b/Tizen.NUI/src/internal/LongPressGestureDetector.cs old mode 100644 new mode 100755 index 604a0b9..68adf64 --- a/Tizen.NUI/src/internal/LongPressGestureDetector.cs +++ b/Tizen.NUI/src/internal/LongPressGestureDetector.cs @@ -24,7 +24,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { using System; using System.Runtime.InteropServices; @@ -139,7 +139,7 @@ public class DetectedEventArgs : EventArgs // Populate all members of "e" (LongPressGestureEventArgs) with real data e.Actor = Actor.GetActorFromPtr(actor); - e.LongPressGesture = NUI.LongPressGesture.GetLongPressGestureFromPtr(longPressGesture); + e.LongPressGesture = Tizen.NUI.LongPressGesture.GetLongPressGestureFromPtr(longPressGesture); if (_longPressGestureEventHandler != null) { diff --git a/Tizen.NUI/src/internal/ManualPINVOKE.cs b/Tizen.NUI/src/internal/ManualPINVOKE.cs index 0f0608e..a14142e 100755 --- a/Tizen.NUI/src/internal/ManualPINVOKE.cs +++ b/Tizen.NUI/src/internal/ManualPINVOKE.cs @@ -15,7 +15,7 @@ * */ -namespace NUI +namespace Tizen.NUI { class NDalicManualPINVOKE { @@ -187,5 +187,61 @@ namespace NUI [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_MakeCallback")] public static extern global::System.IntPtr MakeCallback(global::System.Runtime.InteropServices.HandleRef jarg1); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Actor_Property_BATCH_PARENT_get")] + public static extern int Actor_Property_BATCH_PARENT_get(); + + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Actor_Property_SIBLING_ORDER_get")] + public static extern int Actor_Property_SIBLING_ORDER_get(); + + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Renderer_Property_BATCHING_ENABLED_get")] + public static extern int Renderer_Property_BATCHING_ENABLED_get(); + + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_View_Property_TOOLTIP_get")] + public static extern int View_Property_TOOLTIP_get(); + + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_ItemView_Property_LAYOUT_get")] + public static extern int ItemView_Property_LAYOUT_get(); + + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Button_Property_UNSELECTED_VISUAL_get")] + public static extern int Button_Property_UNSELECTED_VISUAL_get(); + + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Button_Property_SELECTED_VISUAL_get")] + public static extern int Button_Property_SELECTED_VISUAL_get(); + + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Button_Property_DISABLED_SELECTED_VISUAL_get")] + public static extern int Button_Property_DISABLED_SELECTED_VISUAL_get(); + + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Button_Property_DISABLED_UNSELECTED_VISUAL_get")] + public static extern int Button_Property_DISABLED_UNSELECTED_VISUAL_get(); + + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Button_Property_UNSELECTED_BACKGROUND_VISUAL_get")] + public static extern int Button_Property_UNSELECTED_BACKGROUND_VISUAL_get(); + + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Button_Property_SELECTED_BACKGROUND_VISUAL_get")] + public static extern int Button_Property_SELECTED_BACKGROUND_VISUAL_get(); + + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Button_Property_DISABLED_UNSELECTED_BACKGROUND_VISUAL_get")] + public static extern int Button_Property_DISABLED_UNSELECTED_BACKGROUND_VISUAL_get(); + + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Button_Property_DISABLED_SELECTED_BACKGROUND_VISUAL_get")] + public static extern int Button_Property_DISABLED_SELECTED_BACKGROUND_VISUAL_get(); + + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Button_Property_LABEL_RELATIVE_ALIGNMENT_get")] + public static extern int Button_Property_LABEL_RELATIVE_ALIGNMENT_get(); + + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Button_Property_LABEL_PADDING_get")] + public static extern int Button_Property_LABEL_PADDING_get(); + + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Button_Property_VISUAL_PADDING_get")] + public static extern int Button_Property_VISUAL_PADDING_get(); + + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Visual_Property_TRANSFORM_get")] + public static extern int Visual_Property_TRANSFORM_get(); + + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Visual_Property_PREMULTIPLIED_ALPHA_get")] + public static extern int Visual_Property_PREMULTIPLIED_ALPHA_get(); + + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Visual_Property_MIX_COLOR_get")] + public static extern int Visual_Property_MIX_COLOR_get(); } } diff --git a/Tizen.NUI/src/public/Matrix.cs b/Tizen.NUI/src/internal/Matrix.cs old mode 100644 new mode 100755 similarity index 99% rename from Tizen.NUI/src/public/Matrix.cs rename to Tizen.NUI/src/internal/Matrix.cs index 955fb87..41c8f7c --- a/Tizen.NUI/src/public/Matrix.cs +++ b/Tizen.NUI/src/internal/Matrix.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class Matrix : global::System.IDisposable { private global::System.Runtime.InteropServices.HandleRef swigCPtr; diff --git a/Tizen.NUI/src/public/Matrix3.cs b/Tizen.NUI/src/internal/Matrix3.cs old mode 100644 new mode 100755 similarity index 99% rename from Tizen.NUI/src/public/Matrix3.cs rename to Tizen.NUI/src/internal/Matrix3.cs index c110a91..84d2111 --- a/Tizen.NUI/src/public/Matrix3.cs +++ b/Tizen.NUI/src/internal/Matrix3.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class Matrix3 : global::System.IDisposable { private global::System.Runtime.InteropServices.HandleRef swigCPtr; diff --git a/Tizen.NUI/src/internal/MeshVisualShadingModeValue.cs b/Tizen.NUI/src/internal/MeshVisualShadingModeValue.cs old mode 100644 new mode 100755 index 520b193..9150d64 --- a/Tizen.NUI/src/internal/MeshVisualShadingModeValue.cs +++ b/Tizen.NUI/src/internal/MeshVisualShadingModeValue.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public enum MeshVisualShadingModeValue { TEXTURELESS_WITH_DIFFUSE_LIGHTING, diff --git a/Tizen.NUI/src/internal/Meta.cs b/Tizen.NUI/src/internal/Meta.cs old mode 100644 new mode 100755 index 14835fb..ecacfd5 --- a/Tizen.NUI/src/internal/Meta.cs +++ b/Tizen.NUI/src/internal/Meta.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public enum Meta { DIMENSION_COUNT = 2 diff --git a/Tizen.NUI/src/public/Model3dView.cs b/Tizen.NUI/src/internal/Model3dView.cs old mode 100644 new mode 100755 similarity index 90% rename from Tizen.NUI/src/public/Model3dView.cs rename to Tizen.NUI/src/internal/Model3dView.cs index 1eb57c0..efddc5c --- a/Tizen.NUI/src/public/Model3dView.cs +++ b/Tizen.NUI/src/internal/Model3dView.cs @@ -24,7 +24,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class Model3dView : View { private global::System.Runtime.InteropServices.HandleRef swigCPtr; @@ -153,7 +153,7 @@ public class Model3dView : View { } set { - SetProperty( Model3dView.Property.GEOMETRY_URL, new NUI.Property.Value( value ) ); + SetProperty( Model3dView.Property.GEOMETRY_URL, new Tizen.NUI.PropertyValue( value ) ); } } public string MaterialUrl @@ -166,7 +166,7 @@ public class Model3dView : View { } set { - SetProperty( Model3dView.Property.MATERIAL_URL, new NUI.Property.Value( value ) ); + SetProperty( Model3dView.Property.MATERIAL_URL, new Tizen.NUI.PropertyValue( value ) ); } } public string ImagesUrl @@ -179,7 +179,7 @@ public class Model3dView : View { } set { - SetProperty( Model3dView.Property.IMAGES_URL, new NUI.Property.Value( value ) ); + SetProperty( Model3dView.Property.IMAGES_URL, new Tizen.NUI.PropertyValue( value ) ); } } public int IlluminationType @@ -192,7 +192,7 @@ public class Model3dView : View { } set { - SetProperty( Model3dView.Property.ILLUMINATION_TYPE, new NUI.Property.Value( value ) ); + SetProperty( Model3dView.Property.ILLUMINATION_TYPE, new Tizen.NUI.PropertyValue( value ) ); } } public string Texture0Url @@ -205,7 +205,7 @@ public class Model3dView : View { } set { - SetProperty( Model3dView.Property.TEXTURE0_URL, new NUI.Property.Value( value ) ); + SetProperty( Model3dView.Property.TEXTURE0_URL, new Tizen.NUI.PropertyValue( value ) ); } } public string Texture1Url @@ -218,7 +218,7 @@ public class Model3dView : View { } set { - SetProperty( Model3dView.Property.TEXTURE1_URL, new NUI.Property.Value( value ) ); + SetProperty( Model3dView.Property.TEXTURE1_URL, new Tizen.NUI.PropertyValue( value ) ); } } public string Texture2Url @@ -231,7 +231,7 @@ public class Model3dView : View { } set { - SetProperty( Model3dView.Property.TEXTURE2_URL, new NUI.Property.Value( value ) ); + SetProperty( Model3dView.Property.TEXTURE2_URL, new Tizen.NUI.PropertyValue( value ) ); } } public Vector3 LightPosition @@ -244,7 +244,7 @@ public class Model3dView : View { } set { - SetProperty( Model3dView.Property.LIGHT_POSITION, new NUI.Property.Value( value ) ); + SetProperty( Model3dView.Property.LIGHT_POSITION, new Tizen.NUI.PropertyValue( value ) ); } } diff --git a/Tizen.NUI/src/internal/NDalic.cs b/Tizen.NUI/src/internal/NDalic.cs old mode 100644 new mode 100755 index ba431bd..d848e65 --- a/Tizen.NUI/src/internal/NDalic.cs +++ b/Tizen.NUI/src/internal/NDalic.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class NDalic { public static uint int_to_uint(int x) { @@ -17,6 +17,11 @@ public class NDalic { return ret; } + + public static readonly int VISUAL_PROPERTY_TRANSFORM = NDalicManualPINVOKE.Visual_Property_TRANSFORM_get(); + public static readonly int VISUAL_PROPERTY_PREMULTIPLIED_ALPHA = NDalicManualPINVOKE.Visual_Property_PREMULTIPLIED_ALPHA_get(); + public static readonly int VISUAL_PROPERTY_MIX_COLOR = NDalicManualPINVOKE.Visual_Property_MIX_COLOR_get(); + public static void DaliAssertMessage(string location, string condition) { NDalicPINVOKE.DaliAssertMessage(location, condition); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); @@ -310,7 +315,7 @@ public class NDalic { return ret; } - public static string GetName(Property.Type type) { + public static string GetName(PropertyType type) { string ret = NDalicPINVOKE.GetName((int)type); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; @@ -384,6 +389,25 @@ public class NDalic { return ret; } + public static bool RegisterType(string name, SWIGTYPE_p_std__type_info baseType, System.Delegate f) { +System.IntPtr ip = System.Runtime.InteropServices.Marshal.GetFunctionPointerForDelegate(f); + { + bool ret = NDalicPINVOKE.RegisterType(name, SWIGTYPE_p_std__type_info.getCPtr(baseType), new System.Runtime.InteropServices.HandleRef(null, ip)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + } + + public static bool RegisterProperty(string objectName, string name, int index, PropertyType type, System.Delegate setFunc, System.Delegate getFunc) { +System.IntPtr ip = System.Runtime.InteropServices.Marshal.GetFunctionPointerForDelegate(setFunc); +System.IntPtr ip2 = System.Runtime.InteropServices.Marshal.GetFunctionPointerForDelegate(getFunc); + { + bool ret = NDalicPINVOKE.RegisterProperty(objectName, name, index, (int)type, new System.Runtime.InteropServices.HandleRef(null, ip), new System.Runtime.InteropServices.HandleRef(null, ip2)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + } + public static float ParentOriginTop { get { float ret = NDalicPINVOKE.ParentOriginTop_get(); @@ -968,26 +992,26 @@ public class NDalic { public static readonly int VISUAL_PROPERTY_TYPE = NDalicPINVOKE.VISUAL_PROPERTY_TYPE_get(); public static readonly int VISUAL_PROPERTY_SHADER = NDalicPINVOKE.VISUAL_PROPERTY_SHADER_get(); - public static readonly int VERTEX_SHADER = NDalicPINVOKE.VERTEX_SHADER_get(); - public static readonly int FRAGMENT_SHADER = NDalicPINVOKE.FRAGMENT_SHADER_get(); - public static readonly int SUBDIVIDE_GRID_X = NDalicPINVOKE.SUBDIVIDE_GRID_X_get(); - public static readonly int SUBDIVIDE_GRID_Y = NDalicPINVOKE.SUBDIVIDE_GRID_Y_get(); - public static readonly int HINTS = NDalicPINVOKE.HINTS_get(); + public static readonly int VISUAL_SHADER_VERTEX = NDalicPINVOKE.VISUAL_SHADER_VERTEX_get(); + public static readonly int VISUAL_SHADER_FRAGMENT = NDalicPINVOKE.VISUAL_SHADER_FRAGMENT_get(); + public static readonly int VISUAL_SHADER_SUBDIVIDE_GRID_X = NDalicPINVOKE.VISUAL_SHADER_SUBDIVIDE_GRID_X_get(); + public static readonly int VISUAL_SHADER_SUBDIVIDE_GRID_Y = NDalicPINVOKE.VISUAL_SHADER_SUBDIVIDE_GRID_Y_get(); + public static readonly int VISUAL_SHADER_HINTS = NDalicPINVOKE.VISUAL_SHADER_HINTS_get(); - public static readonly int COLOR = NDalicPINVOKE.COLOR_get(); - public static readonly int SIZE = NDalicPINVOKE.SIZE_get(); - public static readonly int ANTI_ALIASING = NDalicPINVOKE.ANTI_ALIASING_get(); + public static readonly int BORDER_VISUAL_COLOR = NDalicPINVOKE.BORDER_VISUAL_COLOR_get(); + public static readonly int BORDER_VISUAL_SIZE = NDalicPINVOKE.BORDER_VISUAL_SIZE_get(); + public static readonly int BORDER_VISUAL_ANTI_ALIASING = NDalicPINVOKE.BORDER_VISUAL_ANTI_ALIASING_get(); - public static readonly int MIX_COLOR = NDalicPINVOKE.MIX_COLOR_get(); + public static readonly int COLOR_VISUAL_MIX_COLOR = NDalicPINVOKE.COLOR_VISUAL_MIX_COLOR_get(); - public static readonly int START_POSITION = NDalicPINVOKE.START_POSITION_get(); - public static readonly int END_POSITION = NDalicPINVOKE.END_POSITION_get(); - public static readonly int CENTER = NDalicPINVOKE.CENTER_get(); - public static readonly int RADIUS = NDalicPINVOKE.RADIUS_get(); - public static readonly int STOP_OFFSET = NDalicPINVOKE.STOP_OFFSET_get(); - public static readonly int STOP_COLOR = NDalicPINVOKE.STOP_COLOR_get(); - public static readonly int UNITS = NDalicPINVOKE.UNITS_get(); - public static readonly int SPREAD_METHOD = NDalicPINVOKE.SPREAD_METHOD_get(); + public static readonly int GRADIENT_VISUAL_START_POSITION = NDalicPINVOKE.GRADIENT_VISUAL_START_POSITION_get(); + public static readonly int GRADIENT_VISUAL_END_POSITION = NDalicPINVOKE.GRADIENT_VISUAL_END_POSITION_get(); + public static readonly int GRADIENT_VISUAL_CENTER = NDalicPINVOKE.GRADIENT_VISUAL_CENTER_get(); + public static readonly int GRADIENT_VISUAL_RADIUS = NDalicPINVOKE.GRADIENT_VISUAL_RADIUS_get(); + public static readonly int GRADIENT_VISUAL_STOP_OFFSET = NDalicPINVOKE.GRADIENT_VISUAL_STOP_OFFSET_get(); + public static readonly int GRADIENT_VISUAL_STOP_COLOR = NDalicPINVOKE.GRADIENT_VISUAL_STOP_COLOR_get(); + public static readonly int GRADIENT_VISUAL_UNITS = NDalicPINVOKE.GRADIENT_VISUAL_UNITS_get(); + public static readonly int GRADIENT_VISUAL_SPREAD_METHOD = NDalicPINVOKE.GRADIENT_VISUAL_SPREAD_METHOD_get(); public static readonly int IMAGE_VISUAL_URL = NDalicPINVOKE.IMAGE_VISUAL_URL_get(); public static readonly int IMAGE_VISUAL_FITTING_MODE = NDalicPINVOKE.IMAGE_VISUAL_FITTING_MODE_get(); @@ -1001,36 +1025,53 @@ public class NDalic { public static readonly int IMAGE_VISUAL_WRAP_MODE_U = NDalicPINVOKE.IMAGE_VISUAL_WRAP_MODE_U_get(); public static readonly int IMAGE_VISUAL_WRAP_MODE_V = NDalicPINVOKE.IMAGE_VISUAL_WRAP_MODE_V_get(); - public static readonly int OBJECT_URL = NDalicPINVOKE.OBJECT_URL_get(); - public static readonly int MATERIAL_URL = NDalicPINVOKE.MATERIAL_URL_get(); - public static readonly int TEXTURES_PATH = NDalicPINVOKE.TEXTURES_PATH_get(); - public static readonly int SHADING_MODE = NDalicPINVOKE.SHADING_MODE_get(); - public static readonly int USE_MIPMAPPING = NDalicPINVOKE.USE_MIPMAPPING_get(); - public static readonly int USE_SOFT_NORMALS = NDalicPINVOKE.USE_SOFT_NORMALS_get(); - public static readonly int LIGHT_POSITION = NDalicPINVOKE.LIGHT_POSITION_get(); + public static readonly int MESH_VISUAL_OBJECT_URL = NDalicPINVOKE.MESH_VISUAL_OBJECT_URL_get(); + public static readonly int MESH_VISUAL_MATERIAL_URL = NDalicPINVOKE.MESH_VISUAL_MATERIAL_URL_get(); + public static readonly int MESH_VISUAL_TEXTURES_PATH = NDalicPINVOKE.MESH_VISUAL_TEXTURES_PATH_get(); + public static readonly int MESH_VISUAL_SHADING_MODE = NDalicPINVOKE.MESH_VISUAL_SHADING_MODE_get(); + public static readonly int MESH_VISUAL_USE_MIPMAPPING = NDalicPINVOKE.MESH_VISUAL_USE_MIPMAPPING_get(); + public static readonly int MESH_VISUAL_USE_SOFT_NORMALS = NDalicPINVOKE.MESH_VISUAL_USE_SOFT_NORMALS_get(); + public static readonly int MESH_VISUAL_LIGHT_POSITION = NDalicPINVOKE.MESH_VISUAL_LIGHT_POSITION_get(); - public static readonly int SHAPE = NDalicPINVOKE.SHAPE_get(); + public static readonly int PRIMITIVE_VISUAL_SHAPE = NDalicPINVOKE.PRIMITIVE_VISUAL_SHAPE_get(); public static readonly int PRIMITIVE_VISUAL_MIX_COLOR = NDalicPINVOKE.PRIMITIVE_VISUAL_MIX_COLOR_get(); - public static readonly int SLICES = NDalicPINVOKE.SLICES_get(); - public static readonly int STACKS = NDalicPINVOKE.STACKS_get(); - public static readonly int SCALE_TOP_RADIUS = NDalicPINVOKE.SCALE_TOP_RADIUS_get(); - public static readonly int SCALE_BOTTOM_RADIUS = NDalicPINVOKE.SCALE_BOTTOM_RADIUS_get(); - public static readonly int SCALE_HEIGHT = NDalicPINVOKE.SCALE_HEIGHT_get(); - public static readonly int SCALE_RADIUS = NDalicPINVOKE.SCALE_RADIUS_get(); - public static readonly int SCALE_DIMENSIONS = NDalicPINVOKE.SCALE_DIMENSIONS_get(); - public static readonly int BEVEL_PERCENTAGE = NDalicPINVOKE.BEVEL_PERCENTAGE_get(); - public static readonly int BEVEL_SMOOTHNESS = NDalicPINVOKE.BEVEL_SMOOTHNESS_get(); + public static readonly int PRIMITIVE_VISUAL_SLICES = NDalicPINVOKE.PRIMITIVE_VISUAL_SLICES_get(); + public static readonly int PRIMITIVE_VISUAL_STACKS = NDalicPINVOKE.PRIMITIVE_VISUAL_STACKS_get(); + public static readonly int PRIMITIVE_VISUAL_SCALE_TOP_RADIUS = NDalicPINVOKE.PRIMITIVE_VISUAL_SCALE_TOP_RADIUS_get(); + public static readonly int PRIMITIVE_VISUAL_SCALE_BOTTOM_RADIUS = NDalicPINVOKE.PRIMITIVE_VISUAL_SCALE_BOTTOM_RADIUS_get(); + public static readonly int PRIMITIVE_VISUAL_SCALE_HEIGHT = NDalicPINVOKE.PRIMITIVE_VISUAL_SCALE_HEIGHT_get(); + public static readonly int PRIMITIVE_VISUAL_SCALE_RADIUS = NDalicPINVOKE.PRIMITIVE_VISUAL_SCALE_RADIUS_get(); + public static readonly int PRIMITIVE_VISUAL_SCALE_DIMENSIONS = NDalicPINVOKE.PRIMITIVE_VISUAL_SCALE_DIMENSIONS_get(); + public static readonly int PRIMITIVE_VISUAL_BEVEL_PERCENTAGE = NDalicPINVOKE.PRIMITIVE_VISUAL_BEVEL_PERCENTAGE_get(); + public static readonly int PRIMITIVE_VISUAL_BEVEL_SMOOTHNESS = NDalicPINVOKE.PRIMITIVE_VISUAL_BEVEL_SMOOTHNESS_get(); public static readonly int PRIMITIVE_VISUAL_LIGHT_POSITION = NDalicPINVOKE.PRIMITIVE_VISUAL_LIGHT_POSITION_get(); - public static readonly int TEXT = NDalicPINVOKE.TEXT_get(); - public static readonly int FONT_FAMILY = NDalicPINVOKE.FONT_FAMILY_get(); - public static readonly int FONT_STYLE = NDalicPINVOKE.FONT_STYLE_get(); - public static readonly int POINT_SIZE = NDalicPINVOKE.POINT_SIZE_get(); - public static readonly int MULTI_LINE = NDalicPINVOKE.MULTI_LINE_get(); - public static readonly int HORIZONTAL_ALIGNMENT = NDalicPINVOKE.HORIZONTAL_ALIGNMENT_get(); - public static readonly int VERTICAL_ALIGNMENT = NDalicPINVOKE.VERTICAL_ALIGNMENT_get(); - public static readonly int TEXT_COLOR = NDalicPINVOKE.TEXT_COLOR_get(); - public static readonly int ENABLE_MARKUP = NDalicPINVOKE.ENABLE_MARKUP_get(); + public static readonly int TEXT_VISUAL_TEXT = NDalicPINVOKE.TEXT_VISUAL_TEXT_get(); + public static readonly int TEXT_VISUAL_FONT_FAMILY = NDalicPINVOKE.TEXT_VISUAL_FONT_FAMILY_get(); + public static readonly int TEXT_VISUAL_FONT_STYLE = NDalicPINVOKE.TEXT_VISUAL_FONT_STYLE_get(); + public static readonly int TEXT_VISUAL_POINT_SIZE = NDalicPINVOKE.TEXT_VISUAL_POINT_SIZE_get(); + public static readonly int TEXT_VISUAL_MULTI_LINE = NDalicPINVOKE.TEXT_VISUAL_MULTI_LINE_get(); + public static readonly int TEXT_VISUAL_HORIZONTAL_ALIGNMENT = NDalicPINVOKE.TEXT_VISUAL_HORIZONTAL_ALIGNMENT_get(); + public static readonly int TEXT_VISUAL_VERTICAL_ALIGNMENT = NDalicPINVOKE.TEXT_VISUAL_VERTICAL_ALIGNMENT_get(); + public static readonly int TEXT_VISUAL_TEXT_COLOR = NDalicPINVOKE.TEXT_VISUAL_TEXT_COLOR_get(); + public static readonly int TEXT_VISUAL_ENABLE_MARKUP = NDalicPINVOKE.TEXT_VISUAL_ENABLE_MARKUP_get(); + + public static readonly int TOOLTIP_CONTENT = NDalicPINVOKE.TOOLTIP_CONTENT_get(); + public static readonly int TOOLTIP_LAYOUT = NDalicPINVOKE.TOOLTIP_LAYOUT_get(); + public static readonly int TOOLTIP_WAIT_TIME = NDalicPINVOKE.TOOLTIP_WAIT_TIME_get(); + public static readonly int TOOLTIP_BACKGROUND = NDalicPINVOKE.TOOLTIP_BACKGROUND_get(); + public static readonly int TOOLTIP_TAIL = NDalicPINVOKE.TOOLTIP_TAIL_get(); + public static readonly int TOOLTIP_POSITION = NDalicPINVOKE.TOOLTIP_POSITION_get(); + public static readonly int TOOLTIP_HOVER_POINT_OFFSET = NDalicPINVOKE.TOOLTIP_HOVER_POINT_OFFSET_get(); + public static readonly int TOOLTIP_MOVEMENT_THRESHOLD = NDalicPINVOKE.TOOLTIP_MOVEMENT_THRESHOLD_get(); + public static readonly int TOOLTIP_DISAPPEAR_ON_MOVEMENT = NDalicPINVOKE.TOOLTIP_DISAPPEAR_ON_MOVEMENT_get(); + + public static readonly int TOOLTIP_BACKGROUND_VISUAL = NDalicPINVOKE.TOOLTIP_BACKGROUND_VISUAL_get(); + public static readonly int TOOLTIP_BACKGROUND_BORDER = NDalicPINVOKE.TOOLTIP_BACKGROUND_BORDER_get(); + + public static readonly int TOOLTIP_TAIL_VISIBILITY = NDalicPINVOKE.TOOLTIP_TAIL_VISIBILITY_get(); + public static readonly int TOOLTIP_TAIL_ABOVE_VISUAL = NDalicPINVOKE.TOOLTIP_TAIL_ABOVE_VISUAL_get(); + public static readonly int TOOLTIP_TAIL_BELOW_VISUAL = NDalicPINVOKE.TOOLTIP_TAIL_BELOW_VISUAL_get(); } diff --git a/Tizen.NUI/src/internal/NDalicPINVOKE.cs b/Tizen.NUI/src/internal/NDalicPINVOKE.cs index 91c6804..3f42ef1 100755 --- a/Tizen.NUI/src/internal/NDalicPINVOKE.cs +++ b/Tizen.NUI/src/internal/NDalicPINVOKE.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { class NDalicPINVOKE { @@ -188,10966 +188,11023 @@ class NDalicPINVOKE { } - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_floatp")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_floatp")] public static extern global::System.IntPtr new_floatp(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_floatp")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_floatp")] public static extern void delete_floatp(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_floatp_assign")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_floatp_assign")] public static extern void floatp_assign(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_floatp_value")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_floatp_value")] public static extern float floatp_value(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_floatp_cast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_floatp_cast")] public static extern global::System.IntPtr floatp_cast(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_floatp_frompointer")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_floatp_frompointer")] public static extern global::System.IntPtr floatp_frompointer(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_intp")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_intp")] public static extern global::System.IntPtr new_intp(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_intp")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_intp")] public static extern void delete_intp(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_intp_assign")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_intp_assign")] public static extern void intp_assign(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_intp_value")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_intp_value")] public static extern int intp_value(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_intp_cast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_intp_cast")] public static extern global::System.IntPtr intp_cast(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_intp_frompointer")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_intp_frompointer")] public static extern global::System.IntPtr intp_frompointer(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_doublep")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_doublep")] public static extern global::System.IntPtr new_doublep(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_doublep")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_doublep")] public static extern void delete_doublep(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_doublep_assign")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_doublep_assign")] public static extern void doublep_assign(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_doublep_value")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_doublep_value")] public static extern double doublep_value(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_doublep_cast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_doublep_cast")] public static extern global::System.IntPtr doublep_cast(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_doublep_frompointer")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_doublep_frompointer")] public static extern global::System.IntPtr doublep_frompointer(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_uintp")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_uintp")] public static extern global::System.IntPtr new_uintp(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_uintp")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_uintp")] public static extern void delete_uintp(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_uintp_assign")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_uintp_assign")] public static extern void uintp_assign(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_uintp_value")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_uintp_value")] public static extern uint uintp_value(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_uintp_cast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_uintp_cast")] public static extern global::System.IntPtr uintp_cast(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_uintp_frompointer")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_uintp_frompointer")] public static extern global::System.IntPtr uintp_frompointer(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_ushortp")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_ushortp")] public static extern global::System.IntPtr new_ushortp(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_ushortp")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_ushortp")] public static extern void delete_ushortp(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ushortp_assign")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ushortp_assign")] public static extern void ushortp_assign(global::System.Runtime.InteropServices.HandleRef jarg1, ushort jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ushortp_value")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ushortp_value")] public static extern ushort ushortp_value(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ushortp_cast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ushortp_cast")] public static extern global::System.IntPtr ushortp_cast(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ushortp_frompointer")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ushortp_frompointer")] public static extern global::System.IntPtr ushortp_frompointer(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_int_to_uint")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_int_to_uint")] public static extern uint int_to_uint(int jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RefObject_Reference")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RefObject_Reference")] public static extern void RefObject_Reference(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RefObject_Unreference")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RefObject_Unreference")] public static extern void RefObject_Unreference(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RefObject_ReferenceCount")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RefObject_ReferenceCount")] public static extern int RefObject_ReferenceCount(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_Any__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Any__SWIG_0")] public static extern global::System.IntPtr new_Any__SWIG_0(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_Any")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_Any")] public static extern void delete_Any(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Any_AssertAlways")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Any_AssertAlways")] public static extern void Any_AssertAlways(string jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_Any__SWIG_2")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Any__SWIG_2")] public static extern global::System.IntPtr new_Any__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Any_Assign")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Any_Assign")] public static extern global::System.IntPtr Any_Assign(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Any_GetType")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Any_GetType")] public static extern global::System.IntPtr Any_GetType(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Any_Empty")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Any_Empty")] public static extern bool Any_Empty(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_Any_AnyContainerBase")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Any_AnyContainerBase")] public static extern global::System.IntPtr new_Any_AnyContainerBase(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Any_AnyContainerBase_GetType")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Any_AnyContainerBase_GetType")] public static extern global::System.IntPtr Any_AnyContainerBase_GetType(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Any_AnyContainerBase_mType_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Any_AnyContainerBase_mType_get")] public static extern global::System.IntPtr Any_AnyContainerBase_mType_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Any_AnyContainerBase_mCloneFunc_set")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Any_AnyContainerBase_mCloneFunc_set")] public static extern void Any_AnyContainerBase_mCloneFunc_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Any_AnyContainerBase_mCloneFunc_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Any_AnyContainerBase_mCloneFunc_get")] public static extern global::System.IntPtr Any_AnyContainerBase_mCloneFunc_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Any_AnyContainerBase_mDeleteFunc_set")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Any_AnyContainerBase_mDeleteFunc_set")] public static extern void Any_AnyContainerBase_mDeleteFunc_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Any_AnyContainerBase_mDeleteFunc_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Any_AnyContainerBase_mDeleteFunc_get")] public static extern global::System.IntPtr Any_AnyContainerBase_mDeleteFunc_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_Any_AnyContainerBase")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_Any_AnyContainerBase")] public static extern void delete_Any_AnyContainerBase(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Any_mContainer_set")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Any_mContainer_set")] public static extern void Any_mContainer_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Any_mContainer_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Any_mContainer_get")] public static extern global::System.IntPtr Any_mContainer_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_DaliAssertMessage")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_DaliAssertMessage")] public static extern void DaliAssertMessage(string jarg1, string jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_DaliException")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_DaliException")] public static extern global::System.IntPtr new_DaliException(string jarg1, string jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_DaliException_location_set")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_DaliException_location_set")] public static extern void DaliException_location_set(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_DaliException_location_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_DaliException_location_get")] public static extern string DaliException_location_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_DaliException_condition_set")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_DaliException_condition_set")] public static extern void DaliException_condition_set(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_DaliException_condition_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_DaliException_condition_get")] public static extern string DaliException_condition_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_DaliException")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_DaliException")] public static extern void delete_DaliException(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_Vector2__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Vector2__SWIG_0")] public static extern global::System.IntPtr new_Vector2__SWIG_0(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_Vector2__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Vector2__SWIG_1")] public static extern global::System.IntPtr new_Vector2__SWIG_1(float jarg1, float jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_Vector2__SWIG_2")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Vector2__SWIG_2")] public static extern global::System.IntPtr new_Vector2__SWIG_2([global::System.Runtime.InteropServices.In, global::System.Runtime.InteropServices.MarshalAs(global::System.Runtime.InteropServices.UnmanagedType.LPArray)]float[] jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_Vector2__SWIG_3")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Vector2__SWIG_3")] public static extern global::System.IntPtr new_Vector2__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_Vector2__SWIG_4")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Vector2__SWIG_4")] public static extern global::System.IntPtr new_Vector2__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector2_ONE_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector2_ONE_get")] public static extern global::System.IntPtr Vector2_ONE_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector2_XAXIS_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector2_XAXIS_get")] public static extern global::System.IntPtr Vector2_XAXIS_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector2_YAXIS_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector2_YAXIS_get")] public static extern global::System.IntPtr Vector2_YAXIS_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector2_NEGATIVE_XAXIS_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector2_NEGATIVE_XAXIS_get")] public static extern global::System.IntPtr Vector2_NEGATIVE_XAXIS_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector2_NEGATIVE_YAXIS_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector2_NEGATIVE_YAXIS_get")] public static extern global::System.IntPtr Vector2_NEGATIVE_YAXIS_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector2_ZERO_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector2_ZERO_get")] public static extern global::System.IntPtr Vector2_ZERO_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector2_Assign__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector2_Assign__SWIG_0")] public static extern global::System.IntPtr Vector2_Assign__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, [global::System.Runtime.InteropServices.In, global::System.Runtime.InteropServices.MarshalAs(global::System.Runtime.InteropServices.UnmanagedType.LPArray)]float[] jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector2_Assign__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector2_Assign__SWIG_1")] public static extern global::System.IntPtr Vector2_Assign__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector2_Assign__SWIG_2")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector2_Assign__SWIG_2")] public static extern global::System.IntPtr Vector2_Assign__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector2_Add")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector2_Add")] public static extern global::System.IntPtr Vector2_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector2_AddAssign")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector2_AddAssign")] public static extern global::System.IntPtr Vector2_AddAssign(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector2_Subtract__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector2_Subtract__SWIG_0")] public static extern global::System.IntPtr Vector2_Subtract__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector2_SubtractAssign")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector2_SubtractAssign")] public static extern global::System.IntPtr Vector2_SubtractAssign(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector2_Multiply__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector2_Multiply__SWIG_0")] public static extern global::System.IntPtr Vector2_Multiply__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector2_Multiply__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector2_Multiply__SWIG_1")] public static extern global::System.IntPtr Vector2_Multiply__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector2_MultiplyAssign__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector2_MultiplyAssign__SWIG_0")] public static extern global::System.IntPtr Vector2_MultiplyAssign__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector2_MultiplyAssign__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector2_MultiplyAssign__SWIG_1")] public static extern global::System.IntPtr Vector2_MultiplyAssign__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector2_Divide__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector2_Divide__SWIG_0")] public static extern global::System.IntPtr Vector2_Divide__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector2_Divide__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector2_Divide__SWIG_1")] public static extern global::System.IntPtr Vector2_Divide__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector2_DivideAssign__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector2_DivideAssign__SWIG_0")] public static extern global::System.IntPtr Vector2_DivideAssign__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector2_DivideAssign__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector2_DivideAssign__SWIG_1")] public static extern global::System.IntPtr Vector2_DivideAssign__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector2_Subtract__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector2_Subtract__SWIG_1")] public static extern global::System.IntPtr Vector2_Subtract__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector2_EqualTo")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector2_EqualTo")] public static extern bool Vector2_EqualTo(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector2_NotEqualTo")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector2_NotEqualTo")] public static extern bool Vector2_NotEqualTo(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector2_ValueOfIndex__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector2_ValueOfIndex__SWIG_0")] public static extern float Vector2_ValueOfIndex__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector2_Length")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector2_Length")] public static extern float Vector2_Length(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector2_LengthSquared")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector2_LengthSquared")] public static extern float Vector2_LengthSquared(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector2_Normalize")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector2_Normalize")] public static extern void Vector2_Normalize(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector2_Clamp")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector2_Clamp")] public static extern void Vector2_Clamp(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector2_AsFloat__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector2_AsFloat__SWIG_0")] public static extern global::System.IntPtr Vector2_AsFloat__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector2_X_set")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector2_X_set")] public static extern void Vector2_X_set(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector2_X_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector2_X_get")] public static extern float Vector2_X_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector2_Width_set")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector2_Width_set")] public static extern void Vector2_Width_set(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector2_Width_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector2_Width_get")] public static extern float Vector2_Width_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector2_Y_set")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector2_Y_set")] public static extern void Vector2_Y_set(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector2_Y_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector2_Y_get")] public static extern float Vector2_Y_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector2_Height_set")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector2_Height_set")] public static extern void Vector2_Height_set(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector2_Height_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector2_Height_get")] public static extern float Vector2_Height_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_Vector2")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_Vector2")] public static extern void delete_Vector2(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Min__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Min__SWIG_0")] public static extern global::System.IntPtr Min__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Max__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Max__SWIG_0")] public static extern global::System.IntPtr Max__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Clamp__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Clamp__SWIG_0")] public static extern global::System.IntPtr Clamp__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2, float jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_Vector3__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Vector3__SWIG_0")] public static extern global::System.IntPtr new_Vector3__SWIG_0(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_Vector3__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Vector3__SWIG_1")] public static extern global::System.IntPtr new_Vector3__SWIG_1(float jarg1, float jarg2, float jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_Vector3__SWIG_2")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Vector3__SWIG_2")] public static extern global::System.IntPtr new_Vector3__SWIG_2([global::System.Runtime.InteropServices.In, global::System.Runtime.InteropServices.MarshalAs(global::System.Runtime.InteropServices.UnmanagedType.LPArray)]float[] jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_Vector3__SWIG_3")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Vector3__SWIG_3")] public static extern global::System.IntPtr new_Vector3__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_Vector3__SWIG_4")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Vector3__SWIG_4")] public static extern global::System.IntPtr new_Vector3__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector3_ONE_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector3_ONE_get")] public static extern global::System.IntPtr Vector3_ONE_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector3_XAXIS_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector3_XAXIS_get")] public static extern global::System.IntPtr Vector3_XAXIS_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector3_YAXIS_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector3_YAXIS_get")] public static extern global::System.IntPtr Vector3_YAXIS_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector3_ZAXIS_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector3_ZAXIS_get")] public static extern global::System.IntPtr Vector3_ZAXIS_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector3_NEGATIVE_XAXIS_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector3_NEGATIVE_XAXIS_get")] public static extern global::System.IntPtr Vector3_NEGATIVE_XAXIS_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector3_NEGATIVE_YAXIS_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector3_NEGATIVE_YAXIS_get")] public static extern global::System.IntPtr Vector3_NEGATIVE_YAXIS_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector3_NEGATIVE_ZAXIS_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector3_NEGATIVE_ZAXIS_get")] public static extern global::System.IntPtr Vector3_NEGATIVE_ZAXIS_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector3_ZERO_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector3_ZERO_get")] public static extern global::System.IntPtr Vector3_ZERO_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector3_Assign__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector3_Assign__SWIG_0")] public static extern global::System.IntPtr Vector3_Assign__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, [global::System.Runtime.InteropServices.In, global::System.Runtime.InteropServices.MarshalAs(global::System.Runtime.InteropServices.UnmanagedType.LPArray)]float[] jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector3_Assign__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector3_Assign__SWIG_1")] public static extern global::System.IntPtr Vector3_Assign__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector3_Assign__SWIG_2")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector3_Assign__SWIG_2")] public static extern global::System.IntPtr Vector3_Assign__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector3_Add")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector3_Add")] public static extern global::System.IntPtr Vector3_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector3_AddAssign")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector3_AddAssign")] public static extern global::System.IntPtr Vector3_AddAssign(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector3_Subtract__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector3_Subtract__SWIG_0")] public static extern global::System.IntPtr Vector3_Subtract__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector3_SubtractAssign")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector3_SubtractAssign")] public static extern global::System.IntPtr Vector3_SubtractAssign(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector3_Multiply__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector3_Multiply__SWIG_0")] public static extern global::System.IntPtr Vector3_Multiply__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector3_Multiply__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector3_Multiply__SWIG_1")] public static extern global::System.IntPtr Vector3_Multiply__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector3_MultiplyAssign__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector3_MultiplyAssign__SWIG_0")] public static extern global::System.IntPtr Vector3_MultiplyAssign__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector3_MultiplyAssign__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector3_MultiplyAssign__SWIG_1")] public static extern global::System.IntPtr Vector3_MultiplyAssign__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector3_MultiplyAssign__SWIG_2")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector3_MultiplyAssign__SWIG_2")] public static extern global::System.IntPtr Vector3_MultiplyAssign__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector3_Divide__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector3_Divide__SWIG_0")] public static extern global::System.IntPtr Vector3_Divide__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector3_Divide__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector3_Divide__SWIG_1")] public static extern global::System.IntPtr Vector3_Divide__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector3_DivideAssign__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector3_DivideAssign__SWIG_0")] public static extern global::System.IntPtr Vector3_DivideAssign__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector3_DivideAssign__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector3_DivideAssign__SWIG_1")] public static extern global::System.IntPtr Vector3_DivideAssign__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector3_Subtract__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector3_Subtract__SWIG_1")] public static extern global::System.IntPtr Vector3_Subtract__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector3_EqualTo")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector3_EqualTo")] public static extern bool Vector3_EqualTo(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector3_NotEqualTo")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector3_NotEqualTo")] public static extern bool Vector3_NotEqualTo(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector3_ValueOfIndex__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector3_ValueOfIndex__SWIG_0")] public static extern float Vector3_ValueOfIndex__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector3_Dot")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector3_Dot")] public static extern float Vector3_Dot(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector3_Cross")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector3_Cross")] public static extern global::System.IntPtr Vector3_Cross(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector3_Length")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector3_Length")] public static extern float Vector3_Length(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector3_LengthSquared")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector3_LengthSquared")] public static extern float Vector3_LengthSquared(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector3_Normalize")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector3_Normalize")] public static extern void Vector3_Normalize(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector3_Clamp")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector3_Clamp")] public static extern void Vector3_Clamp(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector3_AsFloat__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector3_AsFloat__SWIG_0")] public static extern global::System.IntPtr Vector3_AsFloat__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector3_GetVectorXY__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector3_GetVectorXY__SWIG_0")] public static extern global::System.IntPtr Vector3_GetVectorXY__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector3_GetVectorYZ__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector3_GetVectorYZ__SWIG_0")] public static extern global::System.IntPtr Vector3_GetVectorYZ__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector3_X_set")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector3_X_set")] public static extern void Vector3_X_set(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector3_X_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector3_X_get")] public static extern float Vector3_X_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector3_Width_set")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector3_Width_set")] public static extern void Vector3_Width_set(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector3_Width_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector3_Width_get")] public static extern float Vector3_Width_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector3_r_set")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector3_r_set")] public static extern void Vector3_r_set(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector3_r_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector3_r_get")] public static extern float Vector3_r_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector3_Y_set")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector3_Y_set")] public static extern void Vector3_Y_set(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector3_Y_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector3_Y_get")] public static extern float Vector3_Y_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector3_Height_set")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector3_Height_set")] public static extern void Vector3_Height_set(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector3_Height_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector3_Height_get")] public static extern float Vector3_Height_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector3_g_set")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector3_g_set")] public static extern void Vector3_g_set(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector3_g_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector3_g_get")] public static extern float Vector3_g_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector3_Z_set")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector3_Z_set")] public static extern void Vector3_Z_set(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector3_Z_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector3_Z_get")] public static extern float Vector3_Z_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector3_Depth_set")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector3_Depth_set")] public static extern void Vector3_Depth_set(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector3_Depth_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector3_Depth_get")] public static extern float Vector3_Depth_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector3_b_set")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector3_b_set")] public static extern void Vector3_b_set(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector3_b_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector3_b_get")] public static extern float Vector3_b_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_Vector3")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_Vector3")] public static extern void delete_Vector3(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Min__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Min__SWIG_1")] public static extern global::System.IntPtr Min__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Max__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Max__SWIG_1")] public static extern global::System.IntPtr Max__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Clamp__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Clamp__SWIG_1")] public static extern global::System.IntPtr Clamp__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2, float jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_Vector4__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Vector4__SWIG_0")] public static extern global::System.IntPtr new_Vector4__SWIG_0(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_Vector4__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Vector4__SWIG_1")] public static extern global::System.IntPtr new_Vector4__SWIG_1(float jarg1, float jarg2, float jarg3, float jarg4); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_Vector4__SWIG_2")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Vector4__SWIG_2")] public static extern global::System.IntPtr new_Vector4__SWIG_2([global::System.Runtime.InteropServices.In, global::System.Runtime.InteropServices.MarshalAs(global::System.Runtime.InteropServices.UnmanagedType.LPArray)]float[] jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_Vector4__SWIG_3")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Vector4__SWIG_3")] public static extern global::System.IntPtr new_Vector4__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_Vector4__SWIG_4")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Vector4__SWIG_4")] public static extern global::System.IntPtr new_Vector4__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector4_ONE_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector4_ONE_get")] public static extern global::System.IntPtr Vector4_ONE_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector4_XAXIS_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector4_XAXIS_get")] public static extern global::System.IntPtr Vector4_XAXIS_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector4_YAXIS_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector4_YAXIS_get")] public static extern global::System.IntPtr Vector4_YAXIS_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector4_ZAXIS_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector4_ZAXIS_get")] public static extern global::System.IntPtr Vector4_ZAXIS_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector4_ZERO_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector4_ZERO_get")] public static extern global::System.IntPtr Vector4_ZERO_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector4_Assign__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector4_Assign__SWIG_0")] public static extern global::System.IntPtr Vector4_Assign__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, [global::System.Runtime.InteropServices.In, global::System.Runtime.InteropServices.MarshalAs(global::System.Runtime.InteropServices.UnmanagedType.LPArray)]float[] jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector4_Assign__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector4_Assign__SWIG_1")] public static extern global::System.IntPtr Vector4_Assign__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector4_Assign__SWIG_2")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector4_Assign__SWIG_2")] public static extern global::System.IntPtr Vector4_Assign__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector4_Add")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector4_Add")] public static extern global::System.IntPtr Vector4_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector4_AddAssign")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector4_AddAssign")] public static extern global::System.IntPtr Vector4_AddAssign(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector4_Subtract__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector4_Subtract__SWIG_0")] public static extern global::System.IntPtr Vector4_Subtract__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector4_SubtractAssign")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector4_SubtractAssign")] public static extern global::System.IntPtr Vector4_SubtractAssign(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector4_Multiply__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector4_Multiply__SWIG_0")] public static extern global::System.IntPtr Vector4_Multiply__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector4_Multiply__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector4_Multiply__SWIG_1")] public static extern global::System.IntPtr Vector4_Multiply__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector4_MultiplyAssign__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector4_MultiplyAssign__SWIG_0")] public static extern global::System.IntPtr Vector4_MultiplyAssign__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector4_MultiplyAssign__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector4_MultiplyAssign__SWIG_1")] public static extern global::System.IntPtr Vector4_MultiplyAssign__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector4_Divide__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector4_Divide__SWIG_0")] public static extern global::System.IntPtr Vector4_Divide__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector4_Divide__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector4_Divide__SWIG_1")] public static extern global::System.IntPtr Vector4_Divide__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector4_DivideAssign__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector4_DivideAssign__SWIG_0")] public static extern global::System.IntPtr Vector4_DivideAssign__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector4_DivideAssign__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector4_DivideAssign__SWIG_1")] public static extern global::System.IntPtr Vector4_DivideAssign__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector4_Subtract__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector4_Subtract__SWIG_1")] public static extern global::System.IntPtr Vector4_Subtract__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector4_EqualTo")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector4_EqualTo")] public static extern bool Vector4_EqualTo(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector4_NotEqualTo")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector4_NotEqualTo")] public static extern bool Vector4_NotEqualTo(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector4_ValueOfIndex__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector4_ValueOfIndex__SWIG_0")] public static extern float Vector4_ValueOfIndex__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector4_Dot__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector4_Dot__SWIG_0")] public static extern float Vector4_Dot__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector4_Dot__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector4_Dot__SWIG_1")] public static extern float Vector4_Dot__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector4_Dot4")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector4_Dot4")] public static extern float Vector4_Dot4(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector4_Cross")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector4_Cross")] public static extern global::System.IntPtr Vector4_Cross(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector4_Length")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector4_Length")] public static extern float Vector4_Length(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector4_LengthSquared")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector4_LengthSquared")] public static extern float Vector4_LengthSquared(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector4_Normalize")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector4_Normalize")] public static extern void Vector4_Normalize(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector4_Clamp")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector4_Clamp")] public static extern void Vector4_Clamp(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector4_AsFloat__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector4_AsFloat__SWIG_0")] public static extern global::System.IntPtr Vector4_AsFloat__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector4_X_set")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector4_X_set")] public static extern void Vector4_X_set(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector4_X_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector4_X_get")] public static extern float Vector4_X_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector4_r_set")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector4_r_set")] public static extern void Vector4_r_set(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector4_r_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector4_r_get")] public static extern float Vector4_r_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector4_s_set")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector4_s_set")] public static extern void Vector4_s_set(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector4_s_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector4_s_get")] public static extern float Vector4_s_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector4_Y_set")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector4_Y_set")] public static extern void Vector4_Y_set(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector4_Y_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector4_Y_get")] public static extern float Vector4_Y_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector4_g_set")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector4_g_set")] public static extern void Vector4_g_set(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector4_g_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector4_g_get")] public static extern float Vector4_g_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector4_t_set")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector4_t_set")] public static extern void Vector4_t_set(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector4_t_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector4_t_get")] public static extern float Vector4_t_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector4_Z_set")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector4_Z_set")] public static extern void Vector4_Z_set(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector4_Z_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector4_Z_get")] public static extern float Vector4_Z_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector4_b_set")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector4_b_set")] public static extern void Vector4_b_set(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector4_b_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector4_b_get")] public static extern float Vector4_b_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector4_p_set")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector4_p_set")] public static extern void Vector4_p_set(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector4_p_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector4_p_get")] public static extern float Vector4_p_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector4_W_set")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector4_W_set")] public static extern void Vector4_W_set(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector4_W_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector4_W_get")] public static extern float Vector4_W_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector4_a_set")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector4_a_set")] public static extern void Vector4_a_set(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector4_a_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector4_a_get")] public static extern float Vector4_a_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector4_q_set")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector4_q_set")] public static extern void Vector4_q_set(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Vector4_q_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Vector4_q_get")] public static extern float Vector4_q_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_Vector4")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_Vector4")] public static extern void delete_Vector4(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Min__SWIG_2")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Min__SWIG_2")] public static extern global::System.IntPtr Min__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Max__SWIG_2")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Max__SWIG_2")] public static extern global::System.IntPtr Max__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Clamp__SWIG_2")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Clamp__SWIG_2")] public static extern global::System.IntPtr Clamp__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2, float jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_Uint16Pair__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Uint16Pair__SWIG_0")] public static extern global::System.IntPtr new_Uint16Pair__SWIG_0(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_Uint16Pair__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Uint16Pair__SWIG_1")] public static extern global::System.IntPtr new_Uint16Pair__SWIG_1(uint jarg1, uint jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_Uint16Pair__SWIG_2")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Uint16Pair__SWIG_2")] public static extern global::System.IntPtr new_Uint16Pair__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Uint16Pair_SetWidth")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Uint16Pair_SetWidth")] public static extern void Uint16Pair_SetWidth(global::System.Runtime.InteropServices.HandleRef jarg1, ushort jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Uint16Pair_GetWidth")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Uint16Pair_GetWidth")] public static extern ushort Uint16Pair_GetWidth(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Uint16Pair_SetHeight")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Uint16Pair_SetHeight")] public static extern void Uint16Pair_SetHeight(global::System.Runtime.InteropServices.HandleRef jarg1, ushort jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Uint16Pair_GetHeight")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Uint16Pair_GetHeight")] public static extern ushort Uint16Pair_GetHeight(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Uint16Pair_SetX")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Uint16Pair_SetX")] public static extern void Uint16Pair_SetX(global::System.Runtime.InteropServices.HandleRef jarg1, ushort jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Uint16Pair_GetX")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Uint16Pair_GetX")] public static extern ushort Uint16Pair_GetX(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Uint16Pair_SetY")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Uint16Pair_SetY")] public static extern void Uint16Pair_SetY(global::System.Runtime.InteropServices.HandleRef jarg1, ushort jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Uint16Pair_GetY")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Uint16Pair_GetY")] public static extern ushort Uint16Pair_GetY(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Uint16Pair_Assign")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Uint16Pair_Assign")] public static extern global::System.IntPtr Uint16Pair_Assign(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Uint16Pair_EqualTo")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Uint16Pair_EqualTo")] public static extern bool Uint16Pair_EqualTo(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Uint16Pair_NotEqualTo")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Uint16Pair_NotEqualTo")] public static extern bool Uint16Pair_NotEqualTo(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Uint16Pair_LessThan")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Uint16Pair_LessThan")] public static extern bool Uint16Pair_LessThan(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Uint16Pair_GreaterThan")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Uint16Pair_GreaterThan")] public static extern bool Uint16Pair_GreaterThan(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_Uint16Pair")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_Uint16Pair")] public static extern void delete_Uint16Pair(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_Degree__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Degree__SWIG_0")] public static extern global::System.IntPtr new_Degree__SWIG_0(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_Degree__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Degree__SWIG_1")] public static extern global::System.IntPtr new_Degree__SWIG_1(float jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_Degree__SWIG_2")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Degree__SWIG_2")] public static extern global::System.IntPtr new_Degree__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Degree_degree_set")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Degree_degree_set")] public static extern void Degree_degree_set(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Degree_degree_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Degree_degree_get")] public static extern float Degree_degree_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_Degree")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_Degree")] public static extern void delete_Degree(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ANGLE_360_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ANGLE_360_get")] public static extern global::System.IntPtr ANGLE_360_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ANGLE_315_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ANGLE_315_get")] public static extern global::System.IntPtr ANGLE_315_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ANGLE_270_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ANGLE_270_get")] public static extern global::System.IntPtr ANGLE_270_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ANGLE_225_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ANGLE_225_get")] public static extern global::System.IntPtr ANGLE_225_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ANGLE_180_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ANGLE_180_get")] public static extern global::System.IntPtr ANGLE_180_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ANGLE_135_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ANGLE_135_get")] public static extern global::System.IntPtr ANGLE_135_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ANGLE_120_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ANGLE_120_get")] public static extern global::System.IntPtr ANGLE_120_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ANGLE_90_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ANGLE_90_get")] public static extern global::System.IntPtr ANGLE_90_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ANGLE_60_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ANGLE_60_get")] public static extern global::System.IntPtr ANGLE_60_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ANGLE_45_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ANGLE_45_get")] public static extern global::System.IntPtr ANGLE_45_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ANGLE_30_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ANGLE_30_get")] public static extern global::System.IntPtr ANGLE_30_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ANGLE_0_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ANGLE_0_get")] public static extern global::System.IntPtr ANGLE_0_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_EqualTo__SWIG_5")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_EqualTo__SWIG_5")] public static extern bool EqualTo__SWIG_5(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_NotEqualTo__SWIG_4")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_NotEqualTo__SWIG_4")] public static extern bool NotEqualTo__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Clamp__SWIG_3")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Clamp__SWIG_3")] public static extern global::System.IntPtr Clamp__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2, float jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_Radian__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Radian__SWIG_0")] public static extern global::System.IntPtr new_Radian__SWIG_0(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_Radian__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Radian__SWIG_1")] public static extern global::System.IntPtr new_Radian__SWIG_1(float jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_Radian__SWIG_2")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Radian__SWIG_2")] public static extern global::System.IntPtr new_Radian__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Radian_Assign__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Radian_Assign__SWIG_0")] public static extern global::System.IntPtr Radian_Assign__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Radian_Assign__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Radian_Assign__SWIG_1")] public static extern global::System.IntPtr Radian_Assign__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Radian_ConvertToFloat")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Radian_ConvertToFloat")] public static extern float Radian_ConvertToFloat(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Radian_radian_set")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Radian_radian_set")] public static extern void Radian_radian_set(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Radian_radian_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Radian_radian_get")] public static extern float Radian_radian_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_Radian")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_Radian")] public static extern void delete_Radian(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_EqualTo__SWIG_6")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_EqualTo__SWIG_6")] public static extern bool EqualTo__SWIG_6(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_NotEqualTo__SWIG_5")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_NotEqualTo__SWIG_5")] public static extern bool NotEqualTo__SWIG_5(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_EqualTo__SWIG_7")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_EqualTo__SWIG_7")] public static extern bool EqualTo__SWIG_7(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_NotEqualTo__SWIG_6")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_NotEqualTo__SWIG_6")] public static extern bool NotEqualTo__SWIG_6(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_EqualTo__SWIG_8")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_EqualTo__SWIG_8")] public static extern bool EqualTo__SWIG_8(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_NotEqualTo__SWIG_7")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_NotEqualTo__SWIG_7")] public static extern bool NotEqualTo__SWIG_7(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_GreaterThan__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_GreaterThan__SWIG_0")] public static extern bool GreaterThan__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_GreaterThan__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_GreaterThan__SWIG_1")] public static extern bool GreaterThan__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_GreaterThan__SWIG_2")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_GreaterThan__SWIG_2")] public static extern bool GreaterThan__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_LessThan__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_LessThan__SWIG_0")] public static extern bool LessThan__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_LessThan__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_LessThan__SWIG_1")] public static extern bool LessThan__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_LessThan__SWIG_2")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_LessThan__SWIG_2")] public static extern bool LessThan__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Multiply")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Multiply")] public static extern global::System.IntPtr Multiply(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Subtract")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Subtract")] public static extern global::System.IntPtr Subtract(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Clamp__SWIG_4")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Clamp__SWIG_4")] public static extern global::System.IntPtr Clamp__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2, float jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_Quaternion__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Quaternion__SWIG_0")] public static extern global::System.IntPtr new_Quaternion__SWIG_0(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_Quaternion__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Quaternion__SWIG_1")] public static extern global::System.IntPtr new_Quaternion__SWIG_1(float jarg1, float jarg2, float jarg3, float jarg4); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_Quaternion__SWIG_2")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Quaternion__SWIG_2")] public static extern global::System.IntPtr new_Quaternion__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_Quaternion__SWIG_3")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Quaternion__SWIG_3")] public static extern global::System.IntPtr new_Quaternion__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_Quaternion__SWIG_4")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Quaternion__SWIG_4")] public static extern global::System.IntPtr new_Quaternion__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_Quaternion__SWIG_5")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Quaternion__SWIG_5")] public static extern global::System.IntPtr new_Quaternion__SWIG_5(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_Quaternion__SWIG_6")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Quaternion__SWIG_6")] public static extern global::System.IntPtr new_Quaternion__SWIG_6(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_Quaternion__SWIG_7")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Quaternion__SWIG_7")] public static extern global::System.IntPtr new_Quaternion__SWIG_7(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_Quaternion")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_Quaternion")] public static extern void delete_Quaternion(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Quaternion_IDENTITY_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Quaternion_IDENTITY_get")] public static extern global::System.IntPtr Quaternion_IDENTITY_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Quaternion_IsIdentity")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Quaternion_IsIdentity")] public static extern bool Quaternion_IsIdentity(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Quaternion_ToAxisAngle")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Quaternion_ToAxisAngle")] public static extern bool Quaternion_ToAxisAngle(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Quaternion_AsVector")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Quaternion_AsVector")] public static extern global::System.IntPtr Quaternion_AsVector(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Quaternion_SetEuler")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Quaternion_SetEuler")] public static extern void Quaternion_SetEuler(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Quaternion_EulerAngles")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Quaternion_EulerAngles")] public static extern global::System.IntPtr Quaternion_EulerAngles(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Quaternion_Add")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Quaternion_Add")] public static extern global::System.IntPtr Quaternion_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Quaternion_Subtract__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Quaternion_Subtract__SWIG_0")] public static extern global::System.IntPtr Quaternion_Subtract__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Quaternion_Multiply__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Quaternion_Multiply__SWIG_0")] public static extern global::System.IntPtr Quaternion_Multiply__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Quaternion_Multiply__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Quaternion_Multiply__SWIG_1")] public static extern global::System.IntPtr Quaternion_Multiply__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Quaternion_Divide__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Quaternion_Divide__SWIG_0")] public static extern global::System.IntPtr Quaternion_Divide__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Quaternion_Multiply__SWIG_2")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Quaternion_Multiply__SWIG_2")] public static extern global::System.IntPtr Quaternion_Multiply__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Quaternion_Divide__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Quaternion_Divide__SWIG_1")] public static extern global::System.IntPtr Quaternion_Divide__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Quaternion_Subtract__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Quaternion_Subtract__SWIG_1")] public static extern global::System.IntPtr Quaternion_Subtract__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Quaternion_AddAssign")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Quaternion_AddAssign")] public static extern global::System.IntPtr Quaternion_AddAssign(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Quaternion_SubtractAssign")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Quaternion_SubtractAssign")] public static extern global::System.IntPtr Quaternion_SubtractAssign(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Quaternion_MultiplyAssign__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Quaternion_MultiplyAssign__SWIG_0")] public static extern global::System.IntPtr Quaternion_MultiplyAssign__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Quaternion_MultiplyAssign__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Quaternion_MultiplyAssign__SWIG_1")] public static extern global::System.IntPtr Quaternion_MultiplyAssign__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Quaternion_DivideAssign")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Quaternion_DivideAssign")] public static extern global::System.IntPtr Quaternion_DivideAssign(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Quaternion_EqualTo")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Quaternion_EqualTo")] public static extern bool Quaternion_EqualTo(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Quaternion_NotEqualTo")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Quaternion_NotEqualTo")] public static extern bool Quaternion_NotEqualTo(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Quaternion_Length")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Quaternion_Length")] public static extern float Quaternion_Length(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Quaternion_LengthSquared")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Quaternion_LengthSquared")] public static extern float Quaternion_LengthSquared(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Quaternion_Normalize")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Quaternion_Normalize")] public static extern void Quaternion_Normalize(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Quaternion_Normalized")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Quaternion_Normalized")] public static extern global::System.IntPtr Quaternion_Normalized(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Quaternion_Conjugate")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Quaternion_Conjugate")] public static extern void Quaternion_Conjugate(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Quaternion_Invert")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Quaternion_Invert")] public static extern void Quaternion_Invert(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Quaternion_Log")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Quaternion_Log")] public static extern global::System.IntPtr Quaternion_Log(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Quaternion_Exp")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Quaternion_Exp")] public static extern global::System.IntPtr Quaternion_Exp(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Quaternion_Dot")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Quaternion_Dot")] public static extern float Quaternion_Dot(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Quaternion_Lerp")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Quaternion_Lerp")] public static extern global::System.IntPtr Quaternion_Lerp(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, float jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Quaternion_Slerp")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Quaternion_Slerp")] public static extern global::System.IntPtr Quaternion_Slerp(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, float jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Quaternion_SlerpNoInvert")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Quaternion_SlerpNoInvert")] public static extern global::System.IntPtr Quaternion_SlerpNoInvert(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, float jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Quaternion_Squad")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Quaternion_Squad")] public static extern global::System.IntPtr Quaternion_Squad(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, float jarg5); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Quaternion_AngleBetween")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Quaternion_AngleBetween")] public static extern float Quaternion_AngleBetween(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Quaternion_Rotate__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Quaternion_Rotate__SWIG_0")] public static extern global::System.IntPtr Quaternion_Rotate__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Quaternion_Rotate__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Quaternion_Rotate__SWIG_1")] public static extern global::System.IntPtr Quaternion_Rotate__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Quaternion_mVector_set")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Quaternion_mVector_set")] public static extern void Quaternion_mVector_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Quaternion_mVector_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Quaternion_mVector_get")] public static extern global::System.IntPtr Quaternion_mVector_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_Matrix__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Matrix__SWIG_0")] public static extern global::System.IntPtr new_Matrix__SWIG_0(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_Matrix__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Matrix__SWIG_1")] public static extern global::System.IntPtr new_Matrix__SWIG_1(bool jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_Matrix__SWIG_2")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Matrix__SWIG_2")] public static extern global::System.IntPtr new_Matrix__SWIG_2([global::System.Runtime.InteropServices.In, global::System.Runtime.InteropServices.MarshalAs(global::System.Runtime.InteropServices.UnmanagedType.LPArray)]float[] jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_Matrix__SWIG_3")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Matrix__SWIG_3")] public static extern global::System.IntPtr new_Matrix__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_Matrix__SWIG_4")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Matrix__SWIG_4")] public static extern global::System.IntPtr new_Matrix__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Matrix_Assign")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Matrix_Assign")] public static extern global::System.IntPtr Matrix_Assign(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Matrix_IDENTITY_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Matrix_IDENTITY_get")] public static extern global::System.IntPtr Matrix_IDENTITY_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Matrix_SetIdentity")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Matrix_SetIdentity")] public static extern void Matrix_SetIdentity(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Matrix_SetIdentityAndScale")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Matrix_SetIdentityAndScale")] public static extern void Matrix_SetIdentityAndScale(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Matrix_InvertTransform")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Matrix_InvertTransform")] public static extern void Matrix_InvertTransform(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Matrix_Invert")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Matrix_Invert")] public static extern bool Matrix_Invert(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Matrix_Transpose")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Matrix_Transpose")] public static extern void Matrix_Transpose(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Matrix_GetXAxis")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Matrix_GetXAxis")] public static extern global::System.IntPtr Matrix_GetXAxis(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Matrix_GetYAxis")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Matrix_GetYAxis")] public static extern global::System.IntPtr Matrix_GetYAxis(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Matrix_GetZAxis")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Matrix_GetZAxis")] public static extern global::System.IntPtr Matrix_GetZAxis(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Matrix_SetXAxis")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Matrix_SetXAxis")] public static extern void Matrix_SetXAxis(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Matrix_SetYAxis")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Matrix_SetYAxis")] public static extern void Matrix_SetYAxis(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Matrix_SetZAxis")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Matrix_SetZAxis")] public static extern void Matrix_SetZAxis(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Matrix_GetTranslation")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Matrix_GetTranslation")] public static extern global::System.IntPtr Matrix_GetTranslation(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Matrix_GetTranslation3")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Matrix_GetTranslation3")] public static extern global::System.IntPtr Matrix_GetTranslation3(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Matrix_SetTranslation__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Matrix_SetTranslation__SWIG_0")] public static extern void Matrix_SetTranslation__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Matrix_SetTranslation__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Matrix_SetTranslation__SWIG_1")] public static extern void Matrix_SetTranslation__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Matrix_OrthoNormalize")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Matrix_OrthoNormalize")] public static extern void Matrix_OrthoNormalize(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Matrix_AsFloat__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Matrix_AsFloat__SWIG_0")] public static extern global::System.IntPtr Matrix_AsFloat__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Matrix_Multiply__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Matrix_Multiply__SWIG_0")] public static extern void Matrix_Multiply__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Matrix_Multiply__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Matrix_Multiply__SWIG_1")] public static extern void Matrix_Multiply__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Matrix_Multiply__SWIG_2")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Matrix_Multiply__SWIG_2")] public static extern global::System.IntPtr Matrix_Multiply__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Matrix_EqualTo")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Matrix_EqualTo")] public static extern bool Matrix_EqualTo(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Matrix_NotEqualTo")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Matrix_NotEqualTo")] public static extern bool Matrix_NotEqualTo(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Matrix_SetTransformComponents")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Matrix_SetTransformComponents")] public static extern void Matrix_SetTransformComponents(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Matrix_SetInverseTransformComponents__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Matrix_SetInverseTransformComponents__SWIG_0")] public static extern void Matrix_SetInverseTransformComponents__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Matrix_SetInverseTransformComponents__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Matrix_SetInverseTransformComponents__SWIG_1")] public static extern void Matrix_SetInverseTransformComponents__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Matrix_GetTransformComponents")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Matrix_GetTransformComponents")] public static extern void Matrix_GetTransformComponents(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_Matrix")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_Matrix")] public static extern void delete_Matrix(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Matrix3_IDENTITY_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Matrix3_IDENTITY_get")] public static extern global::System.IntPtr Matrix3_IDENTITY_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_Matrix3__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Matrix3__SWIG_0")] public static extern global::System.IntPtr new_Matrix3__SWIG_0(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_Matrix3__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Matrix3__SWIG_1")] public static extern global::System.IntPtr new_Matrix3__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_Matrix3__SWIG_2")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Matrix3__SWIG_2")] public static extern global::System.IntPtr new_Matrix3__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_Matrix3__SWIG_3")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Matrix3__SWIG_3")] public static extern global::System.IntPtr new_Matrix3__SWIG_3(float jarg1, float jarg2, float jarg3, float jarg4, float jarg5, float jarg6, float jarg7, float jarg8, float jarg9); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Matrix3_Assign__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Matrix3_Assign__SWIG_0")] public static extern global::System.IntPtr Matrix3_Assign__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Matrix3_Assign__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Matrix3_Assign__SWIG_1")] public static extern global::System.IntPtr Matrix3_Assign__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Matrix3_EqualTo")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Matrix3_EqualTo")] public static extern bool Matrix3_EqualTo(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Matrix3_NotEqualTo")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Matrix3_NotEqualTo")] public static extern bool Matrix3_NotEqualTo(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_Matrix3")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_Matrix3")] public static extern void delete_Matrix3(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Matrix3_SetIdentity")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Matrix3_SetIdentity")] public static extern void Matrix3_SetIdentity(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Matrix3_AsFloat__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Matrix3_AsFloat__SWIG_0")] public static extern global::System.IntPtr Matrix3_AsFloat__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Matrix3_Invert")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Matrix3_Invert")] public static extern bool Matrix3_Invert(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Matrix3_Transpose")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Matrix3_Transpose")] public static extern bool Matrix3_Transpose(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Matrix3_Scale")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Matrix3_Scale")] public static extern void Matrix3_Scale(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Matrix3_Magnitude")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Matrix3_Magnitude")] public static extern float Matrix3_Magnitude(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Matrix3_ScaledInverseTranspose")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Matrix3_ScaledInverseTranspose")] public static extern bool Matrix3_ScaledInverseTranspose(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Matrix3_Multiply")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Matrix3_Multiply")] public static extern void Matrix3_Multiply(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Range")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Range")] public static extern float Range(float jarg1, float jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Axis")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Axis")] public static extern global::System.IntPtr Axis(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_AngleAxis__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_AngleAxis__SWIG_0")] public static extern global::System.IntPtr new_AngleAxis__SWIG_0(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_AngleAxis__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_AngleAxis__SWIG_1")] public static extern global::System.IntPtr new_AngleAxis__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_AngleAxis_angle_set")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_AngleAxis_angle_set")] public static extern void AngleAxis_angle_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_AngleAxis_angle_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_AngleAxis_angle_get")] public static extern global::System.IntPtr AngleAxis_angle_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_AngleAxis_axis_set")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_AngleAxis_axis_set")] public static extern void AngleAxis_axis_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_AngleAxis_axis_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_AngleAxis_axis_get")] public static extern global::System.IntPtr AngleAxis_axis_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_AngleAxis")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_AngleAxis")] public static extern void delete_AngleAxis(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_EqualTo__SWIG_9")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_EqualTo__SWIG_9")] public static extern bool EqualTo__SWIG_9(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Property_INVALID_INDEX_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Property_INVALID_INDEX_get")] public static extern int Property_INVALID_INDEX_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Property_INVALID_KEY_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Property_INVALID_KEY_get")] public static extern int Property_INVALID_KEY_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Property_INVALID_COMPONENT_INDEX_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Property_INVALID_COMPONENT_INDEX_get")] public static extern int Property_INVALID_COMPONENT_INDEX_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_Property__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Property__SWIG_0")] public static extern global::System.IntPtr new_Property__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_Property__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Property__SWIG_1")] public static extern global::System.IntPtr new_Property__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_Property__SWIG_2")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Property__SWIG_2")] public static extern global::System.IntPtr new_Property__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_Property__SWIG_3")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Property__SWIG_3")] public static extern global::System.IntPtr new_Property__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, int jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_Property")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_Property")] public static extern void delete_Property(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Property__object_set")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Property__object_set")] public static extern void Property__object_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Property__object_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Property__object_get")] public static extern global::System.IntPtr Property__object_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Property_propertyIndex_set")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Property_propertyIndex_set")] public static extern void Property_propertyIndex_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Property_propertyIndex_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Property_propertyIndex_get")] public static extern int Property_propertyIndex_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Property_componentIndex_set")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Property_componentIndex_set")] public static extern void Property_componentIndex_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Property_componentIndex_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Property_componentIndex_get")] public static extern int Property_componentIndex_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_Property_Array__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Property_Array__SWIG_0")] public static extern global::System.IntPtr new_Property_Array__SWIG_0(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_Property_Array__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Property_Array__SWIG_1")] public static extern global::System.IntPtr new_Property_Array__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_Property_Array")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_Property_Array")] public static extern void delete_Property_Array(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Property_Array_Size")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Property_Array_Size")] public static extern uint Property_Array_Size(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Property_Array_Count")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Property_Array_Count")] public static extern uint Property_Array_Count(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Property_Array_Empty")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Property_Array_Empty")] public static extern bool Property_Array_Empty(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Property_Array_Clear")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Property_Array_Clear")] public static extern void Property_Array_Clear(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Property_Array_Reserve")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Property_Array_Reserve")] public static extern void Property_Array_Reserve(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Property_Array_Resize")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Property_Array_Resize")] public static extern void Property_Array_Resize(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Property_Array_Capacity")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Property_Array_Capacity")] public static extern uint Property_Array_Capacity(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Property_Array_PushBack")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Property_Array_PushBack")] public static extern void Property_Array_PushBack(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Property_Array_Add")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Property_Array_Add")] public static extern global::System.IntPtr Property_Array_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Property_Array_GetElementAt__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Property_Array_GetElementAt__SWIG_0")] public static extern global::System.IntPtr Property_Array_GetElementAt__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Property_Array_ValueOfIndex__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Property_Array_ValueOfIndex__SWIG_0")] public static extern global::System.IntPtr Property_Array_ValueOfIndex__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Property_Array_Assign")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Property_Array_Assign")] public static extern global::System.IntPtr Property_Array_Assign(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Property_Key_type_set")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Property_Key_type_set")] public static extern void Property_Key_type_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Property_Key_type_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Property_Key_type_get")] public static extern int Property_Key_type_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Property_Key_indexKey_set")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Property_Key_indexKey_set")] public static extern void Property_Key_indexKey_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Property_Key_indexKey_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Property_Key_indexKey_get")] public static extern int Property_Key_indexKey_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Property_Key_stringKey_set")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Property_Key_stringKey_set")] public static extern void Property_Key_stringKey_set(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Property_Key_stringKey_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Property_Key_stringKey_get")] public static extern string Property_Key_stringKey_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_Property_Key__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Property_Key__SWIG_0")] public static extern global::System.IntPtr new_Property_Key__SWIG_0(string jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_Property_Key__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Property_Key__SWIG_1")] public static extern global::System.IntPtr new_Property_Key__SWIG_1(int jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Property_Key_EqualTo__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Property_Key_EqualTo__SWIG_0")] public static extern bool Property_Key_EqualTo__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Property_Key_EqualTo__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Property_Key_EqualTo__SWIG_1")] public static extern bool Property_Key_EqualTo__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Property_Key_EqualTo__SWIG_2")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Property_Key_EqualTo__SWIG_2")] public static extern bool Property_Key_EqualTo__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Property_Key_NotEqualTo__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Property_Key_NotEqualTo__SWIG_0")] public static extern bool Property_Key_NotEqualTo__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Property_Key_NotEqualTo__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Property_Key_NotEqualTo__SWIG_1")] public static extern bool Property_Key_NotEqualTo__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Property_Key_NotEqualTo__SWIG_2")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Property_Key_NotEqualTo__SWIG_2")] public static extern bool Property_Key_NotEqualTo__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_Property_Key")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_Property_Key")] public static extern void delete_Property_Key(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_Property_Map__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Property_Map__SWIG_0")] public static extern global::System.IntPtr new_Property_Map__SWIG_0(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_Property_Map__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Property_Map__SWIG_1")] public static extern global::System.IntPtr new_Property_Map__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_Property_Map")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_Property_Map")] public static extern void delete_Property_Map(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Property_Map_Count")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Property_Map_Count")] public static extern uint Property_Map_Count(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Property_Map_Empty")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Property_Map_Empty")] public static extern bool Property_Map_Empty(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Property_Map_Insert__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Property_Map_Insert__SWIG_0")] public static extern void Property_Map_Insert__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Property_Map_Insert__SWIG_2")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Property_Map_Insert__SWIG_2")] public static extern void Property_Map_Insert__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Property_Map_Add__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Property_Map_Add__SWIG_0")] public static extern global::System.IntPtr Property_Map_Add__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Property_Map_Add__SWIG_2")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Property_Map_Add__SWIG_2")] public static extern global::System.IntPtr Property_Map_Add__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Property_Map_GetValue")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Property_Map_GetValue")] public static extern global::System.IntPtr Property_Map_GetValue(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Property_Map_GetKey")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Property_Map_GetKey")] public static extern string Property_Map_GetKey(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Property_Map_GetKeyAt")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Property_Map_GetKeyAt")] public static extern global::System.IntPtr Property_Map_GetKeyAt(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Property_Map_GetPair")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Property_Map_GetPair")] public static extern global::System.IntPtr Property_Map_GetPair(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Property_Map_Find__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Property_Map_Find__SWIG_0")] public static extern global::System.IntPtr Property_Map_Find__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Property_Map_Find__SWIG_2")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Property_Map_Find__SWIG_2")] public static extern global::System.IntPtr Property_Map_Find__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Property_Map_Find__SWIG_3")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Property_Map_Find__SWIG_3")] public static extern global::System.IntPtr Property_Map_Find__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, string jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Property_Map_Find__SWIG_4")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Property_Map_Find__SWIG_4")] public static extern global::System.IntPtr Property_Map_Find__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, int jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Property_Map_Find__SWIG_5")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Property_Map_Find__SWIG_5")] public static extern global::System.IntPtr Property_Map_Find__SWIG_5(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Property_Map_Clear")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Property_Map_Clear")] public static extern void Property_Map_Clear(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Property_Map_Merge")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Property_Map_Merge")] public static extern void Property_Map_Merge(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Property_Map_ValueOfIndex__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Property_Map_ValueOfIndex__SWIG_0")] public static extern global::System.IntPtr Property_Map_ValueOfIndex__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Property_Map_ValueOfIndex__SWIG_2")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Property_Map_ValueOfIndex__SWIG_2")] public static extern global::System.IntPtr Property_Map_ValueOfIndex__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Property_Map_Assign")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Property_Map_Assign")] public static extern global::System.IntPtr Property_Map_Assign(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_Property_Value__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Property_Value__SWIG_0")] public static extern global::System.IntPtr new_Property_Value__SWIG_0(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_Property_Value__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Property_Value__SWIG_1")] public static extern global::System.IntPtr new_Property_Value__SWIG_1(bool jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_Property_Value__SWIG_2")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Property_Value__SWIG_2")] public static extern global::System.IntPtr new_Property_Value__SWIG_2(int jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_Property_Value__SWIG_3")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Property_Value__SWIG_3")] public static extern global::System.IntPtr new_Property_Value__SWIG_3(float jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_Property_Value__SWIG_4")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Property_Value__SWIG_4")] public static extern global::System.IntPtr new_Property_Value__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_Property_Value__SWIG_5")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Property_Value__SWIG_5")] public static extern global::System.IntPtr new_Property_Value__SWIG_5(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_Property_Value__SWIG_6")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Property_Value__SWIG_6")] public static extern global::System.IntPtr new_Property_Value__SWIG_6(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_Property_Value__SWIG_7")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Property_Value__SWIG_7")] public static extern global::System.IntPtr new_Property_Value__SWIG_7(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_Property_Value__SWIG_8")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Property_Value__SWIG_8")] public static extern global::System.IntPtr new_Property_Value__SWIG_8(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_Property_Value__SWIG_9")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Property_Value__SWIG_9")] public static extern global::System.IntPtr new_Property_Value__SWIG_9(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_Property_Value__SWIG_10")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Property_Value__SWIG_10")] public static extern global::System.IntPtr new_Property_Value__SWIG_10(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_Property_Value__SWIG_11")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Property_Value__SWIG_11")] public static extern global::System.IntPtr new_Property_Value__SWIG_11(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_Property_Value__SWIG_12")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Property_Value__SWIG_12")] public static extern global::System.IntPtr new_Property_Value__SWIG_12(string jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_Property_Value__SWIG_14")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Property_Value__SWIG_14")] public static extern global::System.IntPtr new_Property_Value__SWIG_14(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_Property_Value__SWIG_15")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Property_Value__SWIG_15")] public static extern global::System.IntPtr new_Property_Value__SWIG_15(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_Property_Value__SWIG_16")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Property_Value__SWIG_16")] public static extern global::System.IntPtr new_Property_Value__SWIG_16(int jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_Property_Value__SWIG_17")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Property_Value__SWIG_17")] public static extern global::System.IntPtr new_Property_Value__SWIG_17(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Property_Value_Assign")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Property_Value_Assign")] public static extern global::System.IntPtr Property_Value_Assign(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_Property_Value")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_Property_Value")] public static extern void delete_Property_Value(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Property_Value_GetType")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Property_Value_GetType")] public static extern int Property_Value_GetType(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Property_Value_Get__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Property_Value_Get__SWIG_1")] public static extern bool Property_Value_Get__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, ref bool jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Property_Value_Get__SWIG_2")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Property_Value_Get__SWIG_2")] public static extern bool Property_Value_Get__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, ref float jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Property_Value_Get__SWIG_3")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Property_Value_Get__SWIG_3")] public static extern bool Property_Value_Get__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, ref int jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Property_Value_Get__SWIG_4")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Property_Value_Get__SWIG_4")] public static extern bool Property_Value_Get__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Property_Value_Get__SWIG_5")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Property_Value_Get__SWIG_5")] public static extern bool Property_Value_Get__SWIG_5(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Property_Value_Get__SWIG_6")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Property_Value_Get__SWIG_6")] public static extern bool Property_Value_Get__SWIG_6(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Property_Value_Get__SWIG_7")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Property_Value_Get__SWIG_7")] public static extern bool Property_Value_Get__SWIG_7(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Property_Value_Get__SWIG_8")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Property_Value_Get__SWIG_8")] public static extern bool Property_Value_Get__SWIG_8(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Property_Value_Get__SWIG_9")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Property_Value_Get__SWIG_9")] public static extern bool Property_Value_Get__SWIG_9(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Property_Value_Get__SWIG_10")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Property_Value_Get__SWIG_10")] public static extern bool Property_Value_Get__SWIG_10(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Property_Value_Get__SWIG_11")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Property_Value_Get__SWIG_11")] public static extern bool Property_Value_Get__SWIG_11(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Property_Value_Get__SWIG_12")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Property_Value_Get__SWIG_12")] public static extern bool Property_Value_Get__SWIG_12(global::System.Runtime.InteropServices.HandleRef jarg1, out string jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Property_Value_Get__SWIG_13")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Property_Value_Get__SWIG_13")] public static extern bool Property_Value_Get__SWIG_13(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Property_Value_Get__SWIG_14")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Property_Value_Get__SWIG_14")] public static extern bool Property_Value_Get__SWIG_14(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Property_Value_GetArray")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Property_Value_GetArray")] public static extern global::System.IntPtr Property_Value_GetArray(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Property_Value_GetMap")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Property_Value_GetMap")] public static extern global::System.IntPtr Property_Value_GetMap(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_GetName")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_GetName")] public static extern string GetName(int jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_BaseObject_DoAction")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_BaseObject_DoAction")] public static extern bool BaseObject_DoAction(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_BaseObject_GetTypeName")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_BaseObject_GetTypeName")] public static extern string BaseObject_GetTypeName(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_BaseObject_GetTypeInfo")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_BaseObject_GetTypeInfo")] public static extern bool BaseObject_GetTypeInfo(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_BaseObject_DoConnectSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_BaseObject_DoConnectSignal")] public static extern bool BaseObject_DoConnectSignal(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, string jarg3, global::System.Runtime.InteropServices.HandleRef jarg4); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_GetImplementation")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_GetImplementation")] public static extern global::System.IntPtr GetImplementation(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_BaseHandle__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_BaseHandle__SWIG_0")] public static extern global::System.IntPtr new_BaseHandle__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_BaseHandle__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_BaseHandle__SWIG_1")] public static extern global::System.IntPtr new_BaseHandle__SWIG_1(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_BaseHandle")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_BaseHandle")] public static extern void delete_BaseHandle(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_BaseHandle__SWIG_2")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_BaseHandle__SWIG_2")] public static extern global::System.IntPtr new_BaseHandle__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_BaseHandle_Assign")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_BaseHandle_Assign")] public static extern global::System.IntPtr BaseHandle_Assign(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_BaseHandle_DoAction")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_BaseHandle_DoAction")] public static extern bool BaseHandle_DoAction(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_BaseHandle_GetTypeName")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_BaseHandle_GetTypeName")] public static extern string BaseHandle_GetTypeName(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_BaseHandle_GetTypeInfo")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_BaseHandle_GetTypeInfo")] public static extern bool BaseHandle_GetTypeInfo(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_BaseHandle_GetBaseObject__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_BaseHandle_GetBaseObject__SWIG_0")] public static extern global::System.IntPtr BaseHandle_GetBaseObject__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_BaseHandle_Reset")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_BaseHandle_Reset")] public static extern void BaseHandle_Reset(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_BaseHandle_EqualTo")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_BaseHandle_EqualTo")] public static extern bool BaseHandle_EqualTo(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_BaseHandle_NotEqualTo")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_BaseHandle_NotEqualTo")] public static extern bool BaseHandle_NotEqualTo(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_BaseHandle_GetObjectPtr")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_BaseHandle_GetObjectPtr")] public static extern global::System.IntPtr BaseHandle_GetObjectPtr(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_BaseHandle_HasBody")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_BaseHandle_HasBody")] public static extern bool BaseHandle_HasBody(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_BaseHandle_IsEqual")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_BaseHandle_IsEqual")] public static extern bool BaseHandle_IsEqual(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_LessThan__SWIG_3")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_LessThan__SWIG_3")] public static extern bool LessThan__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_ConnectionTrackerInterface")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_ConnectionTrackerInterface")] public static extern void delete_ConnectionTrackerInterface(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ConnectionTrackerInterface_SignalConnected")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ConnectionTrackerInterface_SignalConnected")] public static extern void ConnectionTrackerInterface_SignalConnected(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_SignalObserver")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_SignalObserver")] public static extern void delete_SignalObserver(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_SignalObserver_SignalDisconnected")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_SignalObserver_SignalDisconnected")] public static extern void SignalObserver_SignalDisconnected(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_SlotObserver")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_SlotObserver")] public static extern void delete_SlotObserver(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_SlotObserver_SlotDisconnected")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_SlotObserver_SlotDisconnected")] public static extern void SlotObserver_SlotDisconnected(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_ConnectionTracker")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_ConnectionTracker")] public static extern void delete_ConnectionTracker(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ConnectionTracker_DisconnectAll")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ConnectionTracker_DisconnectAll")] public static extern void ConnectionTracker_DisconnectAll(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ConnectionTracker_SignalConnected")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ConnectionTracker_SignalConnected")] public static extern void ConnectionTracker_SignalConnected(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ConnectionTracker_SignalDisconnected")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ConnectionTracker_SignalDisconnected")] public static extern void ConnectionTracker_SignalDisconnected(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ConnectionTracker_GetConnectionCount")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ConnectionTracker_GetConnectionCount")] public static extern uint ConnectionTracker_GetConnectionCount(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_ObjectRegistry__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_ObjectRegistry__SWIG_0")] public static extern global::System.IntPtr new_ObjectRegistry__SWIG_0(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_ObjectRegistry")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_ObjectRegistry")] public static extern void delete_ObjectRegistry(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_ObjectRegistry__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_ObjectRegistry__SWIG_1")] public static extern global::System.IntPtr new_ObjectRegistry__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ObjectRegistry_Assign")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ObjectRegistry_Assign")] public static extern global::System.IntPtr ObjectRegistry_Assign(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ObjectRegistry_ObjectCreatedSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ObjectRegistry_ObjectCreatedSignal")] public static extern global::System.IntPtr ObjectRegistry_ObjectCreatedSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ObjectRegistry_ObjectDestroyedSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ObjectRegistry_ObjectDestroyedSignal")] public static extern global::System.IntPtr ObjectRegistry_ObjectDestroyedSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_PropertyCondition__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_PropertyCondition__SWIG_0")] public static extern global::System.IntPtr new_PropertyCondition__SWIG_0(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_PropertyCondition")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_PropertyCondition")] public static extern void delete_PropertyCondition(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_PropertyCondition__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_PropertyCondition__SWIG_1")] public static extern global::System.IntPtr new_PropertyCondition__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PropertyCondition_Assign")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PropertyCondition_Assign")] public static extern global::System.IntPtr PropertyCondition_Assign(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PropertyCondition_GetArgumentCount")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PropertyCondition_GetArgumentCount")] public static extern uint PropertyCondition_GetArgumentCount(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PropertyCondition_GetArgument")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PropertyCondition_GetArgument")] public static extern float PropertyCondition_GetArgument(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_LessThanCondition")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_LessThanCondition")] public static extern global::System.IntPtr LessThanCondition(float jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_GreaterThanCondition")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_GreaterThanCondition")] public static extern global::System.IntPtr GreaterThanCondition(float jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_InsideCondition")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_InsideCondition")] public static extern global::System.IntPtr InsideCondition(float jarg1, float jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_OutsideCondition")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_OutsideCondition")] public static extern global::System.IntPtr OutsideCondition(float jarg1, float jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_StepCondition__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_StepCondition__SWIG_0")] public static extern global::System.IntPtr StepCondition__SWIG_0(float jarg1, float jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_StepCondition__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_StepCondition__SWIG_1")] public static extern global::System.IntPtr StepCondition__SWIG_1(float jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_VariableStepCondition")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_VariableStepCondition")] public static extern global::System.IntPtr VariableStepCondition(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_PropertyNotification__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_PropertyNotification__SWIG_0")] public static extern global::System.IntPtr new_PropertyNotification__SWIG_0(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PropertyNotification_DownCast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PropertyNotification_DownCast")] public static extern global::System.IntPtr PropertyNotification_DownCast(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_PropertyNotification")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_PropertyNotification")] public static extern void delete_PropertyNotification(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_PropertyNotification__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_PropertyNotification__SWIG_1")] public static extern global::System.IntPtr new_PropertyNotification__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PropertyNotification_Assign")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PropertyNotification_Assign")] public static extern global::System.IntPtr PropertyNotification_Assign(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PropertyNotification_GetCondition__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PropertyNotification_GetCondition__SWIG_0")] public static extern global::System.IntPtr PropertyNotification_GetCondition__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PropertyNotification_GetTarget")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PropertyNotification_GetTarget")] public static extern global::System.IntPtr PropertyNotification_GetTarget(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PropertyNotification_GetTargetProperty")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PropertyNotification_GetTargetProperty")] public static extern int PropertyNotification_GetTargetProperty(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PropertyNotification_SetNotifyMode")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PropertyNotification_SetNotifyMode")] public static extern void PropertyNotification_SetNotifyMode(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PropertyNotification_GetNotifyMode")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PropertyNotification_GetNotifyMode")] public static extern int PropertyNotification_GetNotifyMode(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PropertyNotification_GetNotifyResult")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PropertyNotification_GetNotifyResult")] public static extern bool PropertyNotification_GetNotifyResult(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PropertyNotification_NotifySignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PropertyNotification_NotifySignal")] public static extern global::System.IntPtr PropertyNotification_NotifySignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_Handle__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Handle__SWIG_0")] public static extern global::System.IntPtr new_Handle__SWIG_0(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Handle_New")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Handle_New")] public static extern global::System.IntPtr Handle_New(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_Handle")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_Handle")] public static extern void delete_Handle(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_Handle__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Handle__SWIG_1")] public static extern global::System.IntPtr new_Handle__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Handle_Assign")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Handle_Assign")] public static extern global::System.IntPtr Handle_Assign(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Handle_DownCast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Handle_DownCast")] public static extern global::System.IntPtr Handle_DownCast(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Handle_Supports")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Handle_Supports")] public static extern bool Handle_Supports(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Handle_GetPropertyCount")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Handle_GetPropertyCount")] public static extern uint Handle_GetPropertyCount(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Handle_GetPropertyName")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Handle_GetPropertyName")] public static extern string Handle_GetPropertyName(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Handle_GetPropertyIndex")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Handle_GetPropertyIndex")] public static extern int Handle_GetPropertyIndex(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Handle_IsPropertyWritable")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Handle_IsPropertyWritable")] public static extern bool Handle_IsPropertyWritable(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Handle_IsPropertyAnimatable")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Handle_IsPropertyAnimatable")] public static extern bool Handle_IsPropertyAnimatable(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Handle_IsPropertyAConstraintInput")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Handle_IsPropertyAConstraintInput")] public static extern bool Handle_IsPropertyAConstraintInput(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Handle_GetPropertyType")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Handle_GetPropertyType")] public static extern int Handle_GetPropertyType(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Handle_SetProperty")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Handle_SetProperty")] public static extern void Handle_SetProperty(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Handle_RegisterProperty__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Handle_RegisterProperty__SWIG_0")] public static extern int Handle_RegisterProperty__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Handle_RegisterProperty__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Handle_RegisterProperty__SWIG_1")] public static extern int Handle_RegisterProperty__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int jarg4); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Handle_GetProperty")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Handle_GetProperty")] public static extern global::System.IntPtr Handle_GetProperty(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Handle_GetPropertyIndices")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Handle_GetPropertyIndices")] public static extern void Handle_GetPropertyIndices(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Handle_AddPropertyNotification__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Handle_AddPropertyNotification__SWIG_0")] public static extern global::System.IntPtr Handle_AddPropertyNotification__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Handle_AddPropertyNotification__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Handle_AddPropertyNotification__SWIG_1")] public static extern global::System.IntPtr Handle_AddPropertyNotification__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3, global::System.Runtime.InteropServices.HandleRef jarg4); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Handle_RemovePropertyNotification")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Handle_RemovePropertyNotification")] public static extern void Handle_RemovePropertyNotification(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Handle_RemovePropertyNotifications")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Handle_RemovePropertyNotifications")] public static extern void Handle_RemovePropertyNotifications(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Handle_RemoveConstraints__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Handle_RemoveConstraints__SWIG_0")] public static extern void Handle_RemoveConstraints__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Handle_RemoveConstraints__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Handle_RemoveConstraints__SWIG_1")] public static extern void Handle_RemoveConstraints__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_WEIGHT_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_WEIGHT_get")] public static extern int WEIGHT_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_New")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_New")] public static extern global::System.IntPtr New(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_TypeInfo__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_TypeInfo__SWIG_0")] public static extern global::System.IntPtr new_TypeInfo__SWIG_0(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_TypeInfo")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_TypeInfo")] public static extern void delete_TypeInfo(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_TypeInfo__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_TypeInfo__SWIG_1")] public static extern global::System.IntPtr new_TypeInfo__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TypeInfo_Assign")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TypeInfo_Assign")] public static extern global::System.IntPtr TypeInfo_Assign(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TypeInfo_GetName")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TypeInfo_GetName")] public static extern string TypeInfo_GetName(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TypeInfo_GetBaseName")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TypeInfo_GetBaseName")] public static extern string TypeInfo_GetBaseName(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TypeInfo_CreateInstance")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TypeInfo_CreateInstance")] public static extern global::System.IntPtr TypeInfo_CreateInstance(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TypeInfo_GetCreator")] - public static extern global::System.IntPtr TypeInfo_GetCreator(global::System.Runtime.InteropServices.HandleRef jarg1); - - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TypeInfo_GetActionCount")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TypeInfo_GetActionCount")] public static extern uint TypeInfo_GetActionCount(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TypeInfo_GetActionName")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TypeInfo_GetActionName")] public static extern string TypeInfo_GetActionName(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TypeInfo_GetSignalCount")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TypeInfo_GetSignalCount")] public static extern uint TypeInfo_GetSignalCount(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TypeInfo_GetSignalName")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TypeInfo_GetSignalName")] public static extern string TypeInfo_GetSignalName(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TypeInfo_GetPropertyCount")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TypeInfo_GetPropertyCount")] public static extern uint TypeInfo_GetPropertyCount(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TypeInfo_GetPropertyIndices")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TypeInfo_GetPropertyIndices")] public static extern void TypeInfo_GetPropertyIndices(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TypeInfo_GetPropertyName")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TypeInfo_GetPropertyName")] public static extern string TypeInfo_GetPropertyName(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TypeRegistry_Get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TypeRegistry_Get")] public static extern global::System.IntPtr TypeRegistry_Get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_TypeRegistry__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_TypeRegistry__SWIG_0")] public static extern global::System.IntPtr new_TypeRegistry__SWIG_0(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_TypeRegistry")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_TypeRegistry")] public static extern void delete_TypeRegistry(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_TypeRegistry__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_TypeRegistry__SWIG_1")] public static extern global::System.IntPtr new_TypeRegistry__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TypeRegistry_Assign")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TypeRegistry_Assign")] public static extern global::System.IntPtr TypeRegistry_Assign(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TypeRegistry_GetTypeInfo__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TypeRegistry_GetTypeInfo__SWIG_0")] public static extern global::System.IntPtr TypeRegistry_GetTypeInfo__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TypeRegistry_GetTypeInfo__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TypeRegistry_GetTypeInfo__SWIG_1")] public static extern global::System.IntPtr TypeRegistry_GetTypeInfo__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TypeRegistry_GetTypeNameCount")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TypeRegistry_GetTypeNameCount")] public static extern uint TypeRegistry_GetTypeNameCount(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TypeRegistry_GetTypeName")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TypeRegistry_GetTypeName")] public static extern string TypeRegistry_GetTypeName(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_TypeRegistry__SWIG_2")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_TypeRegistry__SWIG_2")] public static extern global::System.IntPtr new_TypeRegistry__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_TypeRegistration__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_TypeRegistration__SWIG_0")] public static extern global::System.IntPtr new_TypeRegistration__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_TypeRegistration__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_TypeRegistration__SWIG_1")] public static extern global::System.IntPtr new_TypeRegistration__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, bool jarg4); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_TypeRegistration__SWIG_2")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_TypeRegistration__SWIG_2")] public static extern global::System.IntPtr new_TypeRegistration__SWIG_2(string jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TypeRegistration_RegisteredName")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TypeRegistration_RegisteredName")] public static extern string TypeRegistration_RegisteredName(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_TypeRegistration")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TypeRegistration_RegisterControl")] + public static extern void TypeRegistration_RegisterControl(string jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); + + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TypeRegistration_RegisterProperty")] + public static extern void TypeRegistration_RegisterProperty(string jarg1, string jarg2, int jarg3, int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6); + + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_TypeRegistration")] public static extern void delete_TypeRegistration(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_SignalConnectorType")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_SignalConnectorType")] public static extern global::System.IntPtr new_SignalConnectorType(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_SignalConnectorType")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_SignalConnectorType")] public static extern void delete_SignalConnectorType(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_TypeAction")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_TypeAction")] public static extern global::System.IntPtr new_TypeAction(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_TypeAction")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_TypeAction")] public static extern void delete_TypeAction(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_PropertyRegistration")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_PropertyRegistration")] public static extern global::System.IntPtr new_PropertyRegistration(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, int jarg3, int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_PropertyRegistration")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_PropertyRegistration")] public static extern void delete_PropertyRegistration(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_AnimatablePropertyRegistration__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_AnimatablePropertyRegistration__SWIG_0")] public static extern global::System.IntPtr new_AnimatablePropertyRegistration__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, int jarg3, int jarg4); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_AnimatablePropertyRegistration__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_AnimatablePropertyRegistration__SWIG_1")] public static extern global::System.IntPtr new_AnimatablePropertyRegistration__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, int jarg3, global::System.Runtime.InteropServices.HandleRef jarg4); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_AnimatablePropertyRegistration")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_AnimatablePropertyRegistration")] public static extern void delete_AnimatablePropertyRegistration(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_AnimatablePropertyComponentRegistration")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_AnimatablePropertyComponentRegistration")] public static extern global::System.IntPtr new_AnimatablePropertyComponentRegistration(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, int jarg3, int jarg4, uint jarg5); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_AnimatablePropertyComponentRegistration")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_AnimatablePropertyComponentRegistration")] public static extern void delete_AnimatablePropertyComponentRegistration(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_ChildPropertyRegistration")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_ChildPropertyRegistration")] public static extern global::System.IntPtr new_ChildPropertyRegistration(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, int jarg3, int jarg4); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_ChildPropertyRegistration")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_ChildPropertyRegistration")] public static extern void delete_ChildPropertyRegistration(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ParentOriginTop_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RegisterType")] + public static extern bool RegisterType(string jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); + + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RegisterProperty")] + public static extern bool RegisterProperty(string jarg1, string jarg2, int jarg3, int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6); + + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ParentOriginTop_get")] public static extern float ParentOriginTop_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ParentOriginBottom_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ParentOriginBottom_get")] public static extern float ParentOriginBottom_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ParentOriginLeft_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ParentOriginLeft_get")] public static extern float ParentOriginLeft_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ParentOriginRight_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ParentOriginRight_get")] public static extern float ParentOriginRight_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ParentOriginMiddle_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ParentOriginMiddle_get")] public static extern float ParentOriginMiddle_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ParentOriginTopLeft_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ParentOriginTopLeft_get")] public static extern global::System.IntPtr ParentOriginTopLeft_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ParentOriginTopCenter_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ParentOriginTopCenter_get")] public static extern global::System.IntPtr ParentOriginTopCenter_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ParentOriginTopRight_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ParentOriginTopRight_get")] public static extern global::System.IntPtr ParentOriginTopRight_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ParentOriginCenterLeft_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ParentOriginCenterLeft_get")] public static extern global::System.IntPtr ParentOriginCenterLeft_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ParentOriginCenter_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ParentOriginCenter_get")] public static extern global::System.IntPtr ParentOriginCenter_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ParentOriginCenterRight_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ParentOriginCenterRight_get")] public static extern global::System.IntPtr ParentOriginCenterRight_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ParentOriginBottomLeft_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ParentOriginBottomLeft_get")] public static extern global::System.IntPtr ParentOriginBottomLeft_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ParentOriginBottomCenter_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ParentOriginBottomCenter_get")] public static extern global::System.IntPtr ParentOriginBottomCenter_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ParentOriginBottomRight_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ParentOriginBottomRight_get")] public static extern global::System.IntPtr ParentOriginBottomRight_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_AnchorPointTop_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_AnchorPointTop_get")] public static extern float AnchorPointTop_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_AnchorPointBottom_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_AnchorPointBottom_get")] public static extern float AnchorPointBottom_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_AnchorPointLeft_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_AnchorPointLeft_get")] public static extern float AnchorPointLeft_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_AnchorPointRight_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_AnchorPointRight_get")] public static extern float AnchorPointRight_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_AnchorPointMiddle_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_AnchorPointMiddle_get")] public static extern float AnchorPointMiddle_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_AnchorPointTopLeft_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_AnchorPointTopLeft_get")] public static extern global::System.IntPtr AnchorPointTopLeft_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_AnchorPointTopCenter_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_AnchorPointTopCenter_get")] public static extern global::System.IntPtr AnchorPointTopCenter_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_AnchorPointTopRight_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_AnchorPointTopRight_get")] public static extern global::System.IntPtr AnchorPointTopRight_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_AnchorPointCenterLeft_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_AnchorPointCenterLeft_get")] public static extern global::System.IntPtr AnchorPointCenterLeft_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_AnchorPointCenter_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_AnchorPointCenter_get")] public static extern global::System.IntPtr AnchorPointCenter_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_AnchorPointCenterRight_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_AnchorPointCenterRight_get")] public static extern global::System.IntPtr AnchorPointCenterRight_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_AnchorPointBottomLeft_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_AnchorPointBottomLeft_get")] public static extern global::System.IntPtr AnchorPointBottomLeft_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_AnchorPointBottomCenter_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_AnchorPointBottomCenter_get")] public static extern global::System.IntPtr AnchorPointBottomCenter_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_AnchorPointBottomRight_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_AnchorPointBottomRight_get")] public static extern global::System.IntPtr AnchorPointBottomRight_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_BLACK_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_BLACK_get")] public static extern global::System.IntPtr BLACK_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_WHITE_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_WHITE_get")] public static extern global::System.IntPtr WHITE_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RED_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RED_get")] public static extern global::System.IntPtr RED_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_GREEN_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_GREEN_get")] public static extern global::System.IntPtr GREEN_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_BLUE_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_BLUE_get")] public static extern global::System.IntPtr BLUE_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_YELLOW_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_YELLOW_get")] public static extern global::System.IntPtr YELLOW_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_MAGENTA_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_MAGENTA_get")] public static extern global::System.IntPtr MAGENTA_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_CYAN_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_CYAN_get")] public static extern global::System.IntPtr CYAN_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TRANSPARENT_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TRANSPARENT_get")] public static extern global::System.IntPtr TRANSPARENT_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_MACHINE_EPSILON_0_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_MACHINE_EPSILON_0_get")] public static extern float MACHINE_EPSILON_0_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_MACHINE_EPSILON_1_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_MACHINE_EPSILON_1_get")] public static extern float MACHINE_EPSILON_1_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_MACHINE_EPSILON_10_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_MACHINE_EPSILON_10_get")] public static extern float MACHINE_EPSILON_10_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_MACHINE_EPSILON_100_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_MACHINE_EPSILON_100_get")] public static extern float MACHINE_EPSILON_100_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_MACHINE_EPSILON_1000_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_MACHINE_EPSILON_1000_get")] public static extern float MACHINE_EPSILON_1000_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_MACHINE_EPSILON_10000_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_MACHINE_EPSILON_10000_get")] public static extern float MACHINE_EPSILON_10000_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PI_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PI_get")] public static extern float PI_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PI_2_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PI_2_get")] public static extern float PI_2_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PI_4_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PI_4_get")] public static extern float PI_4_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PI_OVER_180_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PI_OVER_180_get")] public static extern float PI_OVER_180_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ONE80_OVER_PI_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ONE80_OVER_PI_get")] public static extern float ONE80_OVER_PI_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ResizePolicyDefault_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ResizePolicyDefault_get")] public static extern int ResizePolicyDefault_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_VectorBase_Count")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_VectorBase_Count")] public static extern uint VectorBase_Count(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_VectorBase_Size")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_VectorBase_Size")] public static extern uint VectorBase_Size(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_VectorBase_Empty")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_VectorBase_Empty")] public static extern bool VectorBase_Empty(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_VectorBase_Capacity")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_VectorBase_Capacity")] public static extern uint VectorBase_Capacity(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_VectorBase_Release")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_VectorBase_Release")] public static extern void VectorBase_Release(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_Image__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Image__SWIG_0")] public static extern global::System.IntPtr new_Image__SWIG_0(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_Image")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_Image")] public static extern void delete_Image(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_Image__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Image__SWIG_1")] public static extern global::System.IntPtr new_Image__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Image_Assign")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Image_Assign")] public static extern global::System.IntPtr Image_Assign(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Image_DownCast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Image_DownCast")] public static extern global::System.IntPtr Image_DownCast(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Image_GetWidth")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Image_GetWidth")] public static extern uint Image_GetWidth(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Image_GetHeight")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Image_GetHeight")] public static extern uint Image_GetHeight(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Image_UploadedSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Image_UploadedSignal")] public static extern global::System.IntPtr Image_UploadedSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_FIRST_VALID_PIXEL_FORMAT_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_FIRST_VALID_PIXEL_FORMAT_get")] public static extern int FIRST_VALID_PIXEL_FORMAT_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_LAST_VALID_PIXEL_FORMAT_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_LAST_VALID_PIXEL_FORMAT_get")] public static extern int LAST_VALID_PIXEL_FORMAT_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_HasAlpha")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_HasAlpha")] public static extern bool HasAlpha(int jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_GetBytesPerPixel")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_GetBytesPerPixel")] public static extern uint GetBytesPerPixel(int jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_GetAlphaOffsetAndMask")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_GetAlphaOffsetAndMask")] public static extern void GetAlphaOffsetAndMask(int jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PixelData_New")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PixelData_New")] public static extern global::System.IntPtr PixelData_New([global::System.Runtime.InteropServices.In, global::System.Runtime.InteropServices.MarshalAs(global::System.Runtime.InteropServices.UnmanagedType.LPArray)]byte[] jarg1, uint jarg2, uint jarg3, uint jarg4, int jarg5, int jarg6); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_PixelData__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_PixelData__SWIG_0")] public static extern global::System.IntPtr new_PixelData__SWIG_0(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_PixelData")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_PixelData")] public static extern void delete_PixelData(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_PixelData__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_PixelData__SWIG_1")] public static extern global::System.IntPtr new_PixelData__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PixelData_Assign")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PixelData_Assign")] public static extern global::System.IntPtr PixelData_Assign(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PixelData_GetWidth")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PixelData_GetWidth")] public static extern uint PixelData_GetWidth(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PixelData_GetHeight")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PixelData_GetHeight")] public static extern uint PixelData_GetHeight(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PixelData_GetPixelFormat")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PixelData_GetPixelFormat")] public static extern int PixelData_GetPixelFormat(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_POSITIVE_X_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_POSITIVE_X_get")] public static extern uint POSITIVE_X_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_NEGATIVE_X_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_NEGATIVE_X_get")] public static extern uint NEGATIVE_X_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_POSITIVE_Y_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_POSITIVE_Y_get")] public static extern uint POSITIVE_Y_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_NEGATIVE_Y_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_NEGATIVE_Y_get")] public static extern uint NEGATIVE_Y_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_POSITIVE_Z_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_POSITIVE_Z_get")] public static extern uint POSITIVE_Z_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_NEGATIVE_Z_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_NEGATIVE_Z_get")] public static extern uint NEGATIVE_Z_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Texture_New__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Texture_New__SWIG_0")] public static extern global::System.IntPtr Texture_New__SWIG_0(int jarg1, int jarg2, uint jarg3, uint jarg4); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Texture_New__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Texture_New__SWIG_1")] public static extern global::System.IntPtr Texture_New__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_Texture__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Texture__SWIG_0")] public static extern global::System.IntPtr new_Texture__SWIG_0(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_Texture")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_Texture")] public static extern void delete_Texture(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_Texture__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Texture__SWIG_1")] public static extern global::System.IntPtr new_Texture__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Texture_DownCast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Texture_DownCast")] public static extern global::System.IntPtr Texture_DownCast(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Texture_Assign")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Texture_Assign")] public static extern global::System.IntPtr Texture_Assign(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Texture_Upload__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Texture_Upload__SWIG_0")] public static extern bool Texture_Upload__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Texture_Upload__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Texture_Upload__SWIG_1")] public static extern bool Texture_Upload__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, uint jarg3, uint jarg4, uint jarg5, uint jarg6, uint jarg7, uint jarg8); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Texture_GenerateMipmaps")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Texture_GenerateMipmaps")] public static extern void Texture_GenerateMipmaps(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Texture_GetWidth")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Texture_GetWidth")] public static extern uint Texture_GetWidth(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Texture_GetHeight")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Texture_GetHeight")] public static extern uint Texture_GetHeight(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Sampler_New")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Sampler_New")] public static extern global::System.IntPtr Sampler_New(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_Sampler__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Sampler__SWIG_0")] public static extern global::System.IntPtr new_Sampler__SWIG_0(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_Sampler")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_Sampler")] public static extern void delete_Sampler(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_Sampler__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Sampler__SWIG_1")] public static extern global::System.IntPtr new_Sampler__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Sampler_DownCast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Sampler_DownCast")] public static extern global::System.IntPtr Sampler_DownCast(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Sampler_Assign")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Sampler_Assign")] public static extern global::System.IntPtr Sampler_Assign(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Sampler_SetFilterMode")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Sampler_SetFilterMode")] public static extern void Sampler_SetFilterMode(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Sampler_SetWrapMode__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Sampler_SetWrapMode__SWIG_0")] public static extern void Sampler_SetWrapMode__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Sampler_SetWrapMode__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Sampler_SetWrapMode__SWIG_1")] public static extern void Sampler_SetWrapMode__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3, int jarg4); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextureSet_New")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextureSet_New")] public static extern global::System.IntPtr TextureSet_New(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_TextureSet__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_TextureSet__SWIG_0")] public static extern global::System.IntPtr new_TextureSet__SWIG_0(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_TextureSet")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_TextureSet")] public static extern void delete_TextureSet(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_TextureSet__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_TextureSet__SWIG_1")] public static extern global::System.IntPtr new_TextureSet__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextureSet_DownCast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextureSet_DownCast")] public static extern global::System.IntPtr TextureSet_DownCast(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextureSet_Assign")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextureSet_Assign")] public static extern global::System.IntPtr TextureSet_Assign(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextureSet_SetTexture")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextureSet_SetTexture")] public static extern void TextureSet_SetTexture(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextureSet_GetTexture")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextureSet_GetTexture")] public static extern global::System.IntPtr TextureSet_GetTexture(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextureSet_SetSampler")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextureSet_SetSampler")] public static extern void TextureSet_SetSampler(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextureSet_GetSampler")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextureSet_GetSampler")] public static extern global::System.IntPtr TextureSet_GetSampler(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextureSet_GetTextureCount")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextureSet_GetTextureCount")] public static extern uint TextureSet_GetTextureCount(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PropertyBuffer_New")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PropertyBuffer_New")] public static extern global::System.IntPtr PropertyBuffer_New(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_PropertyBuffer__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_PropertyBuffer__SWIG_0")] public static extern global::System.IntPtr new_PropertyBuffer__SWIG_0(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_PropertyBuffer")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_PropertyBuffer")] public static extern void delete_PropertyBuffer(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_PropertyBuffer__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_PropertyBuffer__SWIG_1")] public static extern global::System.IntPtr new_PropertyBuffer__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PropertyBuffer_DownCast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PropertyBuffer_DownCast")] public static extern global::System.IntPtr PropertyBuffer_DownCast(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PropertyBuffer_Assign")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PropertyBuffer_Assign")] public static extern global::System.IntPtr PropertyBuffer_Assign(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PropertyBuffer_SetData")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PropertyBuffer_SetData")] public static extern void PropertyBuffer_SetData(global::System.Runtime.InteropServices.HandleRef jarg1, System.IntPtr jarg2, uint jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PropertyBuffer_GetSize")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PropertyBuffer_GetSize")] public static extern uint PropertyBuffer_GetSize(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Geometry_New")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Geometry_New")] public static extern global::System.IntPtr Geometry_New(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_Geometry__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Geometry__SWIG_0")] public static extern global::System.IntPtr new_Geometry__SWIG_0(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_Geometry")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_Geometry")] public static extern void delete_Geometry(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_Geometry__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Geometry__SWIG_1")] public static extern global::System.IntPtr new_Geometry__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Geometry_DownCast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Geometry_DownCast")] public static extern global::System.IntPtr Geometry_DownCast(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Geometry_Assign")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Geometry_Assign")] public static extern global::System.IntPtr Geometry_Assign(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Geometry_AddVertexBuffer")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Geometry_AddVertexBuffer")] public static extern uint Geometry_AddVertexBuffer(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Geometry_GetNumberOfVertexBuffers")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Geometry_GetNumberOfVertexBuffers")] public static extern uint Geometry_GetNumberOfVertexBuffers(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Geometry_RemoveVertexBuffer")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Geometry_RemoveVertexBuffer")] public static extern void Geometry_RemoveVertexBuffer(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Geometry_SetIndexBuffer")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Geometry_SetIndexBuffer")] public static extern void Geometry_SetIndexBuffer(global::System.Runtime.InteropServices.HandleRef jarg1, [global::System.Runtime.InteropServices.In, global::System.Runtime.InteropServices.MarshalAs(global::System.Runtime.InteropServices.UnmanagedType.LPArray)]ushort[] jarg2, uint jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Geometry_SetType")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Geometry_SetType")] public static extern void Geometry_SetType(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Geometry_GetType")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Geometry_GetType")] public static extern int Geometry_GetType(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_Shader_Hint")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Shader_Hint")] public static extern global::System.IntPtr new_Shader_Hint(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_Shader_Hint")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_Shader_Hint")] public static extern void delete_Shader_Hint(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Shader_Property_PROGRAM_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Shader_Property_PROGRAM_get")] public static extern int Shader_Property_PROGRAM_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_Shader_Property")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Shader_Property")] public static extern global::System.IntPtr new_Shader_Property(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_Shader_Property")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_Shader_Property")] public static extern void delete_Shader_Property(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Shader_New__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Shader_New__SWIG_0")] public static extern global::System.IntPtr Shader_New__SWIG_0(string jarg1, string jarg2, int jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Shader_New__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Shader_New__SWIG_1")] public static extern global::System.IntPtr Shader_New__SWIG_1(string jarg1, string jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_Shader__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Shader__SWIG_0")] public static extern global::System.IntPtr new_Shader__SWIG_0(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_Shader")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_Shader")] public static extern void delete_Shader(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_Shader__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Shader__SWIG_1")] public static extern global::System.IntPtr new_Shader__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Shader_DownCast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Shader_DownCast")] public static extern global::System.IntPtr Shader_DownCast(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Shader_Assign")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Shader_Assign")] public static extern global::System.IntPtr Shader_Assign(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Renderer_Property_DEPTH_INDEX_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Renderer_Property_DEPTH_INDEX_get")] public static extern int Renderer_Property_DEPTH_INDEX_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Renderer_Property_FACE_CULLING_MODE_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Renderer_Property_FACE_CULLING_MODE_get")] public static extern int Renderer_Property_FACE_CULLING_MODE_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Renderer_Property_BLEND_MODE_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Renderer_Property_BLEND_MODE_get")] public static extern int Renderer_Property_BLEND_MODE_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Renderer_Property_BLEND_EQUATION_RGB_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Renderer_Property_BLEND_EQUATION_RGB_get")] public static extern int Renderer_Property_BLEND_EQUATION_RGB_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Renderer_Property_BLEND_EQUATION_ALPHA_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Renderer_Property_BLEND_EQUATION_ALPHA_get")] public static extern int Renderer_Property_BLEND_EQUATION_ALPHA_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Renderer_Property_BLEND_FACTOR_SRC_RGB_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Renderer_Property_BLEND_FACTOR_SRC_RGB_get")] public static extern int Renderer_Property_BLEND_FACTOR_SRC_RGB_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Renderer_Property_BLEND_FACTOR_DEST_RGB_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Renderer_Property_BLEND_FACTOR_DEST_RGB_get")] public static extern int Renderer_Property_BLEND_FACTOR_DEST_RGB_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Renderer_Property_BLEND_FACTOR_SRC_ALPHA_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Renderer_Property_BLEND_FACTOR_SRC_ALPHA_get")] public static extern int Renderer_Property_BLEND_FACTOR_SRC_ALPHA_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Renderer_Property_BLEND_FACTOR_DEST_ALPHA_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Renderer_Property_BLEND_FACTOR_DEST_ALPHA_get")] public static extern int Renderer_Property_BLEND_FACTOR_DEST_ALPHA_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Renderer_Property_BLEND_COLOR_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Renderer_Property_BLEND_COLOR_get")] public static extern int Renderer_Property_BLEND_COLOR_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Renderer_Property_BLEND_PRE_MULTIPLIED_ALPHA_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Renderer_Property_BLEND_PRE_MULTIPLIED_ALPHA_get")] public static extern int Renderer_Property_BLEND_PRE_MULTIPLIED_ALPHA_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Renderer_Property_INDEX_RANGE_FIRST_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Renderer_Property_INDEX_RANGE_FIRST_get")] public static extern int Renderer_Property_INDEX_RANGE_FIRST_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Renderer_Property_INDEX_RANGE_COUNT_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Renderer_Property_INDEX_RANGE_COUNT_get")] public static extern int Renderer_Property_INDEX_RANGE_COUNT_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Renderer_Property_DEPTH_WRITE_MODE_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Renderer_Property_DEPTH_WRITE_MODE_get")] public static extern int Renderer_Property_DEPTH_WRITE_MODE_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Renderer_Property_DEPTH_FUNCTION_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Renderer_Property_DEPTH_FUNCTION_get")] public static extern int Renderer_Property_DEPTH_FUNCTION_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Renderer_Property_DEPTH_TEST_MODE_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Renderer_Property_DEPTH_TEST_MODE_get")] public static extern int Renderer_Property_DEPTH_TEST_MODE_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Renderer_Property_RENDER_MODE_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Renderer_Property_RENDER_MODE_get")] public static extern int Renderer_Property_RENDER_MODE_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Renderer_Property_STENCIL_FUNCTION_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Renderer_Property_STENCIL_FUNCTION_get")] public static extern int Renderer_Property_STENCIL_FUNCTION_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Renderer_Property_STENCIL_FUNCTION_MASK_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Renderer_Property_STENCIL_FUNCTION_MASK_get")] public static extern int Renderer_Property_STENCIL_FUNCTION_MASK_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Renderer_Property_STENCIL_FUNCTION_REFERENCE_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Renderer_Property_STENCIL_FUNCTION_REFERENCE_get")] public static extern int Renderer_Property_STENCIL_FUNCTION_REFERENCE_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Renderer_Property_STENCIL_MASK_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Renderer_Property_STENCIL_MASK_get")] public static extern int Renderer_Property_STENCIL_MASK_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Renderer_Property_STENCIL_OPERATION_ON_FAIL_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Renderer_Property_STENCIL_OPERATION_ON_FAIL_get")] public static extern int Renderer_Property_STENCIL_OPERATION_ON_FAIL_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Renderer_Property_STENCIL_OPERATION_ON_Z_FAIL_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Renderer_Property_STENCIL_OPERATION_ON_Z_FAIL_get")] public static extern int Renderer_Property_STENCIL_OPERATION_ON_Z_FAIL_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Renderer_Property_STENCIL_OPERATION_ON_Z_PASS_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Renderer_Property_STENCIL_OPERATION_ON_Z_PASS_get")] public static extern int Renderer_Property_STENCIL_OPERATION_ON_Z_PASS_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_Renderer_Property")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Renderer_Property")] public static extern global::System.IntPtr new_Renderer_Property(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_Renderer_Property")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_Renderer_Property")] public static extern void delete_Renderer_Property(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Renderer_New")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Renderer_New")] public static extern global::System.IntPtr Renderer_New(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_Renderer__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Renderer__SWIG_0")] public static extern global::System.IntPtr new_Renderer__SWIG_0(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_Renderer")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_Renderer")] public static extern void delete_Renderer(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_Renderer__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Renderer__SWIG_1")] public static extern global::System.IntPtr new_Renderer__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Renderer_DownCast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Renderer_DownCast")] public static extern global::System.IntPtr Renderer_DownCast(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Renderer_Assign")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Renderer_Assign")] public static extern global::System.IntPtr Renderer_Assign(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Renderer_SetGeometry")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Renderer_SetGeometry")] public static extern void Renderer_SetGeometry(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Renderer_GetGeometry")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Renderer_GetGeometry")] public static extern global::System.IntPtr Renderer_GetGeometry(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Renderer_SetIndexRange")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Renderer_SetIndexRange")] public static extern void Renderer_SetIndexRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Renderer_SetTextures")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Renderer_SetTextures")] public static extern void Renderer_SetTextures(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Renderer_GetTextures")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Renderer_GetTextures")] public static extern global::System.IntPtr Renderer_GetTextures(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Renderer_SetShader")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Renderer_SetShader")] public static extern void Renderer_SetShader(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Renderer_GetShader")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Renderer_GetShader")] public static extern global::System.IntPtr Renderer_GetShader(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_FrameBuffer_Attachment")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_FrameBuffer_Attachment")] public static extern global::System.IntPtr new_FrameBuffer_Attachment(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_FrameBuffer_Attachment")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_FrameBuffer_Attachment")] public static extern void delete_FrameBuffer_Attachment(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_FrameBuffer_New")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_FrameBuffer_New")] public static extern global::System.IntPtr FrameBuffer_New(uint jarg1, uint jarg2, uint jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_FrameBuffer__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_FrameBuffer__SWIG_0")] public static extern global::System.IntPtr new_FrameBuffer__SWIG_0(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_FrameBuffer")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_FrameBuffer")] public static extern void delete_FrameBuffer(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_FrameBuffer__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_FrameBuffer__SWIG_1")] public static extern global::System.IntPtr new_FrameBuffer__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_FrameBuffer_DownCast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_FrameBuffer_DownCast")] public static extern global::System.IntPtr FrameBuffer_DownCast(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_FrameBuffer_Assign")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_FrameBuffer_Assign")] public static extern global::System.IntPtr FrameBuffer_Assign(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_FrameBuffer_AttachColorTexture__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_FrameBuffer_AttachColorTexture__SWIG_0")] public static extern void FrameBuffer_AttachColorTexture__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_FrameBuffer_AttachColorTexture__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_FrameBuffer_AttachColorTexture__SWIG_1")] public static extern void FrameBuffer_AttachColorTexture__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, uint jarg3, uint jarg4); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_FrameBuffer_GetColorTexture")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_FrameBuffer_GetColorTexture")] public static extern global::System.IntPtr FrameBuffer_GetColorTexture(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_RenderTaskList__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_RenderTaskList__SWIG_0")] public static extern global::System.IntPtr new_RenderTaskList__SWIG_0(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RenderTaskList_DownCast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RenderTaskList_DownCast")] public static extern global::System.IntPtr RenderTaskList_DownCast(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_RenderTaskList")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_RenderTaskList")] public static extern void delete_RenderTaskList(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_RenderTaskList__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_RenderTaskList__SWIG_1")] public static extern global::System.IntPtr new_RenderTaskList__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RenderTaskList_Assign")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RenderTaskList_Assign")] public static extern global::System.IntPtr RenderTaskList_Assign(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RenderTaskList_CreateTask")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RenderTaskList_CreateTask")] public static extern global::System.IntPtr RenderTaskList_CreateTask(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RenderTaskList_RemoveTask")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RenderTaskList_RemoveTask")] public static extern void RenderTaskList_RemoveTask(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RenderTaskList_GetTaskCount")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RenderTaskList_GetTaskCount")] public static extern uint RenderTaskList_GetTaskCount(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RenderTaskList_GetTask")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RenderTaskList_GetTask")] public static extern global::System.IntPtr RenderTaskList_GetTask(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RenderTask_Property_VIEWPORT_POSITION_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RenderTask_Property_VIEWPORT_POSITION_get")] public static extern int RenderTask_Property_VIEWPORT_POSITION_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RenderTask_Property_VIEWPORT_SIZE_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RenderTask_Property_VIEWPORT_SIZE_get")] public static extern int RenderTask_Property_VIEWPORT_SIZE_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RenderTask_Property_CLEAR_COLOR_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RenderTask_Property_CLEAR_COLOR_get")] public static extern int RenderTask_Property_CLEAR_COLOR_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RenderTask_Property_REQUIRES_SYNC_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RenderTask_Property_REQUIRES_SYNC_get")] public static extern int RenderTask_Property_REQUIRES_SYNC_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_RenderTask_Property")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_RenderTask_Property")] public static extern global::System.IntPtr new_RenderTask_Property(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_RenderTask_Property")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_RenderTask_Property")] public static extern void delete_RenderTask_Property(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RenderTask_DEFAULT_SCREEN_TO_FRAMEBUFFER_FUNCTION_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RenderTask_DEFAULT_SCREEN_TO_FRAMEBUFFER_FUNCTION_get")] public static extern global::System.IntPtr RenderTask_DEFAULT_SCREEN_TO_FRAMEBUFFER_FUNCTION_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RenderTask_FULLSCREEN_FRAMEBUFFER_FUNCTION_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RenderTask_FULLSCREEN_FRAMEBUFFER_FUNCTION_get")] public static extern global::System.IntPtr RenderTask_FULLSCREEN_FRAMEBUFFER_FUNCTION_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RenderTask_DEFAULT_EXCLUSIVE_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RenderTask_DEFAULT_EXCLUSIVE_get")] public static extern bool RenderTask_DEFAULT_EXCLUSIVE_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RenderTask_DEFAULT_INPUT_ENABLED_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RenderTask_DEFAULT_INPUT_ENABLED_get")] public static extern bool RenderTask_DEFAULT_INPUT_ENABLED_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RenderTask_DEFAULT_CLEAR_COLOR_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RenderTask_DEFAULT_CLEAR_COLOR_get")] public static extern global::System.IntPtr RenderTask_DEFAULT_CLEAR_COLOR_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RenderTask_DEFAULT_CLEAR_ENABLED_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RenderTask_DEFAULT_CLEAR_ENABLED_get")] public static extern bool RenderTask_DEFAULT_CLEAR_ENABLED_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RenderTask_DEFAULT_CULL_MODE_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RenderTask_DEFAULT_CULL_MODE_get")] public static extern bool RenderTask_DEFAULT_CULL_MODE_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RenderTask_DEFAULT_REFRESH_RATE_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RenderTask_DEFAULT_REFRESH_RATE_get")] public static extern uint RenderTask_DEFAULT_REFRESH_RATE_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_RenderTask__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_RenderTask__SWIG_0")] public static extern global::System.IntPtr new_RenderTask__SWIG_0(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RenderTask_DownCast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RenderTask_DownCast")] public static extern global::System.IntPtr RenderTask_DownCast(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_RenderTask")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_RenderTask")] public static extern void delete_RenderTask(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_RenderTask__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_RenderTask__SWIG_1")] public static extern global::System.IntPtr new_RenderTask__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RenderTask_Assign")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RenderTask_Assign")] public static extern global::System.IntPtr RenderTask_Assign(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RenderTask_SetSourceActor")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RenderTask_SetSourceActor")] public static extern void RenderTask_SetSourceActor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RenderTask_GetSourceActor")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RenderTask_GetSourceActor")] public static extern global::System.IntPtr RenderTask_GetSourceActor(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RenderTask_SetExclusive")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RenderTask_SetExclusive")] public static extern void RenderTask_SetExclusive(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RenderTask_IsExclusive")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RenderTask_IsExclusive")] public static extern bool RenderTask_IsExclusive(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RenderTask_SetInputEnabled")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RenderTask_SetInputEnabled")] public static extern void RenderTask_SetInputEnabled(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RenderTask_GetInputEnabled")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RenderTask_GetInputEnabled")] public static extern bool RenderTask_GetInputEnabled(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RenderTask_SetCameraActor")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RenderTask_SetCameraActor")] public static extern void RenderTask_SetCameraActor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RenderTask_GetCameraActor")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RenderTask_GetCameraActor")] public static extern global::System.IntPtr RenderTask_GetCameraActor(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RenderTask_SetTargetFrameBuffer")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RenderTask_SetTargetFrameBuffer")] public static extern void RenderTask_SetTargetFrameBuffer(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RenderTask_GetTargetFrameBuffer")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RenderTask_GetTargetFrameBuffer")] public static extern global::System.IntPtr RenderTask_GetTargetFrameBuffer(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RenderTask_SetFrameBuffer")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RenderTask_SetFrameBuffer")] public static extern void RenderTask_SetFrameBuffer(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RenderTask_GetFrameBuffer")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RenderTask_GetFrameBuffer")] public static extern global::System.IntPtr RenderTask_GetFrameBuffer(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RenderTask_SetScreenToFrameBufferFunction")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RenderTask_SetScreenToFrameBufferFunction")] public static extern void RenderTask_SetScreenToFrameBufferFunction(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RenderTask_GetScreenToFrameBufferFunction")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RenderTask_GetScreenToFrameBufferFunction")] public static extern global::System.IntPtr RenderTask_GetScreenToFrameBufferFunction(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RenderTask_SetScreenToFrameBufferMappingActor")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RenderTask_SetScreenToFrameBufferMappingActor")] public static extern void RenderTask_SetScreenToFrameBufferMappingActor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RenderTask_GetScreenToFrameBufferMappingActor")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RenderTask_GetScreenToFrameBufferMappingActor")] public static extern global::System.IntPtr RenderTask_GetScreenToFrameBufferMappingActor(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RenderTask_SetViewportPosition")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RenderTask_SetViewportPosition")] public static extern void RenderTask_SetViewportPosition(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RenderTask_GetCurrentViewportPosition")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RenderTask_GetCurrentViewportPosition")] public static extern global::System.IntPtr RenderTask_GetCurrentViewportPosition(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RenderTask_SetViewportSize")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RenderTask_SetViewportSize")] public static extern void RenderTask_SetViewportSize(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RenderTask_GetCurrentViewportSize")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RenderTask_GetCurrentViewportSize")] public static extern global::System.IntPtr RenderTask_GetCurrentViewportSize(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RenderTask_SetViewport")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RenderTask_SetViewport")] public static extern void RenderTask_SetViewport(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RenderTask_GetViewport")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RenderTask_GetViewport")] public static extern global::System.IntPtr RenderTask_GetViewport(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RenderTask_SetClearColor")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RenderTask_SetClearColor")] public static extern void RenderTask_SetClearColor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RenderTask_GetClearColor")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RenderTask_GetClearColor")] public static extern global::System.IntPtr RenderTask_GetClearColor(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RenderTask_SetClearEnabled")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RenderTask_SetClearEnabled")] public static extern void RenderTask_SetClearEnabled(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RenderTask_GetClearEnabled")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RenderTask_GetClearEnabled")] public static extern bool RenderTask_GetClearEnabled(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RenderTask_SetCullMode")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RenderTask_SetCullMode")] public static extern void RenderTask_SetCullMode(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RenderTask_GetCullMode")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RenderTask_GetCullMode")] public static extern bool RenderTask_GetCullMode(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RenderTask_SetRefreshRate")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RenderTask_SetRefreshRate")] public static extern void RenderTask_SetRefreshRate(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RenderTask_GetRefreshRate")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RenderTask_GetRefreshRate")] public static extern uint RenderTask_GetRefreshRate(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RenderTask_WorldToViewport")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RenderTask_WorldToViewport")] public static extern bool RenderTask_WorldToViewport(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, out float jarg3, out float jarg4); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RenderTask_ViewportToLocal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RenderTask_ViewportToLocal")] public static extern bool RenderTask_ViewportToLocal(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, float jarg3, float jarg4, out float jarg5, out float jarg6); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RenderTask_FinishedSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RenderTask_FinishedSignal")] public static extern global::System.IntPtr RenderTask_FinishedSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_TouchPoint__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_TouchPoint__SWIG_0")] public static extern global::System.IntPtr new_TouchPoint__SWIG_0(int jarg1, int jarg2, float jarg3, float jarg4); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_TouchPoint__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_TouchPoint__SWIG_1")] public static extern global::System.IntPtr new_TouchPoint__SWIG_1(int jarg1, int jarg2, float jarg3, float jarg4, float jarg5, float jarg6); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_TouchPoint")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_TouchPoint")] public static extern void delete_TouchPoint(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TouchPoint_deviceId_set")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TouchPoint_deviceId_set")] public static extern void TouchPoint_deviceId_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TouchPoint_deviceId_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TouchPoint_deviceId_get")] public static extern int TouchPoint_deviceId_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TouchPoint_state_set")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TouchPoint_state_set")] public static extern void TouchPoint_state_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TouchPoint_state_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TouchPoint_state_get")] public static extern int TouchPoint_state_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TouchPoint_hitActor_set")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TouchPoint_hitActor_set")] public static extern void TouchPoint_hitActor_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TouchPoint_hitActor_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TouchPoint_hitActor_get")] public static extern global::System.IntPtr TouchPoint_hitActor_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TouchPoint_local_set")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TouchPoint_local_set")] public static extern void TouchPoint_local_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TouchPoint_local_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TouchPoint_local_get")] public static extern global::System.IntPtr TouchPoint_local_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TouchPoint_screen_set")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TouchPoint_screen_set")] public static extern void TouchPoint_screen_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TouchPoint_screen_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TouchPoint_screen_get")] public static extern global::System.IntPtr TouchPoint_screen_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_TouchData__SWIG_0")] - public static extern global::System.IntPtr new_TouchData__SWIG_0(); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Touch__SWIG_0")] + public static extern global::System.IntPtr new_Touch__SWIG_0(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_TouchData__SWIG_1")] - public static extern global::System.IntPtr new_TouchData__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Touch__SWIG_1")] + public static extern global::System.IntPtr new_Touch__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_TouchData")] - public static extern void delete_TouchData(global::System.Runtime.InteropServices.HandleRef jarg1); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_Touch")] + public static extern void delete_Touch(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TouchData_Assign")] - public static extern global::System.IntPtr TouchData_Assign(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Touch_Assign")] + public static extern global::System.IntPtr Touch_Assign(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TouchData_GetTime")] - public static extern uint TouchData_GetTime(global::System.Runtime.InteropServices.HandleRef jarg1); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Touch_GetTime")] + public static extern uint Touch_GetTime(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TouchData_GetPointCount")] - public static extern uint TouchData_GetPointCount(global::System.Runtime.InteropServices.HandleRef jarg1); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Touch_GetPointCount")] + public static extern uint Touch_GetPointCount(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TouchData_GetDeviceId")] - public static extern int TouchData_GetDeviceId(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Touch_GetDeviceId")] + public static extern int Touch_GetDeviceId(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TouchData_GetState")] - public static extern int TouchData_GetState(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Touch_GetState")] + public static extern int Touch_GetState(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TouchData_GetHitActor")] - public static extern global::System.IntPtr TouchData_GetHitActor(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Touch_GetHitActor")] + public static extern global::System.IntPtr Touch_GetHitActor(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TouchData_GetLocalPosition")] - public static extern global::System.IntPtr TouchData_GetLocalPosition(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Touch_GetLocalPosition")] + public static extern global::System.IntPtr Touch_GetLocalPosition(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TouchData_GetScreenPosition")] - public static extern global::System.IntPtr TouchData_GetScreenPosition(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Touch_GetScreenPosition")] + public static extern global::System.IntPtr Touch_GetScreenPosition(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TouchData_GetRadius")] - public static extern float TouchData_GetRadius(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Touch_GetRadius")] + public static extern float Touch_GetRadius(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TouchData_GetEllipseRadius")] - public static extern global::System.IntPtr TouchData_GetEllipseRadius(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Touch_GetEllipseRadius")] + public static extern global::System.IntPtr Touch_GetEllipseRadius(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TouchData_GetPressure")] - public static extern float TouchData_GetPressure(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Touch_GetPressure")] + public static extern float Touch_GetPressure(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TouchData_GetAngle")] - public static extern global::System.IntPtr TouchData_GetAngle(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Touch_GetAngle")] + public static extern global::System.IntPtr Touch_GetAngle(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_GestureDetector__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_GestureDetector__SWIG_0")] public static extern global::System.IntPtr new_GestureDetector__SWIG_0(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_GestureDetector_DownCast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_GestureDetector_DownCast")] public static extern global::System.IntPtr GestureDetector_DownCast(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_GestureDetector")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_GestureDetector")] public static extern void delete_GestureDetector(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_GestureDetector__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_GestureDetector__SWIG_1")] public static extern global::System.IntPtr new_GestureDetector__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_GestureDetector_Assign")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_GestureDetector_Assign")] public static extern global::System.IntPtr GestureDetector_Assign(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_GestureDetector_Attach")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_GestureDetector_Attach")] public static extern void GestureDetector_Attach(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_GestureDetector_Detach")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_GestureDetector_Detach")] public static extern void GestureDetector_Detach(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_GestureDetector_DetachAll")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_GestureDetector_DetachAll")] public static extern void GestureDetector_DetachAll(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_GestureDetector_GetAttachedActorCount")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_GestureDetector_GetAttachedActorCount")] public static extern uint GestureDetector_GetAttachedActorCount(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_GestureDetector_GetAttachedActor")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_GestureDetector_GetAttachedActor")] public static extern global::System.IntPtr GestureDetector_GetAttachedActor(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_Gesture")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Gesture")] public static extern global::System.IntPtr new_Gesture(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Gesture_Assign")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Gesture_Assign")] public static extern global::System.IntPtr Gesture_Assign(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_Gesture")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_Gesture")] public static extern void delete_Gesture(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Gesture_type_set")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Gesture_type_set")] public static extern void Gesture_type_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Gesture_type_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Gesture_type_get")] public static extern int Gesture_type_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Gesture_state_set")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Gesture_state_set")] public static extern void Gesture_state_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Gesture_state_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Gesture_state_get")] public static extern int Gesture_state_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Gesture_time_set")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Gesture_time_set")] public static extern void Gesture_time_set(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Gesture_time_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Gesture_time_get")] public static extern uint Gesture_time_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_HoverEvent__SWIG_0")] - public static extern global::System.IntPtr new_HoverEvent__SWIG_0(); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Hover__SWIG_0")] + public static extern global::System.IntPtr new_Hover__SWIG_0(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_HoverEvent__SWIG_1")] - public static extern global::System.IntPtr new_HoverEvent__SWIG_1(uint jarg1); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Hover__SWIG_1")] + public static extern global::System.IntPtr new_Hover__SWIG_1(uint jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_HoverEvent")] - public static extern void delete_HoverEvent(global::System.Runtime.InteropServices.HandleRef jarg1); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_Hover")] + public static extern void delete_Hover(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_HoverEvent_points_set")] - public static extern void HoverEvent_points_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Hover_points_set")] + public static extern void Hover_points_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_HoverEvent_points_get")] - public static extern global::System.IntPtr HoverEvent_points_get(global::System.Runtime.InteropServices.HandleRef jarg1); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Hover_points_get")] + public static extern global::System.IntPtr Hover_points_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_HoverEvent_time_set")] - public static extern void HoverEvent_time_set(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Hover_time_set")] + public static extern void Hover_time_set(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_HoverEvent_time_get")] - public static extern uint HoverEvent_time_get(global::System.Runtime.InteropServices.HandleRef jarg1); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Hover_time_get")] + public static extern uint Hover_time_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_HoverEvent_GetPointCount")] - public static extern uint HoverEvent_GetPointCount(global::System.Runtime.InteropServices.HandleRef jarg1); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Hover_GetPointCount")] + public static extern uint Hover_GetPointCount(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_HoverEvent_GetPoint")] - public static extern global::System.IntPtr HoverEvent_GetPoint(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Hover_GetPoint")] + public static extern global::System.IntPtr Hover_GetPoint(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_KeyEvent__SWIG_0")] - public static extern global::System.IntPtr new_KeyEvent__SWIG_0(); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Key__SWIG_0")] + public static extern global::System.IntPtr new_Key__SWIG_0(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_KeyEvent__SWIG_1")] - public static extern global::System.IntPtr new_KeyEvent__SWIG_1(string jarg1, string jarg2, int jarg3, int jarg4, uint jarg5, int jarg6); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Key__SWIG_1")] + public static extern global::System.IntPtr new_Key__SWIG_1(string jarg1, string jarg2, int jarg3, int jarg4, uint jarg5, int jarg6); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_KeyEvent")] - public static extern void delete_KeyEvent(global::System.Runtime.InteropServices.HandleRef jarg1); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_Key")] + public static extern void delete_Key(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_KeyEvent_IsShiftModifier")] - public static extern bool KeyEvent_IsShiftModifier(global::System.Runtime.InteropServices.HandleRef jarg1); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Key_IsShiftModifier")] + public static extern bool Key_IsShiftModifier(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_KeyEvent_IsCtrlModifier")] - public static extern bool KeyEvent_IsCtrlModifier(global::System.Runtime.InteropServices.HandleRef jarg1); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Key_IsCtrlModifier")] + public static extern bool Key_IsCtrlModifier(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_KeyEvent_IsAltModifier")] - public static extern bool KeyEvent_IsAltModifier(global::System.Runtime.InteropServices.HandleRef jarg1); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Key_IsAltModifier")] + public static extern bool Key_IsAltModifier(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_KeyEvent_keyPressedName_set")] - public static extern void KeyEvent_keyPressedName_set(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Key_keyPressedName_set")] + public static extern void Key_keyPressedName_set(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_KeyEvent_keyPressedName_get")] - public static extern string KeyEvent_keyPressedName_get(global::System.Runtime.InteropServices.HandleRef jarg1); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Key_keyPressedName_get")] + public static extern string Key_keyPressedName_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_KeyEvent_keyPressed_set")] - public static extern void KeyEvent_keyPressed_set(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Key_keyPressed_set")] + public static extern void Key_keyPressed_set(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_KeyEvent_keyPressed_get")] - public static extern string KeyEvent_keyPressed_get(global::System.Runtime.InteropServices.HandleRef jarg1); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Key_keyPressed_get")] + public static extern string Key_keyPressed_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_KeyEvent_keyCode_set")] - public static extern void KeyEvent_keyCode_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Key_keyCode_set")] + public static extern void Key_keyCode_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_KeyEvent_keyCode_get")] - public static extern int KeyEvent_keyCode_get(global::System.Runtime.InteropServices.HandleRef jarg1); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Key_keyCode_get")] + public static extern int Key_keyCode_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_KeyEvent_keyModifier_set")] - public static extern void KeyEvent_keyModifier_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Key_keyModifier_set")] + public static extern void Key_keyModifier_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_KeyEvent_keyModifier_get")] - public static extern int KeyEvent_keyModifier_get(global::System.Runtime.InteropServices.HandleRef jarg1); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Key_keyModifier_get")] + public static extern int Key_keyModifier_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_KeyEvent_time_set")] - public static extern void KeyEvent_time_set(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Key_time_set")] + public static extern void Key_time_set(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_KeyEvent_time_get")] - public static extern uint KeyEvent_time_get(global::System.Runtime.InteropServices.HandleRef jarg1); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Key_time_get")] + public static extern uint Key_time_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_KeyEvent_state_set")] - public static extern void KeyEvent_state_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Key_state_set")] + public static extern void Key_state_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_KeyEvent_state_get")] - public static extern int KeyEvent_state_get(global::System.Runtime.InteropServices.HandleRef jarg1); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Key_state_get")] + public static extern int Key_state_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_LongPressGestureDetector__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_LongPressGestureDetector__SWIG_0")] public static extern global::System.IntPtr new_LongPressGestureDetector__SWIG_0(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_LongPressGestureDetector_New__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_LongPressGestureDetector_New__SWIG_0")] public static extern global::System.IntPtr LongPressGestureDetector_New__SWIG_0(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_LongPressGestureDetector_New__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_LongPressGestureDetector_New__SWIG_1")] public static extern global::System.IntPtr LongPressGestureDetector_New__SWIG_1(uint jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_LongPressGestureDetector_New__SWIG_2")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_LongPressGestureDetector_New__SWIG_2")] public static extern global::System.IntPtr LongPressGestureDetector_New__SWIG_2(uint jarg1, uint jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_LongPressGestureDetector_DownCast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_LongPressGestureDetector_DownCast")] public static extern global::System.IntPtr LongPressGestureDetector_DownCast(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_LongPressGestureDetector")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_LongPressGestureDetector")] public static extern void delete_LongPressGestureDetector(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_LongPressGestureDetector__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_LongPressGestureDetector__SWIG_1")] public static extern global::System.IntPtr new_LongPressGestureDetector__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_LongPressGestureDetector_Assign")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_LongPressGestureDetector_Assign")] public static extern global::System.IntPtr LongPressGestureDetector_Assign(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_LongPressGestureDetector_SetTouchesRequired__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_LongPressGestureDetector_SetTouchesRequired__SWIG_0")] public static extern void LongPressGestureDetector_SetTouchesRequired__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_LongPressGestureDetector_SetTouchesRequired__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_LongPressGestureDetector_SetTouchesRequired__SWIG_1")] public static extern void LongPressGestureDetector_SetTouchesRequired__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2, uint jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_LongPressGestureDetector_GetMinimumTouchesRequired")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_LongPressGestureDetector_GetMinimumTouchesRequired")] public static extern uint LongPressGestureDetector_GetMinimumTouchesRequired(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_LongPressGestureDetector_GetMaximumTouchesRequired")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_LongPressGestureDetector_GetMaximumTouchesRequired")] public static extern uint LongPressGestureDetector_GetMaximumTouchesRequired(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_LongPressGestureDetector_DetectedSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_LongPressGestureDetector_DetectedSignal")] public static extern global::System.IntPtr LongPressGestureDetector_DetectedSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_LongPressGesture__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_LongPressGesture__SWIG_0")] public static extern global::System.IntPtr new_LongPressGesture__SWIG_0(int jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_LongPressGesture__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_LongPressGesture__SWIG_1")] public static extern global::System.IntPtr new_LongPressGesture__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_LongPressGesture_Assign")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_LongPressGesture_Assign")] public static extern global::System.IntPtr LongPressGesture_Assign(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_LongPressGesture")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_LongPressGesture")] public static extern void delete_LongPressGesture(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_LongPressGesture_numberOfTouches_set")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_LongPressGesture_numberOfTouches_set")] public static extern void LongPressGesture_numberOfTouches_set(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_LongPressGesture_numberOfTouches_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_LongPressGesture_numberOfTouches_get")] public static extern uint LongPressGesture_numberOfTouches_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_LongPressGesture_screenPoint_set")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_LongPressGesture_screenPoint_set")] public static extern void LongPressGesture_screenPoint_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_LongPressGesture_screenPoint_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_LongPressGesture_screenPoint_get")] public static extern global::System.IntPtr LongPressGesture_screenPoint_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_LongPressGesture_localPoint_set")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_LongPressGesture_localPoint_set")] public static extern void LongPressGesture_localPoint_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_LongPressGesture_localPoint_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_LongPressGesture_localPoint_get")] public static extern global::System.IntPtr LongPressGesture_localPoint_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_WheelEvent__SWIG_0")] - public static extern global::System.IntPtr new_WheelEvent__SWIG_0(); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Wheel__SWIG_0")] + public static extern global::System.IntPtr new_Wheel__SWIG_0(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_WheelEvent__SWIG_1")] - public static extern global::System.IntPtr new_WheelEvent__SWIG_1(int jarg1, int jarg2, uint jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, int jarg5, uint jarg6); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Wheel__SWIG_1")] + public static extern global::System.IntPtr new_Wheel__SWIG_1(int jarg1, int jarg2, uint jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, int jarg5, uint jarg6); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_WheelEvent")] - public static extern void delete_WheelEvent(global::System.Runtime.InteropServices.HandleRef jarg1); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_Wheel")] + public static extern void delete_Wheel(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_WheelEvent_IsShiftModifier")] - public static extern bool WheelEvent_IsShiftModifier(global::System.Runtime.InteropServices.HandleRef jarg1); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Wheel_IsShiftModifier")] + public static extern bool Wheel_IsShiftModifier(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_WheelEvent_IsCtrlModifier")] - public static extern bool WheelEvent_IsCtrlModifier(global::System.Runtime.InteropServices.HandleRef jarg1); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Wheel_IsCtrlModifier")] + public static extern bool Wheel_IsCtrlModifier(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_WheelEvent_IsAltModifier")] - public static extern bool WheelEvent_IsAltModifier(global::System.Runtime.InteropServices.HandleRef jarg1); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Wheel_IsAltModifier")] + public static extern bool Wheel_IsAltModifier(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_WheelEvent_type_set")] - public static extern void WheelEvent_type_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Wheel_type_set")] + public static extern void Wheel_type_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_WheelEvent_type_get")] - public static extern int WheelEvent_type_get(global::System.Runtime.InteropServices.HandleRef jarg1); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Wheel_type_get")] + public static extern int Wheel_type_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_WheelEvent_direction_set")] - public static extern void WheelEvent_direction_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Wheel_direction_set")] + public static extern void Wheel_direction_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_WheelEvent_direction_get")] - public static extern int WheelEvent_direction_get(global::System.Runtime.InteropServices.HandleRef jarg1); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Wheel_direction_get")] + public static extern int Wheel_direction_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_WheelEvent_modifiers_set")] - public static extern void WheelEvent_modifiers_set(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Wheel_modifiers_set")] + public static extern void Wheel_modifiers_set(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_WheelEvent_modifiers_get")] - public static extern uint WheelEvent_modifiers_get(global::System.Runtime.InteropServices.HandleRef jarg1); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Wheel_modifiers_get")] + public static extern uint Wheel_modifiers_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_WheelEvent_point_set")] - public static extern void WheelEvent_point_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Wheel_point_set")] + public static extern void Wheel_point_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_WheelEvent_point_get")] - public static extern global::System.IntPtr WheelEvent_point_get(global::System.Runtime.InteropServices.HandleRef jarg1); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Wheel_point_get")] + public static extern global::System.IntPtr Wheel_point_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_WheelEvent_z_set")] - public static extern void WheelEvent_z_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Wheel_z_set")] + public static extern void Wheel_z_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_WheelEvent_z_get")] - public static extern int WheelEvent_z_get(global::System.Runtime.InteropServices.HandleRef jarg1); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Wheel_z_get")] + public static extern int Wheel_z_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_WheelEvent_timeStamp_set")] - public static extern void WheelEvent_timeStamp_set(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Wheel_timeStamp_set")] + public static extern void Wheel_timeStamp_set(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_WheelEvent_timeStamp_get")] - public static extern uint WheelEvent_timeStamp_get(global::System.Runtime.InteropServices.HandleRef jarg1); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Wheel_timeStamp_get")] + public static extern uint Wheel_timeStamp_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_Property_PARENT_ORIGIN_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_Property_PARENT_ORIGIN_get")] public static extern int Actor_Property_PARENT_ORIGIN_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_Property_PARENT_ORIGIN_X_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_Property_PARENT_ORIGIN_X_get")] public static extern int Actor_Property_PARENT_ORIGIN_X_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_Property_PARENT_ORIGIN_Y_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_Property_PARENT_ORIGIN_Y_get")] public static extern int Actor_Property_PARENT_ORIGIN_Y_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_Property_PARENT_ORIGIN_Z_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_Property_PARENT_ORIGIN_Z_get")] public static extern int Actor_Property_PARENT_ORIGIN_Z_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_Property_ANCHOR_POINT_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_Property_ANCHOR_POINT_get")] public static extern int Actor_Property_ANCHOR_POINT_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_Property_ANCHOR_POINT_X_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_Property_ANCHOR_POINT_X_get")] public static extern int Actor_Property_ANCHOR_POINT_X_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_Property_ANCHOR_POINT_Y_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_Property_ANCHOR_POINT_Y_get")] public static extern int Actor_Property_ANCHOR_POINT_Y_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_Property_ANCHOR_POINT_Z_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_Property_ANCHOR_POINT_Z_get")] public static extern int Actor_Property_ANCHOR_POINT_Z_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_Property_SIZE_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_Property_SIZE_get")] public static extern int Actor_Property_SIZE_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_Property_SIZE_WIDTH_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_Property_SIZE_WIDTH_get")] public static extern int Actor_Property_SIZE_WIDTH_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_Property_SIZE_HEIGHT_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_Property_SIZE_HEIGHT_get")] public static extern int Actor_Property_SIZE_HEIGHT_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_Property_SIZE_DEPTH_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_Property_SIZE_DEPTH_get")] public static extern int Actor_Property_SIZE_DEPTH_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_Property_POSITION_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_Property_POSITION_get")] public static extern int Actor_Property_POSITION_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_Property_POSITION_X_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_Property_POSITION_X_get")] public static extern int Actor_Property_POSITION_X_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_Property_POSITION_Y_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_Property_POSITION_Y_get")] public static extern int Actor_Property_POSITION_Y_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_Property_POSITION_Z_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_Property_POSITION_Z_get")] public static extern int Actor_Property_POSITION_Z_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_Property_WORLD_POSITION_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_Property_WORLD_POSITION_get")] public static extern int Actor_Property_WORLD_POSITION_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_Property_WORLD_POSITION_X_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_Property_WORLD_POSITION_X_get")] public static extern int Actor_Property_WORLD_POSITION_X_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_Property_WORLD_POSITION_Y_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_Property_WORLD_POSITION_Y_get")] public static extern int Actor_Property_WORLD_POSITION_Y_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_Property_WORLD_POSITION_Z_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_Property_WORLD_POSITION_Z_get")] public static extern int Actor_Property_WORLD_POSITION_Z_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_Property_ORIENTATION_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_Property_ORIENTATION_get")] public static extern int Actor_Property_ORIENTATION_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_Property_WORLD_ORIENTATION_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_Property_WORLD_ORIENTATION_get")] public static extern int Actor_Property_WORLD_ORIENTATION_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_Property_SCALE_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_Property_SCALE_get")] public static extern int Actor_Property_SCALE_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_Property_SCALE_X_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_Property_SCALE_X_get")] public static extern int Actor_Property_SCALE_X_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_Property_SCALE_Y_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_Property_SCALE_Y_get")] public static extern int Actor_Property_SCALE_Y_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_Property_SCALE_Z_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_Property_SCALE_Z_get")] public static extern int Actor_Property_SCALE_Z_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_Property_WORLD_SCALE_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_Property_WORLD_SCALE_get")] public static extern int Actor_Property_WORLD_SCALE_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_Property_VISIBLE_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_Property_VISIBLE_get")] public static extern int Actor_Property_VISIBLE_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_Property_COLOR_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_Property_COLOR_get")] public static extern int Actor_Property_COLOR_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_Property_COLOR_RED_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_Property_COLOR_RED_get")] public static extern int Actor_Property_COLOR_RED_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_Property_COLOR_GREEN_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_Property_COLOR_GREEN_get")] public static extern int Actor_Property_COLOR_GREEN_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_Property_COLOR_BLUE_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_Property_COLOR_BLUE_get")] public static extern int Actor_Property_COLOR_BLUE_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_Property_COLOR_ALPHA_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_Property_COLOR_ALPHA_get")] public static extern int Actor_Property_COLOR_ALPHA_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_Property_WORLD_COLOR_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_Property_WORLD_COLOR_get")] public static extern int Actor_Property_WORLD_COLOR_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_Property_WORLD_MATRIX_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_Property_WORLD_MATRIX_get")] public static extern int Actor_Property_WORLD_MATRIX_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_Property_NAME_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_Property_NAME_get")] public static extern int Actor_Property_NAME_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_Property_SENSITIVE_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_Property_SENSITIVE_get")] public static extern int Actor_Property_SENSITIVE_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_Property_LEAVE_REQUIRED_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_Property_LEAVE_REQUIRED_get")] public static extern int Actor_Property_LEAVE_REQUIRED_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_Property_INHERIT_ORIENTATION_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_Property_INHERIT_ORIENTATION_get")] public static extern int Actor_Property_INHERIT_ORIENTATION_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_Property_INHERIT_SCALE_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_Property_INHERIT_SCALE_get")] public static extern int Actor_Property_INHERIT_SCALE_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_Property_COLOR_MODE_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_Property_COLOR_MODE_get")] public static extern int Actor_Property_COLOR_MODE_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_Property_POSITION_INHERITANCE_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_Property_POSITION_INHERITANCE_get")] public static extern int Actor_Property_POSITION_INHERITANCE_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_Property_DRAW_MODE_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_Property_DRAW_MODE_get")] public static extern int Actor_Property_DRAW_MODE_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_Property_SIZE_MODE_FACTOR_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_Property_SIZE_MODE_FACTOR_get")] public static extern int Actor_Property_SIZE_MODE_FACTOR_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_Property_WIDTH_RESIZE_POLICY_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_Property_WIDTH_RESIZE_POLICY_get")] public static extern int Actor_Property_WIDTH_RESIZE_POLICY_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_Property_HEIGHT_RESIZE_POLICY_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_Property_HEIGHT_RESIZE_POLICY_get")] public static extern int Actor_Property_HEIGHT_RESIZE_POLICY_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_Property_SIZE_SCALE_POLICY_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_Property_SIZE_SCALE_POLICY_get")] public static extern int Actor_Property_SIZE_SCALE_POLICY_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_Property_WIDTH_FOR_HEIGHT_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_Property_WIDTH_FOR_HEIGHT_get")] public static extern int Actor_Property_WIDTH_FOR_HEIGHT_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_Property_HEIGHT_FOR_WIDTH_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_Property_HEIGHT_FOR_WIDTH_get")] public static extern int Actor_Property_HEIGHT_FOR_WIDTH_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_Property_PADDING_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_Property_PADDING_get")] public static extern int Actor_Property_PADDING_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_Property_MINIMUM_SIZE_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_Property_MINIMUM_SIZE_get")] public static extern int Actor_Property_MINIMUM_SIZE_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_Property_MAXIMUM_SIZE_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_Property_MAXIMUM_SIZE_get")] public static extern int Actor_Property_MAXIMUM_SIZE_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_Property_INHERIT_POSITION_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_Property_INHERIT_POSITION_get")] public static extern int Actor_Property_INHERIT_POSITION_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_Property_CLIPPING_MODE_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_Property_CLIPPING_MODE_get")] public static extern int Actor_Property_CLIPPING_MODE_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_Actor_Property")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Actor_Property")] public static extern global::System.IntPtr new_Actor_Property(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_Actor_Property")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_Actor_Property")] public static extern void delete_Actor_Property(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_Actor__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Actor__SWIG_0")] public static extern global::System.IntPtr new_Actor__SWIG_0(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_New")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_New")] public static extern global::System.IntPtr Actor_New(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_DownCast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_DownCast")] public static extern global::System.IntPtr Actor_DownCast(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_Actor")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_Actor")] public static extern void delete_Actor(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_Actor__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Actor__SWIG_1")] public static extern global::System.IntPtr new_Actor__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_Assign")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_Assign")] public static extern global::System.IntPtr Actor_Assign(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_GetName")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_GetName")] public static extern string Actor_GetName(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_SetName")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_SetName")] public static extern void Actor_SetName(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_GetId")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_GetId")] public static extern uint Actor_GetId(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_IsRoot")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_IsRoot")] public static extern bool Actor_IsRoot(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_OnStage")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_OnStage")] public static extern bool Actor_OnStage(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_IsLayer")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_IsLayer")] public static extern bool Actor_IsLayer(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_GetLayer")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_GetLayer")] public static extern global::System.IntPtr Actor_GetLayer(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_Add")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_Add")] public static extern void Actor_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_Remove")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_Remove")] public static extern void Actor_Remove(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_Unparent")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_Unparent")] public static extern void Actor_Unparent(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_GetChildCount")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_GetChildCount")] public static extern uint Actor_GetChildCount(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_GetChildAt")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_GetChildAt")] public static extern global::System.IntPtr Actor_GetChildAt(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_FindChildByName")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_FindChildByName")] public static extern global::System.IntPtr Actor_FindChildByName(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_FindChildById")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_FindChildById")] public static extern global::System.IntPtr Actor_FindChildById(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_GetParent")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_GetParent")] public static extern global::System.IntPtr Actor_GetParent(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_SetParentOrigin")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_SetParentOrigin")] public static extern void Actor_SetParentOrigin(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_GetCurrentParentOrigin")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_GetCurrentParentOrigin")] public static extern global::System.IntPtr Actor_GetCurrentParentOrigin(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_SetAnchorPoint")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_SetAnchorPoint")] public static extern void Actor_SetAnchorPoint(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_GetCurrentAnchorPoint")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_GetCurrentAnchorPoint")] public static extern global::System.IntPtr Actor_GetCurrentAnchorPoint(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_SetSize__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_SetSize__SWIG_0")] public static extern void Actor_SetSize__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2, float jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_SetSize__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_SetSize__SWIG_1")] public static extern void Actor_SetSize__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2, float jarg3, float jarg4); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_SetSize__SWIG_2")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_SetSize__SWIG_2")] public static extern void Actor_SetSize__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_SetSize__SWIG_3")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_SetSize__SWIG_3")] public static extern void Actor_SetSize__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_GetTargetSize")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_GetTargetSize")] public static extern global::System.IntPtr Actor_GetTargetSize(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_GetCurrentSize")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_GetCurrentSize")] public static extern global::System.IntPtr Actor_GetCurrentSize(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_GetNaturalSize")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_GetNaturalSize")] public static extern global::System.IntPtr Actor_GetNaturalSize(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_SetPosition__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_SetPosition__SWIG_0")] public static extern void Actor_SetPosition__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2, float jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_SetPosition__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_SetPosition__SWIG_1")] public static extern void Actor_SetPosition__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2, float jarg3, float jarg4); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_SetPosition__SWIG_2")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_SetPosition__SWIG_2")] public static extern void Actor_SetPosition__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_SetX")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_SetX")] public static extern void Actor_SetX(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_SetY")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_SetY")] public static extern void Actor_SetY(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_SetZ")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_SetZ")] public static extern void Actor_SetZ(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_TranslateBy")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_TranslateBy")] public static extern void Actor_TranslateBy(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_GetCurrentPosition")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_GetCurrentPosition")] public static extern global::System.IntPtr Actor_GetCurrentPosition(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_GetCurrentWorldPosition")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_GetCurrentWorldPosition")] public static extern global::System.IntPtr Actor_GetCurrentWorldPosition(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_SetInheritPosition")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_SetInheritPosition")] public static extern void Actor_SetInheritPosition(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_GetPositionInheritanceMode")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_GetPositionInheritanceMode")] public static extern int Actor_GetPositionInheritanceMode(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_IsPositionInherited")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_IsPositionInherited")] public static extern bool Actor_IsPositionInherited(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_SetOrientation__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_SetOrientation__SWIG_0")] public static extern void Actor_SetOrientation__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_SetOrientation__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_SetOrientation__SWIG_1")] public static extern void Actor_SetOrientation__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_SetOrientation__SWIG_2")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_SetOrientation__SWIG_2")] public static extern void Actor_SetOrientation__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_RotateBy__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_RotateBy__SWIG_0")] public static extern void Actor_RotateBy__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_RotateBy__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_RotateBy__SWIG_1")] public static extern void Actor_RotateBy__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_RotateBy__SWIG_2")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_RotateBy__SWIG_2")] public static extern void Actor_RotateBy__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_GetCurrentOrientation")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_GetCurrentOrientation")] public static extern global::System.IntPtr Actor_GetCurrentOrientation(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_SetInheritOrientation")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_SetInheritOrientation")] public static extern void Actor_SetInheritOrientation(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_IsOrientationInherited")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_IsOrientationInherited")] public static extern bool Actor_IsOrientationInherited(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_GetCurrentWorldOrientation")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_GetCurrentWorldOrientation")] public static extern global::System.IntPtr Actor_GetCurrentWorldOrientation(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_SetScale__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_SetScale__SWIG_0")] public static extern void Actor_SetScale__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_SetScale__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_SetScale__SWIG_1")] public static extern void Actor_SetScale__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2, float jarg3, float jarg4); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_SetScale__SWIG_2")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_SetScale__SWIG_2")] public static extern void Actor_SetScale__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_ScaleBy")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_ScaleBy")] public static extern void Actor_ScaleBy(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_GetCurrentScale")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_GetCurrentScale")] public static extern global::System.IntPtr Actor_GetCurrentScale(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_GetCurrentWorldScale")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_GetCurrentWorldScale")] public static extern global::System.IntPtr Actor_GetCurrentWorldScale(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_SetInheritScale")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_SetInheritScale")] public static extern void Actor_SetInheritScale(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_IsScaleInherited")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_IsScaleInherited")] public static extern bool Actor_IsScaleInherited(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_GetCurrentWorldMatrix")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_GetCurrentWorldMatrix")] public static extern global::System.IntPtr Actor_GetCurrentWorldMatrix(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_SetVisible")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_SetVisible")] public static extern void Actor_SetVisible(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_IsVisible")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_IsVisible")] public static extern bool Actor_IsVisible(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_SetOpacity")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_SetOpacity")] public static extern void Actor_SetOpacity(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_GetCurrentOpacity")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_GetCurrentOpacity")] public static extern float Actor_GetCurrentOpacity(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_SetColor")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_SetColor")] public static extern void Actor_SetColor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_GetCurrentColor")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_GetCurrentColor")] public static extern global::System.IntPtr Actor_GetCurrentColor(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_SetColorMode")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_SetColorMode")] public static extern void Actor_SetColorMode(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_GetColorMode")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_GetColorMode")] public static extern int Actor_GetColorMode(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_GetCurrentWorldColor")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_GetCurrentWorldColor")] public static extern global::System.IntPtr Actor_GetCurrentWorldColor(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_SetDrawMode")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_SetDrawMode")] public static extern void Actor_SetDrawMode(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_GetDrawMode")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_GetDrawMode")] public static extern int Actor_GetDrawMode(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_SetSensitive")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_SetSensitive")] public static extern void Actor_SetSensitive(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_IsSensitive")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_IsSensitive")] public static extern bool Actor_IsSensitive(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_ScreenToLocal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_ScreenToLocal")] public static extern bool Actor_ScreenToLocal(global::System.Runtime.InteropServices.HandleRef jarg1, out float jarg2, out float jarg3, float jarg4, float jarg5); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_SetLeaveRequired")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_SetLeaveRequired")] public static extern void Actor_SetLeaveRequired(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_GetLeaveRequired")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_GetLeaveRequired")] public static extern bool Actor_GetLeaveRequired(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_SetKeyboardFocusable")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_SetKeyboardFocusable")] public static extern void Actor_SetKeyboardFocusable(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_IsKeyboardFocusable")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_IsKeyboardFocusable")] public static extern bool Actor_IsKeyboardFocusable(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_SetResizePolicy")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_SetResizePolicy")] public static extern void Actor_SetResizePolicy(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_GetResizePolicy")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_GetResizePolicy")] public static extern int Actor_GetResizePolicy(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_SetSizeScalePolicy")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_SetSizeScalePolicy")] public static extern void Actor_SetSizeScalePolicy(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_GetSizeScalePolicy")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_GetSizeScalePolicy")] public static extern int Actor_GetSizeScalePolicy(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_SetSizeModeFactor")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_SetSizeModeFactor")] public static extern void Actor_SetSizeModeFactor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_GetSizeModeFactor")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_GetSizeModeFactor")] public static extern global::System.IntPtr Actor_GetSizeModeFactor(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_GetHeightForWidth")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_GetHeightForWidth")] public static extern float Actor_GetHeightForWidth(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_GetWidthForHeight")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_GetWidthForHeight")] public static extern float Actor_GetWidthForHeight(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_GetRelayoutSize")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_GetRelayoutSize")] public static extern float Actor_GetRelayoutSize(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_SetPadding")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_SetPadding")] public static extern void Actor_SetPadding(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_GetPadding")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_GetPadding")] public static extern void Actor_GetPadding(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_SetMinimumSize")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_SetMinimumSize")] public static extern void Actor_SetMinimumSize(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_GetMinimumSize")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_GetMinimumSize")] public static extern global::System.IntPtr Actor_GetMinimumSize(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_SetMaximumSize")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_SetMaximumSize")] public static extern void Actor_SetMaximumSize(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_GetMaximumSize")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_GetMaximumSize")] public static extern global::System.IntPtr Actor_GetMaximumSize(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_GetHierarchyDepth")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_GetHierarchyDepth")] public static extern int Actor_GetHierarchyDepth(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_AddRenderer")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_AddRenderer")] public static extern uint Actor_AddRenderer(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_GetRendererCount")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_GetRendererCount")] public static extern uint Actor_GetRendererCount(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_GetRendererAt")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_GetRendererAt")] public static extern global::System.IntPtr Actor_GetRendererAt(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_RemoveRenderer__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_RemoveRenderer__SWIG_0")] public static extern void Actor_RemoveRenderer__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_RemoveRenderer__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_RemoveRenderer__SWIG_1")] public static extern void Actor_RemoveRenderer__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_TouchedSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_TouchedSignal")] public static extern global::System.IntPtr Actor_TouchedSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_TouchSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_TouchSignal")] public static extern global::System.IntPtr Actor_TouchSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_HoveredSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_HoveredSignal")] public static extern global::System.IntPtr Actor_HoveredSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_WheelEventSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_WheelEventSignal")] public static extern global::System.IntPtr Actor_WheelEventSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_OnStageSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_OnStageSignal")] public static extern global::System.IntPtr Actor_OnStageSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_OffStageSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_OffStageSignal")] public static extern global::System.IntPtr Actor_OffStageSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_OnRelayoutSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_OnRelayoutSignal")] public static extern global::System.IntPtr Actor_OnRelayoutSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_UnparentAndReset")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_UnparentAndReset")] public static extern void UnparentAndReset(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Layer_Property_CLIPPING_ENABLE_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Layer_Property_CLIPPING_ENABLE_get")] public static extern int Layer_Property_CLIPPING_ENABLE_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Layer_Property_CLIPPING_BOX_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Layer_Property_CLIPPING_BOX_get")] public static extern int Layer_Property_CLIPPING_BOX_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Layer_Property_BEHAVIOR_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Layer_Property_BEHAVIOR_get")] public static extern int Layer_Property_BEHAVIOR_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_Layer_Property")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Layer_Property")] public static extern global::System.IntPtr new_Layer_Property(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_Layer_Property")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_Layer_Property")] public static extern void delete_Layer_Property(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_Layer__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Layer__SWIG_0")] public static extern global::System.IntPtr new_Layer__SWIG_0(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Layer_New")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Layer_New")] public static extern global::System.IntPtr Layer_New(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Layer_DownCast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Layer_DownCast")] public static extern global::System.IntPtr Layer_DownCast(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_Layer")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_Layer")] public static extern void delete_Layer(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_Layer__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Layer__SWIG_1")] public static extern global::System.IntPtr new_Layer__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Layer_Assign")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Layer_Assign")] public static extern global::System.IntPtr Layer_Assign(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Layer_GetDepth")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Layer_GetDepth")] public static extern uint Layer_GetDepth(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Layer_Raise")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Layer_Raise")] public static extern void Layer_Raise(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Layer_Lower")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Layer_Lower")] public static extern void Layer_Lower(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Layer_RaiseAbove")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Layer_RaiseAbove")] public static extern void Layer_RaiseAbove(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Layer_LowerBelow")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Layer_LowerBelow")] public static extern void Layer_LowerBelow(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Layer_RaiseToTop")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Layer_RaiseToTop")] public static extern void Layer_RaiseToTop(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Layer_LowerToBottom")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Layer_LowerToBottom")] public static extern void Layer_LowerToBottom(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Layer_MoveAbove")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Layer_MoveAbove")] public static extern void Layer_MoveAbove(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Layer_MoveBelow")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Layer_MoveBelow")] public static extern void Layer_MoveBelow(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Layer_SetBehavior")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Layer_SetBehavior")] public static extern void Layer_SetBehavior(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Layer_GetBehavior")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Layer_GetBehavior")] public static extern int Layer_GetBehavior(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Layer_SetClipping")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Layer_SetClipping")] public static extern void Layer_SetClipping(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Layer_IsClipping")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Layer_IsClipping")] public static extern bool Layer_IsClipping(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Layer_SetClippingBox__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Layer_SetClippingBox__SWIG_0")] public static extern void Layer_SetClippingBox__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3, int jarg4, int jarg5); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Layer_SetClippingBox__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Layer_SetClippingBox__SWIG_1")] public static extern void Layer_SetClippingBox__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Layer_GetClippingBox")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Layer_GetClippingBox")] public static extern global::System.IntPtr Layer_GetClippingBox(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Layer_SetDepthTestDisabled")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Layer_SetDepthTestDisabled")] public static extern void Layer_SetDepthTestDisabled(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Layer_IsDepthTestDisabled")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Layer_IsDepthTestDisabled")] public static extern bool Layer_IsDepthTestDisabled(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Layer_SetSortFunction")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Layer_SetSortFunction")] public static extern void Layer_SetSortFunction(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Layer_SetTouchConsumed")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Layer_SetTouchConsumed")] public static extern void Layer_SetTouchConsumed(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Layer_IsTouchConsumed")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Layer_IsTouchConsumed")] public static extern bool Layer_IsTouchConsumed(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Layer_SetHoverConsumed")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Layer_SetHoverConsumed")] public static extern void Layer_SetHoverConsumed(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Layer_IsHoverConsumed")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Layer_IsHoverConsumed")] public static extern bool Layer_IsHoverConsumed(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Stage_DEFAULT_BACKGROUND_COLOR_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Stage_DEFAULT_BACKGROUND_COLOR_get")] public static extern global::System.IntPtr Stage_DEFAULT_BACKGROUND_COLOR_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Stage_DEBUG_BACKGROUND_COLOR_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Stage_DEBUG_BACKGROUND_COLOR_get")] public static extern global::System.IntPtr Stage_DEBUG_BACKGROUND_COLOR_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_Stage__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Stage__SWIG_0")] public static extern global::System.IntPtr new_Stage__SWIG_0(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Stage_GetCurrent")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Stage_GetCurrent")] public static extern global::System.IntPtr Stage_GetCurrent(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Stage_IsInstalled")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Stage_IsInstalled")] public static extern bool Stage_IsInstalled(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_Stage")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_Stage")] public static extern void delete_Stage(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_Stage__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Stage__SWIG_1")] public static extern global::System.IntPtr new_Stage__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Stage_Assign")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Stage_Assign")] public static extern global::System.IntPtr Stage_Assign(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Stage_Add")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Stage_Add")] public static extern void Stage_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Stage_Remove")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Stage_Remove")] public static extern void Stage_Remove(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Stage_GetSize")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Stage_GetSize")] public static extern global::System.IntPtr Stage_GetSize(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Stage_GetRenderTaskList")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Stage_GetRenderTaskList")] public static extern global::System.IntPtr Stage_GetRenderTaskList(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Stage_GetLayerCount")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Stage_GetLayerCount")] public static extern uint Stage_GetLayerCount(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Stage_GetLayer")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Stage_GetLayer")] public static extern global::System.IntPtr Stage_GetLayer(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Stage_GetRootLayer")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Stage_GetRootLayer")] public static extern global::System.IntPtr Stage_GetRootLayer(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Stage_SetBackgroundColor")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Stage_SetBackgroundColor")] public static extern void Stage_SetBackgroundColor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Stage_GetBackgroundColor")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Stage_GetBackgroundColor")] public static extern global::System.IntPtr Stage_GetBackgroundColor(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Stage_GetDpi")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Stage_GetDpi")] public static extern global::System.IntPtr Stage_GetDpi(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Stage_GetObjectRegistry")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Stage_GetObjectRegistry")] public static extern global::System.IntPtr Stage_GetObjectRegistry(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Stage_KeepRendering")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Stage_KeepRendering")] public static extern void Stage_KeepRendering(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Stage_KeyEventSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Stage_KeyEventSignal")] public static extern global::System.IntPtr Stage_KeyEventSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Stage_EventProcessingFinishedSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Stage_EventProcessingFinishedSignal")] public static extern global::System.IntPtr Stage_EventProcessingFinishedSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Stage_TouchedSignal")] - public static extern global::System.IntPtr Stage_TouchedSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Stage_TouchSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Stage_TouchSignal")] public static extern global::System.IntPtr Stage_TouchSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Stage_WheelEventSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Stage_WheelEventSignal")] public static extern global::System.IntPtr Stage_WheelEventSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Stage_ContextLostSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Stage_ContextLostSignal")] public static extern global::System.IntPtr Stage_ContextLostSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Stage_ContextRegainedSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Stage_ContextRegainedSignal")] public static extern global::System.IntPtr Stage_ContextRegainedSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Stage_SceneCreatedSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Stage_SceneCreatedSignal")] public static extern global::System.IntPtr Stage_SceneCreatedSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_RelayoutContainer")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_RelayoutContainer")] public static extern void delete_RelayoutContainer(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RelayoutContainer_Add")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RelayoutContainer_Add")] public static extern void RelayoutContainer_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_CustomActorImpl_Self")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_CustomActorImpl_Self")] public static extern global::System.IntPtr CustomActorImpl_Self(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_CustomActorImpl_OnStageConnection")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_CustomActorImpl_OnStageConnection")] public static extern void CustomActorImpl_OnStageConnection(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_CustomActorImpl_OnStageDisconnection")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_CustomActorImpl_OnStageDisconnection")] public static extern void CustomActorImpl_OnStageDisconnection(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_CustomActorImpl_OnChildAdd")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_CustomActorImpl_OnChildAdd")] public static extern void CustomActorImpl_OnChildAdd(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_CustomActorImpl_OnChildRemove")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_CustomActorImpl_OnChildRemove")] public static extern void CustomActorImpl_OnChildRemove(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_CustomActorImpl_OnPropertySet")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_CustomActorImpl_OnPropertySet")] public static extern void CustomActorImpl_OnPropertySet(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_CustomActorImpl_OnSizeSet")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_CustomActorImpl_OnSizeSet")] public static extern void CustomActorImpl_OnSizeSet(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_CustomActorImpl_OnSizeAnimation")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_CustomActorImpl_OnSizeAnimation")] public static extern void CustomActorImpl_OnSizeAnimation(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_CustomActorImpl_OnTouchEvent")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_CustomActorImpl_OnTouchEvent")] public static extern bool CustomActorImpl_OnTouchEvent(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_CustomActorImpl_OnHoverEvent")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_CustomActorImpl_OnHoverEvent")] public static extern bool CustomActorImpl_OnHoverEvent(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_CustomActorImpl_OnKeyEvent")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_CustomActorImpl_OnKeyEvent")] public static extern bool CustomActorImpl_OnKeyEvent(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_CustomActorImpl_OnWheelEvent")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_CustomActorImpl_OnWheelEvent")] public static extern bool CustomActorImpl_OnWheelEvent(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_CustomActorImpl_OnRelayout")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_CustomActorImpl_OnRelayout")] public static extern void CustomActorImpl_OnRelayout(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_CustomActorImpl_OnSetResizePolicy")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_CustomActorImpl_OnSetResizePolicy")] public static extern void CustomActorImpl_OnSetResizePolicy(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_CustomActorImpl_GetNaturalSize")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_CustomActorImpl_GetNaturalSize")] public static extern global::System.IntPtr CustomActorImpl_GetNaturalSize(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_CustomActorImpl_CalculateChildSize")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_CustomActorImpl_CalculateChildSize")] public static extern float CustomActorImpl_CalculateChildSize(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_CustomActorImpl_GetHeightForWidth")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_CustomActorImpl_GetHeightForWidth")] public static extern float CustomActorImpl_GetHeightForWidth(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_CustomActorImpl_GetWidthForHeight")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_CustomActorImpl_GetWidthForHeight")] public static extern float CustomActorImpl_GetWidthForHeight(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_CustomActorImpl_RelayoutDependentOnChildren__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_CustomActorImpl_RelayoutDependentOnChildren__SWIG_0")] public static extern bool CustomActorImpl_RelayoutDependentOnChildren__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_CustomActorImpl_RelayoutDependentOnChildren__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_CustomActorImpl_RelayoutDependentOnChildren__SWIG_1")] public static extern bool CustomActorImpl_RelayoutDependentOnChildren__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_CustomActorImpl_OnCalculateRelayoutSize")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_CustomActorImpl_OnCalculateRelayoutSize")] public static extern void CustomActorImpl_OnCalculateRelayoutSize(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_CustomActorImpl_OnLayoutNegotiated")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_CustomActorImpl_OnLayoutNegotiated")] public static extern void CustomActorImpl_OnLayoutNegotiated(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2, int jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_CustomActorImpl_RequiresTouchEvents")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_CustomActorImpl_RequiresTouchEvents")] public static extern bool CustomActorImpl_RequiresTouchEvents(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_CustomActorImpl_RequiresHoverEvents")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_CustomActorImpl_RequiresHoverEvents")] public static extern bool CustomActorImpl_RequiresHoverEvents(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_CustomActorImpl_RequiresWheelEvents")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_CustomActorImpl_RequiresWheelEvents")] public static extern bool CustomActorImpl_RequiresWheelEvents(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_CustomActorImpl_IsRelayoutEnabled")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_CustomActorImpl_IsRelayoutEnabled")] public static extern bool CustomActorImpl_IsRelayoutEnabled(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_CustomActor__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_CustomActor__SWIG_0")] public static extern global::System.IntPtr new_CustomActor__SWIG_0(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_CustomActor_DownCast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_CustomActor_DownCast")] public static extern global::System.IntPtr CustomActor_DownCast(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_CustomActor")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_CustomActor")] public static extern void delete_CustomActor(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_CustomActor_GetImplementation")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_CustomActor_GetImplementation")] public static extern global::System.IntPtr CustomActor_GetImplementation(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_CustomActor__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_CustomActor__SWIG_1")] public static extern global::System.IntPtr new_CustomActor__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_CustomActor__SWIG_2")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_CustomActor__SWIG_2")] public static extern global::System.IntPtr new_CustomActor__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_CustomActor_Assign")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_CustomActor_Assign")] public static extern global::System.IntPtr CustomActor_Assign(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PanGestureDetector_Property_SCREEN_POSITION_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PanGestureDetector_Property_SCREEN_POSITION_get")] public static extern int PanGestureDetector_Property_SCREEN_POSITION_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PanGestureDetector_Property_SCREEN_DISPLACEMENT_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PanGestureDetector_Property_SCREEN_DISPLACEMENT_get")] public static extern int PanGestureDetector_Property_SCREEN_DISPLACEMENT_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PanGestureDetector_Property_SCREEN_VELOCITY_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PanGestureDetector_Property_SCREEN_VELOCITY_get")] public static extern int PanGestureDetector_Property_SCREEN_VELOCITY_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PanGestureDetector_Property_LOCAL_POSITION_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PanGestureDetector_Property_LOCAL_POSITION_get")] public static extern int PanGestureDetector_Property_LOCAL_POSITION_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PanGestureDetector_Property_LOCAL_DISPLACEMENT_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PanGestureDetector_Property_LOCAL_DISPLACEMENT_get")] public static extern int PanGestureDetector_Property_LOCAL_DISPLACEMENT_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PanGestureDetector_Property_LOCAL_VELOCITY_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PanGestureDetector_Property_LOCAL_VELOCITY_get")] public static extern int PanGestureDetector_Property_LOCAL_VELOCITY_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PanGestureDetector_Property_PANNING_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PanGestureDetector_Property_PANNING_get")] public static extern int PanGestureDetector_Property_PANNING_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_PanGestureDetector_Property")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_PanGestureDetector_Property")] public static extern global::System.IntPtr new_PanGestureDetector_Property(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_PanGestureDetector_Property")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_PanGestureDetector_Property")] public static extern void delete_PanGestureDetector_Property(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PanGestureDetector_DIRECTION_LEFT_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PanGestureDetector_DIRECTION_LEFT_get")] public static extern global::System.IntPtr PanGestureDetector_DIRECTION_LEFT_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PanGestureDetector_DIRECTION_RIGHT_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PanGestureDetector_DIRECTION_RIGHT_get")] public static extern global::System.IntPtr PanGestureDetector_DIRECTION_RIGHT_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PanGestureDetector_DIRECTION_UP_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PanGestureDetector_DIRECTION_UP_get")] public static extern global::System.IntPtr PanGestureDetector_DIRECTION_UP_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PanGestureDetector_DIRECTION_DOWN_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PanGestureDetector_DIRECTION_DOWN_get")] public static extern global::System.IntPtr PanGestureDetector_DIRECTION_DOWN_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PanGestureDetector_DIRECTION_HORIZONTAL_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PanGestureDetector_DIRECTION_HORIZONTAL_get")] public static extern global::System.IntPtr PanGestureDetector_DIRECTION_HORIZONTAL_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PanGestureDetector_DIRECTION_VERTICAL_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PanGestureDetector_DIRECTION_VERTICAL_get")] public static extern global::System.IntPtr PanGestureDetector_DIRECTION_VERTICAL_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PanGestureDetector_DEFAULT_THRESHOLD_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PanGestureDetector_DEFAULT_THRESHOLD_get")] public static extern global::System.IntPtr PanGestureDetector_DEFAULT_THRESHOLD_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_PanGestureDetector__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_PanGestureDetector__SWIG_0")] public static extern global::System.IntPtr new_PanGestureDetector__SWIG_0(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PanGestureDetector_New")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PanGestureDetector_New")] public static extern global::System.IntPtr PanGestureDetector_New(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PanGestureDetector_DownCast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PanGestureDetector_DownCast")] public static extern global::System.IntPtr PanGestureDetector_DownCast(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_PanGestureDetector")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_PanGestureDetector")] public static extern void delete_PanGestureDetector(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_PanGestureDetector__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_PanGestureDetector__SWIG_1")] public static extern global::System.IntPtr new_PanGestureDetector__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PanGestureDetector_Assign")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PanGestureDetector_Assign")] public static extern global::System.IntPtr PanGestureDetector_Assign(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PanGestureDetector_SetMinimumTouchesRequired")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PanGestureDetector_SetMinimumTouchesRequired")] public static extern void PanGestureDetector_SetMinimumTouchesRequired(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PanGestureDetector_SetMaximumTouchesRequired")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PanGestureDetector_SetMaximumTouchesRequired")] public static extern void PanGestureDetector_SetMaximumTouchesRequired(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PanGestureDetector_GetMinimumTouchesRequired")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PanGestureDetector_GetMinimumTouchesRequired")] public static extern uint PanGestureDetector_GetMinimumTouchesRequired(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PanGestureDetector_GetMaximumTouchesRequired")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PanGestureDetector_GetMaximumTouchesRequired")] public static extern uint PanGestureDetector_GetMaximumTouchesRequired(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PanGestureDetector_AddAngle__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PanGestureDetector_AddAngle__SWIG_0")] public static extern void PanGestureDetector_AddAngle__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PanGestureDetector_AddAngle__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PanGestureDetector_AddAngle__SWIG_1")] public static extern void PanGestureDetector_AddAngle__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PanGestureDetector_AddDirection__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PanGestureDetector_AddDirection__SWIG_0")] public static extern void PanGestureDetector_AddDirection__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PanGestureDetector_AddDirection__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PanGestureDetector_AddDirection__SWIG_1")] public static extern void PanGestureDetector_AddDirection__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PanGestureDetector_GetAngleCount")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PanGestureDetector_GetAngleCount")] public static extern uint PanGestureDetector_GetAngleCount(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PanGestureDetector_GetAngle")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PanGestureDetector_GetAngle")] public static extern global::System.IntPtr PanGestureDetector_GetAngle(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PanGestureDetector_ClearAngles")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PanGestureDetector_ClearAngles")] public static extern void PanGestureDetector_ClearAngles(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PanGestureDetector_RemoveAngle")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PanGestureDetector_RemoveAngle")] public static extern void PanGestureDetector_RemoveAngle(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PanGestureDetector_RemoveDirection")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PanGestureDetector_RemoveDirection")] public static extern void PanGestureDetector_RemoveDirection(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PanGestureDetector_DetectedSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PanGestureDetector_DetectedSignal")] public static extern global::System.IntPtr PanGestureDetector_DetectedSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PanGestureDetector_SetPanGestureProperties")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PanGestureDetector_SetPanGestureProperties")] public static extern void PanGestureDetector_SetPanGestureProperties(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_PanGesture__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_PanGesture__SWIG_0")] public static extern global::System.IntPtr new_PanGesture__SWIG_0(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_PanGesture__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_PanGesture__SWIG_1")] public static extern global::System.IntPtr new_PanGesture__SWIG_1(int jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_PanGesture__SWIG_2")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_PanGesture__SWIG_2")] public static extern global::System.IntPtr new_PanGesture__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PanGesture_Assign")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PanGesture_Assign")] public static extern global::System.IntPtr PanGesture_Assign(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_PanGesture")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_PanGesture")] public static extern void delete_PanGesture(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PanGesture_velocity_set")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PanGesture_velocity_set")] public static extern void PanGesture_velocity_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PanGesture_velocity_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PanGesture_velocity_get")] public static extern global::System.IntPtr PanGesture_velocity_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PanGesture_displacement_set")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PanGesture_displacement_set")] public static extern void PanGesture_displacement_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PanGesture_displacement_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PanGesture_displacement_get")] public static extern global::System.IntPtr PanGesture_displacement_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PanGesture_position_set")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PanGesture_position_set")] public static extern void PanGesture_position_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PanGesture_position_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PanGesture_position_get")] public static extern global::System.IntPtr PanGesture_position_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PanGesture_screenVelocity_set")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PanGesture_screenVelocity_set")] public static extern void PanGesture_screenVelocity_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PanGesture_screenVelocity_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PanGesture_screenVelocity_get")] public static extern global::System.IntPtr PanGesture_screenVelocity_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PanGesture_screenDisplacement_set")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PanGesture_screenDisplacement_set")] public static extern void PanGesture_screenDisplacement_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PanGesture_screenDisplacement_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PanGesture_screenDisplacement_get")] public static extern global::System.IntPtr PanGesture_screenDisplacement_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PanGesture_screenPosition_set")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PanGesture_screenPosition_set")] public static extern void PanGesture_screenPosition_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PanGesture_screenPosition_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PanGesture_screenPosition_get")] public static extern global::System.IntPtr PanGesture_screenPosition_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PanGesture_numberOfTouches_set")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PanGesture_numberOfTouches_set")] public static extern void PanGesture_numberOfTouches_set(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PanGesture_numberOfTouches_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PanGesture_numberOfTouches_get")] public static extern uint PanGesture_numberOfTouches_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PanGesture_GetSpeed")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PanGesture_GetSpeed")] public static extern float PanGesture_GetSpeed(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PanGesture_GetDistance")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PanGesture_GetDistance")] public static extern float PanGesture_GetDistance(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PanGesture_GetScreenSpeed")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PanGesture_GetScreenSpeed")] public static extern float PanGesture_GetScreenSpeed(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PanGesture_GetScreenDistance")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PanGesture_GetScreenDistance")] public static extern float PanGesture_GetScreenDistance(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_PinchGestureDetector__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_PinchGestureDetector__SWIG_0")] public static extern global::System.IntPtr new_PinchGestureDetector__SWIG_0(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PinchGestureDetector_New")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PinchGestureDetector_New")] public static extern global::System.IntPtr PinchGestureDetector_New(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PinchGestureDetector_DownCast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PinchGestureDetector_DownCast")] public static extern global::System.IntPtr PinchGestureDetector_DownCast(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_PinchGestureDetector")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_PinchGestureDetector")] public static extern void delete_PinchGestureDetector(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_PinchGestureDetector__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_PinchGestureDetector__SWIG_1")] public static extern global::System.IntPtr new_PinchGestureDetector__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PinchGestureDetector_Assign")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PinchGestureDetector_Assign")] public static extern global::System.IntPtr PinchGestureDetector_Assign(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PinchGestureDetector_DetectedSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PinchGestureDetector_DetectedSignal")] public static extern global::System.IntPtr PinchGestureDetector_DetectedSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_PinchGesture__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_PinchGesture__SWIG_0")] public static extern global::System.IntPtr new_PinchGesture__SWIG_0(int jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_PinchGesture__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_PinchGesture__SWIG_1")] public static extern global::System.IntPtr new_PinchGesture__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PinchGesture_Assign")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PinchGesture_Assign")] public static extern global::System.IntPtr PinchGesture_Assign(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_PinchGesture")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_PinchGesture")] public static extern void delete_PinchGesture(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PinchGesture_scale_set")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PinchGesture_scale_set")] public static extern void PinchGesture_scale_set(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PinchGesture_scale_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PinchGesture_scale_get")] public static extern float PinchGesture_scale_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PinchGesture_speed_set")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PinchGesture_speed_set")] public static extern void PinchGesture_speed_set(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PinchGesture_speed_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PinchGesture_speed_get")] public static extern float PinchGesture_speed_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PinchGesture_screenCenterPoint_set")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PinchGesture_screenCenterPoint_set")] public static extern void PinchGesture_screenCenterPoint_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PinchGesture_screenCenterPoint_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PinchGesture_screenCenterPoint_get")] public static extern global::System.IntPtr PinchGesture_screenCenterPoint_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PinchGesture_localCenterPoint_set")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PinchGesture_localCenterPoint_set")] public static extern void PinchGesture_localCenterPoint_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PinchGesture_localCenterPoint_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PinchGesture_localCenterPoint_get")] public static extern global::System.IntPtr PinchGesture_localCenterPoint_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_TapGestureDetector__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_TapGestureDetector__SWIG_0")] public static extern global::System.IntPtr new_TapGestureDetector__SWIG_0(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TapGestureDetector_New__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TapGestureDetector_New__SWIG_0")] public static extern global::System.IntPtr TapGestureDetector_New__SWIG_0(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TapGestureDetector_New__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TapGestureDetector_New__SWIG_1")] public static extern global::System.IntPtr TapGestureDetector_New__SWIG_1(uint jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TapGestureDetector_DownCast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TapGestureDetector_DownCast")] public static extern global::System.IntPtr TapGestureDetector_DownCast(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_TapGestureDetector")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_TapGestureDetector")] public static extern void delete_TapGestureDetector(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_TapGestureDetector__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_TapGestureDetector__SWIG_1")] public static extern global::System.IntPtr new_TapGestureDetector__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TapGestureDetector_Assign")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TapGestureDetector_Assign")] public static extern global::System.IntPtr TapGestureDetector_Assign(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TapGestureDetector_SetMinimumTapsRequired")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TapGestureDetector_SetMinimumTapsRequired")] public static extern void TapGestureDetector_SetMinimumTapsRequired(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TapGestureDetector_SetMaximumTapsRequired")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TapGestureDetector_SetMaximumTapsRequired")] public static extern void TapGestureDetector_SetMaximumTapsRequired(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TapGestureDetector_GetMinimumTapsRequired")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TapGestureDetector_GetMinimumTapsRequired")] public static extern uint TapGestureDetector_GetMinimumTapsRequired(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TapGestureDetector_GetMaximumTapsRequired")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TapGestureDetector_GetMaximumTapsRequired")] public static extern uint TapGestureDetector_GetMaximumTapsRequired(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TapGestureDetector_DetectedSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TapGestureDetector_DetectedSignal")] public static extern global::System.IntPtr TapGestureDetector_DetectedSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_TapGesture__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_TapGesture__SWIG_0")] public static extern global::System.IntPtr new_TapGesture__SWIG_0(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_TapGesture__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_TapGesture__SWIG_1")] public static extern global::System.IntPtr new_TapGesture__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TapGesture_Assign")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TapGesture_Assign")] public static extern global::System.IntPtr TapGesture_Assign(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_TapGesture")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_TapGesture")] public static extern void delete_TapGesture(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TapGesture_numberOfTaps_set")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TapGesture_numberOfTaps_set")] public static extern void TapGesture_numberOfTaps_set(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TapGesture_numberOfTaps_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TapGesture_numberOfTaps_get")] public static extern uint TapGesture_numberOfTaps_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TapGesture_numberOfTouches_set")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TapGesture_numberOfTouches_set")] public static extern void TapGesture_numberOfTouches_set(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TapGesture_numberOfTouches_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TapGesture_numberOfTouches_get")] public static extern uint TapGesture_numberOfTouches_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TapGesture_screenPoint_set")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TapGesture_screenPoint_set")] public static extern void TapGesture_screenPoint_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TapGesture_screenPoint_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TapGesture_screenPoint_get")] public static extern global::System.IntPtr TapGesture_screenPoint_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TapGesture_localPoint_set")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TapGesture_localPoint_set")] public static extern void TapGesture_localPoint_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TapGesture_localPoint_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TapGesture_localPoint_get")] public static extern global::System.IntPtr TapGesture_localPoint_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_TouchEvent__SWIG_0")] - public static extern global::System.IntPtr new_TouchEvent__SWIG_0(); - - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_TouchEvent__SWIG_1")] - public static extern global::System.IntPtr new_TouchEvent__SWIG_1(uint jarg1); - - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_TouchEvent")] - public static extern void delete_TouchEvent(global::System.Runtime.InteropServices.HandleRef jarg1); - - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TouchEvent_points_set")] - public static extern void TouchEvent_points_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TouchEvent_points_get")] - public static extern global::System.IntPtr TouchEvent_points_get(global::System.Runtime.InteropServices.HandleRef jarg1); - - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TouchEvent_time_set")] - public static extern void TouchEvent_time_set(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); - - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TouchEvent_time_get")] - public static extern uint TouchEvent_time_get(global::System.Runtime.InteropServices.HandleRef jarg1); - - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TouchEvent_GetPointCount")] - public static extern uint TouchEvent_GetPointCount(global::System.Runtime.InteropServices.HandleRef jarg1); - - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TouchEvent_GetPoint")] - public static extern global::System.IntPtr TouchEvent_GetPoint(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); - - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_AlphaFunction__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_AlphaFunction__SWIG_0")] public static extern global::System.IntPtr new_AlphaFunction__SWIG_0(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_AlphaFunction__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_AlphaFunction__SWIG_1")] public static extern global::System.IntPtr new_AlphaFunction__SWIG_1(int jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_AlphaFunction__SWIG_2")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_AlphaFunction__SWIG_2")] public static extern global::System.IntPtr new_AlphaFunction__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_AlphaFunction__SWIG_3")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_AlphaFunction__SWIG_3")] public static extern global::System.IntPtr new_AlphaFunction__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_AlphaFunction_GetBezierControlPoints")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_AlphaFunction_GetBezierControlPoints")] public static extern global::System.IntPtr AlphaFunction_GetBezierControlPoints(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_AlphaFunction_GetCustomFunction")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_AlphaFunction_GetCustomFunction")] public static extern global::System.IntPtr AlphaFunction_GetCustomFunction(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_AlphaFunction_GetBuiltinFunction")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_AlphaFunction_GetBuiltinFunction")] public static extern int AlphaFunction_GetBuiltinFunction(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_AlphaFunction_GetMode")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_AlphaFunction_GetMode")] public static extern int AlphaFunction_GetMode(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_AlphaFunction")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_AlphaFunction")] public static extern void delete_AlphaFunction(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_KeyFrames_New")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_KeyFrames_New")] public static extern global::System.IntPtr KeyFrames_New(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_KeyFrames_DownCast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_KeyFrames_DownCast")] public static extern global::System.IntPtr KeyFrames_DownCast(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_KeyFrames__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_KeyFrames__SWIG_0")] public static extern global::System.IntPtr new_KeyFrames__SWIG_0(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_KeyFrames")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_KeyFrames")] public static extern void delete_KeyFrames(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_KeyFrames__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_KeyFrames__SWIG_1")] public static extern global::System.IntPtr new_KeyFrames__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_KeyFrames_Assign")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_KeyFrames_Assign")] public static extern global::System.IntPtr KeyFrames_Assign(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_KeyFrames_GetType")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_KeyFrames_GetType")] public static extern int KeyFrames_GetType(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_KeyFrames_Add__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_KeyFrames_Add__SWIG_0")] public static extern void KeyFrames_Add__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_KeyFrames_Add__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_KeyFrames_Add__SWIG_1")] public static extern void KeyFrames_Add__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Path_Property_POINTS_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Path_Property_POINTS_get")] public static extern int Path_Property_POINTS_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Path_Property_CONTROL_POINTS_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Path_Property_CONTROL_POINTS_get")] public static extern int Path_Property_CONTROL_POINTS_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_Path_Property")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Path_Property")] public static extern global::System.IntPtr new_Path_Property(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_Path_Property")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_Path_Property")] public static extern void delete_Path_Property(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Path_New")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Path_New")] public static extern global::System.IntPtr Path_New(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Path_DownCast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Path_DownCast")] public static extern global::System.IntPtr Path_DownCast(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_Path__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Path__SWIG_0")] public static extern global::System.IntPtr new_Path__SWIG_0(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_Path")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_Path")] public static extern void delete_Path(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_Path__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Path__SWIG_1")] public static extern global::System.IntPtr new_Path__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Path_Assign")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Path_Assign")] public static extern global::System.IntPtr Path_Assign(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Path_AddPoint")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Path_AddPoint")] public static extern void Path_AddPoint(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Path_AddControlPoint")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Path_AddControlPoint")] public static extern void Path_AddControlPoint(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Path_GenerateControlPoints")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Path_GenerateControlPoints")] public static extern void Path_GenerateControlPoints(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Path_Sample")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Path_Sample")] public static extern void Path_Sample(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Path_GetPoint")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Path_GetPoint")] public static extern global::System.IntPtr Path_GetPoint(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Path_GetControlPoint")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Path_GetControlPoint")] public static extern global::System.IntPtr Path_GetControlPoint(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Path_GetPointCount")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Path_GetPointCount")] public static extern uint Path_GetPointCount(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_TimePeriod__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_TimePeriod__SWIG_0")] public static extern global::System.IntPtr new_TimePeriod__SWIG_0(float jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_TimePeriod__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_TimePeriod__SWIG_1")] public static extern global::System.IntPtr new_TimePeriod__SWIG_1(float jarg1, float jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_TimePeriod")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_TimePeriod")] public static extern void delete_TimePeriod(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TimePeriod_delaySeconds_set")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TimePeriod_delaySeconds_set")] public static extern void TimePeriod_delaySeconds_set(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TimePeriod_delaySeconds_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TimePeriod_delaySeconds_get")] public static extern float TimePeriod_delaySeconds_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TimePeriod_durationSeconds_set")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TimePeriod_durationSeconds_set")] public static extern void TimePeriod_durationSeconds_set(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TimePeriod_durationSeconds_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TimePeriod_durationSeconds_get")] public static extern float TimePeriod_durationSeconds_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_Animation__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Animation__SWIG_0")] public static extern global::System.IntPtr new_Animation__SWIG_0(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Animation_New")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Animation_New")] public static extern global::System.IntPtr Animation_New(float jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Animation_DownCast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Animation_DownCast")] public static extern global::System.IntPtr Animation_DownCast(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_Animation")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_Animation")] public static extern void delete_Animation(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_Animation__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Animation__SWIG_1")] public static extern global::System.IntPtr new_Animation__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Animation_Assign")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Animation_Assign")] public static extern global::System.IntPtr Animation_Assign(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Animation_SetDuration")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Animation_SetDuration")] public static extern void Animation_SetDuration(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Animation_GetDuration")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Animation_GetDuration")] public static extern float Animation_GetDuration(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Animation_SetLooping")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Animation_SetLooping")] public static extern void Animation_SetLooping(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Animation_SetLoopCount")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Animation_SetLoopCount")] public static extern void Animation_SetLoopCount(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Animation_GetLoopCount")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Animation_GetLoopCount")] public static extern int Animation_GetLoopCount(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Animation_GetCurrentLoop")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Animation_GetCurrentLoop")] public static extern int Animation_GetCurrentLoop(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Animation_IsLooping")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Animation_IsLooping")] public static extern bool Animation_IsLooping(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Animation_SetEndAction")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Animation_SetEndAction")] public static extern void Animation_SetEndAction(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Animation_GetEndAction")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Animation_GetEndAction")] public static extern int Animation_GetEndAction(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Animation_SetDisconnectAction")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Animation_SetDisconnectAction")] public static extern void Animation_SetDisconnectAction(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Animation_GetDisconnectAction")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Animation_GetDisconnectAction")] public static extern int Animation_GetDisconnectAction(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Animation_SetDefaultAlphaFunction")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Animation_SetDefaultAlphaFunction")] public static extern void Animation_SetDefaultAlphaFunction(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Animation_GetDefaultAlphaFunction")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Animation_GetDefaultAlphaFunction")] public static extern global::System.IntPtr Animation_GetDefaultAlphaFunction(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Animation_SetCurrentProgress")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Animation_SetCurrentProgress")] public static extern void Animation_SetCurrentProgress(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Animation_GetCurrentProgress")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Animation_GetCurrentProgress")] public static extern float Animation_GetCurrentProgress(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Animation_SetSpeedFactor")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Animation_SetSpeedFactor")] public static extern void Animation_SetSpeedFactor(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Animation_GetSpeedFactor")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Animation_GetSpeedFactor")] public static extern float Animation_GetSpeedFactor(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Animation_SetPlayRange")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Animation_SetPlayRange")] public static extern void Animation_SetPlayRange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Animation_GetPlayRange")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Animation_GetPlayRange")] public static extern global::System.IntPtr Animation_GetPlayRange(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Animation_Play")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Animation_Play")] public static extern void Animation_Play(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Animation_PlayFrom")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Animation_PlayFrom")] public static extern void Animation_PlayFrom(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Animation_Pause")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Animation_Pause")] public static extern void Animation_Pause(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Animation_GetState")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Animation_GetState")] public static extern int Animation_GetState(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Animation_Stop")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Animation_Stop")] public static extern void Animation_Stop(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Animation_Clear")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Animation_Clear")] public static extern void Animation_Clear(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Animation_FinishedSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Animation_FinishedSignal")] public static extern global::System.IntPtr Animation_FinishedSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Animation_AnimateBy__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Animation_AnimateBy__SWIG_0")] public static extern void Animation_AnimateBy__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Animation_AnimateBy__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Animation_AnimateBy__SWIG_1")] public static extern void Animation_AnimateBy__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Animation_AnimateBy__SWIG_2")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Animation_AnimateBy__SWIG_2")] public static extern void Animation_AnimateBy__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Animation_AnimateBy__SWIG_3")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Animation_AnimateBy__SWIG_3")] public static extern void Animation_AnimateBy__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Animation_AnimateTo__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Animation_AnimateTo__SWIG_0")] public static extern void Animation_AnimateTo__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Animation_AnimateTo__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Animation_AnimateTo__SWIG_1")] public static extern void Animation_AnimateTo__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Animation_AnimateTo__SWIG_2")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Animation_AnimateTo__SWIG_2")] public static extern void Animation_AnimateTo__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Animation_AnimateTo__SWIG_3")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Animation_AnimateTo__SWIG_3")] public static extern void Animation_AnimateTo__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Animation_AnimateBetween__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Animation_AnimateBetween__SWIG_0")] public static extern void Animation_AnimateBetween__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Animation_AnimateBetween__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Animation_AnimateBetween__SWIG_1")] public static extern void Animation_AnimateBetween__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int jarg4); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Animation_AnimateBetween__SWIG_2")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Animation_AnimateBetween__SWIG_2")] public static extern void Animation_AnimateBetween__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Animation_AnimateBetween__SWIG_3")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Animation_AnimateBetween__SWIG_3")] public static extern void Animation_AnimateBetween__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, int jarg5); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Animation_AnimateBetween__SWIG_4")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Animation_AnimateBetween__SWIG_4")] public static extern void Animation_AnimateBetween__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Animation_AnimateBetween__SWIG_5")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Animation_AnimateBetween__SWIG_5")] public static extern void Animation_AnimateBetween__SWIG_5(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, int jarg5); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Animation_AnimateBetween__SWIG_6")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Animation_AnimateBetween__SWIG_6")] public static extern void Animation_AnimateBetween__SWIG_6(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Animation_AnimateBetween__SWIG_7")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Animation_AnimateBetween__SWIG_7")] public static extern void Animation_AnimateBetween__SWIG_7(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, int jarg6); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Animation_Animate__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Animation_Animate__SWIG_0")] public static extern void Animation_Animate__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Animation_Animate__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Animation_Animate__SWIG_1")] public static extern void Animation_Animate__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Animation_Animate__SWIG_2")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Animation_Animate__SWIG_2")] public static extern void Animation_Animate__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Animation_Animate__SWIG_3")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Animation_Animate__SWIG_3")] public static extern void Animation_Animate__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5, global::System.Runtime.InteropServices.HandleRef jarg6); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Animation_Show")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Animation_Show")] public static extern void Animation_Show(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, float jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Animation_Hide")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Animation_Hide")] public static extern void Animation_Hide(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, float jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_LinearConstrainer_Property_VALUE_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_LinearConstrainer_Property_VALUE_get")] public static extern int LinearConstrainer_Property_VALUE_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_LinearConstrainer_Property_PROGRESS_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_LinearConstrainer_Property_PROGRESS_get")] public static extern int LinearConstrainer_Property_PROGRESS_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_LinearConstrainer_Property")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_LinearConstrainer_Property")] public static extern global::System.IntPtr new_LinearConstrainer_Property(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_LinearConstrainer_Property")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_LinearConstrainer_Property")] public static extern void delete_LinearConstrainer_Property(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_LinearConstrainer_New")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_LinearConstrainer_New")] public static extern global::System.IntPtr LinearConstrainer_New(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_LinearConstrainer_DownCast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_LinearConstrainer_DownCast")] public static extern global::System.IntPtr LinearConstrainer_DownCast(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_LinearConstrainer__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_LinearConstrainer__SWIG_0")] public static extern global::System.IntPtr new_LinearConstrainer__SWIG_0(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_LinearConstrainer")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_LinearConstrainer")] public static extern void delete_LinearConstrainer(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_LinearConstrainer__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_LinearConstrainer__SWIG_1")] public static extern global::System.IntPtr new_LinearConstrainer__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_LinearConstrainer_Assign")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_LinearConstrainer_Assign")] public static extern global::System.IntPtr LinearConstrainer_Assign(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_LinearConstrainer_Apply__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_LinearConstrainer_Apply__SWIG_0")] public static extern void LinearConstrainer_Apply__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_LinearConstrainer_Apply__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_LinearConstrainer_Apply__SWIG_1")] public static extern void LinearConstrainer_Apply__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_LinearConstrainer_Remove")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_LinearConstrainer_Remove")] public static extern void LinearConstrainer_Remove(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PathConstrainer_Property_FORWARD_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PathConstrainer_Property_FORWARD_get")] public static extern int PathConstrainer_Property_FORWARD_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PathConstrainer_Property_POINTS_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PathConstrainer_Property_POINTS_get")] public static extern int PathConstrainer_Property_POINTS_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PathConstrainer_Property_CONTROL_POINTS_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PathConstrainer_Property_CONTROL_POINTS_get")] public static extern int PathConstrainer_Property_CONTROL_POINTS_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_PathConstrainer_Property")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_PathConstrainer_Property")] public static extern global::System.IntPtr new_PathConstrainer_Property(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_PathConstrainer_Property")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_PathConstrainer_Property")] public static extern void delete_PathConstrainer_Property(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PathConstrainer_New")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PathConstrainer_New")] public static extern global::System.IntPtr PathConstrainer_New(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PathConstrainer_DownCast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PathConstrainer_DownCast")] public static extern global::System.IntPtr PathConstrainer_DownCast(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_PathConstrainer__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_PathConstrainer__SWIG_0")] public static extern global::System.IntPtr new_PathConstrainer__SWIG_0(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_PathConstrainer")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_PathConstrainer")] public static extern void delete_PathConstrainer(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_PathConstrainer__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_PathConstrainer__SWIG_1")] public static extern global::System.IntPtr new_PathConstrainer__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PathConstrainer_Assign")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PathConstrainer_Assign")] public static extern global::System.IntPtr PathConstrainer_Assign(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PathConstrainer_Apply__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PathConstrainer_Apply__SWIG_0")] public static extern void PathConstrainer_Apply__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PathConstrainer_Apply__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PathConstrainer_Apply__SWIG_1")] public static extern void PathConstrainer_Apply__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PathConstrainer_Remove")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PathConstrainer_Remove")] public static extern void PathConstrainer_Remove(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_FittingModeDefault_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_FittingModeDefault_get")] public static extern int FittingModeDefault_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_DEFAULT_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_DEFAULT_get")] public static extern int DEFAULT_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_BufferImage__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_BufferImage__SWIG_0")] public static extern global::System.IntPtr new_BufferImage__SWIG_0(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_BufferImage_New__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_BufferImage_New__SWIG_0")] public static extern global::System.IntPtr BufferImage_New__SWIG_0(uint jarg1, uint jarg2, int jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_BufferImage_New__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_BufferImage_New__SWIG_1")] public static extern global::System.IntPtr BufferImage_New__SWIG_1(uint jarg1, uint jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_BufferImage_New__SWIG_2")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_BufferImage_New__SWIG_2")] public static extern global::System.IntPtr BufferImage_New__SWIG_2([global::System.Runtime.InteropServices.In, global::System.Runtime.InteropServices.MarshalAs(global::System.Runtime.InteropServices.UnmanagedType.LPArray)]byte[] jarg1, uint jarg2, uint jarg3, int jarg4, uint jarg5); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_BufferImage_New__SWIG_3")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_BufferImage_New__SWIG_3")] public static extern global::System.IntPtr BufferImage_New__SWIG_3([global::System.Runtime.InteropServices.In, global::System.Runtime.InteropServices.MarshalAs(global::System.Runtime.InteropServices.UnmanagedType.LPArray)]byte[] jarg1, uint jarg2, uint jarg3, int jarg4); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_BufferImage_New__SWIG_4")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_BufferImage_New__SWIG_4")] public static extern global::System.IntPtr BufferImage_New__SWIG_4([global::System.Runtime.InteropServices.In, global::System.Runtime.InteropServices.MarshalAs(global::System.Runtime.InteropServices.UnmanagedType.LPArray)]byte[] jarg1, uint jarg2, uint jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_BufferImage_DownCast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_BufferImage_DownCast")] public static extern global::System.IntPtr BufferImage_DownCast(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_BufferImage")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_BufferImage")] public static extern void delete_BufferImage(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_BufferImage__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_BufferImage__SWIG_1")] public static extern global::System.IntPtr new_BufferImage__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_BufferImage_Assign")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_BufferImage_Assign")] public static extern global::System.IntPtr BufferImage_Assign(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_BufferImage_WHITE")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_BufferImage_WHITE")] public static extern global::System.IntPtr BufferImage_WHITE(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_BufferImage_GetBuffer")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_BufferImage_GetBuffer")] public static extern global::System.IntPtr BufferImage_GetBuffer(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_BufferImage_GetBufferSize")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_BufferImage_GetBufferSize")] public static extern uint BufferImage_GetBufferSize(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_BufferImage_GetBufferStride")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_BufferImage_GetBufferStride")] public static extern uint BufferImage_GetBufferStride(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_BufferImage_GetPixelFormat")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_BufferImage_GetPixelFormat")] public static extern int BufferImage_GetPixelFormat(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_BufferImage_Update__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_BufferImage_Update__SWIG_0")] public static extern void BufferImage_Update__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_BufferImage_Update__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_BufferImage_Update__SWIG_1")] public static extern void BufferImage_Update__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_BufferImage_IsDataExternal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_BufferImage_IsDataExternal")] public static extern bool BufferImage_IsDataExternal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_EncodedBufferImage__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_EncodedBufferImage__SWIG_0")] public static extern global::System.IntPtr new_EncodedBufferImage__SWIG_0(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_EncodedBufferImage_New__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_EncodedBufferImage_New__SWIG_0")] public static extern global::System.IntPtr EncodedBufferImage_New__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_EncodedBufferImage_New__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_EncodedBufferImage_New__SWIG_1")] public static extern global::System.IntPtr EncodedBufferImage_New__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int jarg4, int jarg5, bool jarg6); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_EncodedBufferImage_New__SWIG_2")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_EncodedBufferImage_New__SWIG_2")] public static extern global::System.IntPtr EncodedBufferImage_New__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int jarg4, int jarg5); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_EncodedBufferImage_DownCast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_EncodedBufferImage_DownCast")] public static extern global::System.IntPtr EncodedBufferImage_DownCast(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_EncodedBufferImage")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_EncodedBufferImage")] public static extern void delete_EncodedBufferImage(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_EncodedBufferImage__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_EncodedBufferImage__SWIG_1")] public static extern global::System.IntPtr new_EncodedBufferImage__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_EncodedBufferImage_Assign")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_EncodedBufferImage_Assign")] public static extern global::System.IntPtr EncodedBufferImage_Assign(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_NativeImage__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_NativeImage__SWIG_0")] public static extern global::System.IntPtr new_NativeImage__SWIG_0(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_NativeImage")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_NativeImage")] public static extern void delete_NativeImage(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_NativeImage__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_NativeImage__SWIG_1")] public static extern global::System.IntPtr new_NativeImage__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_NativeImage_Assign")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_NativeImage_Assign")] public static extern global::System.IntPtr NativeImage_Assign(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_NativeImage_CreateGlTexture")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_NativeImage_CreateGlTexture")] public static extern void NativeImage_CreateGlTexture(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_NativeImage_New")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_NativeImage_New")] public static extern global::System.IntPtr NativeImage_New(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_NativeImage_DownCast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_NativeImage_DownCast")] public static extern global::System.IntPtr NativeImage_DownCast(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_NativeImage_GetCustomFragmentPreFix")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_NativeImage_GetCustomFragmentPreFix")] public static extern string NativeImage_GetCustomFragmentPreFix(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_NativeImage_GetCustomSamplerTypename")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_NativeImage_GetCustomSamplerTypename")] public static extern string NativeImage_GetCustomSamplerTypename(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_NativeImageInterface_GlExtensionCreate")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_NativeImageInterface_GlExtensionCreate")] public static extern bool NativeImageInterface_GlExtensionCreate(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_NativeImageInterface_GlExtensionDestroy")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_NativeImageInterface_GlExtensionDestroy")] public static extern void NativeImageInterface_GlExtensionDestroy(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_NativeImageInterface_TargetTexture")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_NativeImageInterface_TargetTexture")] public static extern uint NativeImageInterface_TargetTexture(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_NativeImageInterface_PrepareTexture")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_NativeImageInterface_PrepareTexture")] public static extern void NativeImageInterface_PrepareTexture(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_NativeImageInterface_GetWidth")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_NativeImageInterface_GetWidth")] public static extern uint NativeImageInterface_GetWidth(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_NativeImageInterface_GetHeight")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_NativeImageInterface_GetHeight")] public static extern uint NativeImageInterface_GetHeight(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_NativeImageInterface_RequiresBlending")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_NativeImageInterface_RequiresBlending")] public static extern bool NativeImageInterface_RequiresBlending(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ResourceImage_GetImageSize")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ResourceImage_GetImageSize")] public static extern global::System.IntPtr ResourceImage_GetImageSize(string jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_ResourceImage__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_ResourceImage__SWIG_0")] public static extern global::System.IntPtr new_ResourceImage__SWIG_0(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_ResourceImage")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_ResourceImage")] public static extern void delete_ResourceImage(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_ResourceImage__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_ResourceImage__SWIG_1")] public static extern global::System.IntPtr new_ResourceImage__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ResourceImage_Assign")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ResourceImage_Assign")] public static extern global::System.IntPtr ResourceImage_Assign(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ResourceImage_New__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ResourceImage_New__SWIG_0")] public static extern global::System.IntPtr ResourceImage_New__SWIG_0(string jarg1, bool jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ResourceImage_New__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ResourceImage_New__SWIG_1")] public static extern global::System.IntPtr ResourceImage_New__SWIG_1(string jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ResourceImage_New__SWIG_2")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ResourceImage_New__SWIG_2")] public static extern global::System.IntPtr ResourceImage_New__SWIG_2(string jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3, int jarg4, bool jarg5); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ResourceImage_New__SWIG_3")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ResourceImage_New__SWIG_3")] public static extern global::System.IntPtr ResourceImage_New__SWIG_3(string jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3, int jarg4); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ResourceImage_New__SWIG_4")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ResourceImage_New__SWIG_4")] public static extern global::System.IntPtr ResourceImage_New__SWIG_4(string jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ResourceImage_New__SWIG_5")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ResourceImage_New__SWIG_5")] public static extern global::System.IntPtr ResourceImage_New__SWIG_5(string jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ResourceImage_DownCast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ResourceImage_DownCast")] public static extern global::System.IntPtr ResourceImage_DownCast(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ResourceImage_GetLoadingState")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ResourceImage_GetLoadingState")] public static extern int ResourceImage_GetLoadingState(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ResourceImage_GetUrl")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ResourceImage_GetUrl")] public static extern string ResourceImage_GetUrl(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ResourceImage_Reload")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ResourceImage_Reload")] public static extern void ResourceImage_Reload(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ResourceImage_LoadingFinishedSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ResourceImage_LoadingFinishedSignal")] public static extern global::System.IntPtr ResourceImage_LoadingFinishedSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_FrameBufferImage__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_FrameBufferImage__SWIG_0")] public static extern global::System.IntPtr new_FrameBufferImage__SWIG_0(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_FrameBufferImage_New__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_FrameBufferImage_New__SWIG_0")] public static extern global::System.IntPtr FrameBufferImage_New__SWIG_0(uint jarg1, uint jarg2, int jarg3, int jarg4); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_FrameBufferImage_New__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_FrameBufferImage_New__SWIG_1")] public static extern global::System.IntPtr FrameBufferImage_New__SWIG_1(uint jarg1, uint jarg2, int jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_FrameBufferImage_New__SWIG_2")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_FrameBufferImage_New__SWIG_2")] public static extern global::System.IntPtr FrameBufferImage_New__SWIG_2(uint jarg1, uint jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_FrameBufferImage_New__SWIG_3")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_FrameBufferImage_New__SWIG_3")] public static extern global::System.IntPtr FrameBufferImage_New__SWIG_3(uint jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_FrameBufferImage_New__SWIG_4")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_FrameBufferImage_New__SWIG_4")] public static extern global::System.IntPtr FrameBufferImage_New__SWIG_4(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_FrameBufferImage_New__SWIG_5")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_FrameBufferImage_New__SWIG_5")] public static extern global::System.IntPtr FrameBufferImage_New__SWIG_5(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_FrameBufferImage_DownCast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_FrameBufferImage_DownCast")] public static extern global::System.IntPtr FrameBufferImage_DownCast(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_FrameBufferImage")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_FrameBufferImage")] public static extern void delete_FrameBufferImage(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_FrameBufferImage__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_FrameBufferImage__SWIG_1")] public static extern global::System.IntPtr new_FrameBufferImage__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_FrameBufferImage_Assign")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_FrameBufferImage_Assign")] public static extern global::System.IntPtr FrameBufferImage_Assign(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_NinePatchImage__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_NinePatchImage__SWIG_0")] public static extern global::System.IntPtr new_NinePatchImage__SWIG_0(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_NinePatchImage_New")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_NinePatchImage_New")] public static extern global::System.IntPtr NinePatchImage_New(string jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_NinePatchImage_DownCast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_NinePatchImage_DownCast")] public static extern global::System.IntPtr NinePatchImage_DownCast(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_NinePatchImage")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_NinePatchImage")] public static extern void delete_NinePatchImage(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_NinePatchImage__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_NinePatchImage__SWIG_1")] public static extern global::System.IntPtr new_NinePatchImage__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_NinePatchImage_Assign")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_NinePatchImage_Assign")] public static extern global::System.IntPtr NinePatchImage_Assign(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_NinePatchImage_GetStretchBorders")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_NinePatchImage_GetStretchBorders")] public static extern global::System.IntPtr NinePatchImage_GetStretchBorders(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_NinePatchImage_GetStretchPixelsX")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_NinePatchImage_GetStretchPixelsX")] public static extern global::System.IntPtr NinePatchImage_GetStretchPixelsX(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_NinePatchImage_GetStretchPixelsY")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_NinePatchImage_GetStretchPixelsY")] public static extern global::System.IntPtr NinePatchImage_GetStretchPixelsY(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_NinePatchImage_GetChildRectangle")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_NinePatchImage_GetChildRectangle")] public static extern global::System.IntPtr NinePatchImage_GetChildRectangle(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_NinePatchImage_CreateCroppedBufferImage")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_NinePatchImage_CreateCroppedBufferImage")] public static extern global::System.IntPtr NinePatchImage_CreateCroppedBufferImage(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_NinePatchImage_IsNinePatchUrl")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_NinePatchImage_IsNinePatchUrl")] public static extern bool NinePatchImage_IsNinePatchUrl(string jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_CameraActor_Property_TYPE_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_CameraActor_Property_TYPE_get")] public static extern int CameraActor_Property_TYPE_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_CameraActor_Property_PROJECTION_MODE_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_CameraActor_Property_PROJECTION_MODE_get")] public static extern int CameraActor_Property_PROJECTION_MODE_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_CameraActor_Property_FIELD_OF_VIEW_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_CameraActor_Property_FIELD_OF_VIEW_get")] public static extern int CameraActor_Property_FIELD_OF_VIEW_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_CameraActor_Property_ASPECT_RATIO_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_CameraActor_Property_ASPECT_RATIO_get")] public static extern int CameraActor_Property_ASPECT_RATIO_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_CameraActor_Property_NEAR_PLANE_DISTANCE_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_CameraActor_Property_NEAR_PLANE_DISTANCE_get")] public static extern int CameraActor_Property_NEAR_PLANE_DISTANCE_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_CameraActor_Property_FAR_PLANE_DISTANCE_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_CameraActor_Property_FAR_PLANE_DISTANCE_get")] public static extern int CameraActor_Property_FAR_PLANE_DISTANCE_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_CameraActor_Property_LEFT_PLANE_DISTANCE_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_CameraActor_Property_LEFT_PLANE_DISTANCE_get")] public static extern int CameraActor_Property_LEFT_PLANE_DISTANCE_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_CameraActor_Property_RIGHT_PLANE_DISTANCE_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_CameraActor_Property_RIGHT_PLANE_DISTANCE_get")] public static extern int CameraActor_Property_RIGHT_PLANE_DISTANCE_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_CameraActor_Property_TOP_PLANE_DISTANCE_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_CameraActor_Property_TOP_PLANE_DISTANCE_get")] public static extern int CameraActor_Property_TOP_PLANE_DISTANCE_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_CameraActor_Property_BOTTOM_PLANE_DISTANCE_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_CameraActor_Property_BOTTOM_PLANE_DISTANCE_get")] public static extern int CameraActor_Property_BOTTOM_PLANE_DISTANCE_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_CameraActor_Property_TARGET_POSITION_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_CameraActor_Property_TARGET_POSITION_get")] public static extern int CameraActor_Property_TARGET_POSITION_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_CameraActor_Property_PROJECTION_MATRIX_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_CameraActor_Property_PROJECTION_MATRIX_get")] public static extern int CameraActor_Property_PROJECTION_MATRIX_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_CameraActor_Property_VIEW_MATRIX_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_CameraActor_Property_VIEW_MATRIX_get")] public static extern int CameraActor_Property_VIEW_MATRIX_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_CameraActor_Property_INVERT_Y_AXIS_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_CameraActor_Property_INVERT_Y_AXIS_get")] public static extern int CameraActor_Property_INVERT_Y_AXIS_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_CameraActor_Property")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_CameraActor_Property")] public static extern global::System.IntPtr new_CameraActor_Property(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_CameraActor_Property")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_CameraActor_Property")] public static extern void delete_CameraActor_Property(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_CameraActor__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_CameraActor__SWIG_0")] public static extern global::System.IntPtr new_CameraActor__SWIG_0(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_CameraActor_New__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_CameraActor_New__SWIG_0")] public static extern global::System.IntPtr CameraActor_New__SWIG_0(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_CameraActor_New__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_CameraActor_New__SWIG_1")] public static extern global::System.IntPtr CameraActor_New__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_CameraActor_DownCast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_CameraActor_DownCast")] public static extern global::System.IntPtr CameraActor_DownCast(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_CameraActor")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_CameraActor")] public static extern void delete_CameraActor(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_CameraActor__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_CameraActor__SWIG_1")] public static extern global::System.IntPtr new_CameraActor__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_CameraActor_Assign")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_CameraActor_Assign")] public static extern global::System.IntPtr CameraActor_Assign(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_CameraActor_SetType")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_CameraActor_SetType")] public static extern void CameraActor_SetType(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_CameraActor_GetType")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_CameraActor_GetType")] public static extern int CameraActor_GetType(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_CameraActor_SetProjectionMode")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_CameraActor_SetProjectionMode")] public static extern void CameraActor_SetProjectionMode(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_CameraActor_GetProjectionMode")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_CameraActor_GetProjectionMode")] public static extern int CameraActor_GetProjectionMode(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_CameraActor_SetFieldOfView")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_CameraActor_SetFieldOfView")] public static extern void CameraActor_SetFieldOfView(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_CameraActor_GetFieldOfView")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_CameraActor_GetFieldOfView")] public static extern float CameraActor_GetFieldOfView(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_CameraActor_SetAspectRatio")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_CameraActor_SetAspectRatio")] public static extern void CameraActor_SetAspectRatio(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_CameraActor_GetAspectRatio")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_CameraActor_GetAspectRatio")] public static extern float CameraActor_GetAspectRatio(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_CameraActor_SetNearClippingPlane")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_CameraActor_SetNearClippingPlane")] public static extern void CameraActor_SetNearClippingPlane(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_CameraActor_GetNearClippingPlane")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_CameraActor_GetNearClippingPlane")] public static extern float CameraActor_GetNearClippingPlane(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_CameraActor_SetFarClippingPlane")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_CameraActor_SetFarClippingPlane")] public static extern void CameraActor_SetFarClippingPlane(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_CameraActor_GetFarClippingPlane")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_CameraActor_GetFarClippingPlane")] public static extern float CameraActor_GetFarClippingPlane(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_CameraActor_SetTargetPosition")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_CameraActor_SetTargetPosition")] public static extern void CameraActor_SetTargetPosition(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_CameraActor_GetTargetPosition")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_CameraActor_GetTargetPosition")] public static extern global::System.IntPtr CameraActor_GetTargetPosition(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_CameraActor_SetInvertYAxis")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_CameraActor_SetInvertYAxis")] public static extern void CameraActor_SetInvertYAxis(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_CameraActor_GetInvertYAxis")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_CameraActor_GetInvertYAxis")] public static extern bool CameraActor_GetInvertYAxis(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_CameraActor_SetPerspectiveProjection")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_CameraActor_SetPerspectiveProjection")] public static extern void CameraActor_SetPerspectiveProjection(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_CameraActor_SetOrthographicProjection__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_CameraActor_SetOrthographicProjection__SWIG_0")] public static extern void CameraActor_SetOrthographicProjection__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_CameraActor_SetOrthographicProjection__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_CameraActor_SetOrthographicProjection__SWIG_1")] public static extern void CameraActor_SetOrthographicProjection__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2, float jarg3, float jarg4, float jarg5, float jarg6, float jarg7); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_StringValuePair__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_StringValuePair__SWIG_0")] public static extern global::System.IntPtr new_StringValuePair__SWIG_0(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_StringValuePair__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_StringValuePair__SWIG_1")] public static extern global::System.IntPtr new_StringValuePair__SWIG_1(string jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_StringValuePair__SWIG_2")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_StringValuePair__SWIG_2")] public static extern global::System.IntPtr new_StringValuePair__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_StringValuePair_first_set")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_StringValuePair_first_set")] public static extern void StringValuePair_first_set(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_StringValuePair_first_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_StringValuePair_first_get")] public static extern string StringValuePair_first_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_StringValuePair_second_set")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_StringValuePair_second_set")] public static extern void StringValuePair_second_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_StringValuePair_second_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_StringValuePair_second_get")] public static extern global::System.IntPtr StringValuePair_second_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_StringValuePair")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_StringValuePair")] public static extern void delete_StringValuePair(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TouchPointContainer_Clear")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TouchPointContainer_Clear")] public static extern void TouchPointContainer_Clear(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TouchPointContainer_Add")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TouchPointContainer_Add")] public static extern void TouchPointContainer_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TouchPointContainer_size")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TouchPointContainer_size")] public static extern uint TouchPointContainer_size(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TouchPointContainer_capacity")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TouchPointContainer_capacity")] public static extern uint TouchPointContainer_capacity(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TouchPointContainer_reserve")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TouchPointContainer_reserve")] public static extern void TouchPointContainer_reserve(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_TouchPointContainer__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_TouchPointContainer__SWIG_0")] public static extern global::System.IntPtr new_TouchPointContainer__SWIG_0(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_TouchPointContainer__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_TouchPointContainer__SWIG_1")] public static extern global::System.IntPtr new_TouchPointContainer__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_TouchPointContainer__SWIG_2")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_TouchPointContainer__SWIG_2")] public static extern global::System.IntPtr new_TouchPointContainer__SWIG_2(int jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TouchPointContainer_getitemcopy")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TouchPointContainer_getitemcopy")] public static extern global::System.IntPtr TouchPointContainer_getitemcopy(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TouchPointContainer_getitem")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TouchPointContainer_getitem")] public static extern global::System.IntPtr TouchPointContainer_getitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TouchPointContainer_setitem")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TouchPointContainer_setitem")] public static extern void TouchPointContainer_setitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TouchPointContainer_AddRange")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TouchPointContainer_AddRange")] public static extern void TouchPointContainer_AddRange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TouchPointContainer_GetRange")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TouchPointContainer_GetRange")] public static extern global::System.IntPtr TouchPointContainer_GetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TouchPointContainer_Insert")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TouchPointContainer_Insert")] public static extern void TouchPointContainer_Insert(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TouchPointContainer_InsertRange")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TouchPointContainer_InsertRange")] public static extern void TouchPointContainer_InsertRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TouchPointContainer_RemoveAt")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TouchPointContainer_RemoveAt")] public static extern void TouchPointContainer_RemoveAt(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TouchPointContainer_RemoveRange")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TouchPointContainer_RemoveRange")] public static extern void TouchPointContainer_RemoveRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TouchPointContainer_Repeat")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TouchPointContainer_Repeat")] public static extern global::System.IntPtr TouchPointContainer_Repeat(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TouchPointContainer_Reverse__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TouchPointContainer_Reverse__SWIG_0")] public static extern void TouchPointContainer_Reverse__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TouchPointContainer_Reverse__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TouchPointContainer_Reverse__SWIG_1")] public static extern void TouchPointContainer_Reverse__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TouchPointContainer_SetRange")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TouchPointContainer_SetRange")] public static extern void TouchPointContainer_SetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_TouchPointContainer")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_TouchPointContainer")] public static extern void delete_TouchPointContainer(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_RectDouble__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_RectDouble__SWIG_0")] public static extern global::System.IntPtr new_RectDouble__SWIG_0(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_RectDouble__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_RectDouble__SWIG_1")] public static extern global::System.IntPtr new_RectDouble__SWIG_1(double jarg1, double jarg2, double jarg3, double jarg4); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_RectDouble__SWIG_2")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_RectDouble__SWIG_2")] public static extern global::System.IntPtr new_RectDouble__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RectDouble_Assign")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RectDouble_Assign")] public static extern global::System.IntPtr RectDouble_Assign(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RectDouble_Set")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RectDouble_Set")] public static extern void RectDouble_Set(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2, double jarg3, double jarg4, double jarg5); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RectDouble_IsEmpty")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RectDouble_IsEmpty")] public static extern bool RectDouble_IsEmpty(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RectDouble_Left")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RectDouble_Left")] public static extern double RectDouble_Left(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RectDouble_Right")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RectDouble_Right")] public static extern double RectDouble_Right(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RectDouble_Top")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RectDouble_Top")] public static extern double RectDouble_Top(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RectDouble_Bottom")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RectDouble_Bottom")] public static extern double RectDouble_Bottom(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RectDouble_Area")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RectDouble_Area")] public static extern double RectDouble_Area(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RectDouble_Intersects")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RectDouble_Intersects")] public static extern bool RectDouble_Intersects(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RectDouble_Contains")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RectDouble_Contains")] public static extern bool RectDouble_Contains(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RectDouble_x_set")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RectDouble_x_set")] public static extern void RectDouble_x_set(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RectDouble_x_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RectDouble_x_get")] public static extern double RectDouble_x_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RectDouble_left_set")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RectDouble_left_set")] public static extern void RectDouble_left_set(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RectDouble_left_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RectDouble_left_get")] public static extern double RectDouble_left_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RectDouble_y_set")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RectDouble_y_set")] public static extern void RectDouble_y_set(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RectDouble_y_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RectDouble_y_get")] public static extern double RectDouble_y_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RectDouble_right_set")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RectDouble_right_set")] public static extern void RectDouble_right_set(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RectDouble_right_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RectDouble_right_get")] public static extern double RectDouble_right_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RectDouble_width_set")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RectDouble_width_set")] public static extern void RectDouble_width_set(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RectDouble_width_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RectDouble_width_get")] public static extern double RectDouble_width_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RectDouble_bottom_set")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RectDouble_bottom_set")] public static extern void RectDouble_bottom_set(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RectDouble_bottom_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RectDouble_bottom_get")] public static extern double RectDouble_bottom_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RectDouble_height_set")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RectDouble_height_set")] public static extern void RectDouble_height_set(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RectDouble_height_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RectDouble_height_get")] public static extern double RectDouble_height_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RectDouble_top_set")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RectDouble_top_set")] public static extern void RectDouble_top_set(global::System.Runtime.InteropServices.HandleRef jarg1, double jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RectDouble_top_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RectDouble_top_get")] public static extern double RectDouble_top_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_RectDouble")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_RectDouble")] public static extern void delete_RectDouble(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_RectInteger__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_RectInteger__SWIG_0")] public static extern global::System.IntPtr new_RectInteger__SWIG_0(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_RectInteger__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_RectInteger__SWIG_1")] public static extern global::System.IntPtr new_RectInteger__SWIG_1(int jarg1, int jarg2, int jarg3, int jarg4); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_RectInteger__SWIG_2")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_RectInteger__SWIG_2")] public static extern global::System.IntPtr new_RectInteger__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RectInteger_Assign")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RectInteger_Assign")] public static extern global::System.IntPtr RectInteger_Assign(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RectInteger_Set")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RectInteger_Set")] public static extern void RectInteger_Set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3, int jarg4, int jarg5); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RectInteger_IsEmpty")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RectInteger_IsEmpty")] public static extern bool RectInteger_IsEmpty(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RectInteger_Left")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RectInteger_Left")] public static extern int RectInteger_Left(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RectInteger_Right")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RectInteger_Right")] public static extern int RectInteger_Right(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RectInteger_Top")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RectInteger_Top")] public static extern int RectInteger_Top(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RectInteger_Bottom")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RectInteger_Bottom")] public static extern int RectInteger_Bottom(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RectInteger_Area")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RectInteger_Area")] public static extern int RectInteger_Area(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RectInteger_Intersects")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RectInteger_Intersects")] public static extern bool RectInteger_Intersects(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RectInteger_Contains")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RectInteger_Contains")] public static extern bool RectInteger_Contains(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RectInteger_x_set")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RectInteger_x_set")] public static extern void RectInteger_x_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RectInteger_x_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RectInteger_x_get")] public static extern int RectInteger_x_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RectInteger_left_set")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RectInteger_left_set")] public static extern void RectInteger_left_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RectInteger_left_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RectInteger_left_get")] public static extern int RectInteger_left_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RectInteger_y_set")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RectInteger_y_set")] public static extern void RectInteger_y_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RectInteger_y_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RectInteger_y_get")] public static extern int RectInteger_y_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RectInteger_right_set")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RectInteger_right_set")] public static extern void RectInteger_right_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RectInteger_right_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RectInteger_right_get")] public static extern int RectInteger_right_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RectInteger_width_set")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RectInteger_width_set")] public static extern void RectInteger_width_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RectInteger_width_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RectInteger_width_get")] public static extern int RectInteger_width_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RectInteger_bottom_set")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RectInteger_bottom_set")] public static extern void RectInteger_bottom_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RectInteger_bottom_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RectInteger_bottom_get")] public static extern int RectInteger_bottom_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RectInteger_height_set")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RectInteger_height_set")] public static extern void RectInteger_height_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RectInteger_height_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RectInteger_height_get")] public static extern int RectInteger_height_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RectInteger_top_set")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RectInteger_top_set")] public static extern void RectInteger_top_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RectInteger_top_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RectInteger_top_get")] public static extern int RectInteger_top_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_RectInteger")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_RectInteger")] public static extern void delete_RectInteger(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_RectUnsignedInteger__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_RectUnsignedInteger__SWIG_0")] public static extern global::System.IntPtr new_RectUnsignedInteger__SWIG_0(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_RectUnsignedInteger__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_RectUnsignedInteger__SWIG_1")] public static extern global::System.IntPtr new_RectUnsignedInteger__SWIG_1(uint jarg1, uint jarg2, uint jarg3, uint jarg4); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_RectUnsignedInteger__SWIG_2")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_RectUnsignedInteger__SWIG_2")] public static extern global::System.IntPtr new_RectUnsignedInteger__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RectUnsignedInteger_Assign")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RectUnsignedInteger_Assign")] public static extern global::System.IntPtr RectUnsignedInteger_Assign(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RectUnsignedInteger_Set")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RectUnsignedInteger_Set")] public static extern void RectUnsignedInteger_Set(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2, uint jarg3, uint jarg4, uint jarg5); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RectUnsignedInteger_IsEmpty")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RectUnsignedInteger_IsEmpty")] public static extern bool RectUnsignedInteger_IsEmpty(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RectUnsignedInteger_Left")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RectUnsignedInteger_Left")] public static extern uint RectUnsignedInteger_Left(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RectUnsignedInteger_Right")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RectUnsignedInteger_Right")] public static extern uint RectUnsignedInteger_Right(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RectUnsignedInteger_Top")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RectUnsignedInteger_Top")] public static extern uint RectUnsignedInteger_Top(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RectUnsignedInteger_Bottom")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RectUnsignedInteger_Bottom")] public static extern uint RectUnsignedInteger_Bottom(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RectUnsignedInteger_Area")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RectUnsignedInteger_Area")] public static extern uint RectUnsignedInteger_Area(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RectUnsignedInteger_Intersects")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RectUnsignedInteger_Intersects")] public static extern bool RectUnsignedInteger_Intersects(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RectUnsignedInteger_Contains")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RectUnsignedInteger_Contains")] public static extern bool RectUnsignedInteger_Contains(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RectUnsignedInteger_x_set")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RectUnsignedInteger_x_set")] public static extern void RectUnsignedInteger_x_set(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RectUnsignedInteger_x_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RectUnsignedInteger_x_get")] public static extern uint RectUnsignedInteger_x_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RectUnsignedInteger_left_set")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RectUnsignedInteger_left_set")] public static extern void RectUnsignedInteger_left_set(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RectUnsignedInteger_left_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RectUnsignedInteger_left_get")] public static extern uint RectUnsignedInteger_left_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RectUnsignedInteger_y_set")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RectUnsignedInteger_y_set")] public static extern void RectUnsignedInteger_y_set(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RectUnsignedInteger_y_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RectUnsignedInteger_y_get")] public static extern uint RectUnsignedInteger_y_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RectUnsignedInteger_right_set")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RectUnsignedInteger_right_set")] public static extern void RectUnsignedInteger_right_set(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RectUnsignedInteger_right_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RectUnsignedInteger_right_get")] public static extern uint RectUnsignedInteger_right_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RectUnsignedInteger_width_set")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RectUnsignedInteger_width_set")] public static extern void RectUnsignedInteger_width_set(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RectUnsignedInteger_width_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RectUnsignedInteger_width_get")] public static extern uint RectUnsignedInteger_width_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RectUnsignedInteger_bottom_set")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RectUnsignedInteger_bottom_set")] public static extern void RectUnsignedInteger_bottom_set(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RectUnsignedInteger_bottom_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RectUnsignedInteger_bottom_get")] public static extern uint RectUnsignedInteger_bottom_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RectUnsignedInteger_height_set")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RectUnsignedInteger_height_set")] public static extern void RectUnsignedInteger_height_set(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RectUnsignedInteger_height_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RectUnsignedInteger_height_get")] public static extern uint RectUnsignedInteger_height_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RectUnsignedInteger_top_set")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RectUnsignedInteger_top_set")] public static extern void RectUnsignedInteger_top_set(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RectUnsignedInteger_top_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RectUnsignedInteger_top_get")] public static extern uint RectUnsignedInteger_top_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_RectUnsignedInteger")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_RectUnsignedInteger")] public static extern void delete_RectUnsignedInteger(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_RectFloat__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_RectFloat__SWIG_0")] public static extern global::System.IntPtr new_RectFloat__SWIG_0(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_RectFloat__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_RectFloat__SWIG_1")] public static extern global::System.IntPtr new_RectFloat__SWIG_1(float jarg1, float jarg2, float jarg3, float jarg4); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_RectFloat__SWIG_2")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_RectFloat__SWIG_2")] public static extern global::System.IntPtr new_RectFloat__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RectFloat_Assign")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RectFloat_Assign")] public static extern global::System.IntPtr RectFloat_Assign(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RectFloat_Set")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RectFloat_Set")] public static extern void RectFloat_Set(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2, float jarg3, float jarg4, float jarg5); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RectFloat_IsEmpty")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RectFloat_IsEmpty")] public static extern bool RectFloat_IsEmpty(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RectFloat_Left")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RectFloat_Left")] public static extern float RectFloat_Left(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RectFloat_Right")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RectFloat_Right")] public static extern float RectFloat_Right(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RectFloat_Top")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RectFloat_Top")] public static extern float RectFloat_Top(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RectFloat_Bottom")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RectFloat_Bottom")] public static extern float RectFloat_Bottom(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RectFloat_Area")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RectFloat_Area")] public static extern float RectFloat_Area(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RectFloat_Intersects")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RectFloat_Intersects")] public static extern bool RectFloat_Intersects(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RectFloat_Contains")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RectFloat_Contains")] public static extern bool RectFloat_Contains(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RectFloat_x_set")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RectFloat_x_set")] public static extern void RectFloat_x_set(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RectFloat_x_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RectFloat_x_get")] public static extern float RectFloat_x_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RectFloat_left_set")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RectFloat_left_set")] public static extern void RectFloat_left_set(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RectFloat_left_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RectFloat_left_get")] public static extern float RectFloat_left_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RectFloat_y_set")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RectFloat_y_set")] public static extern void RectFloat_y_set(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RectFloat_y_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RectFloat_y_get")] public static extern float RectFloat_y_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RectFloat_right_set")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RectFloat_right_set")] public static extern void RectFloat_right_set(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RectFloat_right_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RectFloat_right_get")] public static extern float RectFloat_right_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RectFloat_width_set")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RectFloat_width_set")] public static extern void RectFloat_width_set(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RectFloat_width_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RectFloat_width_get")] public static extern float RectFloat_width_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RectFloat_bottom_set")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RectFloat_bottom_set")] public static extern void RectFloat_bottom_set(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RectFloat_bottom_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RectFloat_bottom_get")] public static extern float RectFloat_bottom_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RectFloat_height_set")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RectFloat_height_set")] public static extern void RectFloat_height_set(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RectFloat_height_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RectFloat_height_get")] public static extern float RectFloat_height_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RectFloat_top_set")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RectFloat_top_set")] public static extern void RectFloat_top_set(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RectFloat_top_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RectFloat_top_get")] public static extern float RectFloat_top_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_RectFloat")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_RectFloat")] public static extern void delete_RectFloat(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_VectorInteger_BaseType_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_VectorInteger_BaseType_get")] public static extern int VectorInteger_BaseType_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_VectorInteger__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_VectorInteger__SWIG_0")] public static extern global::System.IntPtr new_VectorInteger__SWIG_0(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_VectorInteger")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_VectorInteger")] public static extern void delete_VectorInteger(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_VectorInteger__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_VectorInteger__SWIG_1")] public static extern global::System.IntPtr new_VectorInteger__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_VectorInteger_Assign")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_VectorInteger_Assign")] public static extern global::System.IntPtr VectorInteger_Assign(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_VectorInteger_Begin")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_VectorInteger_Begin")] public static extern global::System.IntPtr VectorInteger_Begin(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_VectorInteger_End")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_VectorInteger_End")] public static extern global::System.IntPtr VectorInteger_End(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_VectorInteger_ValueOfIndex__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_VectorInteger_ValueOfIndex__SWIG_0")] public static extern global::System.IntPtr VectorInteger_ValueOfIndex__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_VectorInteger_PushBack")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_VectorInteger_PushBack")] public static extern void VectorInteger_PushBack(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_VectorInteger_Insert__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_VectorInteger_Insert__SWIG_0")] public static extern void VectorInteger_Insert__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_VectorInteger_Insert__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_VectorInteger_Insert__SWIG_1")] public static extern void VectorInteger_Insert__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_VectorInteger_Reserve")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_VectorInteger_Reserve")] public static extern void VectorInteger_Reserve(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_VectorInteger_Resize__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_VectorInteger_Resize__SWIG_0")] public static extern void VectorInteger_Resize__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_VectorInteger_Resize__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_VectorInteger_Resize__SWIG_1")] public static extern void VectorInteger_Resize__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2, int jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_VectorInteger_Erase__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_VectorInteger_Erase__SWIG_0")] public static extern global::System.IntPtr VectorInteger_Erase__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_VectorInteger_Erase__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_VectorInteger_Erase__SWIG_1")] public static extern global::System.IntPtr VectorInteger_Erase__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_VectorInteger_Remove")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_VectorInteger_Remove")] public static extern void VectorInteger_Remove(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_VectorInteger_Swap")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_VectorInteger_Swap")] public static extern void VectorInteger_Swap(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_VectorInteger_Clear")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_VectorInteger_Clear")] public static extern void VectorInteger_Clear(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_VectorInteger_Release")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_VectorInteger_Release")] public static extern void VectorInteger_Release(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_VectorFloat_BaseType_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_VectorFloat_BaseType_get")] public static extern int VectorFloat_BaseType_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_VectorFloat__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_VectorFloat__SWIG_0")] public static extern global::System.IntPtr new_VectorFloat__SWIG_0(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_VectorFloat")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_VectorFloat")] public static extern void delete_VectorFloat(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_VectorFloat__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_VectorFloat__SWIG_1")] public static extern global::System.IntPtr new_VectorFloat__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_VectorFloat_Assign")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_VectorFloat_Assign")] public static extern global::System.IntPtr VectorFloat_Assign(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_VectorFloat_Begin")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_VectorFloat_Begin")] public static extern global::System.IntPtr VectorFloat_Begin(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_VectorFloat_End")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_VectorFloat_End")] public static extern global::System.IntPtr VectorFloat_End(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_VectorFloat_ValueOfIndex__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_VectorFloat_ValueOfIndex__SWIG_0")] public static extern global::System.IntPtr VectorFloat_ValueOfIndex__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_VectorFloat_PushBack")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_VectorFloat_PushBack")] public static extern void VectorFloat_PushBack(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_VectorFloat_Insert__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_VectorFloat_Insert__SWIG_0")] public static extern void VectorFloat_Insert__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, float jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_VectorFloat_Insert__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_VectorFloat_Insert__SWIG_1")] public static extern void VectorFloat_Insert__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_VectorFloat_Reserve")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_VectorFloat_Reserve")] public static extern void VectorFloat_Reserve(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_VectorFloat_Resize__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_VectorFloat_Resize__SWIG_0")] public static extern void VectorFloat_Resize__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_VectorFloat_Resize__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_VectorFloat_Resize__SWIG_1")] public static extern void VectorFloat_Resize__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2, float jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_VectorFloat_Erase__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_VectorFloat_Erase__SWIG_0")] public static extern global::System.IntPtr VectorFloat_Erase__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_VectorFloat_Erase__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_VectorFloat_Erase__SWIG_1")] public static extern global::System.IntPtr VectorFloat_Erase__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_VectorFloat_Remove")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_VectorFloat_Remove")] public static extern void VectorFloat_Remove(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_VectorFloat_Swap")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_VectorFloat_Swap")] public static extern void VectorFloat_Swap(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_VectorFloat_Clear")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_VectorFloat_Clear")] public static extern void VectorFloat_Clear(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_VectorFloat_Release")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_VectorFloat_Release")] public static extern void VectorFloat_Release(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_VectorUnsignedChar_BaseType_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_VectorUnsignedChar_BaseType_get")] public static extern int VectorUnsignedChar_BaseType_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_VectorUnsignedChar__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_VectorUnsignedChar__SWIG_0")] public static extern global::System.IntPtr new_VectorUnsignedChar__SWIG_0(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_VectorUnsignedChar")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_VectorUnsignedChar")] public static extern void delete_VectorUnsignedChar(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_VectorUnsignedChar__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_VectorUnsignedChar__SWIG_1")] public static extern global::System.IntPtr new_VectorUnsignedChar__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_VectorUnsignedChar_Assign")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_VectorUnsignedChar_Assign")] public static extern global::System.IntPtr VectorUnsignedChar_Assign(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_VectorUnsignedChar_Begin")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_VectorUnsignedChar_Begin")] public static extern global::System.IntPtr VectorUnsignedChar_Begin(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_VectorUnsignedChar_End")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_VectorUnsignedChar_End")] public static extern global::System.IntPtr VectorUnsignedChar_End(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_VectorUnsignedChar_ValueOfIndex__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_VectorUnsignedChar_ValueOfIndex__SWIG_0")] public static extern global::System.IntPtr VectorUnsignedChar_ValueOfIndex__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_VectorUnsignedChar_PushBack")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_VectorUnsignedChar_PushBack")] public static extern void VectorUnsignedChar_PushBack(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_VectorUnsignedChar_Insert__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_VectorUnsignedChar_Insert__SWIG_0")] public static extern void VectorUnsignedChar_Insert__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, [global::System.Runtime.InteropServices.In, global::System.Runtime.InteropServices.MarshalAs(global::System.Runtime.InteropServices.UnmanagedType.LPArray)]byte[] jarg2, byte jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_VectorUnsignedChar_Insert__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_VectorUnsignedChar_Insert__SWIG_1")] public static extern void VectorUnsignedChar_Insert__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, [global::System.Runtime.InteropServices.In, global::System.Runtime.InteropServices.MarshalAs(global::System.Runtime.InteropServices.UnmanagedType.LPArray)]byte[] jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_VectorUnsignedChar_Reserve")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_VectorUnsignedChar_Reserve")] public static extern void VectorUnsignedChar_Reserve(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_VectorUnsignedChar_Resize__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_VectorUnsignedChar_Resize__SWIG_0")] public static extern void VectorUnsignedChar_Resize__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_VectorUnsignedChar_Resize__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_VectorUnsignedChar_Resize__SWIG_1")] public static extern void VectorUnsignedChar_Resize__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2, byte jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_VectorUnsignedChar_Erase__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_VectorUnsignedChar_Erase__SWIG_0")] public static extern global::System.IntPtr VectorUnsignedChar_Erase__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, [global::System.Runtime.InteropServices.In, global::System.Runtime.InteropServices.MarshalAs(global::System.Runtime.InteropServices.UnmanagedType.LPArray)]byte[] jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_VectorUnsignedChar_Erase__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_VectorUnsignedChar_Erase__SWIG_1")] public static extern global::System.IntPtr VectorUnsignedChar_Erase__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, [global::System.Runtime.InteropServices.In, global::System.Runtime.InteropServices.MarshalAs(global::System.Runtime.InteropServices.UnmanagedType.LPArray)]byte[] jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_VectorUnsignedChar_Remove")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_VectorUnsignedChar_Remove")] public static extern void VectorUnsignedChar_Remove(global::System.Runtime.InteropServices.HandleRef jarg1, [global::System.Runtime.InteropServices.In, global::System.Runtime.InteropServices.MarshalAs(global::System.Runtime.InteropServices.UnmanagedType.LPArray)]byte[] jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_VectorUnsignedChar_Swap")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_VectorUnsignedChar_Swap")] public static extern void VectorUnsignedChar_Swap(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_VectorUnsignedChar_Clear")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_VectorUnsignedChar_Clear")] public static extern void VectorUnsignedChar_Clear(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_VectorUnsignedChar_Release")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_VectorUnsignedChar_Release")] public static extern void VectorUnsignedChar_Release(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_VectorUint16Pair_BaseType_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_VectorUint16Pair_BaseType_get")] public static extern int VectorUint16Pair_BaseType_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_VectorUint16Pair__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_VectorUint16Pair__SWIG_0")] public static extern global::System.IntPtr new_VectorUint16Pair__SWIG_0(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_VectorUint16Pair")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_VectorUint16Pair")] public static extern void delete_VectorUint16Pair(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_VectorUint16Pair__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_VectorUint16Pair__SWIG_1")] public static extern global::System.IntPtr new_VectorUint16Pair__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_VectorUint16Pair_Assign")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_VectorUint16Pair_Assign")] public static extern global::System.IntPtr VectorUint16Pair_Assign(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_VectorUint16Pair_Begin")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_VectorUint16Pair_Begin")] public static extern global::System.IntPtr VectorUint16Pair_Begin(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_VectorUint16Pair_End")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_VectorUint16Pair_End")] public static extern global::System.IntPtr VectorUint16Pair_End(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_VectorUint16Pair_ValueOfIndex__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_VectorUint16Pair_ValueOfIndex__SWIG_0")] public static extern global::System.IntPtr VectorUint16Pair_ValueOfIndex__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_VectorUint16Pair_PushBack")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_VectorUint16Pair_PushBack")] public static extern void VectorUint16Pair_PushBack(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_VectorUint16Pair_Insert__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_VectorUint16Pair_Insert__SWIG_0")] public static extern void VectorUint16Pair_Insert__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_VectorUint16Pair_Insert__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_VectorUint16Pair_Insert__SWIG_1")] public static extern void VectorUint16Pair_Insert__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_VectorUint16Pair_Reserve")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_VectorUint16Pair_Reserve")] public static extern void VectorUint16Pair_Reserve(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_VectorUint16Pair_Resize__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_VectorUint16Pair_Resize__SWIG_0")] public static extern void VectorUint16Pair_Resize__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_VectorUint16Pair_Resize__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_VectorUint16Pair_Resize__SWIG_1")] public static extern void VectorUint16Pair_Resize__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_VectorUint16Pair_Erase__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_VectorUint16Pair_Erase__SWIG_0")] public static extern global::System.IntPtr VectorUint16Pair_Erase__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_VectorUint16Pair_Erase__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_VectorUint16Pair_Erase__SWIG_1")] public static extern global::System.IntPtr VectorUint16Pair_Erase__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_VectorUint16Pair_Remove")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_VectorUint16Pair_Remove")] public static extern void VectorUint16Pair_Remove(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_VectorUint16Pair_Swap")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_VectorUint16Pair_Swap")] public static extern void VectorUint16Pair_Swap(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_VectorUint16Pair_Clear")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_VectorUint16Pair_Clear")] public static extern void VectorUint16Pair_Clear(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_VectorUint16Pair_Release")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_VectorUint16Pair_Release")] public static extern void VectorUint16Pair_Release(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_VoidSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_VoidSignal")] public static extern global::System.IntPtr new_VoidSignal(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_VoidSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_VoidSignal")] public static extern void delete_VoidSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_VoidSignal_Empty")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_VoidSignal_Empty")] public static extern bool VoidSignal_Empty(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_VoidSignal_GetConnectionCount")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_VoidSignal_GetConnectionCount")] public static extern uint VoidSignal_GetConnectionCount(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_VoidSignal_Connect__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_VoidSignal_Connect__SWIG_0")] public static extern void VoidSignal_Connect__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_VoidSignal_Disconnect")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_VoidSignal_Disconnect")] public static extern void VoidSignal_Disconnect(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_VoidSignal_Connect__SWIG_4")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_VoidSignal_Connect__SWIG_4")] public static extern void VoidSignal_Connect__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_VoidSignal_Emit")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_VoidSignal_Emit")] public static extern void VoidSignal_Emit(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_BoolSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_BoolSignal")] public static extern global::System.IntPtr new_BoolSignal(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_BoolSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_BoolSignal")] public static extern void delete_BoolSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_BoolSignal_Empty")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_BoolSignal_Empty")] public static extern bool BoolSignal_Empty(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_BoolSignal_GetConnectionCount")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_BoolSignal_GetConnectionCount")] public static extern uint BoolSignal_GetConnectionCount(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_BoolSignal_Connect__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_BoolSignal_Connect__SWIG_0")] public static extern void BoolSignal_Connect__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_BoolSignal_Disconnect")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_BoolSignal_Disconnect")] public static extern void BoolSignal_Disconnect(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_BoolSignal_Connect__SWIG_4")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_BoolSignal_Connect__SWIG_4")] public static extern void BoolSignal_Connect__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_BoolSignal_Emit")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_BoolSignal_Emit")] public static extern bool BoolSignal_Emit(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_FloatSignal_Empty")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_FloatSignal_Empty")] public static extern bool FloatSignal_Empty(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_FloatSignal_GetConnectionCount")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_FloatSignal_GetConnectionCount")] public static extern uint FloatSignal_GetConnectionCount(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_FloatSignal_Connect")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_FloatSignal_Connect")] public static extern void FloatSignal_Connect(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_FloatSignal_Disconnect")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_FloatSignal_Disconnect")] public static extern void FloatSignal_Disconnect(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_FloatSignal_Emit")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_FloatSignal_Emit")] public static extern void FloatSignal_Emit(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_FloatSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_FloatSignal")] public static extern global::System.IntPtr new_FloatSignal(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_FloatSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_FloatSignal")] public static extern void delete_FloatSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ObjectCreatedSignal_Empty")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ObjectCreatedSignal_Empty")] public static extern bool ObjectCreatedSignal_Empty(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ObjectCreatedSignal_GetConnectionCount")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ObjectCreatedSignal_GetConnectionCount")] public static extern uint ObjectCreatedSignal_GetConnectionCount(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ObjectCreatedSignal_Connect")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ObjectCreatedSignal_Connect")] public static extern void ObjectCreatedSignal_Connect(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ObjectCreatedSignal_Disconnect")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ObjectCreatedSignal_Disconnect")] public static extern void ObjectCreatedSignal_Disconnect(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ObjectCreatedSignal_Emit")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ObjectCreatedSignal_Emit")] public static extern void ObjectCreatedSignal_Emit(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_ObjectCreatedSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_ObjectCreatedSignal")] public static extern global::System.IntPtr new_ObjectCreatedSignal(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_ObjectCreatedSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_ObjectCreatedSignal")] public static extern void delete_ObjectCreatedSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ObjectDestroyedSignal_Empty")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ObjectDestroyedSignal_Empty")] public static extern bool ObjectDestroyedSignal_Empty(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ObjectDestroyedSignal_GetConnectionCount")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ObjectDestroyedSignal_GetConnectionCount")] public static extern uint ObjectDestroyedSignal_GetConnectionCount(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ObjectDestroyedSignal_Connect")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ObjectDestroyedSignal_Connect")] public static extern void ObjectDestroyedSignal_Connect(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ObjectDestroyedSignal_Disconnect")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ObjectDestroyedSignal_Disconnect")] public static extern void ObjectDestroyedSignal_Disconnect(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ObjectDestroyedSignal_Emit")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ObjectDestroyedSignal_Emit")] public static extern void ObjectDestroyedSignal_Emit(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_ObjectDestroyedSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_ObjectDestroyedSignal")] public static extern global::System.IntPtr new_ObjectDestroyedSignal(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_ObjectDestroyedSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_ObjectDestroyedSignal")] public static extern void delete_ObjectDestroyedSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PropertyNotifySignal_Empty")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PropertyNotifySignal_Empty")] public static extern bool PropertyNotifySignal_Empty(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PropertyNotifySignal_GetConnectionCount")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PropertyNotifySignal_GetConnectionCount")] public static extern uint PropertyNotifySignal_GetConnectionCount(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PropertyNotifySignal_Connect")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PropertyNotifySignal_Connect")] public static extern void PropertyNotifySignal_Connect(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PropertyNotifySignal_Disconnect")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PropertyNotifySignal_Disconnect")] public static extern void PropertyNotifySignal_Disconnect(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PropertyNotifySignal_Emit")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PropertyNotifySignal_Emit")] public static extern void PropertyNotifySignal_Emit(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_PropertyNotifySignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_PropertyNotifySignal")] public static extern global::System.IntPtr new_PropertyNotifySignal(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_PropertyNotifySignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_PropertyNotifySignal")] public static extern void delete_PropertyNotifySignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ImageSignal_Empty")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ImageSignal_Empty")] public static extern bool ImageSignal_Empty(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ImageSignal_GetConnectionCount")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ImageSignal_GetConnectionCount")] public static extern uint ImageSignal_GetConnectionCount(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ImageSignal_Connect")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ImageSignal_Connect")] public static extern void ImageSignal_Connect(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ImageSignal_Disconnect")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ImageSignal_Disconnect")] public static extern void ImageSignal_Disconnect(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ImageSignal_Emit")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ImageSignal_Emit")] public static extern void ImageSignal_Emit(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_ImageSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_ImageSignal")] public static extern global::System.IntPtr new_ImageSignal(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_ImageSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_ImageSignal")] public static extern void delete_ImageSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_RenderTaskSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_RenderTaskSignal")] public static extern global::System.IntPtr new_RenderTaskSignal(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_RenderTaskSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_RenderTaskSignal")] public static extern void delete_RenderTaskSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_LongPressGestureDetectedSignal_Empty")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_LongPressGestureDetectedSignal_Empty")] public static extern bool LongPressGestureDetectedSignal_Empty(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_LongPressGestureDetectedSignal_GetConnectionCount")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_LongPressGestureDetectedSignal_GetConnectionCount")] public static extern uint LongPressGestureDetectedSignal_GetConnectionCount(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_LongPressGestureDetectedSignal_Connect")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_LongPressGestureDetectedSignal_Connect")] public static extern void LongPressGestureDetectedSignal_Connect(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_LongPressGestureDetectedSignal_Disconnect")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_LongPressGestureDetectedSignal_Disconnect")] public static extern void LongPressGestureDetectedSignal_Disconnect(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_LongPressGestureDetectedSignal_Emit")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_LongPressGestureDetectedSignal_Emit")] public static extern void LongPressGestureDetectedSignal_Emit(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_LongPressGestureDetectedSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_LongPressGestureDetectedSignal")] public static extern global::System.IntPtr new_LongPressGestureDetectedSignal(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_LongPressGestureDetectedSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_LongPressGestureDetectedSignal")] public static extern void delete_LongPressGestureDetectedSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ActorTouchDataSignal_Empty")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ActorTouchDataSignal_Empty")] public static extern bool ActorTouchDataSignal_Empty(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ActorTouchDataSignal_GetConnectionCount")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ActorTouchDataSignal_GetConnectionCount")] public static extern uint ActorTouchDataSignal_GetConnectionCount(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ActorTouchDataSignal_Connect")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ActorTouchDataSignal_Connect")] public static extern void ActorTouchDataSignal_Connect(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ActorTouchDataSignal_Disconnect")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ActorTouchDataSignal_Disconnect")] public static extern void ActorTouchDataSignal_Disconnect(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ActorTouchDataSignal_Emit")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ActorTouchDataSignal_Emit")] public static extern bool ActorTouchDataSignal_Emit(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_ActorTouchDataSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_ActorTouchDataSignal")] public static extern global::System.IntPtr new_ActorTouchDataSignal(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_ActorTouchDataSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_ActorTouchDataSignal")] public static extern void delete_ActorTouchDataSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ActorHoverEventSignal_Empty")] - public static extern bool ActorHoverEventSignal_Empty(global::System.Runtime.InteropServices.HandleRef jarg1); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ActorHoverSignal_Empty")] + public static extern bool ActorHoverSignal_Empty(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ActorHoverEventSignal_GetConnectionCount")] - public static extern uint ActorHoverEventSignal_GetConnectionCount(global::System.Runtime.InteropServices.HandleRef jarg1); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ActorHoverSignal_GetConnectionCount")] + public static extern uint ActorHoverSignal_GetConnectionCount(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ActorHoverEventSignal_Connect")] - public static extern void ActorHoverEventSignal_Connect(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ActorHoverSignal_Connect")] + public static extern void ActorHoverSignal_Connect(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ActorHoverEventSignal_Disconnect")] - public static extern void ActorHoverEventSignal_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_ActorHoverSignal_Disconnect")] + public static extern void ActorHoverSignal_Disconnect(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ActorHoverEventSignal_Emit")] - public static extern bool ActorHoverEventSignal_Emit(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ActorHoverSignal_Emit")] + public static extern bool ActorHoverSignal_Emit(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_ActorHoverEventSignal")] - public static extern global::System.IntPtr new_ActorHoverEventSignal(); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_ActorHoverSignal")] + public static extern global::System.IntPtr new_ActorHoverSignal(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_ActorHoverEventSignal")] - public static extern void delete_ActorHoverEventSignal(global::System.Runtime.InteropServices.HandleRef jarg1); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_ActorHoverSignal")] + public static extern void delete_ActorHoverSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ActorWheelEventSignal_Empty")] - public static extern bool ActorWheelEventSignal_Empty(global::System.Runtime.InteropServices.HandleRef jarg1); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ActorWheelSignal_Empty")] + public static extern bool ActorWheelSignal_Empty(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ActorWheelEventSignal_GetConnectionCount")] - public static extern uint ActorWheelEventSignal_GetConnectionCount(global::System.Runtime.InteropServices.HandleRef jarg1); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ActorWheelSignal_GetConnectionCount")] + public static extern uint ActorWheelSignal_GetConnectionCount(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ActorWheelEventSignal_Connect")] - public static extern void ActorWheelEventSignal_Connect(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ActorWheelSignal_Connect")] + public static extern void ActorWheelSignal_Connect(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ActorWheelEventSignal_Disconnect")] - public static extern void ActorWheelEventSignal_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_ActorWheelSignal_Disconnect")] + public static extern void ActorWheelSignal_Disconnect(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ActorWheelEventSignal_Emit")] - public static extern bool ActorWheelEventSignal_Emit(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ActorWheelSignal_Emit")] + public static extern bool ActorWheelSignal_Emit(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_ActorWheelEventSignal")] - public static extern global::System.IntPtr new_ActorWheelEventSignal(); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_ActorWheelSignal")] + public static extern global::System.IntPtr new_ActorWheelSignal(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_ActorWheelEventSignal")] - public static extern void delete_ActorWheelEventSignal(global::System.Runtime.InteropServices.HandleRef jarg1); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_ActorWheelSignal")] + public static extern void delete_ActorWheelSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ActorSignal_Empty")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ActorSignal_Empty")] public static extern bool ActorSignal_Empty(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ActorSignal_GetConnectionCount")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ActorSignal_GetConnectionCount")] public static extern uint ActorSignal_GetConnectionCount(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ActorSignal_Connect")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ActorSignal_Connect")] public static extern void ActorSignal_Connect(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ActorSignal_Disconnect")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ActorSignal_Disconnect")] public static extern void ActorSignal_Disconnect(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ActorSignal_Emit")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ActorSignal_Emit")] public static extern void ActorSignal_Emit(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_ActorSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_ActorSignal")] public static extern global::System.IntPtr new_ActorSignal(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_ActorSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_ActorSignal")] public static extern void delete_ActorSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_KeyEventSignal_Empty")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_KeyEventSignal_Empty")] public static extern bool KeyEventSignal_Empty(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_KeyEventSignal_GetConnectionCount")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_KeyEventSignal_GetConnectionCount")] public static extern uint KeyEventSignal_GetConnectionCount(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_KeyEventSignal_Connect")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_KeyEventSignal_Connect")] public static extern void KeyEventSignal_Connect(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_KeyEventSignal_Disconnect")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_KeyEventSignal_Disconnect")] public static extern void KeyEventSignal_Disconnect(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_KeyEventSignal_Emit")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_KeyEventSignal_Emit")] public static extern void KeyEventSignal_Emit(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_KeyEventSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_KeyEventSignal")] public static extern global::System.IntPtr new_KeyEventSignal(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_KeyEventSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_KeyEventSignal")] public static extern void delete_KeyEventSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TouchSignal_Empty")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TouchSignal_Empty")] public static extern bool TouchSignal_Empty(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TouchSignal_GetConnectionCount")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TouchSignal_GetConnectionCount")] public static extern uint TouchSignal_GetConnectionCount(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TouchSignal_Connect")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TouchSignal_Connect")] public static extern void TouchSignal_Connect(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TouchSignal_Disconnect")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TouchSignal_Disconnect")] public static extern void TouchSignal_Disconnect(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TouchSignal_Emit")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TouchSignal_Emit")] public static extern void TouchSignal_Emit(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_TouchSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_TouchSignal")] public static extern global::System.IntPtr new_TouchSignal(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_TouchSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_TouchSignal")] public static extern void delete_TouchSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_StageWheelEventSignal_Empty")] - public static extern bool StageWheelEventSignal_Empty(global::System.Runtime.InteropServices.HandleRef jarg1); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_StageWheelSignal_Empty")] + public static extern bool StageWheelSignal_Empty(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_StageWheelEventSignal_GetConnectionCount")] - public static extern uint StageWheelEventSignal_GetConnectionCount(global::System.Runtime.InteropServices.HandleRef jarg1); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_StageWheelSignal_GetConnectionCount")] + public static extern uint StageWheelSignal_GetConnectionCount(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_StageWheelEventSignal_Connect")] - public static extern void StageWheelEventSignal_Connect(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_StageWheelSignal_Connect")] + public static extern void StageWheelSignal_Connect(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_StageWheelEventSignal_Disconnect")] - public static extern void StageWheelEventSignal_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_StageWheelSignal_Disconnect")] + public static extern void StageWheelSignal_Disconnect(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_StageWheelEventSignal_Emit")] - public static extern void StageWheelEventSignal_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_StageWheelSignal_Emit")] + public static extern void StageWheelSignal_Emit(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_StageWheelEventSignal")] - public static extern global::System.IntPtr new_StageWheelEventSignal(); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_StageWheelSignal")] + public static extern global::System.IntPtr new_StageWheelSignal(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_StageWheelEventSignal")] - public static extern void delete_StageWheelEventSignal(global::System.Runtime.InteropServices.HandleRef jarg1); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_StageWheelSignal")] + public static extern void delete_StageWheelSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_AngleThresholdPair__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_AngleThresholdPair__SWIG_0")] public static extern global::System.IntPtr new_AngleThresholdPair__SWIG_0(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_AngleThresholdPair__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_AngleThresholdPair__SWIG_1")] public static extern global::System.IntPtr new_AngleThresholdPair__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_AngleThresholdPair__SWIG_2")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_AngleThresholdPair__SWIG_2")] public static extern global::System.IntPtr new_AngleThresholdPair__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_AngleThresholdPair_first_set")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_AngleThresholdPair_first_set")] public static extern void AngleThresholdPair_first_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_AngleThresholdPair_first_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_AngleThresholdPair_first_get")] public static extern global::System.IntPtr AngleThresholdPair_first_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_AngleThresholdPair_second_set")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_AngleThresholdPair_second_set")] public static extern void AngleThresholdPair_second_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_AngleThresholdPair_second_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_AngleThresholdPair_second_get")] public static extern global::System.IntPtr AngleThresholdPair_second_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_AngleThresholdPair")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_AngleThresholdPair")] public static extern void delete_AngleThresholdPair(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PanGestureDetectedSignal_Empty")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PanGestureDetectedSignal_Empty")] public static extern bool PanGestureDetectedSignal_Empty(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PanGestureDetectedSignal_GetConnectionCount")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PanGestureDetectedSignal_GetConnectionCount")] public static extern uint PanGestureDetectedSignal_GetConnectionCount(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PanGestureDetectedSignal_Connect")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PanGestureDetectedSignal_Connect")] public static extern void PanGestureDetectedSignal_Connect(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PanGestureDetectedSignal_Disconnect")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PanGestureDetectedSignal_Disconnect")] public static extern void PanGestureDetectedSignal_Disconnect(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PanGestureDetectedSignal_Emit")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PanGestureDetectedSignal_Emit")] public static extern void PanGestureDetectedSignal_Emit(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_PanGestureDetectedSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_PanGestureDetectedSignal")] public static extern global::System.IntPtr new_PanGestureDetectedSignal(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_PanGestureDetectedSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_PanGestureDetectedSignal")] public static extern void delete_PanGestureDetectedSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PinchGestureDetectedSignal_Empty")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PinchGestureDetectedSignal_Empty")] public static extern bool PinchGestureDetectedSignal_Empty(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PinchGestureDetectedSignal_GetConnectionCount")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PinchGestureDetectedSignal_GetConnectionCount")] public static extern uint PinchGestureDetectedSignal_GetConnectionCount(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PinchGestureDetectedSignal_Connect")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PinchGestureDetectedSignal_Connect")] public static extern void PinchGestureDetectedSignal_Connect(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PinchGestureDetectedSignal_Disconnect")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PinchGestureDetectedSignal_Disconnect")] public static extern void PinchGestureDetectedSignal_Disconnect(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PinchGestureDetectedSignal_Emit")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PinchGestureDetectedSignal_Emit")] public static extern void PinchGestureDetectedSignal_Emit(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_PinchGestureDetectedSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_PinchGestureDetectedSignal")] public static extern global::System.IntPtr new_PinchGestureDetectedSignal(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_PinchGestureDetectedSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_PinchGestureDetectedSignal")] public static extern void delete_PinchGestureDetectedSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TapGestureDetectedSignal_Empty")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TapGestureDetectedSignal_Empty")] public static extern bool TapGestureDetectedSignal_Empty(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TapGestureDetectedSignal_GetConnectionCount")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TapGestureDetectedSignal_GetConnectionCount")] public static extern uint TapGestureDetectedSignal_GetConnectionCount(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TapGestureDetectedSignal_Connect")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TapGestureDetectedSignal_Connect")] public static extern void TapGestureDetectedSignal_Connect(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TapGestureDetectedSignal_Disconnect")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TapGestureDetectedSignal_Disconnect")] public static extern void TapGestureDetectedSignal_Disconnect(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TapGestureDetectedSignal_Emit")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TapGestureDetectedSignal_Emit")] public static extern void TapGestureDetectedSignal_Emit(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_TapGestureDetectedSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_TapGestureDetectedSignal")] public static extern global::System.IntPtr new_TapGestureDetectedSignal(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_TapGestureDetectedSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_TapGestureDetectedSignal")] public static extern void delete_TapGestureDetectedSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_AnimationSignal_Empty")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_AnimationSignal_Empty")] public static extern bool AnimationSignal_Empty(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_AnimationSignal_GetConnectionCount")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_AnimationSignal_GetConnectionCount")] public static extern uint AnimationSignal_GetConnectionCount(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_AnimationSignal_Connect")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_AnimationSignal_Connect")] public static extern void AnimationSignal_Connect(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_AnimationSignal_Disconnect")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_AnimationSignal_Disconnect")] public static extern void AnimationSignal_Disconnect(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_AnimationSignal_Emit")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_AnimationSignal_Emit")] public static extern void AnimationSignal_Emit(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_AnimationSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_AnimationSignal")] public static extern global::System.IntPtr new_AnimationSignal(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_AnimationSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_AnimationSignal")] public static extern void delete_AnimationSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ResourceImageSignal_Empty")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ResourceImageSignal_Empty")] public static extern bool ResourceImageSignal_Empty(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ResourceImageSignal_GetConnectionCount")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ResourceImageSignal_GetConnectionCount")] public static extern uint ResourceImageSignal_GetConnectionCount(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ResourceImageSignal_Connect")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ResourceImageSignal_Connect")] public static extern void ResourceImageSignal_Connect(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ResourceImageSignal_Disconnect")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ResourceImageSignal_Disconnect")] public static extern void ResourceImageSignal_Disconnect(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ResourceImageSignal_Emit")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ResourceImageSignal_Emit")] public static extern void ResourceImageSignal_Emit(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_ResourceImageSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_ResourceImageSignal")] public static extern global::System.IntPtr new_ResourceImageSignal(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_ResourceImageSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_ResourceImageSignal")] public static extern void delete_ResourceImageSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_Timer__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Timer__SWIG_0")] public static extern global::System.IntPtr new_Timer__SWIG_0(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Timer_New")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Timer_New")] public static extern global::System.IntPtr Timer_New(uint jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_Timer__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Timer__SWIG_1")] public static extern global::System.IntPtr new_Timer__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Timer_Assign")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Timer_Assign")] public static extern global::System.IntPtr Timer_Assign(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_Timer")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_Timer")] public static extern void delete_Timer(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Timer_DownCast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Timer_DownCast")] public static extern global::System.IntPtr Timer_DownCast(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Timer_Start")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Timer_Start")] public static extern void Timer_Start(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Timer_Stop")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Timer_Stop")] public static extern void Timer_Stop(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Timer_SetInterval")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Timer_SetInterval")] public static extern void Timer_SetInterval(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Timer_GetInterval")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Timer_GetInterval")] public static extern uint Timer_GetInterval(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Timer_IsRunning")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Timer_IsRunning")] public static extern bool Timer_IsRunning(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Timer_TickSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Timer_TickSignal")] public static extern global::System.IntPtr Timer_TickSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_DragAndDropDetector")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_DragAndDropDetector")] public static extern global::System.IntPtr new_DragAndDropDetector(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_DragAndDropDetector")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_DragAndDropDetector")] public static extern void delete_DragAndDropDetector(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_DragAndDropDetector_GetContent")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_DragAndDropDetector_GetContent")] public static extern string DragAndDropDetector_GetContent(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_DragAndDropDetector_GetCurrentScreenPosition")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_DragAndDropDetector_GetCurrentScreenPosition")] public static extern global::System.IntPtr DragAndDropDetector_GetCurrentScreenPosition(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_DragAndDropDetector_EnteredSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_DragAndDropDetector_EnteredSignal")] public static extern global::System.IntPtr DragAndDropDetector_EnteredSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_DragAndDropDetector_ExitedSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_DragAndDropDetector_ExitedSignal")] public static extern global::System.IntPtr DragAndDropDetector_ExitedSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_DragAndDropDetector_MovedSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_DragAndDropDetector_MovedSignal")] public static extern global::System.IntPtr DragAndDropDetector_MovedSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_DragAndDropDetector_DroppedSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_DragAndDropDetector_DroppedSignal")] public static extern global::System.IntPtr DragAndDropDetector_DroppedSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_ApplicationExtensions__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_ApplicationExtensions__SWIG_0")] public static extern global::System.IntPtr new_ApplicationExtensions__SWIG_0(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_ApplicationExtensions__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_ApplicationExtensions__SWIG_1")] public static extern global::System.IntPtr new_ApplicationExtensions__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_ApplicationExtensions")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_ApplicationExtensions")] public static extern void delete_ApplicationExtensions(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ApplicationExtensions_Init")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ApplicationExtensions_Init")] public static extern void ApplicationExtensions_Init(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ApplicationExtensions_Terminate")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ApplicationExtensions_Terminate")] public static extern void ApplicationExtensions_Terminate(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ApplicationExtensions_Pause")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ApplicationExtensions_Pause")] public static extern void ApplicationExtensions_Pause(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ApplicationExtensions_Resume")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ApplicationExtensions_Resume")] public static extern void ApplicationExtensions_Resume(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ApplicationExtensions_LanguageChange")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ApplicationExtensions_LanguageChange")] public static extern void ApplicationExtensions_LanguageChange(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Window_New__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Window_New__SWIG_0")] public static extern global::System.IntPtr Window_New__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, bool jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Window_New__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Window_New__SWIG_1")] public static extern global::System.IntPtr Window_New__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Window_New__SWIG_2")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Window_New__SWIG_2")] public static extern global::System.IntPtr Window_New__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3, bool jarg4); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Window_New__SWIG_3")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Window_New__SWIG_3")] public static extern global::System.IntPtr Window_New__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_Window__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Window__SWIG_0")] public static extern global::System.IntPtr new_Window__SWIG_0(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_Window")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_Window")] public static extern void delete_Window(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_Window__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Window__SWIG_1")] public static extern global::System.IntPtr new_Window__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Window_Assign")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Window_Assign")] public static extern global::System.IntPtr Window_Assign(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Window_ShowIndicator")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Window_ShowIndicator")] public static extern void Window_ShowIndicator(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Window_SetIndicatorBgOpacity")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Window_SetIndicatorBgOpacity")] public static extern void Window_SetIndicatorBgOpacity(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Window_RotateIndicator")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Window_RotateIndicator")] public static extern void Window_RotateIndicator(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Window_SetClass")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Window_SetClass")] public static extern void Window_SetClass(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, string jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Window_Raise")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Window_Raise")] public static extern void Window_Raise(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Window_Lower")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Window_Lower")] public static extern void Window_Lower(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Window_Activate")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Window_Activate")] public static extern void Window_Activate(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Window_AddAvailableOrientation")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Window_AddAvailableOrientation")] public static extern void Window_AddAvailableOrientation(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Window_RemoveAvailableOrientation")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Window_RemoveAvailableOrientation")] public static extern void Window_RemoveAvailableOrientation(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Window_SetPreferredOrientation")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Window_SetPreferredOrientation")] public static extern void Window_SetPreferredOrientation(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Window_GetPreferredOrientation")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Window_GetPreferredOrientation")] public static extern int Window_GetPreferredOrientation(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Window_GetDragAndDropDetector")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Window_GetDragAndDropDetector")] public static extern global::System.IntPtr Window_GetDragAndDropDetector(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Window_GetNativeHandle")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Window_GetNativeHandle")] public static extern global::System.IntPtr Window_GetNativeHandle(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Window_IndicatorVisibilityChangedSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Window_IndicatorVisibilityChangedSignal")] public static extern global::System.IntPtr Window_IndicatorVisibilityChangedSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Application_New__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Application_New__SWIG_0")] public static extern global::System.IntPtr Application_New__SWIG_0(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Application_New__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Application_New__SWIG_1")] public static extern global::System.IntPtr Application_New__SWIG_1(int jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Application_New__SWIG_2")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Application_New__SWIG_2")] public static extern global::System.IntPtr Application_New__SWIG_2(int jarg1, string jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Application_New__SWIG_3")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Application_New__SWIG_3")] public static extern global::System.IntPtr Application_New__SWIG_3(int jarg1, string jarg3, int jarg4); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_Application__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Application__SWIG_0")] public static extern global::System.IntPtr new_Application__SWIG_0(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_Application__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Application__SWIG_1")] public static extern global::System.IntPtr new_Application__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Application_Assign")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Application_Assign")] public static extern global::System.IntPtr Application_Assign(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_Application")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_Application")] public static extern void delete_Application(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Application_MainLoop__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Application_MainLoop__SWIG_0")] public static extern void Application_MainLoop__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Application_MainLoop__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Application_MainLoop__SWIG_1")] public static extern void Application_MainLoop__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Application_Lower")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Application_Lower")] public static extern void Application_Lower(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Application_Quit")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Application_Quit")] public static extern void Application_Quit(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Application_AddIdle")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Application_AddIdle")] public static extern bool Application_AddIdle(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Application_GetWindow")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Application_GetWindow")] public static extern global::System.IntPtr Application_GetWindow(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Application_ReplaceWindow")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Application_ReplaceWindow")] public static extern void Application_ReplaceWindow(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, string jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Application_GetResourcePath")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Application_GetResourcePath")] public static extern string Application_GetResourcePath(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Application_SetViewMode")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Application_SetViewMode")] public static extern void Application_SetViewMode(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Application_GetViewMode")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Application_GetViewMode")] public static extern int Application_GetViewMode(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Application_SetStereoBase")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Application_SetStereoBase")] public static extern void Application_SetStereoBase(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Application_GetStereoBase")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Application_GetStereoBase")] public static extern float Application_GetStereoBase(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Application_InitSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Application_InitSignal")] public static extern global::System.IntPtr Application_InitSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Application_TerminateSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Application_TerminateSignal")] public static extern global::System.IntPtr Application_TerminateSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Application_PauseSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Application_PauseSignal")] public static extern global::System.IntPtr Application_PauseSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Application_ResumeSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Application_ResumeSignal")] public static extern global::System.IntPtr Application_ResumeSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Application_ResetSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Application_ResetSignal")] public static extern global::System.IntPtr Application_ResetSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Application_ResizeSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Application_ResizeSignal")] public static extern global::System.IntPtr Application_ResizeSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Application_AppControlSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Application_AppControlSignal")] public static extern global::System.IntPtr Application_AppControlSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Application_LanguageChangedSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Application_LanguageChangedSignal")] public static extern global::System.IntPtr Application_LanguageChangedSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Application_RegionChangedSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Application_RegionChangedSignal")] public static extern global::System.IntPtr Application_RegionChangedSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Application_BatteryLowSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Application_BatteryLowSignal")] public static extern global::System.IntPtr Application_BatteryLowSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Application_MemoryLowSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Application_MemoryLowSignal")] public static extern global::System.IntPtr Application_MemoryLowSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ApplicationSignal_Empty")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ApplicationSignal_Empty")] public static extern bool ApplicationSignal_Empty(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ApplicationSignal_GetConnectionCount")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ApplicationSignal_GetConnectionCount")] public static extern uint ApplicationSignal_GetConnectionCount(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ApplicationSignal_Connect")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ApplicationSignal_Connect")] public static extern void ApplicationSignal_Connect(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ApplicationSignal_Disconnect")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ApplicationSignal_Disconnect")] public static extern void ApplicationSignal_Disconnect(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ApplicationSignal_Emit")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ApplicationSignal_Emit")] public static extern void ApplicationSignal_Emit(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_ApplicationSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_ApplicationSignal")] public static extern global::System.IntPtr new_ApplicationSignal(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_ApplicationSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_ApplicationSignal")] public static extern void delete_ApplicationSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ApplicationControlSignal_Empty")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ApplicationControlSignal_Empty")] public static extern bool ApplicationControlSignal_Empty(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ApplicationControlSignal_GetConnectionCount")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ApplicationControlSignal_GetConnectionCount")] public static extern uint ApplicationControlSignal_GetConnectionCount(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ApplicationControlSignal_Connect")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ApplicationControlSignal_Connect")] public static extern void ApplicationControlSignal_Connect(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ApplicationControlSignal_Disconnect")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ApplicationControlSignal_Disconnect")] public static extern void ApplicationControlSignal_Disconnect(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ApplicationControlSignal_Emit")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ApplicationControlSignal_Emit")] public static extern void ApplicationControlSignal_Emit(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, System.IntPtr jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_ApplicationControlSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_ApplicationControlSignal")] public static extern global::System.IntPtr new_ApplicationControlSignal(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_ApplicationControlSignal")] + [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("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_TimerSignalType")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_TimerSignalType")] public static extern global::System.IntPtr new_TimerSignalType(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_TimerSignalType")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_TimerSignalType")] public static extern void delete_TimerSignalType(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TimerSignalType_Empty")] + [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); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TimerSignalType_GetConnectionCount")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TimerSignalType_GetConnectionCount")] public static extern uint TimerSignalType_GetConnectionCount(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TimerSignalType_Connect__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TimerSignalType_Connect__SWIG_0")] public static extern void TimerSignalType_Connect__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TimerSignalType_Disconnect")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TimerSignalType_Disconnect")] public static extern void TimerSignalType_Disconnect(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TimerSignalType_Connect__SWIG_4")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TimerSignalType_Connect__SWIG_4")] public static extern void TimerSignalType_Connect__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TimerSignalType_Emit")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TimerSignalType_Emit")] public static extern bool TimerSignalType_Emit(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_VISUAL_PROPERTY_TYPE_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_VISUAL_PROPERTY_TYPE_get")] public static extern int VISUAL_PROPERTY_TYPE_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_VISUAL_PROPERTY_SHADER_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_VISUAL_PROPERTY_SHADER_get")] public static extern int VISUAL_PROPERTY_SHADER_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_VERTEX_SHADER_get")] - public static extern int VERTEX_SHADER_get(); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_VISUAL_SHADER_VERTEX_get")] + public static extern int VISUAL_SHADER_VERTEX_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_FRAGMENT_SHADER_get")] - public static extern int FRAGMENT_SHADER_get(); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_VISUAL_SHADER_FRAGMENT_get")] + public static extern int VISUAL_SHADER_FRAGMENT_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_SUBDIVIDE_GRID_X_get")] - public static extern int SUBDIVIDE_GRID_X_get(); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_VISUAL_SHADER_SUBDIVIDE_GRID_X_get")] + public static extern int VISUAL_SHADER_SUBDIVIDE_GRID_X_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_SUBDIVIDE_GRID_Y_get")] - public static extern int SUBDIVIDE_GRID_Y_get(); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_VISUAL_SHADER_SUBDIVIDE_GRID_Y_get")] + public static extern int VISUAL_SHADER_SUBDIVIDE_GRID_Y_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_HINTS_get")] - public static extern int HINTS_get(); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_VISUAL_SHADER_HINTS_get")] + public static extern int VISUAL_SHADER_HINTS_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_COLOR_get")] - public static extern int COLOR_get(); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_BORDER_VISUAL_COLOR_get")] + public static extern int BORDER_VISUAL_COLOR_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_SIZE_get")] - public static extern int SIZE_get(); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_BORDER_VISUAL_SIZE_get")] + public static extern int BORDER_VISUAL_SIZE_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ANTI_ALIASING_get")] - public static extern int ANTI_ALIASING_get(); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_BORDER_VISUAL_ANTI_ALIASING_get")] + public static extern int BORDER_VISUAL_ANTI_ALIASING_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_MIX_COLOR_get")] - public static extern int MIX_COLOR_get(); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_COLOR_VISUAL_MIX_COLOR_get")] + public static extern int COLOR_VISUAL_MIX_COLOR_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_START_POSITION_get")] - public static extern int START_POSITION_get(); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_GRADIENT_VISUAL_START_POSITION_get")] + public static extern int GRADIENT_VISUAL_START_POSITION_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_END_POSITION_get")] - public static extern int END_POSITION_get(); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_GRADIENT_VISUAL_END_POSITION_get")] + public static extern int GRADIENT_VISUAL_END_POSITION_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_CENTER_get")] - public static extern int CENTER_get(); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_GRADIENT_VISUAL_CENTER_get")] + public static extern int GRADIENT_VISUAL_CENTER_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RADIUS_get")] - public static extern int RADIUS_get(); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_GRADIENT_VISUAL_RADIUS_get")] + public static extern int GRADIENT_VISUAL_RADIUS_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_STOP_OFFSET_get")] - public static extern int STOP_OFFSET_get(); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_GRADIENT_VISUAL_STOP_OFFSET_get")] + public static extern int GRADIENT_VISUAL_STOP_OFFSET_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_STOP_COLOR_get")] - public static extern int STOP_COLOR_get(); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_GRADIENT_VISUAL_STOP_COLOR_get")] + public static extern int GRADIENT_VISUAL_STOP_COLOR_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_UNITS_get")] - public static extern int UNITS_get(); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_GRADIENT_VISUAL_UNITS_get")] + public static extern int GRADIENT_VISUAL_UNITS_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_SPREAD_METHOD_get")] - public static extern int SPREAD_METHOD_get(); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_GRADIENT_VISUAL_SPREAD_METHOD_get")] + public static extern int GRADIENT_VISUAL_SPREAD_METHOD_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_IMAGE_VISUAL_URL_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_IMAGE_VISUAL_URL_get")] public static extern int IMAGE_VISUAL_URL_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_IMAGE_VISUAL_FITTING_MODE_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_IMAGE_VISUAL_FITTING_MODE_get")] public static extern int IMAGE_VISUAL_FITTING_MODE_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_IMAGE_VISUAL_SAMPLING_MODE_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_IMAGE_VISUAL_SAMPLING_MODE_get")] public static extern int IMAGE_VISUAL_SAMPLING_MODE_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_IMAGE_VISUAL_DESIRED_WIDTH_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_IMAGE_VISUAL_DESIRED_WIDTH_get")] public static extern int IMAGE_VISUAL_DESIRED_WIDTH_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_IMAGE_VISUAL_DESIRED_HEIGHT_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_IMAGE_VISUAL_DESIRED_HEIGHT_get")] public static extern int IMAGE_VISUAL_DESIRED_HEIGHT_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_IMAGE_VISUAL_SYNCHRONOUS_LOADING_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_IMAGE_VISUAL_SYNCHRONOUS_LOADING_get")] public static extern int IMAGE_VISUAL_SYNCHRONOUS_LOADING_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_IMAGE_VISUAL_BORDER_ONLY_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_IMAGE_VISUAL_BORDER_ONLY_get")] public static extern int IMAGE_VISUAL_BORDER_ONLY_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_IMAGE_VISUAL_BATCHING_ENABLED_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_IMAGE_VISUAL_BATCHING_ENABLED_get")] public static extern int IMAGE_VISUAL_BATCHING_ENABLED_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_IMAGE_VISUAL_PIXEL_AREA_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_IMAGE_VISUAL_PIXEL_AREA_get")] public static extern int IMAGE_VISUAL_PIXEL_AREA_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_IMAGE_VISUAL_WRAP_MODE_U_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_IMAGE_VISUAL_WRAP_MODE_U_get")] public static extern int IMAGE_VISUAL_WRAP_MODE_U_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_IMAGE_VISUAL_WRAP_MODE_V_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_IMAGE_VISUAL_WRAP_MODE_V_get")] public static extern int IMAGE_VISUAL_WRAP_MODE_V_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_OBJECT_URL_get")] - public static extern int OBJECT_URL_get(); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_MESH_VISUAL_OBJECT_URL_get")] + public static extern int MESH_VISUAL_OBJECT_URL_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_MATERIAL_URL_get")] - public static extern int MATERIAL_URL_get(); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_MESH_VISUAL_MATERIAL_URL_get")] + public static extern int MESH_VISUAL_MATERIAL_URL_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TEXTURES_PATH_get")] - public static extern int TEXTURES_PATH_get(); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_MESH_VISUAL_TEXTURES_PATH_get")] + public static extern int MESH_VISUAL_TEXTURES_PATH_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_SHADING_MODE_get")] - public static extern int SHADING_MODE_get(); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_MESH_VISUAL_SHADING_MODE_get")] + public static extern int MESH_VISUAL_SHADING_MODE_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_USE_MIPMAPPING_get")] - public static extern int USE_MIPMAPPING_get(); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_MESH_VISUAL_USE_MIPMAPPING_get")] + public static extern int MESH_VISUAL_USE_MIPMAPPING_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_USE_SOFT_NORMALS_get")] - public static extern int USE_SOFT_NORMALS_get(); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_MESH_VISUAL_USE_SOFT_NORMALS_get")] + public static extern int MESH_VISUAL_USE_SOFT_NORMALS_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_LIGHT_POSITION_get")] - public static extern int LIGHT_POSITION_get(); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_MESH_VISUAL_LIGHT_POSITION_get")] + public static extern int MESH_VISUAL_LIGHT_POSITION_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_SHAPE_get")] - public static extern int SHAPE_get(); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PRIMITIVE_VISUAL_SHAPE_get")] + public static extern int PRIMITIVE_VISUAL_SHAPE_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PRIMITIVE_VISUAL_MIX_COLOR_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PRIMITIVE_VISUAL_MIX_COLOR_get")] public static extern int PRIMITIVE_VISUAL_MIX_COLOR_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_SLICES_get")] - public static extern int SLICES_get(); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PRIMITIVE_VISUAL_SLICES_get")] + public static extern int PRIMITIVE_VISUAL_SLICES_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_STACKS_get")] - public static extern int STACKS_get(); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PRIMITIVE_VISUAL_STACKS_get")] + public static extern int PRIMITIVE_VISUAL_STACKS_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_SCALE_TOP_RADIUS_get")] - public static extern int SCALE_TOP_RADIUS_get(); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PRIMITIVE_VISUAL_SCALE_TOP_RADIUS_get")] + public static extern int PRIMITIVE_VISUAL_SCALE_TOP_RADIUS_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_SCALE_BOTTOM_RADIUS_get")] - public static extern int SCALE_BOTTOM_RADIUS_get(); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PRIMITIVE_VISUAL_SCALE_BOTTOM_RADIUS_get")] + public static extern int PRIMITIVE_VISUAL_SCALE_BOTTOM_RADIUS_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_SCALE_HEIGHT_get")] - public static extern int SCALE_HEIGHT_get(); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PRIMITIVE_VISUAL_SCALE_HEIGHT_get")] + public static extern int PRIMITIVE_VISUAL_SCALE_HEIGHT_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_SCALE_RADIUS_get")] - public static extern int SCALE_RADIUS_get(); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PRIMITIVE_VISUAL_SCALE_RADIUS_get")] + public static extern int PRIMITIVE_VISUAL_SCALE_RADIUS_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_SCALE_DIMENSIONS_get")] - public static extern int SCALE_DIMENSIONS_get(); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PRIMITIVE_VISUAL_SCALE_DIMENSIONS_get")] + public static extern int PRIMITIVE_VISUAL_SCALE_DIMENSIONS_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_BEVEL_PERCENTAGE_get")] - public static extern int BEVEL_PERCENTAGE_get(); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PRIMITIVE_VISUAL_BEVEL_PERCENTAGE_get")] + public static extern int PRIMITIVE_VISUAL_BEVEL_PERCENTAGE_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_BEVEL_SMOOTHNESS_get")] - public static extern int BEVEL_SMOOTHNESS_get(); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PRIMITIVE_VISUAL_BEVEL_SMOOTHNESS_get")] + public static extern int PRIMITIVE_VISUAL_BEVEL_SMOOTHNESS_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PRIMITIVE_VISUAL_LIGHT_POSITION_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PRIMITIVE_VISUAL_LIGHT_POSITION_get")] public static extern int PRIMITIVE_VISUAL_LIGHT_POSITION_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TEXT_get")] - public static extern int TEXT_get(); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TEXT_VISUAL_TEXT_get")] + public static extern int TEXT_VISUAL_TEXT_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_FONT_FAMILY_get")] - public static extern int FONT_FAMILY_get(); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TEXT_VISUAL_FONT_FAMILY_get")] + public static extern int TEXT_VISUAL_FONT_FAMILY_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_FONT_STYLE_get")] - public static extern int FONT_STYLE_get(); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TEXT_VISUAL_FONT_STYLE_get")] + public static extern int TEXT_VISUAL_FONT_STYLE_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_POINT_SIZE_get")] - public static extern int POINT_SIZE_get(); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TEXT_VISUAL_POINT_SIZE_get")] + public static extern int TEXT_VISUAL_POINT_SIZE_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_MULTI_LINE_get")] - public static extern int MULTI_LINE_get(); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TEXT_VISUAL_MULTI_LINE_get")] + public static extern int TEXT_VISUAL_MULTI_LINE_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_HORIZONTAL_ALIGNMENT_get")] - public static extern int HORIZONTAL_ALIGNMENT_get(); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TEXT_VISUAL_HORIZONTAL_ALIGNMENT_get")] + public static extern int TEXT_VISUAL_HORIZONTAL_ALIGNMENT_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_VERTICAL_ALIGNMENT_get")] - public static extern int VERTICAL_ALIGNMENT_get(); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TEXT_VISUAL_VERTICAL_ALIGNMENT_get")] + public static extern int TEXT_VISUAL_VERTICAL_ALIGNMENT_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TEXT_COLOR_get")] - public static extern int TEXT_COLOR_get(); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TEXT_VISUAL_TEXT_COLOR_get")] + public static extern int TEXT_VISUAL_TEXT_COLOR_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ENABLE_MARKUP_get")] - public static extern int ENABLE_MARKUP_get(); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TEXT_VISUAL_ENABLE_MARKUP_get")] + public static extern int TEXT_VISUAL_ENABLE_MARKUP_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_Builder")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Builder")] public static extern global::System.IntPtr new_Builder(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Builder_New")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Builder_New")] public static extern global::System.IntPtr Builder_New(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_Builder")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_Builder")] public static extern void delete_Builder(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Builder_LoadFromString__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Builder_LoadFromString__SWIG_0")] public static extern void Builder_LoadFromString__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, int jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Builder_LoadFromString__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Builder_LoadFromString__SWIG_1")] public static extern void Builder_LoadFromString__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Builder_AddConstants")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Builder_AddConstants")] public static extern void Builder_AddConstants(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Builder_AddConstant")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Builder_AddConstant")] public static extern void Builder_AddConstant(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Builder_GetConstants")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Builder_GetConstants")] public static extern global::System.IntPtr Builder_GetConstants(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Builder_GetConstant")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Builder_GetConstant")] public static extern global::System.IntPtr Builder_GetConstant(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Builder_CreateAnimation__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Builder_CreateAnimation__SWIG_0")] public static extern global::System.IntPtr Builder_CreateAnimation__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Builder_CreateAnimation__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Builder_CreateAnimation__SWIG_1")] public static extern global::System.IntPtr Builder_CreateAnimation__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Builder_CreateAnimation__SWIG_2")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Builder_CreateAnimation__SWIG_2")] public static extern global::System.IntPtr Builder_CreateAnimation__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Builder_CreateAnimation__SWIG_3")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Builder_CreateAnimation__SWIG_3")] public static extern global::System.IntPtr Builder_CreateAnimation__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Builder_Create__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Builder_Create__SWIG_0")] public static extern global::System.IntPtr Builder_Create__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Builder_Create__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Builder_Create__SWIG_1")] public static extern global::System.IntPtr Builder_Create__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Builder_CreateFromJson")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Builder_CreateFromJson")] public static extern global::System.IntPtr Builder_CreateFromJson(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Builder_ApplyStyle")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Builder_ApplyStyle")] public static extern bool Builder_ApplyStyle(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Builder_ApplyFromJson")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Builder_ApplyFromJson")] public static extern bool Builder_ApplyFromJson(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, string jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Builder_AddActors__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Builder_AddActors__SWIG_0")] public static extern void Builder_AddActors__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Builder_AddActors__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Builder_AddActors__SWIG_1")] public static extern void Builder_AddActors__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Builder_CreateRenderTask")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Builder_CreateRenderTask")] public static extern void Builder_CreateRenderTask(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Builder_GetFrameBufferImage")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Builder_GetFrameBufferImage")] public static extern global::System.IntPtr Builder_GetFrameBufferImage(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Builder_GetPath")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Builder_GetPath")] public static extern global::System.IntPtr Builder_GetPath(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Builder_GetPathConstrainer")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Builder_GetPathConstrainer")] public static extern global::System.IntPtr Builder_GetPathConstrainer(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Builder_GetLinearConstrainer")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Builder_GetLinearConstrainer")] public static extern global::System.IntPtr Builder_GetLinearConstrainer(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Builder_QuitSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Builder_QuitSignal")] public static extern global::System.IntPtr Builder_QuitSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_TransitionData__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_TransitionData__SWIG_0")] public static extern global::System.IntPtr new_TransitionData__SWIG_0(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_TransitionData")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_TransitionData")] public static extern void delete_TransitionData(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TransitionData_New__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TransitionData_New__SWIG_0")] public static extern global::System.IntPtr TransitionData_New__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TransitionData_New__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TransitionData_New__SWIG_1")] public static extern global::System.IntPtr TransitionData_New__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TransitionData_DownCast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TransitionData_DownCast")] public static extern global::System.IntPtr TransitionData_DownCast(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_TransitionData__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_TransitionData__SWIG_1")] public static extern global::System.IntPtr new_TransitionData__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TransitionData_Assign")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TransitionData_Assign")] public static extern global::System.IntPtr TransitionData_Assign(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TransitionData_Count")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TransitionData_Count")] public static extern uint TransitionData_Count(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TransitionData_GetAnimatorAt")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TransitionData_GetAnimatorAt")] public static extern global::System.IntPtr TransitionData_GetAnimatorAt(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_TransitionData__SWIG_2")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_TransitionData__SWIG_2")] public static extern global::System.IntPtr new_TransitionData__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ViewImpl_New")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TOOLTIP_CONTENT_get")] + public static extern int TOOLTIP_CONTENT_get(); + + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TOOLTIP_LAYOUT_get")] + public static extern int TOOLTIP_LAYOUT_get(); + + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TOOLTIP_WAIT_TIME_get")] + public static extern int TOOLTIP_WAIT_TIME_get(); + + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TOOLTIP_BACKGROUND_get")] + public static extern int TOOLTIP_BACKGROUND_get(); + + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TOOLTIP_TAIL_get")] + public static extern int TOOLTIP_TAIL_get(); + + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TOOLTIP_POSITION_get")] + public static extern int TOOLTIP_POSITION_get(); + + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TOOLTIP_HOVER_POINT_OFFSET_get")] + public static extern int TOOLTIP_HOVER_POINT_OFFSET_get(); + + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TOOLTIP_MOVEMENT_THRESHOLD_get")] + public static extern int TOOLTIP_MOVEMENT_THRESHOLD_get(); + + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TOOLTIP_DISAPPEAR_ON_MOVEMENT_get")] + public static extern int TOOLTIP_DISAPPEAR_ON_MOVEMENT_get(); + + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TOOLTIP_BACKGROUND_VISUAL_get")] + public static extern int TOOLTIP_BACKGROUND_VISUAL_get(); + + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TOOLTIP_BACKGROUND_BORDER_get")] + public static extern int TOOLTIP_BACKGROUND_BORDER_get(); + + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TOOLTIP_TAIL_VISIBILITY_get")] + public static extern int TOOLTIP_TAIL_VISIBILITY_get(); + + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TOOLTIP_TAIL_ABOVE_VISUAL_get")] + public static extern int TOOLTIP_TAIL_ABOVE_VISUAL_get(); + + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TOOLTIP_TAIL_BELOW_VISUAL_get")] + public static extern int TOOLTIP_TAIL_BELOW_VISUAL_get(); + + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ViewImpl_New")] public static extern global::System.IntPtr ViewImpl_New(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ViewImpl_SetStyleName")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ViewImpl_SetStyleName")] public static extern void ViewImpl_SetStyleName(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ViewImpl_GetStyleName")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ViewImpl_GetStyleName")] public static extern string ViewImpl_GetStyleName(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ViewImpl_SetBackgroundColor")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ViewImpl_SetBackgroundColor")] public static extern void ViewImpl_SetBackgroundColor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ViewImpl_GetBackgroundColor")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ViewImpl_GetBackgroundColor")] public static extern global::System.IntPtr ViewImpl_GetBackgroundColor(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ViewImpl_SetBackgroundImage")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ViewImpl_SetBackgroundImage")] public static extern void ViewImpl_SetBackgroundImage(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ViewImpl_SetBackground")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ViewImpl_SetBackground")] public static extern void ViewImpl_SetBackground(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ViewImpl_ClearBackground")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ViewImpl_ClearBackground")] public static extern void ViewImpl_ClearBackground(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ViewImpl_EnableGestureDetection")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ViewImpl_EnableGestureDetection")] public static extern void ViewImpl_EnableGestureDetection(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ViewImpl_DisableGestureDetection")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ViewImpl_DisableGestureDetection")] public static extern void ViewImpl_DisableGestureDetection(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ViewImpl_GetPinchGestureDetector")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ViewImpl_GetPinchGestureDetector")] public static extern global::System.IntPtr ViewImpl_GetPinchGestureDetector(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ViewImpl_GetPanGestureDetector")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ViewImpl_GetPanGestureDetector")] public static extern global::System.IntPtr ViewImpl_GetPanGestureDetector(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ViewImpl_GetTapGestureDetector")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ViewImpl_GetTapGestureDetector")] public static extern global::System.IntPtr ViewImpl_GetTapGestureDetector(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ViewImpl_GetLongPressGestureDetector")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ViewImpl_GetLongPressGestureDetector")] public static extern global::System.IntPtr ViewImpl_GetLongPressGestureDetector(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ViewImpl_SetKeyboardNavigationSupport")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ViewImpl_SetKeyboardNavigationSupport")] public static extern void ViewImpl_SetKeyboardNavigationSupport(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ViewImpl_IsKeyboardNavigationSupported")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ViewImpl_IsKeyboardNavigationSupported")] public static extern bool ViewImpl_IsKeyboardNavigationSupported(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ViewImpl_SetKeyInputFocus")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ViewImpl_SetKeyInputFocus")] public static extern void ViewImpl_SetKeyInputFocus(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ViewImpl_HasKeyInputFocus")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ViewImpl_HasKeyInputFocus")] public static extern bool ViewImpl_HasKeyInputFocus(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ViewImpl_ClearKeyInputFocus")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ViewImpl_ClearKeyInputFocus")] public static extern void ViewImpl_ClearKeyInputFocus(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ViewImpl_SetAsKeyboardFocusGroup")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ViewImpl_SetAsKeyboardFocusGroup")] public static extern void ViewImpl_SetAsKeyboardFocusGroup(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ViewImpl_IsKeyboardFocusGroup")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ViewImpl_IsKeyboardFocusGroup")] public static extern bool ViewImpl_IsKeyboardFocusGroup(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ViewImpl_AccessibilityActivate")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ViewImpl_AccessibilityActivate")] public static extern void ViewImpl_AccessibilityActivate(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ViewImpl_KeyboardEnter")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ViewImpl_KeyboardEnter")] public static extern void ViewImpl_KeyboardEnter(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ViewImpl_KeyEventSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ViewImpl_KeyEventSignal")] public static extern global::System.IntPtr ViewImpl_KeyEventSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ViewImpl_KeyInputFocusGainedSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ViewImpl_KeyInputFocusGainedSignal")] public static extern global::System.IntPtr ViewImpl_KeyInputFocusGainedSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ViewImpl_KeyInputFocusLostSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ViewImpl_KeyInputFocusLostSignal")] public static extern global::System.IntPtr ViewImpl_KeyInputFocusLostSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ViewImpl_EmitKeyEventSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ViewImpl_EmitKeyEventSignal")] public static extern bool ViewImpl_EmitKeyEventSignal(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ViewImpl_OnStageConnection")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ViewImpl_OnStageConnection")] public static extern void ViewImpl_OnStageConnection(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ViewImpl_OnStageConnectionSwigExplicitViewImpl")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ViewImpl_OnStageConnectionSwigExplicitViewImpl")] public static extern void ViewImpl_OnStageConnectionSwigExplicitViewImpl(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ViewImpl_OnStageDisconnection")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ViewImpl_OnStageDisconnection")] public static extern void ViewImpl_OnStageDisconnection(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ViewImpl_OnStageDisconnectionSwigExplicitViewImpl")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ViewImpl_OnStageDisconnectionSwigExplicitViewImpl")] public static extern void ViewImpl_OnStageDisconnectionSwigExplicitViewImpl(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ViewImpl_OnChildAdd")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ViewImpl_OnChildAdd")] public static extern void ViewImpl_OnChildAdd(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ViewImpl_OnChildAddSwigExplicitViewImpl")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ViewImpl_OnChildAddSwigExplicitViewImpl")] public static extern void ViewImpl_OnChildAddSwigExplicitViewImpl(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ViewImpl_OnChildRemove")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ViewImpl_OnChildRemove")] public static extern void ViewImpl_OnChildRemove(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ViewImpl_OnChildRemoveSwigExplicitViewImpl")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ViewImpl_OnChildRemoveSwigExplicitViewImpl")] public static extern void ViewImpl_OnChildRemoveSwigExplicitViewImpl(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ViewImpl_OnPropertySet")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ViewImpl_OnPropertySet")] public static extern void ViewImpl_OnPropertySet(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ViewImpl_OnPropertySetSwigExplicitViewImpl")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ViewImpl_OnPropertySetSwigExplicitViewImpl")] public static extern void ViewImpl_OnPropertySetSwigExplicitViewImpl(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ViewImpl_OnSizeSet")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ViewImpl_OnSizeSet")] public static extern void ViewImpl_OnSizeSet(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ViewImpl_OnSizeSetSwigExplicitViewImpl")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ViewImpl_OnSizeSetSwigExplicitViewImpl")] public static extern void ViewImpl_OnSizeSetSwigExplicitViewImpl(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ViewImpl_OnSizeAnimation")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ViewImpl_OnSizeAnimation")] public static extern void ViewImpl_OnSizeAnimation(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ViewImpl_OnSizeAnimationSwigExplicitViewImpl")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ViewImpl_OnSizeAnimationSwigExplicitViewImpl")] public static extern void ViewImpl_OnSizeAnimationSwigExplicitViewImpl(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ViewImpl_OnTouchEvent")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ViewImpl_OnTouchEvent")] public static extern bool ViewImpl_OnTouchEvent(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ViewImpl_OnTouchEventSwigExplicitViewImpl")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ViewImpl_OnTouchEventSwigExplicitViewImpl")] public static extern bool ViewImpl_OnTouchEventSwigExplicitViewImpl(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ViewImpl_OnHoverEvent")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ViewImpl_OnHoverEvent")] public static extern bool ViewImpl_OnHoverEvent(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ViewImpl_OnHoverEventSwigExplicitViewImpl")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ViewImpl_OnHoverEventSwigExplicitViewImpl")] public static extern bool ViewImpl_OnHoverEventSwigExplicitViewImpl(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ViewImpl_OnKeyEvent")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ViewImpl_OnKeyEvent")] public static extern bool ViewImpl_OnKeyEvent(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ViewImpl_OnKeyEventSwigExplicitViewImpl")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ViewImpl_OnKeyEventSwigExplicitViewImpl")] public static extern bool ViewImpl_OnKeyEventSwigExplicitViewImpl(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ViewImpl_OnWheelEvent")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ViewImpl_OnWheelEvent")] public static extern bool ViewImpl_OnWheelEvent(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ViewImpl_OnWheelEventSwigExplicitViewImpl")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ViewImpl_OnWheelEventSwigExplicitViewImpl")] public static extern bool ViewImpl_OnWheelEventSwigExplicitViewImpl(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ViewImpl_OnRelayout")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ViewImpl_OnRelayout")] public static extern void ViewImpl_OnRelayout(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ViewImpl_OnRelayoutSwigExplicitViewImpl")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ViewImpl_OnRelayoutSwigExplicitViewImpl")] public static extern void ViewImpl_OnRelayoutSwigExplicitViewImpl(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ViewImpl_OnSetResizePolicy")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ViewImpl_OnSetResizePolicy")] public static extern void ViewImpl_OnSetResizePolicy(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ViewImpl_OnSetResizePolicySwigExplicitViewImpl")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ViewImpl_OnSetResizePolicySwigExplicitViewImpl")] public static extern void ViewImpl_OnSetResizePolicySwigExplicitViewImpl(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ViewImpl_GetNaturalSize")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ViewImpl_GetNaturalSize")] public static extern global::System.IntPtr ViewImpl_GetNaturalSize(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ViewImpl_GetNaturalSizeSwigExplicitViewImpl")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ViewImpl_GetNaturalSizeSwigExplicitViewImpl")] public static extern global::System.IntPtr ViewImpl_GetNaturalSizeSwigExplicitViewImpl(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ViewImpl_CalculateChildSize")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ViewImpl_CalculateChildSize")] public static extern float ViewImpl_CalculateChildSize(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ViewImpl_CalculateChildSizeSwigExplicitViewImpl")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ViewImpl_CalculateChildSizeSwigExplicitViewImpl")] public static extern float ViewImpl_CalculateChildSizeSwigExplicitViewImpl(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ViewImpl_GetHeightForWidth")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ViewImpl_GetHeightForWidth")] public static extern float ViewImpl_GetHeightForWidth(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ViewImpl_GetHeightForWidthSwigExplicitViewImpl")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ViewImpl_GetHeightForWidthSwigExplicitViewImpl")] public static extern float ViewImpl_GetHeightForWidthSwigExplicitViewImpl(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ViewImpl_GetWidthForHeight")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ViewImpl_GetWidthForHeight")] public static extern float ViewImpl_GetWidthForHeight(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ViewImpl_GetWidthForHeightSwigExplicitViewImpl")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ViewImpl_GetWidthForHeightSwigExplicitViewImpl")] public static extern float ViewImpl_GetWidthForHeightSwigExplicitViewImpl(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ViewImpl_RelayoutDependentOnChildren__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ViewImpl_RelayoutDependentOnChildren__SWIG_0")] public static extern bool ViewImpl_RelayoutDependentOnChildren__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ViewImpl_RelayoutDependentOnChildrenSwigExplicitViewImpl__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ViewImpl_RelayoutDependentOnChildrenSwigExplicitViewImpl__SWIG_0")] public static extern bool ViewImpl_RelayoutDependentOnChildrenSwigExplicitViewImpl__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ViewImpl_RelayoutDependentOnChildren__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ViewImpl_RelayoutDependentOnChildren__SWIG_1")] public static extern bool ViewImpl_RelayoutDependentOnChildren__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ViewImpl_RelayoutDependentOnChildrenSwigExplicitViewImpl__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ViewImpl_RelayoutDependentOnChildrenSwigExplicitViewImpl__SWIG_1")] public static extern bool ViewImpl_RelayoutDependentOnChildrenSwigExplicitViewImpl__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ViewImpl_OnCalculateRelayoutSize")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ViewImpl_OnCalculateRelayoutSize")] public static extern void ViewImpl_OnCalculateRelayoutSize(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ViewImpl_OnCalculateRelayoutSizeSwigExplicitViewImpl")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ViewImpl_OnCalculateRelayoutSizeSwigExplicitViewImpl")] public static extern void ViewImpl_OnCalculateRelayoutSizeSwigExplicitViewImpl(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ViewImpl_OnLayoutNegotiated")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ViewImpl_OnLayoutNegotiated")] public static extern void ViewImpl_OnLayoutNegotiated(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2, int jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ViewImpl_OnLayoutNegotiatedSwigExplicitViewImpl")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ViewImpl_OnLayoutNegotiatedSwigExplicitViewImpl")] public static extern void ViewImpl_OnLayoutNegotiatedSwigExplicitViewImpl(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2, int jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ViewImpl_OnInitialize")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ViewImpl_OnInitialize")] public static extern void ViewImpl_OnInitialize(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ViewImpl_OnInitializeSwigExplicitViewImpl")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ViewImpl_OnInitializeSwigExplicitViewImpl")] public static extern void ViewImpl_OnInitializeSwigExplicitViewImpl(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ViewImpl_OnControlChildAdd")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ViewImpl_OnControlChildAdd")] public static extern void ViewImpl_OnControlChildAdd(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ViewImpl_OnControlChildAddSwigExplicitViewImpl")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ViewImpl_OnControlChildAddSwigExplicitViewImpl")] public static extern void ViewImpl_OnControlChildAddSwigExplicitViewImpl(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ViewImpl_OnControlChildRemove")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ViewImpl_OnControlChildRemove")] public static extern void ViewImpl_OnControlChildRemove(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ViewImpl_OnControlChildRemoveSwigExplicitViewImpl")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ViewImpl_OnControlChildRemoveSwigExplicitViewImpl")] public static extern void ViewImpl_OnControlChildRemoveSwigExplicitViewImpl(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ViewImpl_OnStyleChange")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ViewImpl_OnStyleChange")] public static extern void ViewImpl_OnStyleChange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ViewImpl_OnStyleChangeSwigExplicitViewImpl")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ViewImpl_OnStyleChangeSwigExplicitViewImpl")] public static extern void ViewImpl_OnStyleChangeSwigExplicitViewImpl(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ViewImpl_OnAccessibilityActivated")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ViewImpl_OnAccessibilityActivated")] public static extern bool ViewImpl_OnAccessibilityActivated(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ViewImpl_OnAccessibilityActivatedSwigExplicitViewImpl")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ViewImpl_OnAccessibilityActivatedSwigExplicitViewImpl")] public static extern bool ViewImpl_OnAccessibilityActivatedSwigExplicitViewImpl(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ViewImpl_OnAccessibilityPan")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ViewImpl_OnAccessibilityPan")] public static extern bool ViewImpl_OnAccessibilityPan(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ViewImpl_OnAccessibilityPanSwigExplicitViewImpl")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ViewImpl_OnAccessibilityPanSwigExplicitViewImpl")] public static extern bool ViewImpl_OnAccessibilityPanSwigExplicitViewImpl(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ViewImpl_OnAccessibilityTouch")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ViewImpl_OnAccessibilityTouch")] public static extern bool ViewImpl_OnAccessibilityTouch(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ViewImpl_OnAccessibilityTouchSwigExplicitViewImpl")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ViewImpl_OnAccessibilityTouchSwigExplicitViewImpl")] public static extern bool ViewImpl_OnAccessibilityTouchSwigExplicitViewImpl(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ViewImpl_OnAccessibilityValueChange")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ViewImpl_OnAccessibilityValueChange")] public static extern bool ViewImpl_OnAccessibilityValueChange(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ViewImpl_OnAccessibilityValueChangeSwigExplicitViewImpl")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ViewImpl_OnAccessibilityValueChangeSwigExplicitViewImpl")] public static extern bool ViewImpl_OnAccessibilityValueChangeSwigExplicitViewImpl(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ViewImpl_OnAccessibilityZoom")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ViewImpl_OnAccessibilityZoom")] public static extern bool ViewImpl_OnAccessibilityZoom(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ViewImpl_OnAccessibilityZoomSwigExplicitViewImpl")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ViewImpl_OnAccessibilityZoomSwigExplicitViewImpl")] public static extern bool ViewImpl_OnAccessibilityZoomSwigExplicitViewImpl(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ViewImpl_OnKeyInputFocusGained")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ViewImpl_OnKeyInputFocusGained")] public static extern void ViewImpl_OnKeyInputFocusGained(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ViewImpl_OnKeyInputFocusGainedSwigExplicitViewImpl")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ViewImpl_OnKeyInputFocusGainedSwigExplicitViewImpl")] public static extern void ViewImpl_OnKeyInputFocusGainedSwigExplicitViewImpl(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ViewImpl_OnKeyInputFocusLost")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ViewImpl_OnKeyInputFocusLost")] public static extern void ViewImpl_OnKeyInputFocusLost(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ViewImpl_OnKeyInputFocusLostSwigExplicitViewImpl")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ViewImpl_OnKeyInputFocusLostSwigExplicitViewImpl")] public static extern void ViewImpl_OnKeyInputFocusLostSwigExplicitViewImpl(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ViewImpl_GetNextKeyboardFocusableActor")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ViewImpl_GetNextKeyboardFocusableActor")] public static extern global::System.IntPtr ViewImpl_GetNextKeyboardFocusableActor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3, bool jarg4); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ViewImpl_GetNextKeyboardFocusableActorSwigExplicitViewImpl")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ViewImpl_GetNextKeyboardFocusableActorSwigExplicitViewImpl")] public static extern global::System.IntPtr ViewImpl_GetNextKeyboardFocusableActorSwigExplicitViewImpl(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3, bool jarg4); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ViewImpl_OnKeyboardFocusChangeCommitted")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ViewImpl_OnKeyboardFocusChangeCommitted")] public static extern void ViewImpl_OnKeyboardFocusChangeCommitted(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ViewImpl_OnKeyboardFocusChangeCommittedSwigExplicitViewImpl")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ViewImpl_OnKeyboardFocusChangeCommittedSwigExplicitViewImpl")] public static extern void ViewImpl_OnKeyboardFocusChangeCommittedSwigExplicitViewImpl(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ViewImpl_OnKeyboardEnter")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ViewImpl_OnKeyboardEnter")] public static extern bool ViewImpl_OnKeyboardEnter(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ViewImpl_OnKeyboardEnterSwigExplicitViewImpl")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ViewImpl_OnKeyboardEnterSwigExplicitViewImpl")] public static extern bool ViewImpl_OnKeyboardEnterSwigExplicitViewImpl(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ViewImpl_OnPinch")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ViewImpl_OnPinch")] public static extern void ViewImpl_OnPinch(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ViewImpl_OnPinchSwigExplicitViewImpl")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ViewImpl_OnPinchSwigExplicitViewImpl")] public static extern void ViewImpl_OnPinchSwigExplicitViewImpl(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ViewImpl_OnPan")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ViewImpl_OnPan")] public static extern void ViewImpl_OnPan(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ViewImpl_OnPanSwigExplicitViewImpl")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ViewImpl_OnPanSwigExplicitViewImpl")] public static extern void ViewImpl_OnPanSwigExplicitViewImpl(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ViewImpl_OnTap")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ViewImpl_OnTap")] public static extern void ViewImpl_OnTap(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ViewImpl_OnTapSwigExplicitViewImpl")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ViewImpl_OnTapSwigExplicitViewImpl")] public static extern void ViewImpl_OnTapSwigExplicitViewImpl(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ViewImpl_OnLongPress")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ViewImpl_OnLongPress")] public static extern void ViewImpl_OnLongPress(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ViewImpl_OnLongPressSwigExplicitViewImpl")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ViewImpl_OnLongPressSwigExplicitViewImpl")] public static extern void ViewImpl_OnLongPressSwigExplicitViewImpl(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ViewImpl_SignalConnected")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ViewImpl_SignalConnected")] public static extern void ViewImpl_SignalConnected(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ViewImpl_SignalConnectedSwigExplicitViewImpl")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ViewImpl_SignalConnectedSwigExplicitViewImpl")] public static extern void ViewImpl_SignalConnectedSwigExplicitViewImpl(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ViewImpl_SignalDisconnected")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ViewImpl_SignalDisconnected")] public static extern void ViewImpl_SignalDisconnected(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ViewImpl_SignalDisconnectedSwigExplicitViewImpl")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ViewImpl_SignalDisconnectedSwigExplicitViewImpl")] public static extern void ViewImpl_SignalDisconnectedSwigExplicitViewImpl(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ViewImpl_director_connect")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ViewImpl_director_connect")] public static extern void ViewImpl_director_connect(global::System.Runtime.InteropServices.HandleRef jarg1, ViewImpl.SwigDelegateViewImpl_0 delegate0, ViewImpl.SwigDelegateViewImpl_1 delegate1, ViewImpl.SwigDelegateViewImpl_2 delegate2, ViewImpl.SwigDelegateViewImpl_3 delegate3, ViewImpl.SwigDelegateViewImpl_4 delegate4, ViewImpl.SwigDelegateViewImpl_5 delegate5, ViewImpl.SwigDelegateViewImpl_6 delegate6, ViewImpl.SwigDelegateViewImpl_7 delegate7, ViewImpl.SwigDelegateViewImpl_8 delegate8, ViewImpl.SwigDelegateViewImpl_9 delegate9, ViewImpl.SwigDelegateViewImpl_10 delegate10, ViewImpl.SwigDelegateViewImpl_11 delegate11, ViewImpl.SwigDelegateViewImpl_12 delegate12, ViewImpl.SwigDelegateViewImpl_13 delegate13, ViewImpl.SwigDelegateViewImpl_14 delegate14, ViewImpl.SwigDelegateViewImpl_15 delegate15, ViewImpl.SwigDelegateViewImpl_16 delegate16, ViewImpl.SwigDelegateViewImpl_17 delegate17, ViewImpl.SwigDelegateViewImpl_18 delegate18, ViewImpl.SwigDelegateViewImpl_19 delegate19, ViewImpl.SwigDelegateViewImpl_20 delegate20, ViewImpl.SwigDelegateViewImpl_21 delegate21, ViewImpl.SwigDelegateViewImpl_22 delegate22, ViewImpl.SwigDelegateViewImpl_23 delegate23, ViewImpl.SwigDelegateViewImpl_24 delegate24, ViewImpl.SwigDelegateViewImpl_25 delegate25, ViewImpl.SwigDelegateViewImpl_26 delegate26, ViewImpl.SwigDelegateViewImpl_27 delegate27, ViewImpl.SwigDelegateViewImpl_28 delegate28, ViewImpl.SwigDelegateViewImpl_29 delegate29, ViewImpl.SwigDelegateViewImpl_30 delegate30, ViewImpl.SwigDelegateViewImpl_31 delegate31, ViewImpl.SwigDelegateViewImpl_32 delegate32, ViewImpl.SwigDelegateViewImpl_33 delegate33, ViewImpl.SwigDelegateViewImpl_34 delegate34, ViewImpl.SwigDelegateViewImpl_35 delegate35, ViewImpl.SwigDelegateViewImpl_36 delegate36, ViewImpl.SwigDelegateViewImpl_37 delegate37, ViewImpl.SwigDelegateViewImpl_38 delegate38, ViewImpl.SwigDelegateViewImpl_39 delegate39, ViewImpl.SwigDelegateViewImpl_40 delegate40); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_GetImplementation__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_GetImplementation__SWIG_0")] public static extern global::System.IntPtr GetImplementation__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_View_Property_STYLE_NAME_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_View_Property_STYLE_NAME_get")] public static extern int View_Property_STYLE_NAME_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_View_Property_BACKGROUND_COLOR_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_View_Property_BACKGROUND_COLOR_get")] public static extern int View_Property_BACKGROUND_COLOR_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_View_Property_BACKGROUND_IMAGE_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_View_Property_BACKGROUND_IMAGE_get")] public static extern int View_Property_BACKGROUND_IMAGE_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_View_Property_KEY_INPUT_FOCUS_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_View_Property_KEY_INPUT_FOCUS_get")] public static extern int View_Property_KEY_INPUT_FOCUS_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_View_Property_BACKGROUND_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_View_Property_BACKGROUND_get")] public static extern int View_Property_BACKGROUND_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_View_Property")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_View_Property")] public static extern global::System.IntPtr new_View_Property(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_View_Property")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_View_Property")] public static extern void delete_View_Property(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_View_KeyboardFocus")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_View_KeyboardFocus")] public static extern global::System.IntPtr new_View_KeyboardFocus(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_View_KeyboardFocus")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_View_KeyboardFocus")] public static extern void delete_View_KeyboardFocus(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_View_New")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_View_New")] public static extern global::System.IntPtr View_New(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_View__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_View__SWIG_0")] public static extern global::System.IntPtr new_View__SWIG_0(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_View__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_View__SWIG_1")] public static extern global::System.IntPtr new_View__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_View")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_View")] public static extern void delete_View(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_View_Assign")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_View_Assign")] public static extern global::System.IntPtr View_Assign(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_View_DownCast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_View_DownCast")] public static extern global::System.IntPtr View_DownCast(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_View_SetKeyInputFocus")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_View_SetKeyInputFocus")] public static extern void View_SetKeyInputFocus(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_View_HasKeyInputFocus")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_View_HasKeyInputFocus")] public static extern bool View_HasKeyInputFocus(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_View_ClearKeyInputFocus")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_View_ClearKeyInputFocus")] public static extern void View_ClearKeyInputFocus(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_View_GetPinchGestureDetector")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_View_GetPinchGestureDetector")] public static extern global::System.IntPtr View_GetPinchGestureDetector(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_View_GetPanGestureDetector")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_View_GetPanGestureDetector")] public static extern global::System.IntPtr View_GetPanGestureDetector(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_View_GetTapGestureDetector")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_View_GetTapGestureDetector")] public static extern global::System.IntPtr View_GetTapGestureDetector(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_View_GetLongPressGestureDetector")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_View_GetLongPressGestureDetector")] public static extern global::System.IntPtr View_GetLongPressGestureDetector(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_View_SetStyleName")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_View_SetStyleName")] public static extern void View_SetStyleName(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_View_GetStyleName")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_View_GetStyleName")] public static extern string View_GetStyleName(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_View_SetBackgroundColor")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_View_SetBackgroundColor")] public static extern void View_SetBackgroundColor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_View_GetBackgroundColor")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_View_GetBackgroundColor")] public static extern global::System.IntPtr View_GetBackgroundColor(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_View_SetBackgroundImage")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_View_SetBackgroundImage")] public static extern void View_SetBackgroundImage(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_View_ClearBackground")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_View_ClearBackground")] public static extern void View_ClearBackground(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_View_KeyEventSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_View_KeyEventSignal")] public static extern global::System.IntPtr View_KeyEventSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_View_KeyInputFocusGainedSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_View_KeyInputFocusGainedSignal")] public static extern global::System.IntPtr View_KeyInputFocusGainedSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_View_KeyInputFocusLostSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_View_KeyInputFocusLostSignal")] public static extern global::System.IntPtr View_KeyInputFocusLostSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_View__SWIG_2")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_View__SWIG_2")] public static extern global::System.IntPtr new_View__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_KeyInputFocusManager")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_KeyInputFocusManager")] public static extern global::System.IntPtr new_KeyInputFocusManager(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_KeyInputFocusManager")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_KeyInputFocusManager")] public static extern void delete_KeyInputFocusManager(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_KeyInputFocusManager_Get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_KeyInputFocusManager_Get")] public static extern global::System.IntPtr KeyInputFocusManager_Get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_KeyInputFocusManager_SetFocus")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_KeyInputFocusManager_SetFocus")] public static extern void KeyInputFocusManager_SetFocus(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_KeyInputFocusManager_GetCurrentFocusControl")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_KeyInputFocusManager_GetCurrentFocusControl")] public static extern global::System.IntPtr KeyInputFocusManager_GetCurrentFocusControl(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_KeyInputFocusManager_RemoveFocus")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_KeyInputFocusManager_RemoveFocus")] public static extern void KeyInputFocusManager_RemoveFocus(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_KeyInputFocusManager_IsKeyboardListener")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_KeyInputFocusManager_IsKeyboardListener")] public static extern bool KeyInputFocusManager_IsKeyboardListener(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_KeyInputFocusManager_KeyInputFocusChangedSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_KeyInputFocusManager_KeyInputFocusChangedSignal")] public static extern global::System.IntPtr KeyInputFocusManager_KeyInputFocusChangedSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_KeyInputFocusManager_UnhandledKeyEventSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_KeyInputFocusManager_UnhandledKeyEventSignal")] public static extern global::System.IntPtr KeyInputFocusManager_UnhandledKeyEventSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_Alignment_Padding__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Alignment_Padding__SWIG_0")] public static extern global::System.IntPtr new_Alignment_Padding__SWIG_0(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_Alignment_Padding__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Alignment_Padding__SWIG_1")] public static extern global::System.IntPtr new_Alignment_Padding__SWIG_1(float jarg1, float jarg2, float jarg3, float jarg4); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Alignment_Padding_left_set")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Alignment_Padding_left_set")] public static extern void Alignment_Padding_left_set(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Alignment_Padding_left_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Alignment_Padding_left_get")] public static extern float Alignment_Padding_left_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Alignment_Padding_right_set")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Alignment_Padding_right_set")] public static extern void Alignment_Padding_right_set(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Alignment_Padding_right_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Alignment_Padding_right_get")] public static extern float Alignment_Padding_right_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Alignment_Padding_top_set")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Alignment_Padding_top_set")] public static extern void Alignment_Padding_top_set(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Alignment_Padding_top_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Alignment_Padding_top_get")] public static extern float Alignment_Padding_top_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Alignment_Padding_bottom_set")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Alignment_Padding_bottom_set")] public static extern void Alignment_Padding_bottom_set(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Alignment_Padding_bottom_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Alignment_Padding_bottom_get")] public static extern float Alignment_Padding_bottom_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_Alignment_Padding")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_Alignment_Padding")] public static extern void delete_Alignment_Padding(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_Alignment__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Alignment__SWIG_0")] public static extern global::System.IntPtr new_Alignment__SWIG_0(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Alignment_New__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Alignment_New__SWIG_0")] public static extern global::System.IntPtr Alignment_New__SWIG_0(int jarg1, int jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Alignment_New__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Alignment_New__SWIG_1")] public static extern global::System.IntPtr Alignment_New__SWIG_1(int jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Alignment_New__SWIG_2")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Alignment_New__SWIG_2")] public static extern global::System.IntPtr Alignment_New__SWIG_2(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_Alignment__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Alignment__SWIG_1")] public static extern global::System.IntPtr new_Alignment__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_Alignment")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_Alignment")] public static extern void delete_Alignment(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Alignment_DownCast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Alignment_DownCast")] public static extern global::System.IntPtr Alignment_DownCast(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Alignment_SetAlignmentType")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Alignment_SetAlignmentType")] public static extern void Alignment_SetAlignmentType(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Alignment_GetAlignmentType")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Alignment_GetAlignmentType")] public static extern int Alignment_GetAlignmentType(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Alignment_SetScaling")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Alignment_SetScaling")] public static extern void Alignment_SetScaling(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Alignment_GetScaling")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Alignment_GetScaling")] public static extern int Alignment_GetScaling(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Alignment_SetPadding")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Alignment_SetPadding")] public static extern void Alignment_SetPadding(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Alignment_GetPadding")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Alignment_GetPadding")] public static extern global::System.IntPtr Alignment_GetPadding(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Alignment_Assign")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Alignment_Assign")] public static extern global::System.IntPtr Alignment_Assign(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Button_Property_DISABLED_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Button_Property_DISABLED_get")] public static extern int Button_Property_DISABLED_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Button_Property_AUTO_REPEATING_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Button_Property_AUTO_REPEATING_get")] public static extern int Button_Property_AUTO_REPEATING_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Button_Property_INITIAL_AUTO_REPEATING_DELAY_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Button_Property_INITIAL_AUTO_REPEATING_DELAY_get")] public static extern int Button_Property_INITIAL_AUTO_REPEATING_DELAY_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Button_Property_NEXT_AUTO_REPEATING_DELAY_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Button_Property_NEXT_AUTO_REPEATING_DELAY_get")] public static extern int Button_Property_NEXT_AUTO_REPEATING_DELAY_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Button_Property_TOGGLABLE_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Button_Property_TOGGLABLE_get")] public static extern int Button_Property_TOGGLABLE_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Button_Property_SELECTED_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Button_Property_SELECTED_get")] public static extern int Button_Property_SELECTED_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Button_Property_UNSELECTED_STATE_IMAGE_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Button_Property_UNSELECTED_STATE_IMAGE_get")] public static extern int Button_Property_UNSELECTED_STATE_IMAGE_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Button_Property_SELECTED_STATE_IMAGE_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Button_Property_SELECTED_STATE_IMAGE_get")] public static extern int Button_Property_SELECTED_STATE_IMAGE_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Button_Property_DISABLED_STATE_IMAGE_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Button_Property_DISABLED_STATE_IMAGE_get")] public static extern int Button_Property_DISABLED_STATE_IMAGE_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Button_Property_UNSELECTED_COLOR_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Button_Property_UNSELECTED_COLOR_get")] public static extern int Button_Property_UNSELECTED_COLOR_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Button_Property_SELECTED_COLOR_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Button_Property_SELECTED_COLOR_get")] public static extern int Button_Property_SELECTED_COLOR_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Button_Property_LABEL_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Button_Property_LABEL_get")] public static extern int Button_Property_LABEL_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Button_Property_LABEL_TEXT_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Button_Property_LABEL_TEXT_get")] public static extern int Button_Property_LABEL_TEXT_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_Button_Property")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Button_Property")] public static extern global::System.IntPtr new_Button_Property(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_Button_Property")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_Button_Property")] public static extern void delete_Button_Property(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_Button__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Button__SWIG_0")] public static extern global::System.IntPtr new_Button__SWIG_0(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_Button__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Button__SWIG_1")] public static extern global::System.IntPtr new_Button__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Button_Assign")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Button_Assign")] public static extern global::System.IntPtr Button_Assign(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Button_DownCast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Button_DownCast")] public static extern global::System.IntPtr Button_DownCast(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_Button")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_Button")] public static extern void delete_Button(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Button_IsDisabled")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Button_IsDisabled")] public static extern bool Button_IsDisabled(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Button_IsAutoRepeating")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Button_IsAutoRepeating")] public static extern bool Button_IsAutoRepeating(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Button_GetInitialAutoRepeatingDelay")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Button_GetInitialAutoRepeatingDelay")] public static extern float Button_GetInitialAutoRepeatingDelay(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Button_GetNextAutoRepeatingDelay")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Button_GetNextAutoRepeatingDelay")] public static extern float Button_GetNextAutoRepeatingDelay(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Button_IsTogglableButton")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Button_IsTogglableButton")] public static extern bool Button_IsTogglableButton(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Button_IsSelected")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Button_IsSelected")] public static extern bool Button_IsSelected(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Button_GetAnimationTime")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Button_GetAnimationTime")] public static extern float Button_GetAnimationTime(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Button_GetLabelText")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Button_GetLabelText")] public static extern string Button_GetLabelText(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Button_SetLabel")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Button_SetLabel")] public static extern void Button_SetLabel(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Button_SetButtonImage")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Button_SetButtonImage")] public static extern void Button_SetButtonImage(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Button_SetSelectedImage")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Button_SetSelectedImage")] public static extern void Button_SetSelectedImage(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Button_GetButtonImage")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Button_GetButtonImage")] public static extern global::System.IntPtr Button_GetButtonImage(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Button_GetSelectedImage")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Button_GetSelectedImage")] public static extern global::System.IntPtr Button_GetSelectedImage(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Button_PressedSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Button_PressedSignal")] public static extern global::System.IntPtr Button_PressedSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Button_ReleasedSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Button_ReleasedSignal")] public static extern global::System.IntPtr Button_ReleasedSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Button_ClickedSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Button_ClickedSignal")] public static extern global::System.IntPtr Button_ClickedSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Button_StateChangedSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Button_StateChangedSignal")] public static extern global::System.IntPtr Button_StateChangedSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_CheckBoxButton__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_CheckBoxButton__SWIG_0")] public static extern global::System.IntPtr new_CheckBoxButton__SWIG_0(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_CheckBoxButton__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_CheckBoxButton__SWIG_1")] public static extern global::System.IntPtr new_CheckBoxButton__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_CheckBoxButton_Assign")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_CheckBoxButton_Assign")] public static extern global::System.IntPtr CheckBoxButton_Assign(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_CheckBoxButton")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_CheckBoxButton")] public static extern void delete_CheckBoxButton(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_CheckBoxButton_New")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_CheckBoxButton_New")] public static extern global::System.IntPtr CheckBoxButton_New(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_CheckBoxButton_DownCast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_CheckBoxButton_DownCast")] public static extern global::System.IntPtr CheckBoxButton_DownCast(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PushButton_Property_UNSELECTED_ICON_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PushButton_Property_UNSELECTED_ICON_get")] public static extern int PushButton_Property_UNSELECTED_ICON_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PushButton_Property_SELECTED_ICON_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PushButton_Property_SELECTED_ICON_get")] public static extern int PushButton_Property_SELECTED_ICON_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PushButton_Property_ICON_ALIGNMENT_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PushButton_Property_ICON_ALIGNMENT_get")] public static extern int PushButton_Property_ICON_ALIGNMENT_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PushButton_Property_LABEL_PADDING_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PushButton_Property_LABEL_PADDING_get")] public static extern int PushButton_Property_LABEL_PADDING_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PushButton_Property_ICON_PADDING_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PushButton_Property_ICON_PADDING_get")] public static extern int PushButton_Property_ICON_PADDING_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_PushButton_Property")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_PushButton_Property")] public static extern global::System.IntPtr new_PushButton_Property(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_PushButton_Property")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_PushButton_Property")] public static extern void delete_PushButton_Property(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_PushButton__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_PushButton__SWIG_0")] public static extern global::System.IntPtr new_PushButton__SWIG_0(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_PushButton__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_PushButton__SWIG_1")] public static extern global::System.IntPtr new_PushButton__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PushButton_Assign")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PushButton_Assign")] public static extern global::System.IntPtr PushButton_Assign(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_PushButton")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_PushButton")] public static extern void delete_PushButton(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PushButton_New")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PushButton_New")] public static extern global::System.IntPtr PushButton_New(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PushButton_DownCast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PushButton_DownCast")] public static extern global::System.IntPtr PushButton_DownCast(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PushButton_SetButtonImage__SWIG_0_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PushButton_SetButtonImage__SWIG_0_0")] public static extern void PushButton_SetButtonImage__SWIG_0_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PushButton_SetButtonImage__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PushButton_SetButtonImage__SWIG_1")] public static extern void PushButton_SetButtonImage__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PushButton_SetBackgroundImage")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PushButton_SetBackgroundImage")] public static extern void PushButton_SetBackgroundImage(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PushButton_SetSelectedImage__SWIG_0_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PushButton_SetSelectedImage__SWIG_0_0")] public static extern void PushButton_SetSelectedImage__SWIG_0_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PushButton_SetSelectedImage__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PushButton_SetSelectedImage__SWIG_1")] public static extern void PushButton_SetSelectedImage__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PushButton_SetSelectedBackgroundImage")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PushButton_SetSelectedBackgroundImage")] public static extern void PushButton_SetSelectedBackgroundImage(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PushButton_SetDisabledBackgroundImage")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PushButton_SetDisabledBackgroundImage")] public static extern void PushButton_SetDisabledBackgroundImage(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PushButton_SetDisabledImage")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PushButton_SetDisabledImage")] public static extern void PushButton_SetDisabledImage(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PushButton_SetDisabledSelectedImage")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PushButton_SetDisabledSelectedImage")] public static extern void PushButton_SetDisabledSelectedImage(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_RadioButton__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_RadioButton__SWIG_0")] public static extern global::System.IntPtr new_RadioButton__SWIG_0(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_RadioButton__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_RadioButton__SWIG_1")] public static extern global::System.IntPtr new_RadioButton__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RadioButton_Assign")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RadioButton_Assign")] public static extern global::System.IntPtr RadioButton_Assign(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_RadioButton")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_RadioButton")] public static extern void delete_RadioButton(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RadioButton_New__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RadioButton_New__SWIG_0")] public static extern global::System.IntPtr RadioButton_New__SWIG_0(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RadioButton_New__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RadioButton_New__SWIG_1")] public static extern global::System.IntPtr RadioButton_New__SWIG_1(string jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RadioButton_DownCast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RadioButton_DownCast")] public static extern global::System.IntPtr RadioButton_DownCast(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_FlexContainer_Property_CONTENT_DIRECTION_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_FlexContainer_Property_CONTENT_DIRECTION_get")] public static extern int FlexContainer_Property_CONTENT_DIRECTION_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_FlexContainer_Property_FLEX_DIRECTION_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_FlexContainer_Property_FLEX_DIRECTION_get")] public static extern int FlexContainer_Property_FLEX_DIRECTION_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_FlexContainer_Property_FLEX_WRAP_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_FlexContainer_Property_FLEX_WRAP_get")] public static extern int FlexContainer_Property_FLEX_WRAP_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_FlexContainer_Property_JUSTIFY_CONTENT_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_FlexContainer_Property_JUSTIFY_CONTENT_get")] public static extern int FlexContainer_Property_JUSTIFY_CONTENT_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_FlexContainer_Property_ALIGN_ITEMS_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_FlexContainer_Property_ALIGN_ITEMS_get")] public static extern int FlexContainer_Property_ALIGN_ITEMS_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_FlexContainer_Property_ALIGN_CONTENT_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_FlexContainer_Property_ALIGN_CONTENT_get")] public static extern int FlexContainer_Property_ALIGN_CONTENT_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_FlexContainer_Property")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_FlexContainer_Property")] public static extern global::System.IntPtr new_FlexContainer_Property(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_FlexContainer_Property")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_FlexContainer_Property")] public static extern void delete_FlexContainer_Property(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_FlexContainer_ChildProperty_FLEX_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_FlexContainer_ChildProperty_FLEX_get")] public static extern int FlexContainer_ChildProperty_FLEX_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_FlexContainer_ChildProperty_ALIGN_SELF_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_FlexContainer_ChildProperty_ALIGN_SELF_get")] public static extern int FlexContainer_ChildProperty_ALIGN_SELF_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_FlexContainer_ChildProperty_FLEX_MARGIN_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_FlexContainer_ChildProperty_FLEX_MARGIN_get")] public static extern int FlexContainer_ChildProperty_FLEX_MARGIN_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_FlexContainer_ChildProperty")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_FlexContainer_ChildProperty")] public static extern global::System.IntPtr new_FlexContainer_ChildProperty(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_FlexContainer_ChildProperty")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_FlexContainer_ChildProperty")] public static extern void delete_FlexContainer_ChildProperty(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_FlexContainer__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_FlexContainer__SWIG_0")] public static extern global::System.IntPtr new_FlexContainer__SWIG_0(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_FlexContainer__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_FlexContainer__SWIG_1")] public static extern global::System.IntPtr new_FlexContainer__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_FlexContainer_Assign")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_FlexContainer_Assign")] public static extern global::System.IntPtr FlexContainer_Assign(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_FlexContainer")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_FlexContainer")] public static extern void delete_FlexContainer(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_FlexContainer_New")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_FlexContainer_New")] public static extern global::System.IntPtr FlexContainer_New(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_FlexContainer_DownCast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_FlexContainer_DownCast")] public static extern global::System.IntPtr FlexContainer_DownCast(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ImageView_Property_RESOURCE_URL_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ImageView_Property_RESOURCE_URL_get")] public static extern int ImageView_Property_RESOURCE_URL_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ImageView_Property_IMAGE_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ImageView_Property_IMAGE_get")] public static extern int ImageView_Property_IMAGE_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ImageView_Property_PRE_MULTIPLIED_ALPHA_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ImageView_Property_PRE_MULTIPLIED_ALPHA_get")] public static extern int ImageView_Property_PRE_MULTIPLIED_ALPHA_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ImageView_Property_PIXEL_AREA_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ImageView_Property_PIXEL_AREA_get")] public static extern int ImageView_Property_PIXEL_AREA_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_ImageView_Property")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_ImageView_Property")] public static extern global::System.IntPtr new_ImageView_Property(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_ImageView_Property")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_ImageView_Property")] public static extern void delete_ImageView_Property(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_ImageView__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_ImageView__SWIG_0")] public static extern global::System.IntPtr new_ImageView__SWIG_0(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ImageView_New__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ImageView_New__SWIG_0")] public static extern global::System.IntPtr ImageView_New__SWIG_0(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ImageView_New__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ImageView_New__SWIG_1")] public static extern global::System.IntPtr ImageView_New__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ImageView_New__SWIG_2")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ImageView_New__SWIG_2")] public static extern global::System.IntPtr ImageView_New__SWIG_2(string jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ImageView_New__SWIG_3")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ImageView_New__SWIG_3")] public static extern global::System.IntPtr ImageView_New__SWIG_3(string jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_ImageView")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_ImageView")] public static extern void delete_ImageView(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_ImageView__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_ImageView__SWIG_1")] public static extern global::System.IntPtr new_ImageView__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ImageView_Assign")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ImageView_Assign")] public static extern global::System.IntPtr ImageView_Assign(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ImageView_DownCast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ImageView_DownCast")] public static extern global::System.IntPtr ImageView_DownCast(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ImageView_SetImage__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ImageView_SetImage__SWIG_0")] public static extern void ImageView_SetImage__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ImageView_SetImage__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ImageView_SetImage__SWIG_1")] public static extern void ImageView_SetImage__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ImageView_SetImage__SWIG_2")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ImageView_SetImage__SWIG_2")] public static extern void ImageView_SetImage__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ImageView_GetImage")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ImageView_GetImage")] public static extern global::System.IntPtr ImageView_GetImage(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Model3dView_Property_GEOMETRY_URL_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Model3dView_Property_GEOMETRY_URL_get")] public static extern int Model3dView_Property_GEOMETRY_URL_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Model3dView_Property_MATERIAL_URL_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Model3dView_Property_MATERIAL_URL_get")] public static extern int Model3dView_Property_MATERIAL_URL_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Model3dView_Property_IMAGES_URL_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Model3dView_Property_IMAGES_URL_get")] public static extern int Model3dView_Property_IMAGES_URL_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Model3dView_Property_ILLUMINATION_TYPE_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Model3dView_Property_ILLUMINATION_TYPE_get")] public static extern int Model3dView_Property_ILLUMINATION_TYPE_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Model3dView_Property_TEXTURE0_URL_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Model3dView_Property_TEXTURE0_URL_get")] public static extern int Model3dView_Property_TEXTURE0_URL_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Model3dView_Property_TEXTURE1_URL_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Model3dView_Property_TEXTURE1_URL_get")] public static extern int Model3dView_Property_TEXTURE1_URL_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Model3dView_Property_TEXTURE2_URL_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Model3dView_Property_TEXTURE2_URL_get")] public static extern int Model3dView_Property_TEXTURE2_URL_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Model3dView_Property_LIGHT_POSITION_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Model3dView_Property_LIGHT_POSITION_get")] public static extern int Model3dView_Property_LIGHT_POSITION_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_Model3dView_Property")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Model3dView_Property")] public static extern global::System.IntPtr new_Model3dView_Property(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_Model3dView_Property")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_Model3dView_Property")] public static extern void delete_Model3dView_Property(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Model3dView_New__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Model3dView_New__SWIG_0")] public static extern global::System.IntPtr Model3dView_New__SWIG_0(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Model3dView_New__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Model3dView_New__SWIG_1")] public static extern global::System.IntPtr Model3dView_New__SWIG_1(string jarg1, string jarg2, string jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_Model3dView__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Model3dView__SWIG_0")] public static extern global::System.IntPtr new_Model3dView__SWIG_0(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_Model3dView")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_Model3dView")] public static extern void delete_Model3dView(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_Model3dView__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Model3dView__SWIG_1")] public static extern global::System.IntPtr new_Model3dView__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Model3dView_Assign")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Model3dView_Assign")] public static extern global::System.IntPtr Model3dView_Assign(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Model3dView_DownCast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Model3dView_DownCast")] public static extern global::System.IntPtr Model3dView_DownCast(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollBar_Property_SCROLL_DIRECTION_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollBar_Property_SCROLL_DIRECTION_get")] public static extern int ScrollBar_Property_SCROLL_DIRECTION_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollBar_Property_INDICATOR_HEIGHT_POLICY_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollBar_Property_INDICATOR_HEIGHT_POLICY_get")] public static extern int ScrollBar_Property_INDICATOR_HEIGHT_POLICY_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollBar_Property_INDICATOR_FIXED_HEIGHT_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollBar_Property_INDICATOR_FIXED_HEIGHT_get")] public static extern int ScrollBar_Property_INDICATOR_FIXED_HEIGHT_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollBar_Property_INDICATOR_SHOW_DURATION_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollBar_Property_INDICATOR_SHOW_DURATION_get")] public static extern int ScrollBar_Property_INDICATOR_SHOW_DURATION_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollBar_Property_INDICATOR_HIDE_DURATION_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollBar_Property_INDICATOR_HIDE_DURATION_get")] public static extern int ScrollBar_Property_INDICATOR_HIDE_DURATION_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollBar_Property_SCROLL_POSITION_INTERVALS_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollBar_Property_SCROLL_POSITION_INTERVALS_get")] public static extern int ScrollBar_Property_SCROLL_POSITION_INTERVALS_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollBar_Property_INDICATOR_MINIMUM_HEIGHT_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollBar_Property_INDICATOR_MINIMUM_HEIGHT_get")] public static extern int ScrollBar_Property_INDICATOR_MINIMUM_HEIGHT_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollBar_Property_INDICATOR_START_PADDING_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollBar_Property_INDICATOR_START_PADDING_get")] public static extern int ScrollBar_Property_INDICATOR_START_PADDING_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollBar_Property_INDICATOR_END_PADDING_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollBar_Property_INDICATOR_END_PADDING_get")] public static extern int ScrollBar_Property_INDICATOR_END_PADDING_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_ScrollBar_Property")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_ScrollBar_Property")] public static extern global::System.IntPtr new_ScrollBar_Property(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_ScrollBar_Property")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_ScrollBar_Property")] public static extern void delete_ScrollBar_Property(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_ScrollBar__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_ScrollBar__SWIG_0")] public static extern global::System.IntPtr new_ScrollBar__SWIG_0(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_ScrollBar__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_ScrollBar__SWIG_1")] public static extern global::System.IntPtr new_ScrollBar__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollBar_Assign")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollBar_Assign")] public static extern global::System.IntPtr ScrollBar_Assign(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_ScrollBar")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_ScrollBar")] public static extern void delete_ScrollBar(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollBar_New__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollBar_New__SWIG_0")] public static extern global::System.IntPtr ScrollBar_New__SWIG_0(int jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollBar_New__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollBar_New__SWIG_1")] public static extern global::System.IntPtr ScrollBar_New__SWIG_1(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollBar_DownCast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollBar_DownCast")] public static extern global::System.IntPtr ScrollBar_DownCast(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollBar_SetScrollPropertySource")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollBar_SetScrollPropertySource")] public static extern void ScrollBar_SetScrollPropertySource(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3, int jarg4, int jarg5, int jarg6); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollBar_SetScrollIndicator")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollBar_SetScrollIndicator")] public static extern void ScrollBar_SetScrollIndicator(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollBar_GetScrollIndicator")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollBar_GetScrollIndicator")] public static extern global::System.IntPtr ScrollBar_GetScrollIndicator(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollBar_SetScrollPositionIntervals")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollBar_SetScrollPositionIntervals")] public static extern void ScrollBar_SetScrollPositionIntervals(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollBar_GetScrollPositionIntervals")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollBar_GetScrollPositionIntervals")] public static extern global::System.IntPtr ScrollBar_GetScrollPositionIntervals(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollBar_SetScrollDirection")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollBar_SetScrollDirection")] public static extern void ScrollBar_SetScrollDirection(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollBar_GetScrollDirection")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollBar_GetScrollDirection")] public static extern int ScrollBar_GetScrollDirection(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollBar_SetIndicatorHeightPolicy")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollBar_SetIndicatorHeightPolicy")] public static extern void ScrollBar_SetIndicatorHeightPolicy(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollBar_GetIndicatorHeightPolicy")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollBar_GetIndicatorHeightPolicy")] public static extern int ScrollBar_GetIndicatorHeightPolicy(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollBar_SetIndicatorFixedHeight")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollBar_SetIndicatorFixedHeight")] public static extern void ScrollBar_SetIndicatorFixedHeight(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollBar_GetIndicatorFixedHeight")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollBar_GetIndicatorFixedHeight")] public static extern float ScrollBar_GetIndicatorFixedHeight(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollBar_SetIndicatorShowDuration")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollBar_SetIndicatorShowDuration")] public static extern void ScrollBar_SetIndicatorShowDuration(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollBar_GetIndicatorShowDuration")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollBar_GetIndicatorShowDuration")] public static extern float ScrollBar_GetIndicatorShowDuration(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollBar_SetIndicatorHideDuration")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollBar_SetIndicatorHideDuration")] public static extern void ScrollBar_SetIndicatorHideDuration(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollBar_GetIndicatorHideDuration")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollBar_GetIndicatorHideDuration")] public static extern float ScrollBar_GetIndicatorHideDuration(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollBar_ShowIndicator")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollBar_ShowIndicator")] public static extern void ScrollBar_ShowIndicator(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollBar_HideIndicator")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollBar_HideIndicator")] public static extern void ScrollBar_HideIndicator(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollBar_PanFinishedSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollBar_PanFinishedSignal")] public static extern global::System.IntPtr ScrollBar_PanFinishedSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollBar_ScrollPositionIntervalReachedSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollBar_ScrollPositionIntervalReachedSignal")] public static extern global::System.IntPtr ScrollBar_ScrollPositionIntervalReachedSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Scrollable_Property_OVERSHOOT_EFFECT_COLOR_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Scrollable_Property_OVERSHOOT_EFFECT_COLOR_get")] public static extern int Scrollable_Property_OVERSHOOT_EFFECT_COLOR_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Scrollable_Property_OVERSHOOT_ANIMATION_SPEED_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Scrollable_Property_OVERSHOOT_ANIMATION_SPEED_get")] public static extern int Scrollable_Property_OVERSHOOT_ANIMATION_SPEED_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Scrollable_Property_OVERSHOOT_ENABLED_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Scrollable_Property_OVERSHOOT_ENABLED_get")] public static extern int Scrollable_Property_OVERSHOOT_ENABLED_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Scrollable_Property_OVERSHOOT_SIZE_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Scrollable_Property_OVERSHOOT_SIZE_get")] public static extern int Scrollable_Property_OVERSHOOT_SIZE_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Scrollable_Property_SCROLL_TO_ALPHA_FUNCTION_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Scrollable_Property_SCROLL_TO_ALPHA_FUNCTION_get")] public static extern int Scrollable_Property_SCROLL_TO_ALPHA_FUNCTION_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Scrollable_Property_SCROLL_RELATIVE_POSITION_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Scrollable_Property_SCROLL_RELATIVE_POSITION_get")] public static extern int Scrollable_Property_SCROLL_RELATIVE_POSITION_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Scrollable_Property_SCROLL_POSITION_MIN_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Scrollable_Property_SCROLL_POSITION_MIN_get")] public static extern int Scrollable_Property_SCROLL_POSITION_MIN_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Scrollable_Property_SCROLL_POSITION_MIN_X_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Scrollable_Property_SCROLL_POSITION_MIN_X_get")] public static extern int Scrollable_Property_SCROLL_POSITION_MIN_X_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Scrollable_Property_SCROLL_POSITION_MIN_Y_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Scrollable_Property_SCROLL_POSITION_MIN_Y_get")] public static extern int Scrollable_Property_SCROLL_POSITION_MIN_Y_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Scrollable_Property_SCROLL_POSITION_MAX_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Scrollable_Property_SCROLL_POSITION_MAX_get")] public static extern int Scrollable_Property_SCROLL_POSITION_MAX_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Scrollable_Property_SCROLL_POSITION_MAX_X_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Scrollable_Property_SCROLL_POSITION_MAX_X_get")] public static extern int Scrollable_Property_SCROLL_POSITION_MAX_X_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Scrollable_Property_SCROLL_POSITION_MAX_Y_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Scrollable_Property_SCROLL_POSITION_MAX_Y_get")] public static extern int Scrollable_Property_SCROLL_POSITION_MAX_Y_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Scrollable_Property_CAN_SCROLL_VERTICAL_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Scrollable_Property_CAN_SCROLL_VERTICAL_get")] public static extern int Scrollable_Property_CAN_SCROLL_VERTICAL_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Scrollable_Property_CAN_SCROLL_HORIZONTAL_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Scrollable_Property_CAN_SCROLL_HORIZONTAL_get")] public static extern int Scrollable_Property_CAN_SCROLL_HORIZONTAL_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_Scrollable_Property")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Scrollable_Property")] public static extern global::System.IntPtr new_Scrollable_Property(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_Scrollable_Property")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_Scrollable_Property")] public static extern void delete_Scrollable_Property(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_Scrollable__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Scrollable__SWIG_0")] public static extern global::System.IntPtr new_Scrollable__SWIG_0(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_Scrollable__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Scrollable__SWIG_1")] public static extern global::System.IntPtr new_Scrollable__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Scrollable_Assign")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Scrollable_Assign")] public static extern global::System.IntPtr Scrollable_Assign(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_Scrollable")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_Scrollable")] public static extern void delete_Scrollable(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Scrollable_DownCast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Scrollable_DownCast")] public static extern global::System.IntPtr Scrollable_DownCast(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Scrollable_IsOvershootEnabled")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Scrollable_IsOvershootEnabled")] public static extern bool Scrollable_IsOvershootEnabled(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Scrollable_SetOvershootEnabled")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Scrollable_SetOvershootEnabled")] public static extern void Scrollable_SetOvershootEnabled(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Scrollable_SetOvershootEffectColor")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Scrollable_SetOvershootEffectColor")] public static extern void Scrollable_SetOvershootEffectColor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Scrollable_GetOvershootEffectColor")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Scrollable_GetOvershootEffectColor")] public static extern global::System.IntPtr Scrollable_GetOvershootEffectColor(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Scrollable_SetOvershootAnimationSpeed")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Scrollable_SetOvershootAnimationSpeed")] public static extern void Scrollable_SetOvershootAnimationSpeed(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Scrollable_GetOvershootAnimationSpeed")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Scrollable_GetOvershootAnimationSpeed")] public static extern float Scrollable_GetOvershootAnimationSpeed(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Scrollable_ScrollStartedSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Scrollable_ScrollStartedSignal")] public static extern global::System.IntPtr Scrollable_ScrollStartedSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Scrollable_ScrollUpdatedSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Scrollable_ScrollUpdatedSignal")] public static extern global::System.IntPtr Scrollable_ScrollUpdatedSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Scrollable_ScrollCompletedSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Scrollable_ScrollCompletedSignal")] public static extern global::System.IntPtr Scrollable_ScrollCompletedSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_IsVertical")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_IsVertical")] public static extern bool IsVertical(int jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_IsHorizontal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_IsHorizontal")] public static extern bool IsHorizontal(int jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_ItemRange__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_ItemRange__SWIG_0")] public static extern global::System.IntPtr new_ItemRange__SWIG_0(uint jarg1, uint jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_ItemRange__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_ItemRange__SWIG_1")] public static extern global::System.IntPtr new_ItemRange__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ItemRange_Assign")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ItemRange_Assign")] public static extern global::System.IntPtr ItemRange_Assign(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ItemRange_Within")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ItemRange_Within")] public static extern bool ItemRange_Within(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ItemRange_Intersection")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ItemRange_Intersection")] public static extern global::System.IntPtr ItemRange_Intersection(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ItemRange_begin_set")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ItemRange_begin_set")] public static extern void ItemRange_begin_set(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ItemRange_begin_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ItemRange_begin_get")] public static extern uint ItemRange_begin_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ItemRange_end_set")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ItemRange_end_set")] public static extern void ItemRange_end_set(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ItemRange_end_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ItemRange_end_get")] public static extern uint ItemRange_end_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_ItemRange")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_ItemRange")] public static extern void delete_ItemRange(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_ItemLayout")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_ItemLayout")] public static extern void delete_ItemLayout(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ItemLayout_SetOrientation")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ItemLayout_SetOrientation")] public static extern void ItemLayout_SetOrientation(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ItemLayout_GetOrientation")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ItemLayout_GetOrientation")] public static extern int ItemLayout_GetOrientation(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ItemLayout_SetLayoutProperties")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ItemLayout_SetLayoutProperties")] public static extern void ItemLayout_SetLayoutProperties(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ItemLayout_GetLayoutProperties")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ItemLayout_GetLayoutProperties")] public static extern global::System.IntPtr ItemLayout_GetLayoutProperties(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ItemLayout_HasLayoutChanged")] - public static extern bool ItemLayout_HasLayoutChanged(global::System.Runtime.InteropServices.HandleRef jarg1); - - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ItemLayout_ResetLayoutChangedFlag")] - public static extern void ItemLayout_ResetLayoutChangedFlag(global::System.Runtime.InteropServices.HandleRef jarg1); - - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ItemLayout_GetItemSize")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ItemLayout_GetItemSize")] public static extern void ItemLayout_GetItemSize(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ItemLayout_SetItemSize")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ItemLayout_SetItemSize")] public static extern void ItemLayout_SetItemSize(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ItemLayout_GetMinimumLayoutPosition")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ItemLayout_GetMinimumLayoutPosition")] public static extern float ItemLayout_GetMinimumLayoutPosition(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ItemLayout_GetClosestAnchorPosition")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ItemLayout_GetClosestAnchorPosition")] public static extern float ItemLayout_GetClosestAnchorPosition(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ItemLayout_GetItemScrollToPosition")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ItemLayout_GetItemScrollToPosition")] public static extern float ItemLayout_GetItemScrollToPosition(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ItemLayout_GetItemsWithinArea")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ItemLayout_GetItemsWithinArea")] public static extern global::System.IntPtr ItemLayout_GetItemsWithinArea(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ItemLayout_GetClosestOnScreenLayoutPosition")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ItemLayout_GetClosestOnScreenLayoutPosition")] public static extern float ItemLayout_GetClosestOnScreenLayoutPosition(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, float jarg3, global::System.Runtime.InteropServices.HandleRef jarg4); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ItemLayout_GetReserveItemCount")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ItemLayout_GetReserveItemCount")] public static extern uint ItemLayout_GetReserveItemCount(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ItemLayout_GetDefaultItemSize")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ItemLayout_GetDefaultItemSize")] public static extern void ItemLayout_GetDefaultItemSize(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ItemLayout_GetScrollDirection")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ItemLayout_GetScrollDirection")] public static extern global::System.IntPtr ItemLayout_GetScrollDirection(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ItemLayout_GetScrollSpeedFactor")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ItemLayout_GetScrollSpeedFactor")] public static extern float ItemLayout_GetScrollSpeedFactor(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ItemLayout_GetMaximumSwipeSpeed")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ItemLayout_GetMaximumSwipeSpeed")] public static extern float ItemLayout_GetMaximumSwipeSpeed(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ItemLayout_GetItemFlickAnimationDuration")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ItemLayout_GetItemFlickAnimationDuration")] public static extern float ItemLayout_GetItemFlickAnimationDuration(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ItemLayout_GetNextFocusItemID")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ItemLayout_GetNextFocusItemID")] public static extern int ItemLayout_GetNextFocusItemID(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3, int jarg4, bool jarg5); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ItemLayout_GetFlickSpeedFactor")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ItemLayout_GetFlickSpeedFactor")] public static extern float ItemLayout_GetFlickSpeedFactor(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ItemLayout_ApplyConstraints")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ItemLayout_ApplyConstraints")] public static extern void ItemLayout_ApplyConstraints(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, global::System.Runtime.InteropServices.HandleRef jarg5); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ItemLayout_GetItemPosition")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ItemLayout_GetItemPosition")] public static extern global::System.IntPtr ItemLayout_GetItemPosition(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, float jarg3, global::System.Runtime.InteropServices.HandleRef jarg4); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_NewItemLayout")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_NewItemLayout")] public static extern global::System.IntPtr NewItemLayout(int jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_ItemFactory")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_ItemFactory")] public static extern void delete_ItemFactory(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ItemFactory_GetNumberOfItems")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ItemFactory_GetNumberOfItems")] public static extern uint ItemFactory_GetNumberOfItems(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ItemFactory_NewItem")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ItemFactory_NewItem")] public static extern global::System.IntPtr ItemFactory_NewItem(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ItemFactory_ItemReleased")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ItemFactory_ItemReleased")] public static extern void ItemFactory_ItemReleased(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ItemView_Property_MINIMUM_SWIPE_SPEED_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ItemFactory_ItemReleasedSwigExplicitItemFactory")] + public static extern void ItemFactory_ItemReleasedSwigExplicitItemFactory(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); + + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_ItemFactory")] + public static extern global::System.IntPtr new_ItemFactory(); + + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ItemFactory_director_connect")] + public static extern void ItemFactory_director_connect(global::System.Runtime.InteropServices.HandleRef jarg1, ItemFactory.SwigDelegateItemFactory_0 delegate0, ItemFactory.SwigDelegateItemFactory_1 delegate1, ItemFactory.SwigDelegateItemFactory_2 delegate2); + + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ItemView_Property_MINIMUM_SWIPE_SPEED_get")] public static extern int ItemView_Property_MINIMUM_SWIPE_SPEED_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ItemView_Property_MINIMUM_SWIPE_DISTANCE_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ItemView_Property_MINIMUM_SWIPE_DISTANCE_get")] public static extern int ItemView_Property_MINIMUM_SWIPE_DISTANCE_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ItemView_Property_WHEEL_SCROLL_DISTANCE_STEP_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ItemView_Property_WHEEL_SCROLL_DISTANCE_STEP_get")] public static extern int ItemView_Property_WHEEL_SCROLL_DISTANCE_STEP_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ItemView_Property_SNAP_TO_ITEM_ENABLED_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ItemView_Property_SNAP_TO_ITEM_ENABLED_get")] public static extern int ItemView_Property_SNAP_TO_ITEM_ENABLED_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ItemView_Property_REFRESH_INTERVAL_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ItemView_Property_REFRESH_INTERVAL_get")] public static extern int ItemView_Property_REFRESH_INTERVAL_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ItemView_Property_LAYOUT_POSITION_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ItemView_Property_LAYOUT_POSITION_get")] public static extern int ItemView_Property_LAYOUT_POSITION_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ItemView_Property_SCROLL_SPEED_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ItemView_Property_SCROLL_SPEED_get")] public static extern int ItemView_Property_SCROLL_SPEED_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ItemView_Property_OVERSHOOT_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ItemView_Property_OVERSHOOT_get")] public static extern int ItemView_Property_OVERSHOOT_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ItemView_Property_SCROLL_DIRECTION_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ItemView_Property_SCROLL_DIRECTION_get")] public static extern int ItemView_Property_SCROLL_DIRECTION_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ItemView_Property_LAYOUT_ORIENTATION_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ItemView_Property_LAYOUT_ORIENTATION_get")] public static extern int ItemView_Property_LAYOUT_ORIENTATION_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ItemView_Property_SCROLL_CONTENT_SIZE_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ItemView_Property_SCROLL_CONTENT_SIZE_get")] public static extern int ItemView_Property_SCROLL_CONTENT_SIZE_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_ItemView_Property")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_ItemView_Property")] public static extern global::System.IntPtr new_ItemView_Property(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_ItemView_Property")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_ItemView_Property")] public static extern void delete_ItemView_Property(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_ItemView__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_ItemView__SWIG_0")] public static extern global::System.IntPtr new_ItemView__SWIG_0(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_ItemView__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_ItemView__SWIG_1")] public static extern global::System.IntPtr new_ItemView__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ItemView_Assign")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ItemView_Assign")] public static extern global::System.IntPtr ItemView_Assign(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_ItemView")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_ItemView")] public static extern void delete_ItemView(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ItemView_New")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ItemView_New")] public static extern global::System.IntPtr ItemView_New(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ItemView_DownCast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ItemView_DownCast")] public static extern global::System.IntPtr ItemView_DownCast(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ItemView_GetLayoutCount")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ItemView_GetLayoutCount")] public static extern uint ItemView_GetLayoutCount(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ItemView_AddLayout")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ItemView_AddLayout")] public static extern void ItemView_AddLayout(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ItemView_RemoveLayout")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ItemView_RemoveLayout")] public static extern void ItemView_RemoveLayout(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ItemView_GetLayout")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ItemView_GetLayout")] public static extern global::System.IntPtr ItemView_GetLayout(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ItemView_GetActiveLayout")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ItemView_GetActiveLayout")] public static extern global::System.IntPtr ItemView_GetActiveLayout(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ItemView_GetCurrentLayoutPosition")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ItemView_GetCurrentLayoutPosition")] public static extern float ItemView_GetCurrentLayoutPosition(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ItemView_ActivateLayout")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ItemView_ActivateLayout")] public static extern void ItemView_ActivateLayout(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, float jarg4); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ItemView_DeactivateCurrentLayout")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ItemView_DeactivateCurrentLayout")] public static extern void ItemView_DeactivateCurrentLayout(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ItemView_SetMinimumSwipeSpeed")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ItemView_SetMinimumSwipeSpeed")] public static extern void ItemView_SetMinimumSwipeSpeed(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ItemView_GetMinimumSwipeSpeed")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ItemView_GetMinimumSwipeSpeed")] public static extern float ItemView_GetMinimumSwipeSpeed(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ItemView_SetMinimumSwipeDistance")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ItemView_SetMinimumSwipeDistance")] public static extern void ItemView_SetMinimumSwipeDistance(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ItemView_GetMinimumSwipeDistance")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ItemView_GetMinimumSwipeDistance")] public static extern float ItemView_GetMinimumSwipeDistance(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ItemView_SetWheelScrollDistanceStep")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ItemView_SetWheelScrollDistanceStep")] public static extern void ItemView_SetWheelScrollDistanceStep(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ItemView_GetWheelScrollDistanceStep")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ItemView_GetWheelScrollDistanceStep")] public static extern float ItemView_GetWheelScrollDistanceStep(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ItemView_SetAnchoring")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ItemView_SetAnchoring")] public static extern void ItemView_SetAnchoring(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ItemView_GetAnchoring")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ItemView_GetAnchoring")] public static extern bool ItemView_GetAnchoring(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ItemView_SetAnchoringDuration")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ItemView_SetAnchoringDuration")] public static extern void ItemView_SetAnchoringDuration(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ItemView_GetAnchoringDuration")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ItemView_GetAnchoringDuration")] public static extern float ItemView_GetAnchoringDuration(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ItemView_ScrollToItem")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ItemView_ScrollToItem")] public static extern void ItemView_ScrollToItem(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2, float jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ItemView_SetRefreshInterval")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ItemView_SetRefreshInterval")] public static extern void ItemView_SetRefreshInterval(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ItemView_GetRefreshInterval")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ItemView_GetRefreshInterval")] public static extern float ItemView_GetRefreshInterval(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ItemView_Refresh")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ItemView_Refresh")] public static extern void ItemView_Refresh(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ItemView_GetItem")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ItemView_GetItem")] public static extern global::System.IntPtr ItemView_GetItem(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ItemView_GetItemId")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ItemView_GetItemId")] public static extern uint ItemView_GetItemId(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ItemView_InsertItem")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ItemView_InsertItem")] public static extern void ItemView_InsertItem(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, float jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ItemView_InsertItems")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ItemView_InsertItems")] public static extern void ItemView_InsertItems(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, float jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ItemView_RemoveItem")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ItemView_RemoveItem")] public static extern void ItemView_RemoveItem(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2, float jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ItemView_RemoveItems")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ItemView_RemoveItems")] public static extern void ItemView_RemoveItems(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, float jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ItemView_ReplaceItem")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ItemView_ReplaceItem")] public static extern void ItemView_ReplaceItem(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, float jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ItemView_ReplaceItems")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ItemView_ReplaceItems")] public static extern void ItemView_ReplaceItems(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, float jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ItemView_SetItemsParentOrigin")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ItemView_SetItemsParentOrigin")] public static extern void ItemView_SetItemsParentOrigin(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ItemView_GetItemsParentOrigin")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ItemView_GetItemsParentOrigin")] public static extern global::System.IntPtr ItemView_GetItemsParentOrigin(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ItemView_SetItemsAnchorPoint")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ItemView_SetItemsAnchorPoint")] public static extern void ItemView_SetItemsAnchorPoint(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ItemView_GetItemsAnchorPoint")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ItemView_GetItemsAnchorPoint")] public static extern global::System.IntPtr ItemView_GetItemsAnchorPoint(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ItemView_GetItemsRange")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ItemView_GetItemsRange")] public static extern void ItemView_GetItemsRange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ItemView_LayoutActivatedSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ItemView_LayoutActivatedSignal")] public static extern global::System.IntPtr ItemView_LayoutActivatedSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_MoveActorConstraint")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_MoveActorConstraint")] public static extern void MoveActorConstraint(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_WrapActorConstraint")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_WrapActorConstraint")] public static extern void WrapActorConstraint(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_ScrollViewEffect")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_ScrollViewEffect")] public static extern global::System.IntPtr new_ScrollViewEffect(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_ScrollViewEffect")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_ScrollViewEffect")] public static extern void delete_ScrollViewEffect(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollViewPagePathEffect_New")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollViewPagePathEffect_New")] public static extern global::System.IntPtr ScrollViewPagePathEffect_New(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, uint jarg5); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_ScrollViewPagePathEffect")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_ScrollViewPagePathEffect")] public static extern global::System.IntPtr new_ScrollViewPagePathEffect(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollViewPagePathEffect_DownCast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollViewPagePathEffect_DownCast")] public static extern global::System.IntPtr ScrollViewPagePathEffect_DownCast(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollViewPagePathEffect_ApplyToPage")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollViewPagePathEffect_ApplyToPage")] public static extern void ScrollViewPagePathEffect_ApplyToPage(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, uint jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_ScrollViewPagePathEffect")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_ScrollViewPagePathEffect")] public static extern void delete_ScrollViewPagePathEffect(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ClampState2D_x_set")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ClampState2D_x_set")] public static extern void ClampState2D_x_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ClampState2D_x_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ClampState2D_x_get")] public static extern int ClampState2D_x_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ClampState2D_y_set")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ClampState2D_y_set")] public static extern void ClampState2D_y_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ClampState2D_y_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ClampState2D_y_get")] public static extern int ClampState2D_y_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_ClampState2D")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_ClampState2D")] public static extern global::System.IntPtr new_ClampState2D(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_ClampState2D")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_ClampState2D")] public static extern void delete_ClampState2D(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_RulerDomain__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_RulerDomain__SWIG_0")] public static extern global::System.IntPtr new_RulerDomain__SWIG_0(float jarg1, float jarg2, bool jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_RulerDomain__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_RulerDomain__SWIG_1")] public static extern global::System.IntPtr new_RulerDomain__SWIG_1(float jarg1, float jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RulerDomain_min_set")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RulerDomain_min_set")] public static extern void RulerDomain_min_set(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RulerDomain_min_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RulerDomain_min_get")] public static extern float RulerDomain_min_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RulerDomain_max_set")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RulerDomain_max_set")] public static extern void RulerDomain_max_set(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RulerDomain_max_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RulerDomain_max_get")] public static extern float RulerDomain_max_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RulerDomain_enabled_set")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RulerDomain_enabled_set")] public static extern void RulerDomain_enabled_set(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RulerDomain_enabled_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RulerDomain_enabled_get")] public static extern bool RulerDomain_enabled_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RulerDomain_Clamp__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RulerDomain_Clamp__SWIG_0")] public static extern float RulerDomain_Clamp__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2, float jarg3, float jarg4); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RulerDomain_Clamp__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RulerDomain_Clamp__SWIG_1")] public static extern float RulerDomain_Clamp__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2, float jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RulerDomain_Clamp__SWIG_2")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RulerDomain_Clamp__SWIG_2")] public static extern float RulerDomain_Clamp__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RulerDomain_Clamp__SWIG_3")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RulerDomain_Clamp__SWIG_3")] public static extern float RulerDomain_Clamp__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2, float jarg3, float jarg4, global::System.Runtime.InteropServices.HandleRef jarg5); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RulerDomain_GetSize")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RulerDomain_GetSize")] public static extern float RulerDomain_GetSize(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_RulerDomain")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_RulerDomain")] public static extern void delete_RulerDomain(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Ruler_Snap__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Ruler_Snap__SWIG_0")] public static extern float Ruler_Snap__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2, float jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Ruler_Snap__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Ruler_Snap__SWIG_1")] public static extern float Ruler_Snap__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Ruler_GetPositionFromPage")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Ruler_GetPositionFromPage")] public static extern float Ruler_GetPositionFromPage(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2, out uint jarg3, bool jarg4); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Ruler_GetPageFromPosition")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Ruler_GetPageFromPosition")] public static extern uint Ruler_GetPageFromPosition(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2, bool jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Ruler_GetTotalPages")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Ruler_GetTotalPages")] public static extern uint Ruler_GetTotalPages(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Ruler_GetType")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Ruler_GetType")] public static extern int Ruler_GetType(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Ruler_IsEnabled")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Ruler_IsEnabled")] public static extern bool Ruler_IsEnabled(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Ruler_Enable")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Ruler_Enable")] public static extern void Ruler_Enable(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Ruler_Disable")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Ruler_Disable")] public static extern void Ruler_Disable(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Ruler_SetDomain")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Ruler_SetDomain")] public static extern void Ruler_SetDomain(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Ruler_GetDomain")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Ruler_GetDomain")] public static extern global::System.IntPtr Ruler_GetDomain(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Ruler_DisableDomain")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Ruler_DisableDomain")] public static extern void Ruler_DisableDomain(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Ruler_Clamp__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Ruler_Clamp__SWIG_0")] public static extern float Ruler_Clamp__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2, float jarg3, float jarg4); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Ruler_Clamp__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Ruler_Clamp__SWIG_1")] public static extern float Ruler_Clamp__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2, float jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Ruler_Clamp__SWIG_2")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Ruler_Clamp__SWIG_2")] public static extern float Ruler_Clamp__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Ruler_Clamp__SWIG_3")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Ruler_Clamp__SWIG_3")] public static extern float Ruler_Clamp__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2, float jarg3, float jarg4, global::System.Runtime.InteropServices.HandleRef jarg5); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Ruler_SnapAndClamp__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Ruler_SnapAndClamp__SWIG_0")] public static extern float Ruler_SnapAndClamp__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2, float jarg3, float jarg4, float jarg5); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Ruler_SnapAndClamp__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Ruler_SnapAndClamp__SWIG_1")] public static extern float Ruler_SnapAndClamp__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2, float jarg3, float jarg4); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Ruler_SnapAndClamp__SWIG_2")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Ruler_SnapAndClamp__SWIG_2")] public static extern float Ruler_SnapAndClamp__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2, float jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Ruler_SnapAndClamp__SWIG_3")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Ruler_SnapAndClamp__SWIG_3")] public static extern float Ruler_SnapAndClamp__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Ruler_SnapAndClamp__SWIG_4")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Ruler_SnapAndClamp__SWIG_4")] public static extern float Ruler_SnapAndClamp__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2, float jarg3, float jarg4, float jarg5, global::System.Runtime.InteropServices.HandleRef jarg6); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_DefaultRuler")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_DefaultRuler")] public static extern global::System.IntPtr new_DefaultRuler(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_DefaultRuler_Snap")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_DefaultRuler_Snap")] public static extern float DefaultRuler_Snap(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2, float jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_DefaultRuler_GetPositionFromPage")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_DefaultRuler_GetPositionFromPage")] public static extern float DefaultRuler_GetPositionFromPage(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2, out uint jarg3, bool jarg4); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_DefaultRuler_GetPageFromPosition")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_DefaultRuler_GetPageFromPosition")] public static extern uint DefaultRuler_GetPageFromPosition(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2, bool jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_DefaultRuler_GetTotalPages")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_DefaultRuler_GetTotalPages")] public static extern uint DefaultRuler_GetTotalPages(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_DefaultRuler")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_DefaultRuler")] public static extern void delete_DefaultRuler(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_FixedRuler__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_FixedRuler__SWIG_0")] public static extern global::System.IntPtr new_FixedRuler__SWIG_0(float jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_FixedRuler__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_FixedRuler__SWIG_1")] public static extern global::System.IntPtr new_FixedRuler__SWIG_1(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_FixedRuler_Snap")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_FixedRuler_Snap")] public static extern float FixedRuler_Snap(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2, float jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_FixedRuler_GetPositionFromPage")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_FixedRuler_GetPositionFromPage")] public static extern float FixedRuler_GetPositionFromPage(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2, out uint jarg3, bool jarg4); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_FixedRuler_GetPageFromPosition")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_FixedRuler_GetPageFromPosition")] public static extern uint FixedRuler_GetPageFromPosition(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2, bool jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_FixedRuler_GetTotalPages")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_FixedRuler_GetTotalPages")] public static extern uint FixedRuler_GetTotalPages(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_FixedRuler")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_FixedRuler")] public static extern void delete_FixedRuler(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollView_ClampEvent_scale_set")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollView_ClampEvent_scale_set")] public static extern void ScrollView_ClampEvent_scale_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollView_ClampEvent_scale_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollView_ClampEvent_scale_get")] public static extern global::System.IntPtr ScrollView_ClampEvent_scale_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollView_ClampEvent_position_set")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollView_ClampEvent_position_set")] public static extern void ScrollView_ClampEvent_position_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollView_ClampEvent_position_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollView_ClampEvent_position_get")] public static extern global::System.IntPtr ScrollView_ClampEvent_position_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollView_ClampEvent_rotation_set")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollView_ClampEvent_rotation_set")] public static extern void ScrollView_ClampEvent_rotation_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollView_ClampEvent_rotation_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollView_ClampEvent_rotation_get")] public static extern int ScrollView_ClampEvent_rotation_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_ScrollView_ClampEvent")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_ScrollView_ClampEvent")] public static extern global::System.IntPtr new_ScrollView_ClampEvent(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_ScrollView_ClampEvent")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_ScrollView_ClampEvent")] public static extern void delete_ScrollView_ClampEvent(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollView_SnapEvent_type_set")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollView_SnapEvent_type_set")] public static extern void ScrollView_SnapEvent_type_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollView_SnapEvent_type_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollView_SnapEvent_type_get")] public static extern int ScrollView_SnapEvent_type_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollView_SnapEvent_position_set")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollView_SnapEvent_position_set")] public static extern void ScrollView_SnapEvent_position_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollView_SnapEvent_position_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollView_SnapEvent_position_get")] public static extern global::System.IntPtr ScrollView_SnapEvent_position_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollView_SnapEvent_duration_set")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollView_SnapEvent_duration_set")] public static extern void ScrollView_SnapEvent_duration_set(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollView_SnapEvent_duration_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollView_SnapEvent_duration_get")] public static extern float ScrollView_SnapEvent_duration_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_ScrollView_SnapEvent")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_ScrollView_SnapEvent")] public static extern global::System.IntPtr new_ScrollView_SnapEvent(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_ScrollView_SnapEvent")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_ScrollView_SnapEvent")] public static extern void delete_ScrollView_SnapEvent(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollView_Property_WRAP_ENABLED_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollView_Property_WRAP_ENABLED_get")] public static extern int ScrollView_Property_WRAP_ENABLED_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollView_Property_PANNING_ENABLED_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollView_Property_PANNING_ENABLED_get")] public static extern int ScrollView_Property_PANNING_ENABLED_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollView_Property_AXIS_AUTO_LOCK_ENABLED_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollView_Property_AXIS_AUTO_LOCK_ENABLED_get")] public static extern int ScrollView_Property_AXIS_AUTO_LOCK_ENABLED_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollView_Property_WHEEL_SCROLL_DISTANCE_STEP_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollView_Property_WHEEL_SCROLL_DISTANCE_STEP_get")] public static extern int ScrollView_Property_WHEEL_SCROLL_DISTANCE_STEP_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollView_Property_SCROLL_POSITION_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollView_Property_SCROLL_POSITION_get")] public static extern int ScrollView_Property_SCROLL_POSITION_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollView_Property_SCROLL_PRE_POSITION_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollView_Property_SCROLL_PRE_POSITION_get")] public static extern int ScrollView_Property_SCROLL_PRE_POSITION_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollView_Property_SCROLL_PRE_POSITION_X_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollView_Property_SCROLL_PRE_POSITION_X_get")] public static extern int ScrollView_Property_SCROLL_PRE_POSITION_X_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollView_Property_SCROLL_PRE_POSITION_Y_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollView_Property_SCROLL_PRE_POSITION_Y_get")] public static extern int ScrollView_Property_SCROLL_PRE_POSITION_Y_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollView_Property_SCROLL_PRE_POSITION_MAX_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollView_Property_SCROLL_PRE_POSITION_MAX_get")] public static extern int ScrollView_Property_SCROLL_PRE_POSITION_MAX_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollView_Property_SCROLL_PRE_POSITION_MAX_X_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollView_Property_SCROLL_PRE_POSITION_MAX_X_get")] public static extern int ScrollView_Property_SCROLL_PRE_POSITION_MAX_X_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollView_Property_SCROLL_PRE_POSITION_MAX_Y_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollView_Property_SCROLL_PRE_POSITION_MAX_Y_get")] public static extern int ScrollView_Property_SCROLL_PRE_POSITION_MAX_Y_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollView_Property_OVERSHOOT_X_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollView_Property_OVERSHOOT_X_get")] public static extern int ScrollView_Property_OVERSHOOT_X_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollView_Property_OVERSHOOT_Y_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollView_Property_OVERSHOOT_Y_get")] public static extern int ScrollView_Property_OVERSHOOT_Y_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollView_Property_SCROLL_FINAL_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollView_Property_SCROLL_FINAL_get")] public static extern int ScrollView_Property_SCROLL_FINAL_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollView_Property_SCROLL_FINAL_X_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollView_Property_SCROLL_FINAL_X_get")] public static extern int ScrollView_Property_SCROLL_FINAL_X_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollView_Property_SCROLL_FINAL_Y_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollView_Property_SCROLL_FINAL_Y_get")] public static extern int ScrollView_Property_SCROLL_FINAL_Y_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollView_Property_WRAP_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollView_Property_WRAP_get")] public static extern int ScrollView_Property_WRAP_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollView_Property_PANNING_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollView_Property_PANNING_get")] public static extern int ScrollView_Property_PANNING_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollView_Property_SCROLLING_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollView_Property_SCROLLING_get")] public static extern int ScrollView_Property_SCROLLING_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollView_Property_SCROLL_DOMAIN_SIZE_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollView_Property_SCROLL_DOMAIN_SIZE_get")] public static extern int ScrollView_Property_SCROLL_DOMAIN_SIZE_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollView_Property_SCROLL_DOMAIN_SIZE_X_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollView_Property_SCROLL_DOMAIN_SIZE_X_get")] public static extern int ScrollView_Property_SCROLL_DOMAIN_SIZE_X_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollView_Property_SCROLL_DOMAIN_SIZE_Y_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollView_Property_SCROLL_DOMAIN_SIZE_Y_get")] public static extern int ScrollView_Property_SCROLL_DOMAIN_SIZE_Y_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollView_Property_SCROLL_DOMAIN_OFFSET_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollView_Property_SCROLL_DOMAIN_OFFSET_get")] public static extern int ScrollView_Property_SCROLL_DOMAIN_OFFSET_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollView_Property_SCROLL_POSITION_DELTA_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollView_Property_SCROLL_POSITION_DELTA_get")] public static extern int ScrollView_Property_SCROLL_POSITION_DELTA_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollView_Property_START_PAGE_POSITION_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollView_Property_START_PAGE_POSITION_get")] public static extern int ScrollView_Property_START_PAGE_POSITION_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_ScrollView_Property")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_ScrollView_Property")] public static extern global::System.IntPtr new_ScrollView_Property(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_ScrollView_Property")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_ScrollView_Property")] public static extern void delete_ScrollView_Property(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_ScrollView__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_ScrollView__SWIG_0")] public static extern global::System.IntPtr new_ScrollView__SWIG_0(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_ScrollView__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_ScrollView__SWIG_1")] public static extern global::System.IntPtr new_ScrollView__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollView_Assign")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollView_Assign")] public static extern global::System.IntPtr ScrollView_Assign(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_ScrollView")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_ScrollView")] public static extern void delete_ScrollView(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollView_New")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollView_New")] public static extern global::System.IntPtr ScrollView_New(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollView_DownCast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollView_DownCast")] public static extern global::System.IntPtr ScrollView_DownCast(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollView_GetScrollSnapAlphaFunction")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollView_GetScrollSnapAlphaFunction")] public static extern global::System.IntPtr ScrollView_GetScrollSnapAlphaFunction(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollView_SetScrollSnapAlphaFunction")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollView_SetScrollSnapAlphaFunction")] public static extern void ScrollView_SetScrollSnapAlphaFunction(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollView_GetScrollFlickAlphaFunction")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollView_GetScrollFlickAlphaFunction")] public static extern global::System.IntPtr ScrollView_GetScrollFlickAlphaFunction(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollView_SetScrollFlickAlphaFunction")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollView_SetScrollFlickAlphaFunction")] public static extern void ScrollView_SetScrollFlickAlphaFunction(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollView_GetScrollSnapDuration")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollView_GetScrollSnapDuration")] public static extern float ScrollView_GetScrollSnapDuration(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollView_SetScrollSnapDuration")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollView_SetScrollSnapDuration")] public static extern void ScrollView_SetScrollSnapDuration(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollView_GetScrollFlickDuration")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollView_GetScrollFlickDuration")] public static extern float ScrollView_GetScrollFlickDuration(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollView_SetScrollFlickDuration")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollView_SetScrollFlickDuration")] public static extern void ScrollView_SetScrollFlickDuration(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollView_SetRulerX")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollView_SetRulerX")] public static extern void ScrollView_SetRulerX(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollView_SetRulerY")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollView_SetRulerY")] public static extern void ScrollView_SetRulerY(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollView_SetScrollSensitive")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollView_SetScrollSensitive")] public static extern void ScrollView_SetScrollSensitive(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollView_SetMaxOvershoot")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollView_SetMaxOvershoot")] public static extern void ScrollView_SetMaxOvershoot(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2, float jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollView_SetSnapOvershootAlphaFunction")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollView_SetSnapOvershootAlphaFunction")] public static extern void ScrollView_SetSnapOvershootAlphaFunction(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollView_SetSnapOvershootDuration")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollView_SetSnapOvershootDuration")] public static extern void ScrollView_SetSnapOvershootDuration(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollView_SetActorAutoSnap")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollView_SetActorAutoSnap")] public static extern void ScrollView_SetActorAutoSnap(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollView_SetWrapMode")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollView_SetWrapMode")] public static extern void ScrollView_SetWrapMode(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollView_GetScrollUpdateDistance")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollView_GetScrollUpdateDistance")] public static extern int ScrollView_GetScrollUpdateDistance(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollView_SetScrollUpdateDistance")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollView_SetScrollUpdateDistance")] public static extern void ScrollView_SetScrollUpdateDistance(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollView_GetAxisAutoLock")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollView_GetAxisAutoLock")] public static extern bool ScrollView_GetAxisAutoLock(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollView_SetAxisAutoLock")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollView_SetAxisAutoLock")] public static extern void ScrollView_SetAxisAutoLock(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollView_GetAxisAutoLockGradient")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollView_GetAxisAutoLockGradient")] public static extern float ScrollView_GetAxisAutoLockGradient(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollView_SetAxisAutoLockGradient")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollView_SetAxisAutoLockGradient")] public static extern void ScrollView_SetAxisAutoLockGradient(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollView_GetFrictionCoefficient")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollView_GetFrictionCoefficient")] public static extern float ScrollView_GetFrictionCoefficient(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollView_SetFrictionCoefficient")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollView_SetFrictionCoefficient")] public static extern void ScrollView_SetFrictionCoefficient(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollView_GetFlickSpeedCoefficient")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollView_GetFlickSpeedCoefficient")] public static extern float ScrollView_GetFlickSpeedCoefficient(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollView_SetFlickSpeedCoefficient")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollView_SetFlickSpeedCoefficient")] public static extern void ScrollView_SetFlickSpeedCoefficient(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollView_GetMinimumDistanceForFlick")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollView_GetMinimumDistanceForFlick")] public static extern global::System.IntPtr ScrollView_GetMinimumDistanceForFlick(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollView_SetMinimumDistanceForFlick")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollView_SetMinimumDistanceForFlick")] public static extern void ScrollView_SetMinimumDistanceForFlick(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollView_GetMinimumSpeedForFlick")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollView_GetMinimumSpeedForFlick")] public static extern float ScrollView_GetMinimumSpeedForFlick(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollView_SetMinimumSpeedForFlick")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollView_SetMinimumSpeedForFlick")] public static extern void ScrollView_SetMinimumSpeedForFlick(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollView_GetMaxFlickSpeed")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollView_GetMaxFlickSpeed")] public static extern float ScrollView_GetMaxFlickSpeed(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollView_SetMaxFlickSpeed")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollView_SetMaxFlickSpeed")] public static extern void ScrollView_SetMaxFlickSpeed(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollView_GetWheelScrollDistanceStep")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollView_GetWheelScrollDistanceStep")] public static extern global::System.IntPtr ScrollView_GetWheelScrollDistanceStep(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollView_SetWheelScrollDistanceStep")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollView_SetWheelScrollDistanceStep")] public static extern void ScrollView_SetWheelScrollDistanceStep(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollView_GetCurrentScrollPosition")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollView_GetCurrentScrollPosition")] public static extern global::System.IntPtr ScrollView_GetCurrentScrollPosition(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollView_GetCurrentPage")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollView_GetCurrentPage")] public static extern uint ScrollView_GetCurrentPage(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollView_ScrollTo__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollView_ScrollTo__SWIG_0")] public static extern void ScrollView_ScrollTo__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollView_ScrollTo__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollView_ScrollTo__SWIG_1")] public static extern void ScrollView_ScrollTo__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, float jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollView_ScrollTo__SWIG_2")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollView_ScrollTo__SWIG_2")] public static extern void ScrollView_ScrollTo__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, float jarg3, global::System.Runtime.InteropServices.HandleRef jarg4); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollView_ScrollTo__SWIG_3")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollView_ScrollTo__SWIG_3")] public static extern void ScrollView_ScrollTo__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, float jarg3, int jarg4, int jarg5); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollView_ScrollTo__SWIG_4")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollView_ScrollTo__SWIG_4")] public static extern void ScrollView_ScrollTo__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, float jarg3, global::System.Runtime.InteropServices.HandleRef jarg4, int jarg5, int jarg6); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollView_ScrollTo__SWIG_5")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollView_ScrollTo__SWIG_5")] public static extern void ScrollView_ScrollTo__SWIG_5(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollView_ScrollTo__SWIG_6")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollView_ScrollTo__SWIG_6")] public static extern void ScrollView_ScrollTo__SWIG_6(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2, float jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollView_ScrollTo__SWIG_7")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollView_ScrollTo__SWIG_7")] public static extern void ScrollView_ScrollTo__SWIG_7(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2, float jarg3, int jarg4); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollView_ScrollTo__SWIG_8")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollView_ScrollTo__SWIG_8")] public static extern void ScrollView_ScrollTo__SWIG_8(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollView_ScrollTo__SWIG_9")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollView_ScrollTo__SWIG_9")] public static extern void ScrollView_ScrollTo__SWIG_9(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, float jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollView_ScrollToSnapPoint")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollView_ScrollToSnapPoint")] public static extern bool ScrollView_ScrollToSnapPoint(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollView_ApplyConstraintToChildren")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollView_ApplyConstraintToChildren")] public static extern void ScrollView_ApplyConstraintToChildren(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollView_RemoveConstraintsFromChildren")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollView_RemoveConstraintsFromChildren")] public static extern void ScrollView_RemoveConstraintsFromChildren(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollView_ApplyEffect")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollView_ApplyEffect")] public static extern void ScrollView_ApplyEffect(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollView_RemoveEffect")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollView_RemoveEffect")] public static extern void ScrollView_RemoveEffect(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollView_RemoveAllEffects")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollView_RemoveAllEffects")] public static extern void ScrollView_RemoveAllEffects(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollView_BindActor")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollView_BindActor")] public static extern void ScrollView_BindActor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollView_UnbindActor")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollView_UnbindActor")] public static extern void ScrollView_UnbindActor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollView_SetScrollingDirection__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollView_SetScrollingDirection__SWIG_0")] public static extern void ScrollView_SetScrollingDirection__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollView_SetScrollingDirection__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollView_SetScrollingDirection__SWIG_1")] public static extern void ScrollView_SetScrollingDirection__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollView_RemoveScrollingDirection")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollView_RemoveScrollingDirection")] public static extern void ScrollView_RemoveScrollingDirection(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollView_SnapStartedSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollView_SnapStartedSignal")] public static extern global::System.IntPtr ScrollView_SnapStartedSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TableView_Property_ROWS_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TableView_Property_ROWS_get")] public static extern int TableView_Property_ROWS_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TableView_Property_COLUMNS_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TableView_Property_COLUMNS_get")] public static extern int TableView_Property_COLUMNS_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TableView_Property_CELL_PADDING_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TableView_Property_CELL_PADDING_get")] public static extern int TableView_Property_CELL_PADDING_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TableView_Property_LAYOUT_ROWS_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TableView_Property_LAYOUT_ROWS_get")] public static extern int TableView_Property_LAYOUT_ROWS_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TableView_Property_LAYOUT_COLUMNS_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TableView_Property_LAYOUT_COLUMNS_get")] public static extern int TableView_Property_LAYOUT_COLUMNS_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_TableView_Property")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_TableView_Property")] public static extern global::System.IntPtr new_TableView_Property(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_TableView_Property")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_TableView_Property")] public static extern void delete_TableView_Property(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TableView_ChildProperty_CELL_INDEX_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TableView_ChildProperty_CELL_INDEX_get")] public static extern int TableView_ChildProperty_CELL_INDEX_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TableView_ChildProperty_ROW_SPAN_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TableView_ChildProperty_ROW_SPAN_get")] public static extern int TableView_ChildProperty_ROW_SPAN_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TableView_ChildProperty_COLUMN_SPAN_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TableView_ChildProperty_COLUMN_SPAN_get")] public static extern int TableView_ChildProperty_COLUMN_SPAN_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TableView_ChildProperty_CELL_HORIZONTAL_ALIGNMENT_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TableView_ChildProperty_CELL_HORIZONTAL_ALIGNMENT_get")] public static extern int TableView_ChildProperty_CELL_HORIZONTAL_ALIGNMENT_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TableView_ChildProperty_CELL_VERTICAL_ALIGNMENT_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TableView_ChildProperty_CELL_VERTICAL_ALIGNMENT_get")] public static extern int TableView_ChildProperty_CELL_VERTICAL_ALIGNMENT_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_TableView_ChildProperty")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_TableView_ChildProperty")] public static extern global::System.IntPtr new_TableView_ChildProperty(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_TableView_ChildProperty")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_TableView_ChildProperty")] public static extern void delete_TableView_ChildProperty(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_TableView_CellPosition__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_TableView_CellPosition__SWIG_0")] public static extern global::System.IntPtr new_TableView_CellPosition__SWIG_0(uint jarg1, uint jarg2, uint jarg3, uint jarg4); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_TableView_CellPosition__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_TableView_CellPosition__SWIG_1")] public static extern global::System.IntPtr new_TableView_CellPosition__SWIG_1(uint jarg1, uint jarg2, uint jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_TableView_CellPosition__SWIG_2")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_TableView_CellPosition__SWIG_2")] public static extern global::System.IntPtr new_TableView_CellPosition__SWIG_2(uint jarg1, uint jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_TableView_CellPosition__SWIG_3")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_TableView_CellPosition__SWIG_3")] public static extern global::System.IntPtr new_TableView_CellPosition__SWIG_3(uint jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_TableView_CellPosition__SWIG_4")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_TableView_CellPosition__SWIG_4")] public static extern global::System.IntPtr new_TableView_CellPosition__SWIG_4(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TableView_CellPosition_rowIndex_set")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TableView_CellPosition_rowIndex_set")] public static extern void TableView_CellPosition_rowIndex_set(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TableView_CellPosition_rowIndex_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TableView_CellPosition_rowIndex_get")] public static extern uint TableView_CellPosition_rowIndex_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TableView_CellPosition_columnIndex_set")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TableView_CellPosition_columnIndex_set")] public static extern void TableView_CellPosition_columnIndex_set(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TableView_CellPosition_columnIndex_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TableView_CellPosition_columnIndex_get")] public static extern uint TableView_CellPosition_columnIndex_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TableView_CellPosition_rowSpan_set")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TableView_CellPosition_rowSpan_set")] public static extern void TableView_CellPosition_rowSpan_set(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TableView_CellPosition_rowSpan_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TableView_CellPosition_rowSpan_get")] public static extern uint TableView_CellPosition_rowSpan_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TableView_CellPosition_columnSpan_set")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TableView_CellPosition_columnSpan_set")] public static extern void TableView_CellPosition_columnSpan_set(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TableView_CellPosition_columnSpan_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TableView_CellPosition_columnSpan_get")] public static extern uint TableView_CellPosition_columnSpan_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_TableView_CellPosition")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_TableView_CellPosition")] public static extern void delete_TableView_CellPosition(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_TableView__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_TableView__SWIG_0")] public static extern global::System.IntPtr new_TableView__SWIG_0(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_TableView__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_TableView__SWIG_1")] public static extern global::System.IntPtr new_TableView__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TableView_Assign")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TableView_Assign")] public static extern global::System.IntPtr TableView_Assign(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_TableView")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_TableView")] public static extern void delete_TableView(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TableView_New")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TableView_New")] public static extern global::System.IntPtr TableView_New(uint jarg1, uint jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TableView_DownCast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TableView_DownCast")] public static extern global::System.IntPtr TableView_DownCast(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TableView_AddChild")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TableView_AddChild")] public static extern bool TableView_AddChild(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TableView_GetChildAt")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TableView_GetChildAt")] public static extern global::System.IntPtr TableView_GetChildAt(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TableView_RemoveChildAt")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TableView_RemoveChildAt")] public static extern global::System.IntPtr TableView_RemoveChildAt(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TableView_FindChildPosition")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TableView_FindChildPosition")] public static extern bool TableView_FindChildPosition(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TableView_InsertRow")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TableView_InsertRow")] public static extern void TableView_InsertRow(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TableView_DeleteRow__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TableView_DeleteRow__SWIG_0")] public static extern void TableView_DeleteRow__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TableView_DeleteRow__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TableView_DeleteRow__SWIG_1")] public static extern void TableView_DeleteRow__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TableView_InsertColumn")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TableView_InsertColumn")] public static extern void TableView_InsertColumn(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TableView_DeleteColumn__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TableView_DeleteColumn__SWIG_0")] public static extern void TableView_DeleteColumn__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TableView_DeleteColumn__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TableView_DeleteColumn__SWIG_1")] public static extern void TableView_DeleteColumn__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TableView_Resize__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TableView_Resize__SWIG_0")] public static extern void TableView_Resize__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2, uint jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TableView_Resize__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TableView_Resize__SWIG_1")] public static extern void TableView_Resize__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2, uint jarg3, global::System.Runtime.InteropServices.HandleRef jarg4); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TableView_SetCellPadding")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TableView_SetCellPadding")] public static extern void TableView_SetCellPadding(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TableView_GetCellPadding")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TableView_GetCellPadding")] public static extern global::System.IntPtr TableView_GetCellPadding(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TableView_SetFitHeight")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TableView_SetFitHeight")] public static extern void TableView_SetFitHeight(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TableView_IsFitHeight")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TableView_IsFitHeight")] public static extern bool TableView_IsFitHeight(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TableView_SetFitWidth")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TableView_SetFitWidth")] public static extern void TableView_SetFitWidth(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TableView_IsFitWidth")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TableView_IsFitWidth")] public static extern bool TableView_IsFitWidth(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TableView_SetFixedHeight")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TableView_SetFixedHeight")] public static extern void TableView_SetFixedHeight(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2, float jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TableView_GetFixedHeight")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TableView_GetFixedHeight")] public static extern float TableView_GetFixedHeight(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TableView_SetRelativeHeight")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TableView_SetRelativeHeight")] public static extern void TableView_SetRelativeHeight(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2, float jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TableView_GetRelativeHeight")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TableView_GetRelativeHeight")] public static extern float TableView_GetRelativeHeight(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TableView_SetFixedWidth")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TableView_SetFixedWidth")] public static extern void TableView_SetFixedWidth(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2, float jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TableView_GetFixedWidth")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TableView_GetFixedWidth")] public static extern float TableView_GetFixedWidth(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TableView_SetRelativeWidth")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TableView_SetRelativeWidth")] public static extern void TableView_SetRelativeWidth(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2, float jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TableView_GetRelativeWidth")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TableView_GetRelativeWidth")] public static extern float TableView_GetRelativeWidth(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TableView_GetRows")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TableView_GetRows")] public static extern uint TableView_GetRows(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TableView_GetColumns")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TableView_GetColumns")] public static extern uint TableView_GetColumns(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TableView_SetCellAlignment")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TableView_SetCellAlignment")] public static extern void TableView_SetCellAlignment(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3, int jarg4); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_DEFAULT_RENDERING_BACKEND_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_DEFAULT_RENDERING_BACKEND_get")] public static extern uint DEFAULT_RENDERING_BACKEND_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextEditor_Property_RENDERING_BACKEND_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextEditor_Property_RENDERING_BACKEND_get")] public static extern int TextEditor_Property_RENDERING_BACKEND_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextEditor_Property_TEXT_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextEditor_Property_TEXT_get")] public static extern int TextEditor_Property_TEXT_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextEditor_Property_TEXT_COLOR_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextEditor_Property_TEXT_COLOR_get")] public static extern int TextEditor_Property_TEXT_COLOR_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextEditor_Property_FONT_FAMILY_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextEditor_Property_FONT_FAMILY_get")] public static extern int TextEditor_Property_FONT_FAMILY_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextEditor_Property_FONT_STYLE_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextEditor_Property_FONT_STYLE_get")] public static extern int TextEditor_Property_FONT_STYLE_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextEditor_Property_POINT_SIZE_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextEditor_Property_POINT_SIZE_get")] public static extern int TextEditor_Property_POINT_SIZE_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextEditor_Property_HORIZONTAL_ALIGNMENT_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextEditor_Property_HORIZONTAL_ALIGNMENT_get")] public static extern int TextEditor_Property_HORIZONTAL_ALIGNMENT_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextEditor_Property_SCROLL_THRESHOLD_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextEditor_Property_SCROLL_THRESHOLD_get")] public static extern int TextEditor_Property_SCROLL_THRESHOLD_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextEditor_Property_SCROLL_SPEED_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextEditor_Property_SCROLL_SPEED_get")] public static extern int TextEditor_Property_SCROLL_SPEED_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextEditor_Property_PRIMARY_CURSOR_COLOR_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextEditor_Property_PRIMARY_CURSOR_COLOR_get")] public static extern int TextEditor_Property_PRIMARY_CURSOR_COLOR_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextEditor_Property_SECONDARY_CURSOR_COLOR_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextEditor_Property_SECONDARY_CURSOR_COLOR_get")] public static extern int TextEditor_Property_SECONDARY_CURSOR_COLOR_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextEditor_Property_ENABLE_CURSOR_BLINK_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextEditor_Property_ENABLE_CURSOR_BLINK_get")] public static extern int TextEditor_Property_ENABLE_CURSOR_BLINK_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextEditor_Property_CURSOR_BLINK_INTERVAL_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextEditor_Property_CURSOR_BLINK_INTERVAL_get")] public static extern int TextEditor_Property_CURSOR_BLINK_INTERVAL_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextEditor_Property_CURSOR_BLINK_DURATION_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextEditor_Property_CURSOR_BLINK_DURATION_get")] public static extern int TextEditor_Property_CURSOR_BLINK_DURATION_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextEditor_Property_CURSOR_WIDTH_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextEditor_Property_CURSOR_WIDTH_get")] public static extern int TextEditor_Property_CURSOR_WIDTH_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextEditor_Property_GRAB_HANDLE_IMAGE_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextEditor_Property_GRAB_HANDLE_IMAGE_get")] public static extern int TextEditor_Property_GRAB_HANDLE_IMAGE_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextEditor_Property_GRAB_HANDLE_PRESSED_IMAGE_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextEditor_Property_GRAB_HANDLE_PRESSED_IMAGE_get")] public static extern int TextEditor_Property_GRAB_HANDLE_PRESSED_IMAGE_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextEditor_Property_SELECTION_HANDLE_IMAGE_LEFT_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextEditor_Property_SELECTION_HANDLE_IMAGE_LEFT_get")] public static extern int TextEditor_Property_SELECTION_HANDLE_IMAGE_LEFT_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextEditor_Property_SELECTION_HANDLE_IMAGE_RIGHT_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextEditor_Property_SELECTION_HANDLE_IMAGE_RIGHT_get")] public static extern int TextEditor_Property_SELECTION_HANDLE_IMAGE_RIGHT_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextEditor_Property_SELECTION_HANDLE_PRESSED_IMAGE_LEFT_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextEditor_Property_SELECTION_HANDLE_PRESSED_IMAGE_LEFT_get")] public static extern int TextEditor_Property_SELECTION_HANDLE_PRESSED_IMAGE_LEFT_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextEditor_Property_SELECTION_HANDLE_PRESSED_IMAGE_RIGHT_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextEditor_Property_SELECTION_HANDLE_PRESSED_IMAGE_RIGHT_get")] public static extern int TextEditor_Property_SELECTION_HANDLE_PRESSED_IMAGE_RIGHT_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextEditor_Property_SELECTION_HANDLE_MARKER_IMAGE_LEFT_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextEditor_Property_SELECTION_HANDLE_MARKER_IMAGE_LEFT_get")] public static extern int TextEditor_Property_SELECTION_HANDLE_MARKER_IMAGE_LEFT_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextEditor_Property_SELECTION_HANDLE_MARKER_IMAGE_RIGHT_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextEditor_Property_SELECTION_HANDLE_MARKER_IMAGE_RIGHT_get")] public static extern int TextEditor_Property_SELECTION_HANDLE_MARKER_IMAGE_RIGHT_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextEditor_Property_SELECTION_HIGHLIGHT_COLOR_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextEditor_Property_SELECTION_HIGHLIGHT_COLOR_get")] public static extern int TextEditor_Property_SELECTION_HIGHLIGHT_COLOR_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextEditor_Property_DECORATION_BOUNDING_BOX_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextEditor_Property_DECORATION_BOUNDING_BOX_get")] public static extern int TextEditor_Property_DECORATION_BOUNDING_BOX_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextEditor_Property_ENABLE_MARKUP_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextEditor_Property_ENABLE_MARKUP_get")] public static extern int TextEditor_Property_ENABLE_MARKUP_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextEditor_Property_INPUT_COLOR_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextEditor_Property_INPUT_COLOR_get")] public static extern int TextEditor_Property_INPUT_COLOR_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextEditor_Property_INPUT_FONT_FAMILY_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextEditor_Property_INPUT_FONT_FAMILY_get")] public static extern int TextEditor_Property_INPUT_FONT_FAMILY_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextEditor_Property_INPUT_FONT_STYLE_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextEditor_Property_INPUT_FONT_STYLE_get")] public static extern int TextEditor_Property_INPUT_FONT_STYLE_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextEditor_Property_INPUT_POINT_SIZE_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextEditor_Property_INPUT_POINT_SIZE_get")] public static extern int TextEditor_Property_INPUT_POINT_SIZE_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextEditor_Property_LINE_SPACING_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextEditor_Property_LINE_SPACING_get")] public static extern int TextEditor_Property_LINE_SPACING_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextEditor_Property_INPUT_LINE_SPACING_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextEditor_Property_INPUT_LINE_SPACING_get")] public static extern int TextEditor_Property_INPUT_LINE_SPACING_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextEditor_Property_UNDERLINE_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextEditor_Property_UNDERLINE_get")] public static extern int TextEditor_Property_UNDERLINE_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextEditor_Property_INPUT_UNDERLINE_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextEditor_Property_INPUT_UNDERLINE_get")] public static extern int TextEditor_Property_INPUT_UNDERLINE_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextEditor_Property_SHADOW_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextEditor_Property_SHADOW_get")] public static extern int TextEditor_Property_SHADOW_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextEditor_Property_INPUT_SHADOW_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextEditor_Property_INPUT_SHADOW_get")] public static extern int TextEditor_Property_INPUT_SHADOW_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextEditor_Property_EMBOSS_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextEditor_Property_EMBOSS_get")] public static extern int TextEditor_Property_EMBOSS_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextEditor_Property_INPUT_EMBOSS_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextEditor_Property_INPUT_EMBOSS_get")] public static extern int TextEditor_Property_INPUT_EMBOSS_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextEditor_Property_OUTLINE_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextEditor_Property_OUTLINE_get")] public static extern int TextEditor_Property_OUTLINE_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextEditor_Property_INPUT_OUTLINE_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextEditor_Property_INPUT_OUTLINE_get")] public static extern int TextEditor_Property_INPUT_OUTLINE_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_TextEditor_Property")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_TextEditor_Property")] public static extern global::System.IntPtr new_TextEditor_Property(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_TextEditor_Property")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_TextEditor_Property")] public static extern void delete_TextEditor_Property(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_TextEditor_InputStyle")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_TextEditor_InputStyle")] public static extern global::System.IntPtr new_TextEditor_InputStyle(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_TextEditor_InputStyle")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_TextEditor_InputStyle")] public static extern void delete_TextEditor_InputStyle(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextEditor_New")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextEditor_New")] public static extern global::System.IntPtr TextEditor_New(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_TextEditor__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_TextEditor__SWIG_0")] public static extern global::System.IntPtr new_TextEditor__SWIG_0(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_TextEditor__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_TextEditor__SWIG_1")] public static extern global::System.IntPtr new_TextEditor__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextEditor_Assign")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextEditor_Assign")] public static extern global::System.IntPtr TextEditor_Assign(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_TextEditor")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_TextEditor")] public static extern void delete_TextEditor(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextEditor_DownCast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextEditor_DownCast")] public static extern global::System.IntPtr TextEditor_DownCast(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextEditor_TextChangedSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextEditor_TextChangedSignal")] public static extern global::System.IntPtr TextEditor_TextChangedSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextEditor_InputStyleChangedSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextEditor_InputStyleChangedSignal")] public static extern global::System.IntPtr TextEditor_InputStyleChangedSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextField_Property_RENDERING_BACKEND_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextField_Property_RENDERING_BACKEND_get")] public static extern int TextField_Property_RENDERING_BACKEND_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextField_Property_TEXT_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextField_Property_TEXT_get")] public static extern int TextField_Property_TEXT_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextField_Property_PLACEHOLDER_TEXT_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextField_Property_PLACEHOLDER_TEXT_get")] public static extern int TextField_Property_PLACEHOLDER_TEXT_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextField_Property_PLACEHOLDER_TEXT_FOCUSED_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextField_Property_PLACEHOLDER_TEXT_FOCUSED_get")] public static extern int TextField_Property_PLACEHOLDER_TEXT_FOCUSED_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextField_Property_FONT_FAMILY_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextField_Property_FONT_FAMILY_get")] public static extern int TextField_Property_FONT_FAMILY_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextField_Property_FONT_STYLE_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextField_Property_FONT_STYLE_get")] public static extern int TextField_Property_FONT_STYLE_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextField_Property_POINT_SIZE_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextField_Property_POINT_SIZE_get")] public static extern int TextField_Property_POINT_SIZE_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextField_Property_MAX_LENGTH_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextField_Property_MAX_LENGTH_get")] public static extern int TextField_Property_MAX_LENGTH_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextField_Property_EXCEED_POLICY_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextField_Property_EXCEED_POLICY_get")] public static extern int TextField_Property_EXCEED_POLICY_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextField_Property_HORIZONTAL_ALIGNMENT_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextField_Property_HORIZONTAL_ALIGNMENT_get")] public static extern int TextField_Property_HORIZONTAL_ALIGNMENT_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextField_Property_VERTICAL_ALIGNMENT_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextField_Property_VERTICAL_ALIGNMENT_get")] public static extern int TextField_Property_VERTICAL_ALIGNMENT_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextField_Property_TEXT_COLOR_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextField_Property_TEXT_COLOR_get")] public static extern int TextField_Property_TEXT_COLOR_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextField_Property_PLACEHOLDER_TEXT_COLOR_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextField_Property_PLACEHOLDER_TEXT_COLOR_get")] public static extern int TextField_Property_PLACEHOLDER_TEXT_COLOR_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextField_Property_SHADOW_OFFSET_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextField_Property_SHADOW_OFFSET_get")] public static extern int TextField_Property_SHADOW_OFFSET_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextField_Property_SHADOW_COLOR_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextField_Property_SHADOW_COLOR_get")] public static extern int TextField_Property_SHADOW_COLOR_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextField_Property_PRIMARY_CURSOR_COLOR_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextField_Property_PRIMARY_CURSOR_COLOR_get")] public static extern int TextField_Property_PRIMARY_CURSOR_COLOR_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextField_Property_SECONDARY_CURSOR_COLOR_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextField_Property_SECONDARY_CURSOR_COLOR_get")] public static extern int TextField_Property_SECONDARY_CURSOR_COLOR_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextField_Property_ENABLE_CURSOR_BLINK_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextField_Property_ENABLE_CURSOR_BLINK_get")] public static extern int TextField_Property_ENABLE_CURSOR_BLINK_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextField_Property_CURSOR_BLINK_INTERVAL_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextField_Property_CURSOR_BLINK_INTERVAL_get")] public static extern int TextField_Property_CURSOR_BLINK_INTERVAL_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextField_Property_CURSOR_BLINK_DURATION_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextField_Property_CURSOR_BLINK_DURATION_get")] public static extern int TextField_Property_CURSOR_BLINK_DURATION_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextField_Property_CURSOR_WIDTH_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextField_Property_CURSOR_WIDTH_get")] public static extern int TextField_Property_CURSOR_WIDTH_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextField_Property_GRAB_HANDLE_IMAGE_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextField_Property_GRAB_HANDLE_IMAGE_get")] public static extern int TextField_Property_GRAB_HANDLE_IMAGE_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextField_Property_GRAB_HANDLE_PRESSED_IMAGE_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextField_Property_GRAB_HANDLE_PRESSED_IMAGE_get")] public static extern int TextField_Property_GRAB_HANDLE_PRESSED_IMAGE_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextField_Property_SCROLL_THRESHOLD_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextField_Property_SCROLL_THRESHOLD_get")] public static extern int TextField_Property_SCROLL_THRESHOLD_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextField_Property_SCROLL_SPEED_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextField_Property_SCROLL_SPEED_get")] public static extern int TextField_Property_SCROLL_SPEED_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextField_Property_SELECTION_HANDLE_IMAGE_LEFT_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextField_Property_SELECTION_HANDLE_IMAGE_LEFT_get")] public static extern int TextField_Property_SELECTION_HANDLE_IMAGE_LEFT_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextField_Property_SELECTION_HANDLE_IMAGE_RIGHT_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextField_Property_SELECTION_HANDLE_IMAGE_RIGHT_get")] public static extern int TextField_Property_SELECTION_HANDLE_IMAGE_RIGHT_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextField_Property_SELECTION_HANDLE_PRESSED_IMAGE_LEFT_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextField_Property_SELECTION_HANDLE_PRESSED_IMAGE_LEFT_get")] public static extern int TextField_Property_SELECTION_HANDLE_PRESSED_IMAGE_LEFT_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextField_Property_SELECTION_HANDLE_PRESSED_IMAGE_RIGHT_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextField_Property_SELECTION_HANDLE_PRESSED_IMAGE_RIGHT_get")] public static extern int TextField_Property_SELECTION_HANDLE_PRESSED_IMAGE_RIGHT_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextField_Property_SELECTION_HANDLE_MARKER_IMAGE_LEFT_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextField_Property_SELECTION_HANDLE_MARKER_IMAGE_LEFT_get")] public static extern int TextField_Property_SELECTION_HANDLE_MARKER_IMAGE_LEFT_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextField_Property_SELECTION_HANDLE_MARKER_IMAGE_RIGHT_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextField_Property_SELECTION_HANDLE_MARKER_IMAGE_RIGHT_get")] public static extern int TextField_Property_SELECTION_HANDLE_MARKER_IMAGE_RIGHT_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextField_Property_SELECTION_HIGHLIGHT_COLOR_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextField_Property_SELECTION_HIGHLIGHT_COLOR_get")] public static extern int TextField_Property_SELECTION_HIGHLIGHT_COLOR_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextField_Property_DECORATION_BOUNDING_BOX_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextField_Property_DECORATION_BOUNDING_BOX_get")] public static extern int TextField_Property_DECORATION_BOUNDING_BOX_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextField_Property_INPUT_METHOD_SETTINGS_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextField_Property_INPUT_METHOD_SETTINGS_get")] public static extern int TextField_Property_INPUT_METHOD_SETTINGS_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextField_Property_INPUT_COLOR_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextField_Property_INPUT_COLOR_get")] public static extern int TextField_Property_INPUT_COLOR_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextField_Property_ENABLE_MARKUP_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextField_Property_ENABLE_MARKUP_get")] public static extern int TextField_Property_ENABLE_MARKUP_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextField_Property_INPUT_FONT_FAMILY_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextField_Property_INPUT_FONT_FAMILY_get")] public static extern int TextField_Property_INPUT_FONT_FAMILY_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextField_Property_INPUT_FONT_STYLE_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextField_Property_INPUT_FONT_STYLE_get")] public static extern int TextField_Property_INPUT_FONT_STYLE_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextField_Property_INPUT_POINT_SIZE_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextField_Property_INPUT_POINT_SIZE_get")] public static extern int TextField_Property_INPUT_POINT_SIZE_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextField_Property_UNDERLINE_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextField_Property_UNDERLINE_get")] public static extern int TextField_Property_UNDERLINE_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextField_Property_INPUT_UNDERLINE_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextField_Property_INPUT_UNDERLINE_get")] public static extern int TextField_Property_INPUT_UNDERLINE_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextField_Property_SHADOW_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextField_Property_SHADOW_get")] public static extern int TextField_Property_SHADOW_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextField_Property_INPUT_SHADOW_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextField_Property_INPUT_SHADOW_get")] public static extern int TextField_Property_INPUT_SHADOW_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextField_Property_EMBOSS_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextField_Property_EMBOSS_get")] public static extern int TextField_Property_EMBOSS_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextField_Property_INPUT_EMBOSS_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextField_Property_INPUT_EMBOSS_get")] public static extern int TextField_Property_INPUT_EMBOSS_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextField_Property_OUTLINE_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextField_Property_OUTLINE_get")] public static extern int TextField_Property_OUTLINE_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextField_Property_INPUT_OUTLINE_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextField_Property_INPUT_OUTLINE_get")] public static extern int TextField_Property_INPUT_OUTLINE_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_TextField_Property")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_TextField_Property")] public static extern global::System.IntPtr new_TextField_Property(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_TextField_Property")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_TextField_Property")] public static extern void delete_TextField_Property(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_TextField_InputStyle")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_TextField_InputStyle")] public static extern global::System.IntPtr new_TextField_InputStyle(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_TextField_InputStyle")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_TextField_InputStyle")] public static extern void delete_TextField_InputStyle(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextField_New")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextField_New")] public static extern global::System.IntPtr TextField_New(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_TextField__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_TextField__SWIG_0")] public static extern global::System.IntPtr new_TextField__SWIG_0(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_TextField__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_TextField__SWIG_1")] public static extern global::System.IntPtr new_TextField__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextField_Assign")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextField_Assign")] public static extern global::System.IntPtr TextField_Assign(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_TextField")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_TextField")] public static extern void delete_TextField(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextField_DownCast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextField_DownCast")] public static extern global::System.IntPtr TextField_DownCast(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextField_TextChangedSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextField_TextChangedSignal")] public static extern global::System.IntPtr TextField_TextChangedSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextField_MaxLengthReachedSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextField_MaxLengthReachedSignal")] public static extern global::System.IntPtr TextField_MaxLengthReachedSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextField_InputStyleChangedSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextField_InputStyleChangedSignal")] public static extern global::System.IntPtr TextField_InputStyleChangedSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextLabel_Property_RENDERING_BACKEND_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextLabel_Property_RENDERING_BACKEND_get")] public static extern int TextLabel_Property_RENDERING_BACKEND_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextLabel_Property_TEXT_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextLabel_Property_TEXT_get")] public static extern int TextLabel_Property_TEXT_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextLabel_Property_FONT_FAMILY_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextLabel_Property_FONT_FAMILY_get")] public static extern int TextLabel_Property_FONT_FAMILY_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextLabel_Property_FONT_STYLE_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextLabel_Property_FONT_STYLE_get")] public static extern int TextLabel_Property_FONT_STYLE_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextLabel_Property_POINT_SIZE_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextLabel_Property_POINT_SIZE_get")] public static extern int TextLabel_Property_POINT_SIZE_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextLabel_Property_MULTI_LINE_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextLabel_Property_MULTI_LINE_get")] public static extern int TextLabel_Property_MULTI_LINE_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextLabel_Property_HORIZONTAL_ALIGNMENT_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextLabel_Property_HORIZONTAL_ALIGNMENT_get")] public static extern int TextLabel_Property_HORIZONTAL_ALIGNMENT_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextLabel_Property_VERTICAL_ALIGNMENT_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextLabel_Property_VERTICAL_ALIGNMENT_get")] public static extern int TextLabel_Property_VERTICAL_ALIGNMENT_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextLabel_Property_TEXT_COLOR_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextLabel_Property_TEXT_COLOR_get")] public static extern int TextLabel_Property_TEXT_COLOR_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextLabel_Property_SHADOW_OFFSET_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextLabel_Property_SHADOW_OFFSET_get")] public static extern int TextLabel_Property_SHADOW_OFFSET_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextLabel_Property_SHADOW_COLOR_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextLabel_Property_SHADOW_COLOR_get")] public static extern int TextLabel_Property_SHADOW_COLOR_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextLabel_Property_UNDERLINE_ENABLED_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextLabel_Property_UNDERLINE_ENABLED_get")] public static extern int TextLabel_Property_UNDERLINE_ENABLED_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextLabel_Property_UNDERLINE_COLOR_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextLabel_Property_UNDERLINE_COLOR_get")] public static extern int TextLabel_Property_UNDERLINE_COLOR_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextLabel_Property_UNDERLINE_HEIGHT_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextLabel_Property_UNDERLINE_HEIGHT_get")] public static extern int TextLabel_Property_UNDERLINE_HEIGHT_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextLabel_Property_ENABLE_MARKUP_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextLabel_Property_ENABLE_MARKUP_get")] public static extern int TextLabel_Property_ENABLE_MARKUP_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextLabel_Property_ENABLE_AUTO_SCROLL_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextLabel_Property_ENABLE_AUTO_SCROLL_get")] public static extern int TextLabel_Property_ENABLE_AUTO_SCROLL_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextLabel_Property_AUTO_SCROLL_SPEED_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextLabel_Property_AUTO_SCROLL_SPEED_get")] public static extern int TextLabel_Property_AUTO_SCROLL_SPEED_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextLabel_Property_AUTO_SCROLL_LOOP_COUNT_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextLabel_Property_AUTO_SCROLL_LOOP_COUNT_get")] public static extern int TextLabel_Property_AUTO_SCROLL_LOOP_COUNT_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextLabel_Property_AUTO_SCROLL_GAP_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextLabel_Property_AUTO_SCROLL_GAP_get")] public static extern int TextLabel_Property_AUTO_SCROLL_GAP_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextLabel_Property_LINE_SPACING_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextLabel_Property_LINE_SPACING_get")] public static extern int TextLabel_Property_LINE_SPACING_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextLabel_Property_UNDERLINE_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextLabel_Property_UNDERLINE_get")] public static extern int TextLabel_Property_UNDERLINE_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextLabel_Property_SHADOW_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextLabel_Property_SHADOW_get")] public static extern int TextLabel_Property_SHADOW_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextLabel_Property_EMBOSS_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextLabel_Property_EMBOSS_get")] public static extern int TextLabel_Property_EMBOSS_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextLabel_Property_OUTLINE_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextLabel_Property_OUTLINE_get")] public static extern int TextLabel_Property_OUTLINE_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_TextLabel_Property")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_TextLabel_Property")] public static extern global::System.IntPtr new_TextLabel_Property(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_TextLabel_Property")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_TextLabel_Property")] public static extern void delete_TextLabel_Property(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextLabel_New__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextLabel_New__SWIG_0")] public static extern global::System.IntPtr TextLabel_New__SWIG_0(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextLabel_New__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextLabel_New__SWIG_1")] public static extern global::System.IntPtr TextLabel_New__SWIG_1(string jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_TextLabel__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_TextLabel__SWIG_0")] public static extern global::System.IntPtr new_TextLabel__SWIG_0(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_TextLabel__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_TextLabel__SWIG_1")] public static extern global::System.IntPtr new_TextLabel__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextLabel_Assign")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextLabel_Assign")] public static extern global::System.IntPtr TextLabel_Assign(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_TextLabel")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_TextLabel")] public static extern void delete_TextLabel(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextLabel_DownCast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextLabel_DownCast")] public static extern global::System.IntPtr TextLabel_DownCast(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_AccessibilityManager")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_AccessibilityManager")] public static extern global::System.IntPtr new_AccessibilityManager(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_AccessibilityManager")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_AccessibilityManager")] public static extern void delete_AccessibilityManager(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_AccessibilityManager_Get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_AccessibilityManager_Get")] public static extern global::System.IntPtr AccessibilityManager_Get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_AccessibilityManager_SetAccessibilityAttribute")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_AccessibilityManager_SetAccessibilityAttribute")] public static extern void AccessibilityManager_SetAccessibilityAttribute(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3, string jarg4); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_AccessibilityManager_GetAccessibilityAttribute")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_AccessibilityManager_GetAccessibilityAttribute")] public static extern string AccessibilityManager_GetAccessibilityAttribute(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_AccessibilityManager_SetFocusOrder")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_AccessibilityManager_SetFocusOrder")] public static extern void AccessibilityManager_SetFocusOrder(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, uint jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_AccessibilityManager_GetFocusOrder")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_AccessibilityManager_GetFocusOrder")] public static extern uint AccessibilityManager_GetFocusOrder(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_AccessibilityManager_GenerateNewFocusOrder")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_AccessibilityManager_GenerateNewFocusOrder")] public static extern uint AccessibilityManager_GenerateNewFocusOrder(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_AccessibilityManager_GetActorByFocusOrder")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_AccessibilityManager_GetActorByFocusOrder")] public static extern global::System.IntPtr AccessibilityManager_GetActorByFocusOrder(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_AccessibilityManager_SetCurrentFocusActor")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_AccessibilityManager_SetCurrentFocusActor")] public static extern bool AccessibilityManager_SetCurrentFocusActor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_AccessibilityManager_GetCurrentFocusActor")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_AccessibilityManager_GetCurrentFocusActor")] public static extern global::System.IntPtr AccessibilityManager_GetCurrentFocusActor(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_AccessibilityManager_GetCurrentFocusGroup")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_AccessibilityManager_GetCurrentFocusGroup")] public static extern global::System.IntPtr AccessibilityManager_GetCurrentFocusGroup(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_AccessibilityManager_GetCurrentFocusOrder")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_AccessibilityManager_GetCurrentFocusOrder")] public static extern uint AccessibilityManager_GetCurrentFocusOrder(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_AccessibilityManager_MoveFocusForward")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_AccessibilityManager_MoveFocusForward")] public static extern bool AccessibilityManager_MoveFocusForward(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_AccessibilityManager_MoveFocusBackward")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_AccessibilityManager_MoveFocusBackward")] public static extern bool AccessibilityManager_MoveFocusBackward(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_AccessibilityManager_ClearFocus")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_AccessibilityManager_ClearFocus")] public static extern void AccessibilityManager_ClearFocus(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_AccessibilityManager_Reset")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_AccessibilityManager_Reset")] public static extern void AccessibilityManager_Reset(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_AccessibilityManager_SetFocusGroup")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_AccessibilityManager_SetFocusGroup")] public static extern void AccessibilityManager_SetFocusGroup(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, bool jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_AccessibilityManager_IsFocusGroup")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_AccessibilityManager_IsFocusGroup")] public static extern bool AccessibilityManager_IsFocusGroup(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_AccessibilityManager_SetGroupMode")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_AccessibilityManager_SetGroupMode")] public static extern void AccessibilityManager_SetGroupMode(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_AccessibilityManager_GetGroupMode")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_AccessibilityManager_GetGroupMode")] public static extern bool AccessibilityManager_GetGroupMode(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_AccessibilityManager_SetWrapMode")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_AccessibilityManager_SetWrapMode")] public static extern void AccessibilityManager_SetWrapMode(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_AccessibilityManager_GetWrapMode")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_AccessibilityManager_GetWrapMode")] public static extern bool AccessibilityManager_GetWrapMode(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_AccessibilityManager_SetFocusIndicatorActor")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_AccessibilityManager_SetFocusIndicatorActor")] public static extern void AccessibilityManager_SetFocusIndicatorActor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_AccessibilityManager_GetFocusIndicatorActor")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_AccessibilityManager_GetFocusIndicatorActor")] public static extern global::System.IntPtr AccessibilityManager_GetFocusIndicatorActor(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_AccessibilityManager_GetFocusGroup")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_AccessibilityManager_GetFocusGroup")] public static extern global::System.IntPtr AccessibilityManager_GetFocusGroup(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_AccessibilityManager_GetReadPosition")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_AccessibilityManager_GetReadPosition")] public static extern global::System.IntPtr AccessibilityManager_GetReadPosition(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_AccessibilityManager_FocusChangedSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_AccessibilityManager_FocusChangedSignal")] public static extern global::System.IntPtr AccessibilityManager_FocusChangedSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_AccessibilityManager_FocusOvershotSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_AccessibilityManager_FocusOvershotSignal")] public static extern global::System.IntPtr AccessibilityManager_FocusOvershotSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_AccessibilityManager_FocusedActorActivatedSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_AccessibilityManager_FocusedActorActivatedSignal")] public static extern global::System.IntPtr AccessibilityManager_FocusedActorActivatedSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_AccessibilityManager_StatusChangedSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_AccessibilityManager_StatusChangedSignal")] public static extern global::System.IntPtr AccessibilityManager_StatusChangedSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_AccessibilityManager_ActionNextSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_AccessibilityManager_ActionNextSignal")] public static extern global::System.IntPtr AccessibilityManager_ActionNextSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_AccessibilityManager_ActionPreviousSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_AccessibilityManager_ActionPreviousSignal")] public static extern global::System.IntPtr AccessibilityManager_ActionPreviousSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_AccessibilityManager_ActionActivateSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_AccessibilityManager_ActionActivateSignal")] public static extern global::System.IntPtr AccessibilityManager_ActionActivateSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_AccessibilityManager_ActionReadSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_AccessibilityManager_ActionReadSignal")] public static extern global::System.IntPtr AccessibilityManager_ActionReadSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_AccessibilityManager_ActionOverSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_AccessibilityManager_ActionOverSignal")] public static extern global::System.IntPtr AccessibilityManager_ActionOverSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_AccessibilityManager_ActionReadNextSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_AccessibilityManager_ActionReadNextSignal")] public static extern global::System.IntPtr AccessibilityManager_ActionReadNextSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_AccessibilityManager_ActionReadPreviousSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_AccessibilityManager_ActionReadPreviousSignal")] public static extern global::System.IntPtr AccessibilityManager_ActionReadPreviousSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_AccessibilityManager_ActionUpSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_AccessibilityManager_ActionUpSignal")] public static extern global::System.IntPtr AccessibilityManager_ActionUpSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_AccessibilityManager_ActionDownSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_AccessibilityManager_ActionDownSignal")] public static extern global::System.IntPtr AccessibilityManager_ActionDownSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_AccessibilityManager_ActionClearFocusSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_AccessibilityManager_ActionClearFocusSignal")] public static extern global::System.IntPtr AccessibilityManager_ActionClearFocusSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_AccessibilityManager_ActionBackSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_AccessibilityManager_ActionBackSignal")] public static extern global::System.IntPtr AccessibilityManager_ActionBackSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_AccessibilityManager_ActionScrollUpSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_AccessibilityManager_ActionScrollUpSignal")] public static extern global::System.IntPtr AccessibilityManager_ActionScrollUpSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_AccessibilityManager_ActionScrollDownSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_AccessibilityManager_ActionScrollDownSignal")] public static extern global::System.IntPtr AccessibilityManager_ActionScrollDownSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_AccessibilityManager_ActionPageLeftSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_AccessibilityManager_ActionPageLeftSignal")] public static extern global::System.IntPtr AccessibilityManager_ActionPageLeftSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_AccessibilityManager_ActionPageRightSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_AccessibilityManager_ActionPageRightSignal")] public static extern global::System.IntPtr AccessibilityManager_ActionPageRightSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_AccessibilityManager_ActionPageUpSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_AccessibilityManager_ActionPageUpSignal")] public static extern global::System.IntPtr AccessibilityManager_ActionPageUpSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_AccessibilityManager_ActionPageDownSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_AccessibilityManager_ActionPageDownSignal")] public static extern global::System.IntPtr AccessibilityManager_ActionPageDownSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_AccessibilityManager_ActionMoveToFirstSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_AccessibilityManager_ActionMoveToFirstSignal")] public static extern global::System.IntPtr AccessibilityManager_ActionMoveToFirstSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_AccessibilityManager_ActionMoveToLastSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_AccessibilityManager_ActionMoveToLastSignal")] public static extern global::System.IntPtr AccessibilityManager_ActionMoveToLastSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_AccessibilityManager_ActionReadFromTopSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_AccessibilityManager_ActionReadFromTopSignal")] public static extern global::System.IntPtr AccessibilityManager_ActionReadFromTopSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_AccessibilityManager_ActionReadFromNextSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_AccessibilityManager_ActionReadFromNextSignal")] public static extern global::System.IntPtr AccessibilityManager_ActionReadFromNextSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_AccessibilityManager_ActionZoomSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_AccessibilityManager_ActionZoomSignal")] public static extern global::System.IntPtr AccessibilityManager_ActionZoomSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_AccessibilityManager_ActionReadIndicatorInformationSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_AccessibilityManager_ActionReadIndicatorInformationSignal")] public static extern global::System.IntPtr AccessibilityManager_ActionReadIndicatorInformationSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_AccessibilityManager_ActionReadPauseResumeSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_AccessibilityManager_ActionReadPauseResumeSignal")] public static extern global::System.IntPtr AccessibilityManager_ActionReadPauseResumeSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_AccessibilityManager_ActionStartStopSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_AccessibilityManager_ActionStartStopSignal")] public static extern global::System.IntPtr AccessibilityManager_ActionStartStopSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_AccessibilityManager_ActionScrollSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_AccessibilityManager_ActionScrollSignal")] public static extern global::System.IntPtr AccessibilityManager_ActionScrollSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_StyleManager")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_StyleManager")] public static extern global::System.IntPtr new_StyleManager(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_StyleManager")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_StyleManager")] public static extern void delete_StyleManager(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_StyleManager_Get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_StyleManager_Get")] public static extern global::System.IntPtr StyleManager_Get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_StyleManager_ApplyTheme")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_StyleManager_ApplyTheme")] public static extern void StyleManager_ApplyTheme(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_StyleManager_ApplyDefaultTheme")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_StyleManager_ApplyDefaultTheme")] public static extern void StyleManager_ApplyDefaultTheme(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_StyleManager_SetStyleConstant")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_StyleManager_SetStyleConstant")] public static extern void StyleManager_SetStyleConstant(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_StyleManager_GetStyleConstant")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_StyleManager_GetStyleConstant")] public static extern bool StyleManager_GetStyleConstant(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_StyleManager_ApplyStyle")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_StyleManager_ApplyStyle")] public static extern void StyleManager_ApplyStyle(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, string jarg3, string jarg4); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_StyleManager_StyleChangedSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_StyleManager_StyleChangedSignal")] public static extern global::System.IntPtr StyleManager_StyleChangedSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Slider_Property_LOWER_BOUND_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Slider_Property_LOWER_BOUND_get")] public static extern int Slider_Property_LOWER_BOUND_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Slider_Property_UPPER_BOUND_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Slider_Property_UPPER_BOUND_get")] public static extern int Slider_Property_UPPER_BOUND_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Slider_Property_VALUE_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Slider_Property_VALUE_get")] public static extern int Slider_Property_VALUE_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Slider_Property_TRACK_VISUAL_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Slider_Property_TRACK_VISUAL_get")] public static extern int Slider_Property_TRACK_VISUAL_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Slider_Property_HANDLE_VISUAL_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Slider_Property_HANDLE_VISUAL_get")] public static extern int Slider_Property_HANDLE_VISUAL_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Slider_Property_PROGRESS_VISUAL_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Slider_Property_PROGRESS_VISUAL_get")] public static extern int Slider_Property_PROGRESS_VISUAL_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Slider_Property_POPUP_VISUAL_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Slider_Property_POPUP_VISUAL_get")] public static extern int Slider_Property_POPUP_VISUAL_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Slider_Property_POPUP_ARROW_VISUAL_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Slider_Property_POPUP_ARROW_VISUAL_get")] public static extern int Slider_Property_POPUP_ARROW_VISUAL_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Slider_Property_DISABLED_COLOR_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Slider_Property_DISABLED_COLOR_get")] public static extern int Slider_Property_DISABLED_COLOR_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Slider_Property_VALUE_PRECISION_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Slider_Property_VALUE_PRECISION_get")] public static extern int Slider_Property_VALUE_PRECISION_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Slider_Property_SHOW_POPUP_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Slider_Property_SHOW_POPUP_get")] public static extern int Slider_Property_SHOW_POPUP_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Slider_Property_SHOW_VALUE_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Slider_Property_SHOW_VALUE_get")] public static extern int Slider_Property_SHOW_VALUE_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Slider_Property_MARKS_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Slider_Property_MARKS_get")] public static extern int Slider_Property_MARKS_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Slider_Property_SNAP_TO_MARKS_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Slider_Property_SNAP_TO_MARKS_get")] public static extern int Slider_Property_SNAP_TO_MARKS_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Slider_Property_MARK_TOLERANCE_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Slider_Property_MARK_TOLERANCE_get")] public static extern int Slider_Property_MARK_TOLERANCE_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_Slider_Property")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Slider_Property")] public static extern global::System.IntPtr new_Slider_Property(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_Slider_Property")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_Slider_Property")] public static extern void delete_Slider_Property(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Slider_New")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Slider_New")] public static extern global::System.IntPtr Slider_New(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_Slider__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Slider__SWIG_0")] public static extern global::System.IntPtr new_Slider__SWIG_0(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_Slider__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Slider__SWIG_1")] public static extern global::System.IntPtr new_Slider__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Slider_Assign")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Slider_Assign")] public static extern global::System.IntPtr Slider_Assign(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_Slider")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_Slider")] public static extern void delete_Slider(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Slider_DownCast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Slider_DownCast")] public static extern global::System.IntPtr Slider_DownCast(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Slider_ValueChangedSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Slider_ValueChangedSignal")] public static extern global::System.IntPtr Slider_ValueChangedSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Slider_SlidingFinishedSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Slider_SlidingFinishedSignal")] public static extern global::System.IntPtr Slider_SlidingFinishedSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Slider_MarkReachedSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Slider_MarkReachedSignal")] public static extern global::System.IntPtr Slider_MarkReachedSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_VideoView_Property_VIDEO_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_VideoView_Property_VIDEO_get")] public static extern int VideoView_Property_VIDEO_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_VideoView_Property_LOOPING_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_VideoView_Property_LOOPING_get")] public static extern int VideoView_Property_LOOPING_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_VideoView_Property_MUTED_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_VideoView_Property_MUTED_get")] public static extern int VideoView_Property_MUTED_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_VideoView_Property_VOLUME_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_VideoView_Property_VOLUME_get")] public static extern int VideoView_Property_VOLUME_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_VideoView_Property")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_VideoView_Property")] public static extern global::System.IntPtr new_VideoView_Property(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_VideoView_Property")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_VideoView_Property")] public static extern void delete_VideoView_Property(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_VideoView_New__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_VideoView_New__SWIG_0")] public static extern global::System.IntPtr VideoView_New__SWIG_0(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_VideoView_New__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_VideoView_New__SWIG_1")] public static extern global::System.IntPtr VideoView_New__SWIG_1(string jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_VideoView__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_VideoView__SWIG_0")] public static extern global::System.IntPtr new_VideoView__SWIG_0(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_VideoView")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_VideoView")] public static extern void delete_VideoView(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_VideoView__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_VideoView__SWIG_1")] public static extern global::System.IntPtr new_VideoView__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_VideoView_Assign")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_VideoView_Assign")] public static extern global::System.IntPtr VideoView_Assign(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_VideoView_DownCast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_VideoView_DownCast")] public static extern global::System.IntPtr VideoView_DownCast(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_VideoView_Play")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_VideoView_Play")] public static extern void VideoView_Play(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_VideoView_Pause")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_VideoView_Pause")] public static extern void VideoView_Pause(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_VideoView_Stop")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_VideoView_Stop")] public static extern void VideoView_Stop(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_VideoView_Forward")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_VideoView_Forward")] public static extern void VideoView_Forward(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_VideoView_Backward")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_VideoView_Backward")] public static extern void VideoView_Backward(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_VideoView_FinishedSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_VideoView_FinishedSignal")] public static extern global::System.IntPtr VideoView_FinishedSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Popup_Property_TITLE_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Popup_Property_TITLE_get")] public static extern int Popup_Property_TITLE_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Popup_Property_CONTENT_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Popup_Property_CONTENT_get")] public static extern int Popup_Property_CONTENT_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Popup_Property_FOOTER_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Popup_Property_FOOTER_get")] public static extern int Popup_Property_FOOTER_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Popup_Property_DISPLAY_STATE_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Popup_Property_DISPLAY_STATE_get")] public static extern int Popup_Property_DISPLAY_STATE_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Popup_Property_TOUCH_TRANSPARENT_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Popup_Property_TOUCH_TRANSPARENT_get")] public static extern int Popup_Property_TOUCH_TRANSPARENT_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Popup_Property_TAIL_VISIBILITY_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Popup_Property_TAIL_VISIBILITY_get")] public static extern int Popup_Property_TAIL_VISIBILITY_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Popup_Property_TAIL_POSITION_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Popup_Property_TAIL_POSITION_get")] public static extern int Popup_Property_TAIL_POSITION_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Popup_Property_CONTEXTUAL_MODE_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Popup_Property_CONTEXTUAL_MODE_get")] public static extern int Popup_Property_CONTEXTUAL_MODE_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Popup_Property_ANIMATION_DURATION_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Popup_Property_ANIMATION_DURATION_get")] public static extern int Popup_Property_ANIMATION_DURATION_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Popup_Property_ANIMATION_MODE_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Popup_Property_ANIMATION_MODE_get")] public static extern int Popup_Property_ANIMATION_MODE_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Popup_Property_ENTRY_ANIMATION_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Popup_Property_ENTRY_ANIMATION_get")] public static extern int Popup_Property_ENTRY_ANIMATION_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Popup_Property_EXIT_ANIMATION_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Popup_Property_EXIT_ANIMATION_get")] public static extern int Popup_Property_EXIT_ANIMATION_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Popup_Property_AUTO_HIDE_DELAY_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Popup_Property_AUTO_HIDE_DELAY_get")] public static extern int Popup_Property_AUTO_HIDE_DELAY_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Popup_Property_BACKING_ENABLED_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Popup_Property_BACKING_ENABLED_get")] public static extern int Popup_Property_BACKING_ENABLED_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Popup_Property_BACKING_COLOR_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Popup_Property_BACKING_COLOR_get")] public static extern int Popup_Property_BACKING_COLOR_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Popup_Property_POPUP_BACKGROUND_IMAGE_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Popup_Property_POPUP_BACKGROUND_IMAGE_get")] public static extern int Popup_Property_POPUP_BACKGROUND_IMAGE_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Popup_Property_POPUP_BACKGROUND_BORDER_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Popup_Property_POPUP_BACKGROUND_BORDER_get")] public static extern int Popup_Property_POPUP_BACKGROUND_BORDER_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Popup_Property_TAIL_UP_IMAGE_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Popup_Property_TAIL_UP_IMAGE_get")] public static extern int Popup_Property_TAIL_UP_IMAGE_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Popup_Property_TAIL_DOWN_IMAGE_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Popup_Property_TAIL_DOWN_IMAGE_get")] public static extern int Popup_Property_TAIL_DOWN_IMAGE_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Popup_Property_TAIL_LEFT_IMAGE_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Popup_Property_TAIL_LEFT_IMAGE_get")] public static extern int Popup_Property_TAIL_LEFT_IMAGE_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Popup_Property_TAIL_RIGHT_IMAGE_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Popup_Property_TAIL_RIGHT_IMAGE_get")] public static extern int Popup_Property_TAIL_RIGHT_IMAGE_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_Popup_Property")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Popup_Property")] public static extern global::System.IntPtr new_Popup_Property(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_Popup_Property")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_Popup_Property")] public static extern void delete_Popup_Property(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_Popup__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Popup__SWIG_0")] public static extern global::System.IntPtr new_Popup__SWIG_0(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Popup_New")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Popup_New")] public static extern global::System.IntPtr Popup_New(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_Popup")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_Popup")] public static extern void delete_Popup(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_Popup__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Popup__SWIG_1")] public static extern global::System.IntPtr new_Popup__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Popup_Assign")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Popup_Assign")] public static extern global::System.IntPtr Popup_Assign(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Popup_DownCast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Popup_DownCast")] public static extern global::System.IntPtr Popup_DownCast(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Popup_SetTitle")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Popup_SetTitle")] public static extern void Popup_SetTitle(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Popup_GetTitle")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Popup_GetTitle")] public static extern global::System.IntPtr Popup_GetTitle(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Popup_SetContent")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Popup_SetContent")] public static extern void Popup_SetContent(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Popup_GetContent")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Popup_GetContent")] public static extern global::System.IntPtr Popup_GetContent(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Popup_SetFooter")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Popup_SetFooter")] public static extern void Popup_SetFooter(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Popup_GetFooter")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Popup_GetFooter")] public static extern global::System.IntPtr Popup_GetFooter(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Popup_SetDisplayState")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Popup_SetDisplayState")] public static extern void Popup_SetDisplayState(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Popup_GetDisplayState")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Popup_GetDisplayState")] public static extern int Popup_GetDisplayState(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Popup_OutsideTouchedSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Popup_OutsideTouchedSignal")] public static extern global::System.IntPtr Popup_OutsideTouchedSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Popup_ShowingSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Popup_ShowingSignal")] public static extern global::System.IntPtr Popup_ShowingSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Popup_ShownSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Popup_ShownSignal")] public static extern global::System.IntPtr Popup_ShownSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Popup_HidingSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Popup_HidingSignal")] public static extern global::System.IntPtr Popup_HidingSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Popup_HiddenSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Popup_HiddenSignal")] public static extern global::System.IntPtr Popup_HiddenSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ProgressBar_Property_PROGRESS_VALUE_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ProgressBar_Property_PROGRESS_VALUE_get")] public static extern int ProgressBar_Property_PROGRESS_VALUE_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ProgressBar_Property_TRACK_VISUAL_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ProgressBar_Property_SECONDARY_PROGRESS_VALUE_get")] + public static extern int ProgressBar_Property_SECONDARY_PROGRESS_VALUE_get(); + + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ProgressBar_Property_INDETERMINATE_get")] + public static extern int ProgressBar_Property_INDETERMINATE_get(); + + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ProgressBar_Property_TRACK_VISUAL_get")] public static extern int ProgressBar_Property_TRACK_VISUAL_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ProgressBar_Property_PROGRESS_VISUAL_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ProgressBar_Property_PROGRESS_VISUAL_get")] public static extern int ProgressBar_Property_PROGRESS_VISUAL_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_ProgressBar_Property")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ProgressBar_Property_SECONDARY_PROGRESS_VISUAL_get")] + public static extern int ProgressBar_Property_SECONDARY_PROGRESS_VISUAL_get(); + + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ProgressBar_Property_INDETERMINATE_VISUAL_get")] + public static extern int ProgressBar_Property_INDETERMINATE_VISUAL_get(); + + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ProgressBar_Property_INDETERMINATE_VISUAL_ANIMATION_get")] + public static extern int ProgressBar_Property_INDETERMINATE_VISUAL_ANIMATION_get(); + + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ProgressBar_Property_LABEL_VISUAL_get")] + public static extern int ProgressBar_Property_LABEL_VISUAL_get(); + + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_ProgressBar_Property")] public static extern global::System.IntPtr new_ProgressBar_Property(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_ProgressBar_Property")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_ProgressBar_Property")] public static extern void delete_ProgressBar_Property(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ProgressBar_New")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ProgressBar_New")] public static extern global::System.IntPtr ProgressBar_New(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_ProgressBar__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_ProgressBar__SWIG_0")] public static extern global::System.IntPtr new_ProgressBar__SWIG_0(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_ProgressBar__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_ProgressBar__SWIG_1")] public static extern global::System.IntPtr new_ProgressBar__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ProgressBar_Assign")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ProgressBar_Assign")] public static extern global::System.IntPtr ProgressBar_Assign(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_ProgressBar")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_ProgressBar")] public static extern void delete_ProgressBar(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ProgressBar_DownCast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ProgressBar_DownCast")] public static extern global::System.IntPtr ProgressBar_DownCast(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ProgressBar_ValueChangedSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ProgressBar_ValueChangedSignal")] public static extern global::System.IntPtr ProgressBar_ValueChangedSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_GaussianBlurView__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_GaussianBlurView__SWIG_0")] public static extern global::System.IntPtr new_GaussianBlurView__SWIG_0(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_GaussianBlurView__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_GaussianBlurView__SWIG_1")] public static extern global::System.IntPtr new_GaussianBlurView__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_GaussianBlurView_Assign")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_GaussianBlurView_Assign")] public static extern global::System.IntPtr GaussianBlurView_Assign(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_GaussianBlurView")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_GaussianBlurView")] public static extern void delete_GaussianBlurView(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_GaussianBlurView_DownCast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_GaussianBlurView_DownCast")] public static extern global::System.IntPtr GaussianBlurView_DownCast(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_GaussianBlurView_New__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_GaussianBlurView_New__SWIG_0")] public static extern global::System.IntPtr GaussianBlurView_New__SWIG_0(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_GaussianBlurView_New__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_GaussianBlurView_New__SWIG_1")] public static extern global::System.IntPtr GaussianBlurView_New__SWIG_1(uint jarg1, float jarg2, int jarg3, float jarg4, float jarg5, bool jarg6); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_GaussianBlurView_New__SWIG_2")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_GaussianBlurView_New__SWIG_2")] public static extern global::System.IntPtr GaussianBlurView_New__SWIG_2(uint jarg1, float jarg2, int jarg3, float jarg4, float jarg5); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_GaussianBlurView_Add")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_GaussianBlurView_Add")] public static extern void GaussianBlurView_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_GaussianBlurView_Remove")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_GaussianBlurView_Remove")] public static extern void GaussianBlurView_Remove(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_GaussianBlurView_Activate")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_GaussianBlurView_Activate")] public static extern void GaussianBlurView_Activate(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_GaussianBlurView_ActivateOnce")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_GaussianBlurView_ActivateOnce")] public static extern void GaussianBlurView_ActivateOnce(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_GaussianBlurView_Deactivate")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_GaussianBlurView_Deactivate")] public static extern void GaussianBlurView_Deactivate(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_GaussianBlurView_SetUserImageAndOutputRenderTarget")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_GaussianBlurView_SetUserImageAndOutputRenderTarget")] public static extern void GaussianBlurView_SetUserImageAndOutputRenderTarget(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_GaussianBlurView_GetBlurStrengthPropertyIndex")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_GaussianBlurView_GetBlurStrengthPropertyIndex")] public static extern int GaussianBlurView_GetBlurStrengthPropertyIndex(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_GaussianBlurView_GetBlurredRenderTarget")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_GaussianBlurView_GetBlurredRenderTarget")] public static extern global::System.IntPtr GaussianBlurView_GetBlurredRenderTarget(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_GaussianBlurView_SetBackgroundColor")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_GaussianBlurView_SetBackgroundColor")] public static extern void GaussianBlurView_SetBackgroundColor(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_GaussianBlurView_GetBackgroundColor")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_GaussianBlurView_GetBackgroundColor")] public static extern global::System.IntPtr GaussianBlurView_GetBackgroundColor(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_GaussianBlurView_FinishedSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_GaussianBlurView_FinishedSignal")] public static extern global::System.IntPtr GaussianBlurView_FinishedSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_PageFactory")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_PageFactory")] public static extern void delete_PageFactory(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PageFactory_GetNumberOfPages")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PageFactory_GetNumberOfPages")] public static extern uint PageFactory_GetNumberOfPages(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PageFactory_NewPage")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PageFactory_NewPage")] public static extern global::System.IntPtr PageFactory_NewPage(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PageTurnView_Property_PAGE_SIZE_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PageTurnView_Property_PAGE_SIZE_get")] public static extern int PageTurnView_Property_PAGE_SIZE_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PageTurnView_Property_CURRENT_PAGE_ID_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PageTurnView_Property_CURRENT_PAGE_ID_get")] public static extern int PageTurnView_Property_CURRENT_PAGE_ID_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PageTurnView_Property_SPINE_SHADOW_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PageTurnView_Property_SPINE_SHADOW_get")] public static extern int PageTurnView_Property_SPINE_SHADOW_get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_PageTurnView_Property")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_PageTurnView_Property")] public static extern global::System.IntPtr new_PageTurnView_Property(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_PageTurnView_Property")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_PageTurnView_Property")] public static extern void delete_PageTurnView_Property(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_PageTurnView__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_PageTurnView__SWIG_0")] public static extern global::System.IntPtr new_PageTurnView__SWIG_0(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_PageTurnView__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_PageTurnView__SWIG_1")] public static extern global::System.IntPtr new_PageTurnView__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PageTurnView_Assign")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PageTurnView_Assign")] public static extern global::System.IntPtr PageTurnView_Assign(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_PageTurnView")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_PageTurnView")] public static extern void delete_PageTurnView(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PageTurnView_DownCast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PageTurnView_DownCast")] public static extern global::System.IntPtr PageTurnView_DownCast(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PageTurnView_PageTurnStartedSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PageTurnView_PageTurnStartedSignal")] public static extern global::System.IntPtr PageTurnView_PageTurnStartedSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PageTurnView_PageTurnFinishedSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PageTurnView_PageTurnFinishedSignal")] public static extern global::System.IntPtr PageTurnView_PageTurnFinishedSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PageTurnView_PagePanStartedSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PageTurnView_PagePanStartedSignal")] public static extern global::System.IntPtr PageTurnView_PagePanStartedSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PageTurnView_PagePanFinishedSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PageTurnView_PagePanFinishedSignal")] public static extern global::System.IntPtr PageTurnView_PagePanFinishedSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_PageTurnLandscapeView__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_PageTurnLandscapeView__SWIG_0")] public static extern global::System.IntPtr new_PageTurnLandscapeView__SWIG_0(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_PageTurnLandscapeView__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_PageTurnLandscapeView__SWIG_1")] public static extern global::System.IntPtr new_PageTurnLandscapeView__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PageTurnLandscapeView_Assign")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PageTurnLandscapeView_Assign")] public static extern global::System.IntPtr PageTurnLandscapeView_Assign(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_PageTurnLandscapeView")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_PageTurnLandscapeView")] public static extern void delete_PageTurnLandscapeView(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PageTurnLandscapeView_New")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PageTurnLandscapeView_New")] public static extern global::System.IntPtr PageTurnLandscapeView_New(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PageTurnLandscapeView_DownCast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PageTurnLandscapeView_DownCast")] public static extern global::System.IntPtr PageTurnLandscapeView_DownCast(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_PageTurnPortraitView__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_PageTurnPortraitView__SWIG_0")] public static extern global::System.IntPtr new_PageTurnPortraitView__SWIG_0(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_PageTurnPortraitView__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_PageTurnPortraitView__SWIG_1")] public static extern global::System.IntPtr new_PageTurnPortraitView__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PageTurnPortraitView_Assign")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PageTurnPortraitView_Assign")] public static extern global::System.IntPtr PageTurnPortraitView_Assign(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_PageTurnPortraitView")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_PageTurnPortraitView")] public static extern void delete_PageTurnPortraitView(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PageTurnPortraitView_New")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PageTurnPortraitView_New")] public static extern global::System.IntPtr PageTurnPortraitView_New(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PageTurnPortraitView_DownCast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PageTurnPortraitView_DownCast")] public static extern global::System.IntPtr PageTurnPortraitView_DownCast(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_VisualBase__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ToggleButton_Property_STATE_VISUALS_get")] + public static extern int ToggleButton_Property_STATE_VISUALS_get(); + + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ToggleButton_Property_TOOLTIPS_get")] + public static extern int ToggleButton_Property_TOOLTIPS_get(); + + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ToggleButton_Property_CURRENT_STATE_INDEX_get")] + public static extern int ToggleButton_Property_CURRENT_STATE_INDEX_get(); + + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_ToggleButton_Property")] + public static extern global::System.IntPtr new_ToggleButton_Property(); + + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_ToggleButton_Property")] + public static extern void delete_ToggleButton_Property(global::System.Runtime.InteropServices.HandleRef jarg1); + + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_ToggleButton__SWIG_0")] + public static extern global::System.IntPtr new_ToggleButton__SWIG_0(); + + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_ToggleButton__SWIG_1")] + public static extern global::System.IntPtr new_ToggleButton__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); + + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ToggleButton_Assign")] + public static extern global::System.IntPtr ToggleButton_Assign(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); + + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_ToggleButton")] + public static extern void delete_ToggleButton(global::System.Runtime.InteropServices.HandleRef jarg1); + + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ToggleButton_New")] + public static extern global::System.IntPtr ToggleButton_New(); + + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ToggleButton_DownCast")] + public static extern global::System.IntPtr ToggleButton_DownCast(global::System.Runtime.InteropServices.HandleRef jarg1); + + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_VisualBase__SWIG_0")] public static extern global::System.IntPtr new_VisualBase__SWIG_0(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_VisualBase")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_VisualBase")] public static extern void delete_VisualBase(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_VisualBase__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_VisualBase__SWIG_1")] public static extern global::System.IntPtr new_VisualBase__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_VisualBase_Assign")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_VisualBase_Assign")] public static extern global::System.IntPtr VisualBase_Assign(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_VisualBase_SetName")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_VisualBase_SetName")] public static extern void VisualBase_SetName(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_VisualBase_GetName")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_VisualBase_GetName")] public static extern string VisualBase_GetName(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_VisualBase_SetTransformAndSize")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_VisualBase_SetTransformAndSize")] public static extern void VisualBase_SetTransformAndSize(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_VisualBase_GetHeightForWidth")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_VisualBase_GetHeightForWidth")] public static extern float VisualBase_GetHeightForWidth(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_VisualBase_GetWidthForHeight")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_VisualBase_GetWidthForHeight")] public static extern float VisualBase_GetWidthForHeight(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_VisualBase_GetNaturalSize")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_VisualBase_GetNaturalSize")] public static extern void VisualBase_GetNaturalSize(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_VisualBase_SetDepthIndex")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_VisualBase_SetDepthIndex")] public static extern void VisualBase_SetDepthIndex(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_VisualBase_GetDepthIndex")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_VisualBase_GetDepthIndex")] public static extern float VisualBase_GetDepthIndex(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_VisualBase_CreatePropertyMap")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_VisualBase_CreatePropertyMap")] public static extern void VisualBase_CreatePropertyMap(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_VisualBase__SWIG_2")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_VisualBase__SWIG_2")] public static extern global::System.IntPtr new_VisualBase__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_VisualFactory_Get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_VisualFactory_Get")] public static extern global::System.IntPtr VisualFactory_Get(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_VisualFactory__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_VisualFactory__SWIG_0")] public static extern global::System.IntPtr new_VisualFactory__SWIG_0(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_VisualFactory")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_VisualFactory")] public static extern void delete_VisualFactory(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_VisualFactory__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_VisualFactory__SWIG_1")] public static extern global::System.IntPtr new_VisualFactory__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_VisualFactory_Assign")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_VisualFactory_Assign")] public static extern global::System.IntPtr VisualFactory_Assign(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_VisualFactory_CreateVisual__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_VisualFactory_CreateVisual__SWIG_0")] public static extern global::System.IntPtr VisualFactory_CreateVisual__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_VisualFactory_CreateVisual__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_VisualFactory_CreateVisual__SWIG_1")] public static extern global::System.IntPtr VisualFactory_CreateVisual__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_VisualFactory_CreateVisual__SWIG_2")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_VisualFactory_CreateVisual__SWIG_2")] public static extern global::System.IntPtr VisualFactory_CreateVisual__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_AsyncImageLoader__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_AsyncImageLoader__SWIG_0")] public static extern global::System.IntPtr new_AsyncImageLoader__SWIG_0(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_AsyncImageLoader")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_AsyncImageLoader")] public static extern void delete_AsyncImageLoader(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_AsyncImageLoader__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_AsyncImageLoader__SWIG_1")] public static extern global::System.IntPtr new_AsyncImageLoader__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_AsyncImageLoader_Assign")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_AsyncImageLoader_Assign")] public static extern global::System.IntPtr AsyncImageLoader_Assign(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_AsyncImageLoader_New")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_AsyncImageLoader_New")] public static extern global::System.IntPtr AsyncImageLoader_New(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_AsyncImageLoader_DownCast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_AsyncImageLoader_DownCast")] public static extern global::System.IntPtr AsyncImageLoader_DownCast(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_AsyncImageLoader_Load__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_AsyncImageLoader_Load__SWIG_0")] public static extern uint AsyncImageLoader_Load__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_AsyncImageLoader_Load__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_AsyncImageLoader_Load__SWIG_1")] public static extern uint AsyncImageLoader_Load__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_AsyncImageLoader_Load__SWIG_2")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_AsyncImageLoader_Load__SWIG_2")] public static extern uint AsyncImageLoader_Load__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, string jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, int jarg4, int jarg5, bool jarg6); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_AsyncImageLoader_Cancel")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_AsyncImageLoader_Cancel")] public static extern bool AsyncImageLoader_Cancel(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_AsyncImageLoader_CancelAll")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_AsyncImageLoader_CancelAll")] public static extern void AsyncImageLoader_CancelAll(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_AsyncImageLoader_ImageLoadedSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_AsyncImageLoader_ImageLoadedSignal")] public static extern global::System.IntPtr AsyncImageLoader_ImageLoadedSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_AsyncImageLoader__SWIG_2")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_AsyncImageLoader__SWIG_2")] public static extern global::System.IntPtr new_AsyncImageLoader__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_LoadImageSynchronously__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_LoadImageSynchronously__SWIG_0")] public static extern global::System.IntPtr LoadImageSynchronously__SWIG_0(string jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_LoadImageSynchronously__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_LoadImageSynchronously__SWIG_1")] public static extern global::System.IntPtr LoadImageSynchronously__SWIG_1(string jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_LoadImageSynchronously__SWIG_2")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_LoadImageSynchronously__SWIG_2")] public static extern global::System.IntPtr LoadImageSynchronously__SWIG_2(string jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3, int jarg4, bool jarg5); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ItemIdContainer_Clear")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ItemIdContainer_Clear")] public static extern void ItemIdContainer_Clear(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ItemIdContainer_Add")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ItemIdContainer_Add")] public static extern void ItemIdContainer_Add(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ItemIdContainer_size")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ItemIdContainer_size")] public static extern uint ItemIdContainer_size(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ItemIdContainer_capacity")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ItemIdContainer_capacity")] public static extern uint ItemIdContainer_capacity(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ItemIdContainer_reserve")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ItemIdContainer_reserve")] public static extern void ItemIdContainer_reserve(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_ItemIdContainer__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_ItemIdContainer__SWIG_0")] public static extern global::System.IntPtr new_ItemIdContainer__SWIG_0(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_ItemIdContainer__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_ItemIdContainer__SWIG_1")] public static extern global::System.IntPtr new_ItemIdContainer__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_ItemIdContainer__SWIG_2")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_ItemIdContainer__SWIG_2")] public static extern global::System.IntPtr new_ItemIdContainer__SWIG_2(int jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ItemIdContainer_getitemcopy")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ItemIdContainer_getitemcopy")] public static extern uint ItemIdContainer_getitemcopy(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ItemIdContainer_getitem")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ItemIdContainer_getitem")] public static extern uint ItemIdContainer_getitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ItemIdContainer_setitem")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ItemIdContainer_setitem")] public static extern void ItemIdContainer_setitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, uint jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ItemIdContainer_AddRange")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ItemIdContainer_AddRange")] public static extern void ItemIdContainer_AddRange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ItemIdContainer_GetRange")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ItemIdContainer_GetRange")] public static extern global::System.IntPtr ItemIdContainer_GetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ItemIdContainer_Insert")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ItemIdContainer_Insert")] public static extern void ItemIdContainer_Insert(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, uint jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ItemIdContainer_InsertRange")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ItemIdContainer_InsertRange")] public static extern void ItemIdContainer_InsertRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ItemIdContainer_RemoveAt")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ItemIdContainer_RemoveAt")] public static extern void ItemIdContainer_RemoveAt(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ItemIdContainer_RemoveRange")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ItemIdContainer_RemoveRange")] public static extern void ItemIdContainer_RemoveRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ItemIdContainer_Repeat")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ItemIdContainer_Repeat")] public static extern global::System.IntPtr ItemIdContainer_Repeat(uint jarg1, int jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ItemIdContainer_Reverse__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ItemIdContainer_Reverse__SWIG_0")] public static extern void ItemIdContainer_Reverse__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ItemIdContainer_Reverse__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ItemIdContainer_Reverse__SWIG_1")] public static extern void ItemIdContainer_Reverse__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ItemIdContainer_SetRange")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ItemIdContainer_SetRange")] public static extern void ItemIdContainer_SetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ItemIdContainer_Contains")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ItemIdContainer_Contains")] public static extern bool ItemIdContainer_Contains(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ItemIdContainer_IndexOf")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ItemIdContainer_IndexOf")] public static extern int ItemIdContainer_IndexOf(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ItemIdContainer_LastIndexOf")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ItemIdContainer_LastIndexOf")] public static extern int ItemIdContainer_LastIndexOf(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ItemIdContainer_Remove")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ItemIdContainer_Remove")] public static extern bool ItemIdContainer_Remove(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_ItemIdContainer")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_ItemIdContainer")] public static extern void delete_ItemIdContainer(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_Item__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Item__SWIG_0")] public static extern global::System.IntPtr new_Item__SWIG_0(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_Item__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Item__SWIG_1")] public static extern global::System.IntPtr new_Item__SWIG_1(uint jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_Item__SWIG_2")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_Item__SWIG_2")] public static extern global::System.IntPtr new_Item__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Item_first_set")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Item_first_set")] public static extern void Item_first_set(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Item_first_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Item_first_get")] public static extern uint Item_first_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Item_second_set")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Item_second_set")] public static extern void Item_second_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Item_second_get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Item_second_get")] public static extern global::System.IntPtr Item_second_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_Item")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_Item")] public static extern void delete_Item(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ItemContainer_Clear")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ItemContainer_Clear")] public static extern void ItemContainer_Clear(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ItemContainer_Add")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ItemContainer_Add")] public static extern void ItemContainer_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ItemContainer_size")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ItemContainer_size")] public static extern uint ItemContainer_size(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ItemContainer_capacity")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ItemContainer_capacity")] public static extern uint ItemContainer_capacity(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ItemContainer_reserve")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ItemContainer_reserve")] public static extern void ItemContainer_reserve(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_ItemContainer__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_ItemContainer__SWIG_0")] public static extern global::System.IntPtr new_ItemContainer__SWIG_0(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_ItemContainer__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_ItemContainer__SWIG_1")] public static extern global::System.IntPtr new_ItemContainer__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_ItemContainer__SWIG_2")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_ItemContainer__SWIG_2")] public static extern global::System.IntPtr new_ItemContainer__SWIG_2(int jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ItemContainer_getitemcopy")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ItemContainer_getitemcopy")] public static extern global::System.IntPtr ItemContainer_getitemcopy(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ItemContainer_getitem")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ItemContainer_getitem")] public static extern global::System.IntPtr ItemContainer_getitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ItemContainer_setitem")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ItemContainer_setitem")] public static extern void ItemContainer_setitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ItemContainer_AddRange")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ItemContainer_AddRange")] public static extern void ItemContainer_AddRange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ItemContainer_GetRange")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ItemContainer_GetRange")] public static extern global::System.IntPtr ItemContainer_GetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ItemContainer_Insert")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ItemContainer_Insert")] public static extern void ItemContainer_Insert(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ItemContainer_InsertRange")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ItemContainer_InsertRange")] public static extern void ItemContainer_InsertRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ItemContainer_RemoveAt")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ItemContainer_RemoveAt")] public static extern void ItemContainer_RemoveAt(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ItemContainer_RemoveRange")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ItemContainer_RemoveRange")] public static extern void ItemContainer_RemoveRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ItemContainer_Repeat")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ItemContainer_Repeat")] public static extern global::System.IntPtr ItemContainer_Repeat(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ItemContainer_Reverse__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ItemContainer_Reverse__SWIG_0")] public static extern void ItemContainer_Reverse__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ItemContainer_Reverse__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ItemContainer_Reverse__SWIG_1")] public static extern void ItemContainer_Reverse__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ItemContainer_SetRange")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ItemContainer_SetRange")] public static extern void ItemContainer_SetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_ItemContainer")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_ItemContainer")] public static extern void delete_ItemContainer(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ActorContainer_Clear")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ActorContainer_Clear")] public static extern void ActorContainer_Clear(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ActorContainer_Add")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ActorContainer_Add")] public static extern void ActorContainer_Add(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ActorContainer_size")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ActorContainer_size")] public static extern uint ActorContainer_size(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ActorContainer_capacity")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ActorContainer_capacity")] public static extern uint ActorContainer_capacity(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ActorContainer_reserve")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ActorContainer_reserve")] public static extern void ActorContainer_reserve(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_ActorContainer__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_ActorContainer__SWIG_0")] public static extern global::System.IntPtr new_ActorContainer__SWIG_0(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_ActorContainer__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_ActorContainer__SWIG_1")] public static extern global::System.IntPtr new_ActorContainer__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_ActorContainer__SWIG_2")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_ActorContainer__SWIG_2")] public static extern global::System.IntPtr new_ActorContainer__SWIG_2(int jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ActorContainer_getitemcopy")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ActorContainer_getitemcopy")] public static extern global::System.IntPtr ActorContainer_getitemcopy(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ActorContainer_getitem")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ActorContainer_getitem")] public static extern global::System.IntPtr ActorContainer_getitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ActorContainer_setitem")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ActorContainer_setitem")] public static extern void ActorContainer_setitem(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ActorContainer_AddRange")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ActorContainer_AddRange")] public static extern void ActorContainer_AddRange(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ActorContainer_GetRange")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ActorContainer_GetRange")] public static extern global::System.IntPtr ActorContainer_GetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ActorContainer_Insert")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ActorContainer_Insert")] public static extern void ActorContainer_Insert(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ActorContainer_InsertRange")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ActorContainer_InsertRange")] public static extern void ActorContainer_InsertRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ActorContainer_RemoveAt")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ActorContainer_RemoveAt")] public static extern void ActorContainer_RemoveAt(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ActorContainer_RemoveRange")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ActorContainer_RemoveRange")] public static extern void ActorContainer_RemoveRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ActorContainer_Repeat")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ActorContainer_Repeat")] public static extern global::System.IntPtr ActorContainer_Repeat(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ActorContainer_Reverse__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ActorContainer_Reverse__SWIG_0")] public static extern void ActorContainer_Reverse__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ActorContainer_Reverse__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ActorContainer_Reverse__SWIG_1")] public static extern void ActorContainer_Reverse__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ActorContainer_SetRange")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ActorContainer_SetRange")] public static extern void ActorContainer_SetRange(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_ActorContainer")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_ActorContainer")] public static extern void delete_ActorContainer(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_AccessibilityActionSignal_Empty")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_AccessibilityActionSignal_Empty")] public static extern bool AccessibilityActionSignal_Empty(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_AccessibilityActionSignal_GetConnectionCount")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_AccessibilityActionSignal_GetConnectionCount")] public static extern uint AccessibilityActionSignal_GetConnectionCount(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_AccessibilityActionSignal_Connect")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_AccessibilityActionSignal_Connect")] public static extern void AccessibilityActionSignal_Connect(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_AccessibilityActionSignal_Disconnect")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_AccessibilityActionSignal_Disconnect")] public static extern void AccessibilityActionSignal_Disconnect(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_AccessibilityActionSignal_Emit")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_AccessibilityActionSignal_Emit")] public static extern bool AccessibilityActionSignal_Emit(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_AccessibilityActionSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_AccessibilityActionSignal")] public static extern global::System.IntPtr new_AccessibilityActionSignal(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_AccessibilityActionSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_AccessibilityActionSignal")] public static extern void delete_AccessibilityActionSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_AccessibilityActionScrollSignal_Empty")] - public static extern bool AccessibilityActionScrollSignal_Empty(global::System.Runtime.InteropServices.HandleRef jarg1); - - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_AccessibilityActionScrollSignal_GetConnectionCount")] - public static extern uint AccessibilityActionScrollSignal_GetConnectionCount(global::System.Runtime.InteropServices.HandleRef jarg1); - - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_AccessibilityActionScrollSignal_Connect")] - public static extern void AccessibilityActionScrollSignal_Connect(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_AccessibilityActionScrollSignal_Disconnect")] - public static extern void AccessibilityActionScrollSignal_Disconnect(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_AccessibilityActionScrollSignal_Emit")] - public static extern bool AccessibilityActionScrollSignal_Emit(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); - - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_AccessibilityActionScrollSignal")] - public static extern global::System.IntPtr new_AccessibilityActionScrollSignal(); - - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_AccessibilityActionScrollSignal")] - public static extern void delete_AccessibilityActionScrollSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_AccessibilityFocusOvershotSignal_Empty")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_AccessibilityFocusOvershotSignal_Empty")] public static extern bool AccessibilityFocusOvershotSignal_Empty(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_AccessibilityFocusOvershotSignal_GetConnectionCount")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_AccessibilityFocusOvershotSignal_GetConnectionCount")] public static extern uint AccessibilityFocusOvershotSignal_GetConnectionCount(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_AccessibilityFocusOvershotSignal_Connect")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_AccessibilityFocusOvershotSignal_Connect")] public static extern void AccessibilityFocusOvershotSignal_Connect(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_AccessibilityFocusOvershotSignal_Disconnect")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_AccessibilityFocusOvershotSignal_Disconnect")] public static extern void AccessibilityFocusOvershotSignal_Disconnect(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_AccessibilityFocusOvershotSignal_Emit")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_AccessibilityFocusOvershotSignal_Emit")] public static extern void AccessibilityFocusOvershotSignal_Emit(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_AccessibilityFocusOvershotSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_AccessibilityFocusOvershotSignal")] public static extern global::System.IntPtr new_AccessibilityFocusOvershotSignal(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_AccessibilityFocusOvershotSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_AccessibilityFocusOvershotSignal")] public static extern void delete_AccessibilityFocusOvershotSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_FocusChangedSignal_Empty")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_FocusChangedSignal_Empty")] public static extern bool FocusChangedSignal_Empty(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_FocusChangedSignal_GetConnectionCount")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_FocusChangedSignal_GetConnectionCount")] public static extern uint FocusChangedSignal_GetConnectionCount(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_FocusChangedSignal_Connect")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_FocusChangedSignal_Connect")] public static extern void FocusChangedSignal_Connect(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_FocusChangedSignal_Disconnect")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_FocusChangedSignal_Disconnect")] public static extern void FocusChangedSignal_Disconnect(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_FocusChangedSignal_Emit")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_FocusChangedSignal_Emit")] public static extern void FocusChangedSignal_Emit(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_FocusChangedSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_FocusChangedSignal")] public static extern global::System.IntPtr new_FocusChangedSignal(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_FocusChangedSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_FocusChangedSignal")] public static extern void delete_FocusChangedSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_FocusGroupChangedSignal_Empty")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_FocusGroupChangedSignal_Empty")] public static extern bool FocusGroupChangedSignal_Empty(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_FocusGroupChangedSignal_GetConnectionCount")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_FocusGroupChangedSignal_GetConnectionCount")] public static extern uint FocusGroupChangedSignal_GetConnectionCount(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_FocusGroupChangedSignal_Connect")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_FocusGroupChangedSignal_Connect")] public static extern void FocusGroupChangedSignal_Connect(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_FocusGroupChangedSignal_Disconnect")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_FocusGroupChangedSignal_Disconnect")] public static extern void FocusGroupChangedSignal_Disconnect(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_FocusGroupChangedSignal_Emit")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_FocusGroupChangedSignal_Emit")] public static extern void FocusGroupChangedSignal_Emit(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, bool jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_FocusGroupChangedSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_FocusGroupChangedSignal")] public static extern global::System.IntPtr new_FocusGroupChangedSignal(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_FocusGroupChangedSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_FocusGroupChangedSignal")] public static extern void delete_FocusGroupChangedSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_StyleChangedSignal_Empty")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_StyleChangedSignal_Empty")] public static extern bool StyleChangedSignal_Empty(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_StyleChangedSignal_GetConnectionCount")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_StyleChangedSignal_GetConnectionCount")] public static extern uint StyleChangedSignal_GetConnectionCount(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_StyleChangedSignal_Connect")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_StyleChangedSignal_Connect")] public static extern void StyleChangedSignal_Connect(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_StyleChangedSignal_Disconnect")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_StyleChangedSignal_Disconnect")] public static extern void StyleChangedSignal_Disconnect(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_StyleChangedSignal_Emit")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_StyleChangedSignal_Emit")] public static extern void StyleChangedSignal_Emit(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_StyleChangedSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_StyleChangedSignal")] public static extern global::System.IntPtr new_StyleChangedSignal(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_StyleChangedSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_StyleChangedSignal")] public static extern void delete_StyleChangedSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ButtonSignal_Empty")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ButtonSignal_Empty")] public static extern bool ButtonSignal_Empty(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ButtonSignal_GetConnectionCount")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ButtonSignal_GetConnectionCount")] public static extern uint ButtonSignal_GetConnectionCount(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ButtonSignal_Connect")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ButtonSignal_Connect")] public static extern void ButtonSignal_Connect(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ButtonSignal_Disconnect")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ButtonSignal_Disconnect")] public static extern void ButtonSignal_Disconnect(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ButtonSignal_Emit")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ButtonSignal_Emit")] public static extern bool ButtonSignal_Emit(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_ButtonSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_ButtonSignal")] public static extern global::System.IntPtr new_ButtonSignal(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_ButtonSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_ButtonSignal")] public static extern void delete_ButtonSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_GaussianBlurViewSignal_Empty")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_GaussianBlurViewSignal_Empty")] public static extern bool GaussianBlurViewSignal_Empty(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_GaussianBlurViewSignal_GetConnectionCount")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_GaussianBlurViewSignal_GetConnectionCount")] public static extern uint GaussianBlurViewSignal_GetConnectionCount(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_GaussianBlurViewSignal_Connect")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_GaussianBlurViewSignal_Connect")] public static extern void GaussianBlurViewSignal_Connect(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_GaussianBlurViewSignal_Disconnect")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_GaussianBlurViewSignal_Disconnect")] public static extern void GaussianBlurViewSignal_Disconnect(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_GaussianBlurViewSignal_Emit")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_GaussianBlurViewSignal_Emit")] public static extern void GaussianBlurViewSignal_Emit(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_GaussianBlurViewSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_GaussianBlurViewSignal")] public static extern global::System.IntPtr new_GaussianBlurViewSignal(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_GaussianBlurViewSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_GaussianBlurViewSignal")] public static extern void delete_GaussianBlurViewSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PageTurnSignal_Empty")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PageTurnSignal_Empty")] public static extern bool PageTurnSignal_Empty(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PageTurnSignal_GetConnectionCount")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PageTurnSignal_GetConnectionCount")] public static extern uint PageTurnSignal_GetConnectionCount(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PageTurnSignal_Connect")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PageTurnSignal_Connect")] public static extern void PageTurnSignal_Connect(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PageTurnSignal_Disconnect")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PageTurnSignal_Disconnect")] public static extern void PageTurnSignal_Disconnect(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PageTurnSignal_Emit")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PageTurnSignal_Emit")] public static extern void PageTurnSignal_Emit(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, uint jarg3, bool jarg4); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_PageTurnSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_PageTurnSignal")] public static extern global::System.IntPtr new_PageTurnSignal(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_PageTurnSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_PageTurnSignal")] public static extern void delete_PageTurnSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PagePanSignal_Empty")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PagePanSignal_Empty")] public static extern bool PagePanSignal_Empty(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PagePanSignal_GetConnectionCount")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PagePanSignal_GetConnectionCount")] public static extern uint PagePanSignal_GetConnectionCount(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PagePanSignal_Connect")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PagePanSignal_Connect")] public static extern void PagePanSignal_Connect(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PagePanSignal_Disconnect")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PagePanSignal_Disconnect")] public static extern void PagePanSignal_Disconnect(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PagePanSignal_Emit")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PagePanSignal_Emit")] public static extern void PagePanSignal_Emit(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_PagePanSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_PagePanSignal")] public static extern global::System.IntPtr new_PagePanSignal(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_PagePanSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_PagePanSignal")] public static extern void delete_PagePanSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollViewSnapStartedSignal_Empty")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollViewSnapStartedSignal_Empty")] public static extern bool ScrollViewSnapStartedSignal_Empty(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollViewSnapStartedSignal_GetConnectionCount")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollViewSnapStartedSignal_GetConnectionCount")] public static extern uint ScrollViewSnapStartedSignal_GetConnectionCount(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollViewSnapStartedSignal_Connect")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollViewSnapStartedSignal_Connect")] public static extern void ScrollViewSnapStartedSignal_Connect(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollViewSnapStartedSignal_Disconnect")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollViewSnapStartedSignal_Disconnect")] public static extern void ScrollViewSnapStartedSignal_Disconnect(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollViewSnapStartedSignal_Emit")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollViewSnapStartedSignal_Emit")] public static extern void ScrollViewSnapStartedSignal_Emit(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_ScrollViewSnapStartedSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_ScrollViewSnapStartedSignal")] public static extern global::System.IntPtr new_ScrollViewSnapStartedSignal(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_ScrollViewSnapStartedSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_ScrollViewSnapStartedSignal")] public static extern void delete_ScrollViewSnapStartedSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollableSignal_Empty")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollableSignal_Empty")] public static extern bool ScrollableSignal_Empty(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollableSignal_GetConnectionCount")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollableSignal_GetConnectionCount")] public static extern uint ScrollableSignal_GetConnectionCount(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollableSignal_Connect")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollableSignal_Connect")] public static extern void ScrollableSignal_Connect(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollableSignal_Disconnect")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollableSignal_Disconnect")] public static extern void ScrollableSignal_Disconnect(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollableSignal_Emit")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollableSignal_Emit")] public static extern void ScrollableSignal_Emit(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_ScrollableSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_ScrollableSignal")] public static extern global::System.IntPtr new_ScrollableSignal(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_ScrollableSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_ScrollableSignal")] public static extern void delete_ScrollableSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextEditorSignal_Empty")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextEditorSignal_Empty")] public static extern bool TextEditorSignal_Empty(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextEditorSignal_GetConnectionCount")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextEditorSignal_GetConnectionCount")] public static extern uint TextEditorSignal_GetConnectionCount(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextEditorSignal_Connect")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextEditorSignal_Connect")] public static extern void TextEditorSignal_Connect(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextEditorSignal_Disconnect")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextEditorSignal_Disconnect")] public static extern void TextEditorSignal_Disconnect(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextEditorSignal_Emit")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextEditorSignal_Emit")] public static extern void TextEditorSignal_Emit(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_TextEditorSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_TextEditorSignal")] public static extern global::System.IntPtr new_TextEditorSignal(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_TextEditorSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_TextEditorSignal")] public static extern void delete_TextEditorSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextFieldSignal_Empty")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextFieldSignal_Empty")] public static extern bool TextFieldSignal_Empty(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextFieldSignal_GetConnectionCount")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextFieldSignal_GetConnectionCount")] public static extern uint TextFieldSignal_GetConnectionCount(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextFieldSignal_Connect")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextFieldSignal_Connect")] public static extern void TextFieldSignal_Connect(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextFieldSignal_Disconnect")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextFieldSignal_Disconnect")] public static extern void TextFieldSignal_Disconnect(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextFieldSignal_Emit")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextFieldSignal_Emit")] public static extern void TextFieldSignal_Emit(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_TextFieldSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_TextFieldSignal")] public static extern global::System.IntPtr new_TextFieldSignal(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_TextFieldSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_TextFieldSignal")] public static extern void delete_TextFieldSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ControlKeyEventSignal_Empty")] - public static extern bool ControlKeyEventSignal_Empty(global::System.Runtime.InteropServices.HandleRef jarg1); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ControlKeySignal_Empty")] + public static extern bool ControlKeySignal_Empty(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ControlKeyEventSignal_GetConnectionCount")] - public static extern uint ControlKeyEventSignal_GetConnectionCount(global::System.Runtime.InteropServices.HandleRef jarg1); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ControlKeySignal_GetConnectionCount")] + public static extern uint ControlKeySignal_GetConnectionCount(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ControlKeyEventSignal_Connect")] - public static extern void ControlKeyEventSignal_Connect(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ControlKeySignal_Connect")] + public static extern void ControlKeySignal_Connect(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ControlKeyEventSignal_Disconnect")] - public static extern void ControlKeyEventSignal_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_ControlKeySignal_Disconnect")] + public static extern void ControlKeySignal_Disconnect(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ControlKeyEventSignal_Emit")] - public static extern bool ControlKeyEventSignal_Emit(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ControlKeySignal_Emit")] + public static extern bool ControlKeySignal_Emit(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_ControlKeyEventSignal")] - public static extern global::System.IntPtr new_ControlKeyEventSignal(); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_ControlKeySignal")] + public static extern global::System.IntPtr new_ControlKeySignal(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_ControlKeyEventSignal")] - public static extern void delete_ControlKeyEventSignal(global::System.Runtime.InteropServices.HandleRef jarg1); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_ControlKeySignal")] + public static extern void delete_ControlKeySignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_KeyInputFocusSignal_Empty")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_KeyInputFocusSignal_Empty")] public static extern bool KeyInputFocusSignal_Empty(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_KeyInputFocusSignal_GetConnectionCount")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_KeyInputFocusSignal_GetConnectionCount")] public static extern uint KeyInputFocusSignal_GetConnectionCount(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_KeyInputFocusSignal_Connect")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_KeyInputFocusSignal_Connect")] public static extern void KeyInputFocusSignal_Connect(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_KeyInputFocusSignal_Disconnect")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_KeyInputFocusSignal_Disconnect")] public static extern void KeyInputFocusSignal_Disconnect(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_KeyInputFocusSignal_Emit")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_KeyInputFocusSignal_Emit")] public static extern void KeyInputFocusSignal_Emit(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_KeyInputFocusSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_KeyInputFocusSignal")] public static extern global::System.IntPtr new_KeyInputFocusSignal(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_KeyInputFocusSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_KeyInputFocusSignal")] public static extern void delete_KeyInputFocusSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_VideoViewSignal_Empty")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_VideoViewSignal_Empty")] public static extern bool VideoViewSignal_Empty(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_VideoViewSignal_GetConnectionCount")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_VideoViewSignal_GetConnectionCount")] public static extern uint VideoViewSignal_GetConnectionCount(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_VideoViewSignal_Connect")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_VideoViewSignal_Connect")] public static extern void VideoViewSignal_Connect(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_VideoViewSignal_Disconnect")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_VideoViewSignal_Disconnect")] public static extern void VideoViewSignal_Disconnect(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_VideoViewSignal_Emit")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_VideoViewSignal_Emit")] public static extern void VideoViewSignal_Emit(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_VideoViewSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_VideoViewSignal")] public static extern global::System.IntPtr new_VideoViewSignal(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_VideoViewSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_VideoViewSignal")] public static extern void delete_VideoViewSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_SliderValueChangedSignal_Empty")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_SliderValueChangedSignal_Empty")] public static extern bool SliderValueChangedSignal_Empty(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_SliderValueChangedSignal_GetConnectionCount")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_SliderValueChangedSignal_GetConnectionCount")] public static extern uint SliderValueChangedSignal_GetConnectionCount(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_SliderValueChangedSignal_Connect")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_SliderValueChangedSignal_Connect")] public static extern void SliderValueChangedSignal_Connect(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_SliderValueChangedSignal_Disconnect")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_SliderValueChangedSignal_Disconnect")] public static extern void SliderValueChangedSignal_Disconnect(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_SliderValueChangedSignal_Emit")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_SliderValueChangedSignal_Emit")] public static extern bool SliderValueChangedSignal_Emit(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, float jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_SliderValueChangedSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_SliderValueChangedSignal")] public static extern global::System.IntPtr new_SliderValueChangedSignal(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_SliderValueChangedSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_SliderValueChangedSignal")] public static extern void delete_SliderValueChangedSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_SliderMarkReachedSignal_Empty")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_SliderMarkReachedSignal_Empty")] public static extern bool SliderMarkReachedSignal_Empty(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_SliderMarkReachedSignal_GetConnectionCount")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_SliderMarkReachedSignal_GetConnectionCount")] public static extern uint SliderMarkReachedSignal_GetConnectionCount(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_SliderMarkReachedSignal_Connect")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_SliderMarkReachedSignal_Connect")] public static extern void SliderMarkReachedSignal_Connect(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_SliderMarkReachedSignal_Disconnect")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_SliderMarkReachedSignal_Disconnect")] public static extern void SliderMarkReachedSignal_Disconnect(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_SliderMarkReachedSignal_Emit")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_SliderMarkReachedSignal_Emit")] public static extern bool SliderMarkReachedSignal_Emit(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_SliderMarkReachedSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_SliderMarkReachedSignal")] public static extern global::System.IntPtr new_SliderMarkReachedSignal(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_SliderMarkReachedSignal")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_SliderMarkReachedSignal")] public static extern void delete_SliderMarkReachedSignal(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_RulerPtr__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_RulerPtr__SWIG_0")] public static extern global::System.IntPtr new_RulerPtr__SWIG_0(); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_RulerPtr__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_RulerPtr__SWIG_1")] public static extern global::System.IntPtr new_RulerPtr__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_new_RulerPtr__SWIG_2")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_new_RulerPtr__SWIG_2")] public static extern global::System.IntPtr new_RulerPtr__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_delete_RulerPtr")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_delete_RulerPtr")] public static extern void delete_RulerPtr(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RulerPtr_Get")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RulerPtr_Get")] public static extern global::System.IntPtr RulerPtr_Get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RulerPtr___deref__")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RulerPtr___deref__")] public static extern global::System.IntPtr RulerPtr___deref__(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RulerPtr___ref__")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RulerPtr___ref__")] public static extern global::System.IntPtr RulerPtr___ref__(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RulerPtr_Assign__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RulerPtr_Assign__SWIG_0")] public static extern global::System.IntPtr RulerPtr_Assign__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RulerPtr_Assign__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RulerPtr_Assign__SWIG_1")] public static extern global::System.IntPtr RulerPtr_Assign__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RulerPtr_Reset__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RulerPtr_Reset__SWIG_0")] public static extern void RulerPtr_Reset__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RulerPtr_Reset__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RulerPtr_Reset__SWIG_1")] public static extern void RulerPtr_Reset__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RulerPtr_Detach")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RulerPtr_Detach")] public static extern global::System.IntPtr RulerPtr_Detach(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RulerPtr_Snap__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RulerPtr_Snap__SWIG_0")] public static extern float RulerPtr_Snap__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2, float jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RulerPtr_Snap__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RulerPtr_Snap__SWIG_1")] public static extern float RulerPtr_Snap__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RulerPtr_GetPositionFromPage")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RulerPtr_GetPositionFromPage")] public static extern float RulerPtr_GetPositionFromPage(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2, out uint jarg3, bool jarg4); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RulerPtr_GetPageFromPosition")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RulerPtr_GetPageFromPosition")] public static extern uint RulerPtr_GetPageFromPosition(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2, bool jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RulerPtr_GetTotalPages")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RulerPtr_GetTotalPages")] public static extern uint RulerPtr_GetTotalPages(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RulerPtr_GetType")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RulerPtr_GetType")] public static extern int RulerPtr_GetType(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RulerPtr_IsEnabled")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RulerPtr_IsEnabled")] public static extern bool RulerPtr_IsEnabled(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RulerPtr_Enable")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RulerPtr_Enable")] public static extern void RulerPtr_Enable(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RulerPtr_Disable")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RulerPtr_Disable")] public static extern void RulerPtr_Disable(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RulerPtr_SetDomain")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RulerPtr_SetDomain")] public static extern void RulerPtr_SetDomain(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RulerPtr_GetDomain")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RulerPtr_GetDomain")] public static extern global::System.IntPtr RulerPtr_GetDomain(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RulerPtr_DisableDomain")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RulerPtr_DisableDomain")] public static extern void RulerPtr_DisableDomain(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RulerPtr_Clamp__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RulerPtr_Clamp__SWIG_0")] public static extern float RulerPtr_Clamp__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2, float jarg3, float jarg4); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RulerPtr_Clamp__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RulerPtr_Clamp__SWIG_1")] public static extern float RulerPtr_Clamp__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2, float jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RulerPtr_Clamp__SWIG_2")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RulerPtr_Clamp__SWIG_2")] public static extern float RulerPtr_Clamp__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RulerPtr_Clamp__SWIG_3")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RulerPtr_Clamp__SWIG_3")] public static extern float RulerPtr_Clamp__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2, float jarg3, float jarg4, global::System.Runtime.InteropServices.HandleRef jarg5); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RulerPtr_SnapAndClamp__SWIG_0")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RulerPtr_SnapAndClamp__SWIG_0")] public static extern float RulerPtr_SnapAndClamp__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2, float jarg3, float jarg4, float jarg5); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RulerPtr_SnapAndClamp__SWIG_1")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RulerPtr_SnapAndClamp__SWIG_1")] public static extern float RulerPtr_SnapAndClamp__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2, float jarg3, float jarg4); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RulerPtr_SnapAndClamp__SWIG_2")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RulerPtr_SnapAndClamp__SWIG_2")] public static extern float RulerPtr_SnapAndClamp__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2, float jarg3); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RulerPtr_SnapAndClamp__SWIG_3")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RulerPtr_SnapAndClamp__SWIG_3")] public static extern float RulerPtr_SnapAndClamp__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RulerPtr_SnapAndClamp__SWIG_4")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RulerPtr_SnapAndClamp__SWIG_4")] public static extern float RulerPtr_SnapAndClamp__SWIG_4(global::System.Runtime.InteropServices.HandleRef jarg1, float jarg2, float jarg3, float jarg4, float jarg5, global::System.Runtime.InteropServices.HandleRef jarg6); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RulerPtr_Reference")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RulerPtr_Reference")] public static extern void RulerPtr_Reference(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RulerPtr_Unreference")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RulerPtr_Unreference")] public static extern void RulerPtr_Unreference(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RulerPtr_ReferenceCount")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RulerPtr_ReferenceCount")] public static extern int RulerPtr_ReferenceCount(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_BaseObject_SWIGUpcast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_BaseObject_SWIGUpcast")] public static extern global::System.IntPtr BaseObject_SWIGUpcast(global::System.IntPtr jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ConnectionTrackerInterface_SWIGUpcast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ConnectionTrackerInterface_SWIGUpcast")] public static extern global::System.IntPtr ConnectionTrackerInterface_SWIGUpcast(global::System.IntPtr jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ConnectionTracker_SWIGUpcast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ConnectionTracker_SWIGUpcast")] public static extern global::System.IntPtr ConnectionTracker_SWIGUpcast(global::System.IntPtr jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ObjectRegistry_SWIGUpcast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ObjectRegistry_SWIGUpcast")] public static extern global::System.IntPtr ObjectRegistry_SWIGUpcast(global::System.IntPtr jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PropertyCondition_SWIGUpcast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PropertyCondition_SWIGUpcast")] public static extern global::System.IntPtr PropertyCondition_SWIGUpcast(global::System.IntPtr jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PropertyNotification_SWIGUpcast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PropertyNotification_SWIGUpcast")] public static extern global::System.IntPtr PropertyNotification_SWIGUpcast(global::System.IntPtr jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Handle_SWIGUpcast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Handle_SWIGUpcast")] public static extern global::System.IntPtr Handle_SWIGUpcast(global::System.IntPtr jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TypeInfo_SWIGUpcast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TypeInfo_SWIGUpcast")] public static extern global::System.IntPtr TypeInfo_SWIGUpcast(global::System.IntPtr jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TypeRegistry_SWIGUpcast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TypeRegistry_SWIGUpcast")] public static extern global::System.IntPtr TypeRegistry_SWIGUpcast(global::System.IntPtr jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Image_SWIGUpcast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Image_SWIGUpcast")] public static extern global::System.IntPtr Image_SWIGUpcast(global::System.IntPtr jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PixelData_SWIGUpcast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PixelData_SWIGUpcast")] public static extern global::System.IntPtr PixelData_SWIGUpcast(global::System.IntPtr jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Texture_SWIGUpcast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Texture_SWIGUpcast")] public static extern global::System.IntPtr Texture_SWIGUpcast(global::System.IntPtr jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Sampler_SWIGUpcast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Sampler_SWIGUpcast")] public static extern global::System.IntPtr Sampler_SWIGUpcast(global::System.IntPtr jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextureSet_SWIGUpcast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextureSet_SWIGUpcast")] public static extern global::System.IntPtr TextureSet_SWIGUpcast(global::System.IntPtr jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PropertyBuffer_SWIGUpcast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PropertyBuffer_SWIGUpcast")] public static extern global::System.IntPtr PropertyBuffer_SWIGUpcast(global::System.IntPtr jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Geometry_SWIGUpcast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Geometry_SWIGUpcast")] public static extern global::System.IntPtr Geometry_SWIGUpcast(global::System.IntPtr jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Shader_SWIGUpcast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Shader_SWIGUpcast")] public static extern global::System.IntPtr Shader_SWIGUpcast(global::System.IntPtr jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Renderer_SWIGUpcast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Renderer_SWIGUpcast")] public static extern global::System.IntPtr Renderer_SWIGUpcast(global::System.IntPtr jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_FrameBuffer_SWIGUpcast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_FrameBuffer_SWIGUpcast")] public static extern global::System.IntPtr FrameBuffer_SWIGUpcast(global::System.IntPtr jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RenderTaskList_SWIGUpcast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RenderTaskList_SWIGUpcast")] public static extern global::System.IntPtr RenderTaskList_SWIGUpcast(global::System.IntPtr jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RenderTask_SWIGUpcast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RenderTask_SWIGUpcast")] public static extern global::System.IntPtr RenderTask_SWIGUpcast(global::System.IntPtr jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TouchData_SWIGUpcast")] - public static extern global::System.IntPtr TouchData_SWIGUpcast(global::System.IntPtr jarg1); + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Touch_SWIGUpcast")] + public static extern global::System.IntPtr Touch_SWIGUpcast(global::System.IntPtr jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_GestureDetector_SWIGUpcast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_GestureDetector_SWIGUpcast")] public static extern global::System.IntPtr GestureDetector_SWIGUpcast(global::System.IntPtr jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_LongPressGestureDetector_SWIGUpcast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_LongPressGestureDetector_SWIGUpcast")] public static extern global::System.IntPtr LongPressGestureDetector_SWIGUpcast(global::System.IntPtr jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_LongPressGesture_SWIGUpcast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_LongPressGesture_SWIGUpcast")] public static extern global::System.IntPtr LongPressGesture_SWIGUpcast(global::System.IntPtr jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Actor_SWIGUpcast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Actor_SWIGUpcast")] public static extern global::System.IntPtr Actor_SWIGUpcast(global::System.IntPtr jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Layer_SWIGUpcast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Layer_SWIGUpcast")] public static extern global::System.IntPtr Layer_SWIGUpcast(global::System.IntPtr jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Stage_SWIGUpcast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Stage_SWIGUpcast")] public static extern global::System.IntPtr Stage_SWIGUpcast(global::System.IntPtr jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_CustomActorImpl_SWIGUpcast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_CustomActorImpl_SWIGUpcast")] public static extern global::System.IntPtr CustomActorImpl_SWIGUpcast(global::System.IntPtr jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_CustomActor_SWIGUpcast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_CustomActor_SWIGUpcast")] public static extern global::System.IntPtr CustomActor_SWIGUpcast(global::System.IntPtr jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PanGestureDetector_SWIGUpcast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PanGestureDetector_SWIGUpcast")] public static extern global::System.IntPtr PanGestureDetector_SWIGUpcast(global::System.IntPtr jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PanGesture_SWIGUpcast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PanGesture_SWIGUpcast")] public static extern global::System.IntPtr PanGesture_SWIGUpcast(global::System.IntPtr jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PinchGestureDetector_SWIGUpcast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PinchGestureDetector_SWIGUpcast")] public static extern global::System.IntPtr PinchGestureDetector_SWIGUpcast(global::System.IntPtr jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PinchGesture_SWIGUpcast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PinchGesture_SWIGUpcast")] public static extern global::System.IntPtr PinchGesture_SWIGUpcast(global::System.IntPtr jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TapGestureDetector_SWIGUpcast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TapGestureDetector_SWIGUpcast")] public static extern global::System.IntPtr TapGestureDetector_SWIGUpcast(global::System.IntPtr jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TapGesture_SWIGUpcast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TapGesture_SWIGUpcast")] public static extern global::System.IntPtr TapGesture_SWIGUpcast(global::System.IntPtr jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_KeyFrames_SWIGUpcast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_KeyFrames_SWIGUpcast")] public static extern global::System.IntPtr KeyFrames_SWIGUpcast(global::System.IntPtr jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Path_SWIGUpcast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Path_SWIGUpcast")] public static extern global::System.IntPtr Path_SWIGUpcast(global::System.IntPtr jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Animation_SWIGUpcast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Animation_SWIGUpcast")] public static extern global::System.IntPtr Animation_SWIGUpcast(global::System.IntPtr jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_LinearConstrainer_SWIGUpcast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_LinearConstrainer_SWIGUpcast")] public static extern global::System.IntPtr LinearConstrainer_SWIGUpcast(global::System.IntPtr jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PathConstrainer_SWIGUpcast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PathConstrainer_SWIGUpcast")] public static extern global::System.IntPtr PathConstrainer_SWIGUpcast(global::System.IntPtr jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_BufferImage_SWIGUpcast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_BufferImage_SWIGUpcast")] public static extern global::System.IntPtr BufferImage_SWIGUpcast(global::System.IntPtr jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_EncodedBufferImage_SWIGUpcast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_EncodedBufferImage_SWIGUpcast")] public static extern global::System.IntPtr EncodedBufferImage_SWIGUpcast(global::System.IntPtr jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_NativeImage_SWIGUpcast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_NativeImage_SWIGUpcast")] public static extern global::System.IntPtr NativeImage_SWIGUpcast(global::System.IntPtr jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_NativeImageInterface_SWIGUpcast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_NativeImageInterface_SWIGUpcast")] public static extern global::System.IntPtr NativeImageInterface_SWIGUpcast(global::System.IntPtr jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ResourceImage_SWIGUpcast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ResourceImage_SWIGUpcast")] public static extern global::System.IntPtr ResourceImage_SWIGUpcast(global::System.IntPtr jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_FrameBufferImage_SWIGUpcast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_FrameBufferImage_SWIGUpcast")] public static extern global::System.IntPtr FrameBufferImage_SWIGUpcast(global::System.IntPtr jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_NinePatchImage_SWIGUpcast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_NinePatchImage_SWIGUpcast")] public static extern global::System.IntPtr NinePatchImage_SWIGUpcast(global::System.IntPtr jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_CameraActor_SWIGUpcast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_CameraActor_SWIGUpcast")] public static extern global::System.IntPtr CameraActor_SWIGUpcast(global::System.IntPtr jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Timer_SWIGUpcast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Timer_SWIGUpcast")] public static extern global::System.IntPtr Timer_SWIGUpcast(global::System.IntPtr jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_DragAndDropDetector_SWIGUpcast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_DragAndDropDetector_SWIGUpcast")] public static extern global::System.IntPtr DragAndDropDetector_SWIGUpcast(global::System.IntPtr jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Window_SWIGUpcast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Window_SWIGUpcast")] public static extern global::System.IntPtr Window_SWIGUpcast(global::System.IntPtr jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Application_SWIGUpcast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Application_SWIGUpcast")] public static extern global::System.IntPtr Application_SWIGUpcast(global::System.IntPtr jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Builder_SWIGUpcast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Builder_SWIGUpcast")] public static extern global::System.IntPtr Builder_SWIGUpcast(global::System.IntPtr jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TransitionData_SWIGUpcast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TransitionData_SWIGUpcast")] public static extern global::System.IntPtr TransitionData_SWIGUpcast(global::System.IntPtr jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ViewImpl_SWIGUpcast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ViewImpl_SWIGUpcast")] public static extern global::System.IntPtr ViewImpl_SWIGUpcast(global::System.IntPtr jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_View_SWIGUpcast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_View_SWIGUpcast")] public static extern global::System.IntPtr View_SWIGUpcast(global::System.IntPtr jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_KeyInputFocusManager_SWIGUpcast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_KeyInputFocusManager_SWIGUpcast")] public static extern global::System.IntPtr KeyInputFocusManager_SWIGUpcast(global::System.IntPtr jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Alignment_SWIGUpcast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Alignment_SWIGUpcast")] public static extern global::System.IntPtr Alignment_SWIGUpcast(global::System.IntPtr jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Button_SWIGUpcast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Button_SWIGUpcast")] public static extern global::System.IntPtr Button_SWIGUpcast(global::System.IntPtr jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_CheckBoxButton_SWIGUpcast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_CheckBoxButton_SWIGUpcast")] public static extern global::System.IntPtr CheckBoxButton_SWIGUpcast(global::System.IntPtr jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PushButton_SWIGUpcast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PushButton_SWIGUpcast")] public static extern global::System.IntPtr PushButton_SWIGUpcast(global::System.IntPtr jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_RadioButton_SWIGUpcast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_RadioButton_SWIGUpcast")] public static extern global::System.IntPtr RadioButton_SWIGUpcast(global::System.IntPtr jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_FlexContainer_SWIGUpcast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_FlexContainer_SWIGUpcast")] public static extern global::System.IntPtr FlexContainer_SWIGUpcast(global::System.IntPtr jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ImageView_SWIGUpcast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ImageView_SWIGUpcast")] public static extern global::System.IntPtr ImageView_SWIGUpcast(global::System.IntPtr jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Model3dView_SWIGUpcast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Model3dView_SWIGUpcast")] public static extern global::System.IntPtr Model3dView_SWIGUpcast(global::System.IntPtr jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollBar_SWIGUpcast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollBar_SWIGUpcast")] public static extern global::System.IntPtr ScrollBar_SWIGUpcast(global::System.IntPtr jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Scrollable_SWIGUpcast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Scrollable_SWIGUpcast")] public static extern global::System.IntPtr Scrollable_SWIGUpcast(global::System.IntPtr jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ItemLayout_SWIGUpcast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ItemLayout_SWIGUpcast")] public static extern global::System.IntPtr ItemLayout_SWIGUpcast(global::System.IntPtr jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ItemView_SWIGUpcast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ItemView_SWIGUpcast")] public static extern global::System.IntPtr ItemView_SWIGUpcast(global::System.IntPtr jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollViewEffect_SWIGUpcast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollViewEffect_SWIGUpcast")] public static extern global::System.IntPtr ScrollViewEffect_SWIGUpcast(global::System.IntPtr jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollViewPagePathEffect_SWIGUpcast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollViewPagePathEffect_SWIGUpcast")] public static extern global::System.IntPtr ScrollViewPagePathEffect_SWIGUpcast(global::System.IntPtr jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Ruler_SWIGUpcast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Ruler_SWIGUpcast")] public static extern global::System.IntPtr Ruler_SWIGUpcast(global::System.IntPtr jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_DefaultRuler_SWIGUpcast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_DefaultRuler_SWIGUpcast")] public static extern global::System.IntPtr DefaultRuler_SWIGUpcast(global::System.IntPtr jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_FixedRuler_SWIGUpcast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_FixedRuler_SWIGUpcast")] public static extern global::System.IntPtr FixedRuler_SWIGUpcast(global::System.IntPtr jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ScrollView_SWIGUpcast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ScrollView_SWIGUpcast")] public static extern global::System.IntPtr ScrollView_SWIGUpcast(global::System.IntPtr jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TableView_SWIGUpcast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TableView_SWIGUpcast")] public static extern global::System.IntPtr TableView_SWIGUpcast(global::System.IntPtr jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextEditor_SWIGUpcast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextEditor_SWIGUpcast")] public static extern global::System.IntPtr TextEditor_SWIGUpcast(global::System.IntPtr jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextField_SWIGUpcast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextField_SWIGUpcast")] public static extern global::System.IntPtr TextField_SWIGUpcast(global::System.IntPtr jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_TextLabel_SWIGUpcast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_TextLabel_SWIGUpcast")] public static extern global::System.IntPtr TextLabel_SWIGUpcast(global::System.IntPtr jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_AccessibilityManager_SWIGUpcast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_AccessibilityManager_SWIGUpcast")] public static extern global::System.IntPtr AccessibilityManager_SWIGUpcast(global::System.IntPtr jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_StyleManager_SWIGUpcast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_StyleManager_SWIGUpcast")] public static extern global::System.IntPtr StyleManager_SWIGUpcast(global::System.IntPtr jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Slider_SWIGUpcast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Slider_SWIGUpcast")] public static extern global::System.IntPtr Slider_SWIGUpcast(global::System.IntPtr jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_VideoView_SWIGUpcast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_VideoView_SWIGUpcast")] public static extern global::System.IntPtr VideoView_SWIGUpcast(global::System.IntPtr jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_Popup_SWIGUpcast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_Popup_SWIGUpcast")] public static extern global::System.IntPtr Popup_SWIGUpcast(global::System.IntPtr jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_ProgressBar_SWIGUpcast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ProgressBar_SWIGUpcast")] public static extern global::System.IntPtr ProgressBar_SWIGUpcast(global::System.IntPtr jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_GaussianBlurView_SWIGUpcast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_GaussianBlurView_SWIGUpcast")] public static extern global::System.IntPtr GaussianBlurView_SWIGUpcast(global::System.IntPtr jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PageTurnView_SWIGUpcast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PageTurnView_SWIGUpcast")] public static extern global::System.IntPtr PageTurnView_SWIGUpcast(global::System.IntPtr jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PageTurnLandscapeView_SWIGUpcast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PageTurnLandscapeView_SWIGUpcast")] public static extern global::System.IntPtr PageTurnLandscapeView_SWIGUpcast(global::System.IntPtr jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_PageTurnPortraitView_SWIGUpcast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_PageTurnPortraitView_SWIGUpcast")] public static extern global::System.IntPtr PageTurnPortraitView_SWIGUpcast(global::System.IntPtr jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_VisualBase_SWIGUpcast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_ToggleButton_SWIGUpcast")] + public static extern global::System.IntPtr ToggleButton_SWIGUpcast(global::System.IntPtr jarg1); + + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_VisualBase_SWIGUpcast")] public static extern global::System.IntPtr VisualBase_SWIGUpcast(global::System.IntPtr jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_VisualFactory_SWIGUpcast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_VisualFactory_SWIGUpcast")] public static extern global::System.IntPtr VisualFactory_SWIGUpcast(global::System.IntPtr jarg1); - [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_NUI_AsyncImageLoader_SWIGUpcast")] + [global::System.Runtime.InteropServices.DllImport("libdali-csharp-binder.so", EntryPoint="CSharp_Dali_AsyncImageLoader_SWIGUpcast")] public static extern global::System.IntPtr AsyncImageLoader_SWIGUpcast(global::System.IntPtr jarg1); } diff --git a/Tizen.NUI/src/internal/NativeImage.cs b/Tizen.NUI/src/internal/NativeImage.cs old mode 100644 new mode 100755 index eab8062..04988c3 --- a/Tizen.NUI/src/internal/NativeImage.cs +++ b/Tizen.NUI/src/internal/NativeImage.cs @@ -24,7 +24,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class NativeImage : Image { private global::System.Runtime.InteropServices.HandleRef swigCPtr; diff --git a/Tizen.NUI/src/internal/NativeImageInterface.cs b/Tizen.NUI/src/internal/NativeImageInterface.cs old mode 100644 new mode 100755 index 1931479..3ea6bcd --- a/Tizen.NUI/src/internal/NativeImageInterface.cs +++ b/Tizen.NUI/src/internal/NativeImageInterface.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class NativeImageInterface : RefObject { private global::System.Runtime.InteropServices.HandleRef swigCPtr; diff --git a/Tizen.NUI/src/internal/NinePatchImage.cs b/Tizen.NUI/src/internal/NinePatchImage.cs old mode 100644 new mode 100755 index 7ef3f76..d7e9ed4 --- a/Tizen.NUI/src/internal/NinePatchImage.cs +++ b/Tizen.NUI/src/internal/NinePatchImage.cs @@ -24,7 +24,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class NinePatchImage : ResourceImage { private global::System.Runtime.InteropServices.HandleRef swigCPtr; diff --git a/Tizen.NUI/src/internal/ObjectCreatedSignal.cs b/Tizen.NUI/src/internal/ObjectCreatedSignal.cs old mode 100644 new mode 100755 index 3c709aa..1284cee --- a/Tizen.NUI/src/internal/ObjectCreatedSignal.cs +++ b/Tizen.NUI/src/internal/ObjectCreatedSignal.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class ObjectCreatedSignal : global::System.IDisposable { private global::System.Runtime.InteropServices.HandleRef swigCPtr; diff --git a/Tizen.NUI/src/internal/ObjectDestroyedSignal.cs b/Tizen.NUI/src/internal/ObjectDestroyedSignal.cs old mode 100644 new mode 100755 index 620f7e5..da25c75 --- a/Tizen.NUI/src/internal/ObjectDestroyedSignal.cs +++ b/Tizen.NUI/src/internal/ObjectDestroyedSignal.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class ObjectDestroyedSignal : global::System.IDisposable { private global::System.Runtime.InteropServices.HandleRef swigCPtr; diff --git a/Tizen.NUI/src/internal/ObjectRegistry.cs b/Tizen.NUI/src/internal/ObjectRegistry.cs old mode 100644 new mode 100755 index f593e74..408dcb0 --- a/Tizen.NUI/src/internal/ObjectRegistry.cs +++ b/Tizen.NUI/src/internal/ObjectRegistry.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { using System; using System.Runtime.InteropServices; diff --git a/Tizen.NUI/src/internal/PageFactory.cs b/Tizen.NUI/src/internal/PageFactory.cs old mode 100644 new mode 100755 index 715089e..5c7fb59 --- a/Tizen.NUI/src/internal/PageFactory.cs +++ b/Tizen.NUI/src/internal/PageFactory.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class PageFactory : global::System.IDisposable { private global::System.Runtime.InteropServices.HandleRef swigCPtr; diff --git a/Tizen.NUI/src/internal/PagePanSignal.cs b/Tizen.NUI/src/internal/PagePanSignal.cs old mode 100644 new mode 100755 index 1466242..d568003 --- a/Tizen.NUI/src/internal/PagePanSignal.cs +++ b/Tizen.NUI/src/internal/PagePanSignal.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class PagePanSignal : global::System.IDisposable { private global::System.Runtime.InteropServices.HandleRef swigCPtr; diff --git a/Tizen.NUI/src/internal/PageTurnLandscapeView.cs b/Tizen.NUI/src/internal/PageTurnLandscapeView.cs old mode 100644 new mode 100755 index 42b409f..38bcc8b --- a/Tizen.NUI/src/internal/PageTurnLandscapeView.cs +++ b/Tizen.NUI/src/internal/PageTurnLandscapeView.cs @@ -24,7 +24,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class PageTurnLandscapeView : PageTurnView { private global::System.Runtime.InteropServices.HandleRef swigCPtr; diff --git a/Tizen.NUI/src/internal/PageTurnPortraitView.cs b/Tizen.NUI/src/internal/PageTurnPortraitView.cs old mode 100644 new mode 100755 index 0e1316f..e345a53 --- a/Tizen.NUI/src/internal/PageTurnPortraitView.cs +++ b/Tizen.NUI/src/internal/PageTurnPortraitView.cs @@ -24,7 +24,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class PageTurnPortraitView : PageTurnView { private global::System.Runtime.InteropServices.HandleRef swigCPtr; diff --git a/Tizen.NUI/src/internal/PageTurnSignal.cs b/Tizen.NUI/src/internal/PageTurnSignal.cs old mode 100644 new mode 100755 index e69485b..fb7a368 --- a/Tizen.NUI/src/internal/PageTurnSignal.cs +++ b/Tizen.NUI/src/internal/PageTurnSignal.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class PageTurnSignal : global::System.IDisposable { private global::System.Runtime.InteropServices.HandleRef swigCPtr; diff --git a/Tizen.NUI/src/public/PageTurnView.cs b/Tizen.NUI/src/internal/PageTurnView.cs old mode 100644 new mode 100755 similarity index 98% rename from Tizen.NUI/src/public/PageTurnView.cs rename to Tizen.NUI/src/internal/PageTurnView.cs index c938cb1..6ca7ef3 --- a/Tizen.NUI/src/public/PageTurnView.cs +++ b/Tizen.NUI/src/internal/PageTurnView.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { using System; using System.Runtime.InteropServices; @@ -490,7 +490,7 @@ public class PageTurnFinishedEventArgs : EventArgs } set { - SetProperty( PageTurnView.Property.PAGE_SIZE, new NUI.Property.Value( value ) ); + SetProperty( PageTurnView.Property.PAGE_SIZE, new Tizen.NUI.PropertyValue( value ) ); } } public int CurrentPageId @@ -503,7 +503,7 @@ public class PageTurnFinishedEventArgs : EventArgs } set { - SetProperty( PageTurnView.Property.CURRENT_PAGE_ID, new NUI.Property.Value( value ) ); + SetProperty( PageTurnView.Property.CURRENT_PAGE_ID, new Tizen.NUI.PropertyValue( value ) ); } } public Vector2 SpineShadow @@ -516,7 +516,7 @@ public class PageTurnFinishedEventArgs : EventArgs } set { - SetProperty( PageTurnView.Property.SPINE_SHADOW, new NUI.Property.Value( value ) ); + SetProperty( PageTurnView.Property.SPINE_SHADOW, new Tizen.NUI.PropertyValue( value ) ); } } diff --git a/Tizen.NUI/src/public/PanGesture.cs b/Tizen.NUI/src/internal/PanGesture.cs old mode 100644 new mode 100755 similarity index 85% rename from Tizen.NUI/src/public/PanGesture.cs rename to Tizen.NUI/src/internal/PanGesture.cs index fe58cd8..007f0e1 --- a/Tizen.NUI/src/public/PanGesture.cs +++ b/Tizen.NUI/src/internal/PanGesture.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class PanGesture : Gesture { private global::System.Runtime.InteropServices.HandleRef swigCPtr; @@ -45,17 +45,73 @@ public class PanGesture : Gesture { } - public static PanGesture GetPanGestureFromPtr(global::System.IntPtr cPtr) { + public static PanGesture GetPanGestureFromPtr(global::System.IntPtr cPtr) { PanGesture ret = new PanGesture(cPtr, false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } + public Vector2 Velocity + { + get + { + return velocity; + } + } + + public Vector2 Displacement + { + get + { + return displacement; + } + } + + public Vector2 Position + { + get + { + return position; + } + } + + public Vector2 ScreenVelocity + { + get + { + return screenVelocity; + } + } + + public Vector2 ScreenDisplacement + { + get + { + return screenDisplacement; + } + } + + public Vector2 ScreenPosition + { + get + { + return screenPosition; + } + } + + public uint NumberOfTouches + { + get + { + return numberOfTouches; + } + } + public PanGesture() : this(NDalicPINVOKE.new_PanGesture__SWIG_0(), true) { if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } - public PanGesture(Gesture.State state) : this(NDalicPINVOKE.new_PanGesture__SWIG_1((int)state), true) { + public PanGesture(Gesture.StateType state) : this(NDalicPINVOKE.new_PanGesture__SWIG_1((int)state), true) { if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } @@ -69,7 +125,7 @@ public class PanGesture : Gesture { return ret; } - public Vector2 velocity { + private Vector2 velocity { set { NDalicPINVOKE.PanGesture_velocity_set(swigCPtr, Vector2.getCPtr(value)); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); @@ -82,7 +138,7 @@ public class PanGesture : Gesture { } } - public Vector2 displacement { + private Vector2 displacement { set { NDalicPINVOKE.PanGesture_displacement_set(swigCPtr, Vector2.getCPtr(value)); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); @@ -95,7 +151,7 @@ public class PanGesture : Gesture { } } - public Vector2 position { + private Vector2 position { set { NDalicPINVOKE.PanGesture_position_set(swigCPtr, Vector2.getCPtr(value)); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); @@ -108,7 +164,7 @@ public class PanGesture : Gesture { } } - public Vector2 screenVelocity { + private Vector2 screenVelocity { set { NDalicPINVOKE.PanGesture_screenVelocity_set(swigCPtr, Vector2.getCPtr(value)); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); @@ -121,7 +177,7 @@ public class PanGesture : Gesture { } } - public Vector2 screenDisplacement { + private Vector2 screenDisplacement { set { NDalicPINVOKE.PanGesture_screenDisplacement_set(swigCPtr, Vector2.getCPtr(value)); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); @@ -134,7 +190,7 @@ public class PanGesture : Gesture { } } - public Vector2 screenPosition { + private Vector2 screenPosition { set { NDalicPINVOKE.PanGesture_screenPosition_set(swigCPtr, Vector2.getCPtr(value)); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); @@ -147,7 +203,7 @@ public class PanGesture : Gesture { } } - public uint numberOfTouches { + private uint numberOfTouches { set { NDalicPINVOKE.PanGesture_numberOfTouches_set(swigCPtr, value); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); diff --git a/Tizen.NUI/src/internal/PanGestureDetectedSignal.cs b/Tizen.NUI/src/internal/PanGestureDetectedSignal.cs old mode 100644 new mode 100755 index 5256a9d..f773337 --- a/Tizen.NUI/src/internal/PanGestureDetectedSignal.cs +++ b/Tizen.NUI/src/internal/PanGestureDetectedSignal.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class PanGestureDetectedSignal : global::System.IDisposable { private global::System.Runtime.InteropServices.HandleRef swigCPtr; diff --git a/Tizen.NUI/src/internal/PanGestureDetector.cs b/Tizen.NUI/src/internal/PanGestureDetector.cs old mode 100644 new mode 100755 index 2dad100..c678919 --- a/Tizen.NUI/src/internal/PanGestureDetector.cs +++ b/Tizen.NUI/src/internal/PanGestureDetector.cs @@ -24,7 +24,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { using System; using System.Runtime.InteropServices; @@ -140,7 +140,7 @@ public class DetectedEventArgs : EventArgs // Populate all members of "e" (PanGestureEventArgs) with real data e.Actor = Actor.GetActorFromPtr(actor); - e.PanGesture = NUI.PanGesture.GetPanGestureFromPtr(panGesture); + e.PanGesture = Tizen.NUI.PanGesture.GetPanGestureFromPtr(panGesture); if (_panGestureEventHandler != null) { diff --git a/Tizen.NUI/src/public/PinchGesture.cs b/Tizen.NUI/src/internal/PinchGesture.cs old mode 100644 new mode 100755 similarity index 84% rename from Tizen.NUI/src/public/PinchGesture.cs rename to Tizen.NUI/src/internal/PinchGesture.cs index f5691dc..0516290 --- a/Tizen.NUI/src/public/PinchGesture.cs +++ b/Tizen.NUI/src/internal/PinchGesture.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class PinchGesture : Gesture { private global::System.Runtime.InteropServices.HandleRef swigCPtr; @@ -45,13 +45,45 @@ public class PinchGesture : Gesture { } - public static PinchGesture GetPinchGestureFromPtr(global::System.IntPtr cPtr) { + public static PinchGesture GetPinchGestureFromPtr(global::System.IntPtr cPtr) { PinchGesture ret = new PinchGesture(cPtr, false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } - public PinchGesture(Gesture.State state) : this(NDalicPINVOKE.new_PinchGesture__SWIG_0((int)state), true) { + public float Scale + { + get + { + return scale; + } + } + + public float Speed + { + get + { + return speed; + } + } + + public Vector2 ScreenCenterPoint + { + get + { + return screenCenterPoint; + } + } + + public Vector2 LocalCenterPoint + { + get + { + return localCenterPoint; + } + } + + public PinchGesture(Gesture.StateType state) : this(NDalicPINVOKE.new_PinchGesture__SWIG_0((int)state), true) { if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } @@ -65,7 +97,7 @@ public class PinchGesture : Gesture { return ret; } - public float scale { + private float scale { set { NDalicPINVOKE.PinchGesture_scale_set(swigCPtr, value); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); @@ -77,7 +109,7 @@ public class PinchGesture : Gesture { } } - public float speed { + private float speed { set { NDalicPINVOKE.PinchGesture_speed_set(swigCPtr, value); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); @@ -89,7 +121,7 @@ public class PinchGesture : Gesture { } } - public Vector2 screenCenterPoint { + private Vector2 screenCenterPoint { set { NDalicPINVOKE.PinchGesture_screenCenterPoint_set(swigCPtr, Vector2.getCPtr(value)); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); @@ -102,7 +134,7 @@ public class PinchGesture : Gesture { } } - public Vector2 localCenterPoint { + private Vector2 localCenterPoint { set { NDalicPINVOKE.PinchGesture_localCenterPoint_set(swigCPtr, Vector2.getCPtr(value)); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); diff --git a/Tizen.NUI/src/internal/PinchGestureDetectedSignal.cs b/Tizen.NUI/src/internal/PinchGestureDetectedSignal.cs old mode 100644 new mode 100755 index 07f37ad..83ee9cf --- a/Tizen.NUI/src/internal/PinchGestureDetectedSignal.cs +++ b/Tizen.NUI/src/internal/PinchGestureDetectedSignal.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class PinchGestureDetectedSignal : global::System.IDisposable { private global::System.Runtime.InteropServices.HandleRef swigCPtr; diff --git a/Tizen.NUI/src/internal/PinchGestureDetector.cs b/Tizen.NUI/src/internal/PinchGestureDetector.cs old mode 100644 new mode 100755 index dc768b4..5a84c75 --- a/Tizen.NUI/src/internal/PinchGestureDetector.cs +++ b/Tizen.NUI/src/internal/PinchGestureDetector.cs @@ -24,7 +24,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { using System; using System.Runtime.InteropServices; @@ -139,7 +139,7 @@ public class DetectedEventArgs : EventArgs // Populate all members of "e" (DetectedEventArgs) with real data e.Actor = Actor.GetActorFromPtr(actor); - e.PinchGesture = NUI.PinchGesture.GetPinchGestureFromPtr(pinchGesture); + e.PinchGesture = Tizen.NUI.PinchGesture.GetPinchGestureFromPtr(pinchGesture); if (_pinchGestureEventHandler != null) { diff --git a/Tizen.NUI/src/internal/PixelData.cs b/Tizen.NUI/src/internal/PixelData.cs old mode 100644 new mode 100755 index 2eb0923..547e40c --- a/Tizen.NUI/src/internal/PixelData.cs +++ b/Tizen.NUI/src/internal/PixelData.cs @@ -24,7 +24,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class PixelData : BaseHandle { private global::System.Runtime.InteropServices.HandleRef swigCPtr; diff --git a/Tizen.NUI/src/internal/PixelFormat.cs b/Tizen.NUI/src/internal/PixelFormat.cs old mode 100644 new mode 100755 index 8778da5..9a889a8 --- a/Tizen.NUI/src/internal/PixelFormat.cs +++ b/Tizen.NUI/src/internal/PixelFormat.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public enum PixelFormat { INVALID = 0, diff --git a/Tizen.NUI/src/internal/PointStateType.cs b/Tizen.NUI/src/internal/PointStateType.cs deleted file mode 100644 index b2e3074..0000000 --- a/Tizen.NUI/src/internal/PointStateType.cs +++ /dev/null @@ -1,24 +0,0 @@ -//------------------------------------------------------------------------------ -// -// -// This file was automatically generated by SWIG (http://www.swig.org). -// Version 3.0.9 -// -// Do not make changes to this file unless you know what you are doing--modify -// the SWIG interface file instead. -//------------------------------------------------------------------------------ - -namespace NUI { - -public enum PointStateType { - STARTED, - FINISHED, - DOWN = STARTED, - UP = FINISHED, - MOTION, - LEAVE, - STATIONARY, - INTERRUPTED -} - -} diff --git a/Tizen.NUI/src/internal/PositionInheritanceMode.cs b/Tizen.NUI/src/internal/PositionInheritanceMode.cs old mode 100644 new mode 100755 index 9ea7ec0..14e64a3 --- a/Tizen.NUI/src/internal/PositionInheritanceMode.cs +++ b/Tizen.NUI/src/internal/PositionInheritanceMode.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public enum PositionInheritanceMode { INHERIT_PARENT_POSITION, diff --git a/Tizen.NUI/src/internal/PrimitiveVisualShapeType.cs b/Tizen.NUI/src/internal/PrimitiveVisualShapeType.cs old mode 100644 new mode 100755 index 015d669..56cff15 --- a/Tizen.NUI/src/internal/PrimitiveVisualShapeType.cs +++ b/Tizen.NUI/src/internal/PrimitiveVisualShapeType.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public enum PrimitiveVisualShapeType { SPHERE, diff --git a/Tizen.NUI/src/internal/ProjectionMode.cs b/Tizen.NUI/src/internal/ProjectionMode.cs deleted file mode 100644 index e450b75..0000000 --- a/Tizen.NUI/src/internal/ProjectionMode.cs +++ /dev/null @@ -1,18 +0,0 @@ -//------------------------------------------------------------------------------ -// -// -// This file was automatically generated by SWIG (http://www.swig.org). -// Version 3.0.9 -// -// Do not make changes to this file unless you know what you are doing--modify -// the SWIG interface file instead. -//------------------------------------------------------------------------------ - -namespace NUI { - -public enum ProjectionMode { - PERSPECTIVE_PROJECTION, - ORTHOGRAPHIC_PROJECTION -} - -} diff --git a/Tizen.NUI/src/internal/PropertyBuffer.cs b/Tizen.NUI/src/internal/PropertyBuffer.cs old mode 100644 new mode 100755 index e965551..30aaecb --- a/Tizen.NUI/src/internal/PropertyBuffer.cs +++ b/Tizen.NUI/src/internal/PropertyBuffer.cs @@ -24,7 +24,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class PropertyBuffer : BaseHandle { private global::System.Runtime.InteropServices.HandleRef swigCPtr; @@ -61,7 +61,7 @@ public class PropertyBuffer : BaseHandle { } - public PropertyBuffer (Property.Map bufferFormat) : this (NDalicPINVOKE.PropertyBuffer_New(Property.Map.getCPtr(bufferFormat)), true) { + public PropertyBuffer (PropertyMap bufferFormat) : this (NDalicPINVOKE.PropertyBuffer_New(PropertyMap.getCPtr(bufferFormat)), true) { if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } diff --git a/Tizen.NUI/src/internal/PropertyCondition.cs b/Tizen.NUI/src/internal/PropertyCondition.cs old mode 100644 new mode 100755 index 9e6ad60..aa833ba --- a/Tizen.NUI/src/internal/PropertyCondition.cs +++ b/Tizen.NUI/src/internal/PropertyCondition.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class PropertyCondition : BaseHandle { private global::System.Runtime.InteropServices.HandleRef swigCPtr; diff --git a/Tizen.NUI/src/internal/PropertyNotification.cs b/Tizen.NUI/src/internal/PropertyNotification.cs old mode 100644 new mode 100755 index 4d6a25c..44b77f3 --- a/Tizen.NUI/src/internal/PropertyNotification.cs +++ b/Tizen.NUI/src/internal/PropertyNotification.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { using System; using System.Runtime.InteropServices; diff --git a/Tizen.NUI/src/internal/PropertyNotifySignal.cs b/Tizen.NUI/src/internal/PropertyNotifySignal.cs old mode 100644 new mode 100755 index aa80890..1d0792d --- a/Tizen.NUI/src/internal/PropertyNotifySignal.cs +++ b/Tizen.NUI/src/internal/PropertyNotifySignal.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class PropertyNotifySignal : global::System.IDisposable { private global::System.Runtime.InteropServices.HandleRef swigCPtr; diff --git a/Tizen.NUI/src/internal/PropertyRangeManager.cs b/Tizen.NUI/src/internal/PropertyRangeManager.cs new file mode 100755 index 0000000..6c48ef8 --- /dev/null +++ b/Tizen.NUI/src/internal/PropertyRangeManager.cs @@ -0,0 +1,142 @@ +using System; +using System.Runtime.InteropServices; +using System.Collections.Generic; + +#if true +using System.Reflection; +#endif + +namespace Tizen.NUI +{ + /// + /// Helper class for calculating what property indexes should be assigned to C# View (view) classes. + /// + public class PropertyRangeManager + { + private Dictionary _propertyRange; + + /// + /// Initializes a new instance of the class. + /// + public PropertyRangeManager () + { + _propertyRange = new Dictionary (); + } + + /// + /// Only called if a View has scriptable properties + /// + private PropertyRange RegisterView( string viewName, System.Type viewType ) + { + PropertyRange range; + + if ( _propertyRange.TryGetValue (viewName, out range) ) + { + // already registered + return range; + } + + // Find out the event and animatable start indexes for the type + range = new PropertyRange(); + + GetPropertyStartRange( viewType, ref range); + + // add it to our dictionary + _propertyRange.Add( viewName, range ); + + return range; + + } + + /// + /// Gets the index of the property. + /// Each property has to have unique index for this view type + /// + /// The property index. + /// View name + /// View type + /// Type. + public int GetPropertyIndex( string viewName, System.Type viewType, ScriptableProperty.ScriptableType type ) + { + + PropertyRange range; + + if (! _propertyRange.TryGetValue (viewName, out range) ) + { + // view not found, register it now + range = RegisterView( viewName, viewType); + } + + int index = range.GetNextFreePropertyIndex ( type ); + + // update the dictionary + _propertyRange[viewName]=range; + + return index; + + } + + /// + /// We calculate the start property indices, based on the type and it's class heirachy, e.g. DateView (70,000)- > Spin (60,000) -> View (50,000) + /// + private void GetPropertyStartRange( System.Type viewType, ref PropertyRange range ) + { + const int maxCountPerDerivation = 1000; // For child and animtable properties we use a gap of 1000 between each + // views property range in the heirachy + + // custom views start there property index, at view_PROPERTY_END_INDEX + // we add 1000, just incase View class (our C# custom view base) starts using scriptable properties + int startEventPropertyIndex = (int)View.PropertyRange.CONTROL_PROPERTY_END_INDEX+maxCountPerDerivation; + + // for animatable properties current range starts at ANIMATABLE_PROPERTY_REGISTRATION_START_INDEX, + // we add 1000, just incase View class starts using animatable properties + int startAnimatablePropertyIndex = (int)Tizen.NUI.PropertyRanges.ANIMATABLE_PROPERTY_REGISTRATION_START_INDEX +maxCountPerDerivation; + + while ( viewType.GetTypeInfo().BaseType.Name != "CustomView" ) // custom view is our C# view base class. we don't go any deeper. + { + // for every base class increase property start index + startEventPropertyIndex += (int)Tizen.NUI.PropertyRanges.DEFAULT_PROPERTY_MAX_COUNT_PER_DERIVATION; // DALi uses 10,000 + startAnimatablePropertyIndex += maxCountPerDerivation; + + //Console.WriteLine ("getStartPropertyIndex = " + viewType.Name +"current index " + startEventPropertyIndex); + viewType = viewType.GetTypeInfo().BaseType; + } + + range.startEventIndex = startEventPropertyIndex; + range.lastUsedEventIndex = startEventPropertyIndex; + + range.startAnimationIndex = startAnimatablePropertyIndex; + range.lastUsedAnimationIndex = startAnimatablePropertyIndex; + + } + + + public struct PropertyRange + { + + public int GetNextFreePropertyIndex( ScriptableProperty.ScriptableType type) + { + if ( type == ScriptableProperty.ScriptableType.Default ) + { + lastUsedEventIndex++; + return lastUsedEventIndex; + } + else + { + lastUsedAnimationIndex++; + return lastUsedAnimationIndex ; + } + } + + + public int startEventIndex; /// start of the property range + public int lastUsedEventIndex; /// last used of the property index + + public int startAnimationIndex; /// start of the property range + public int lastUsedAnimationIndex; /// last used of the property index + }; + + + +} +} diff --git a/Tizen.NUI/src/internal/PropertyRanges.cs b/Tizen.NUI/src/internal/PropertyRanges.cs old mode 100644 new mode 100755 index 3dcffd5..455cc5a --- a/Tizen.NUI/src/internal/PropertyRanges.cs +++ b/Tizen.NUI/src/internal/PropertyRanges.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public enum PropertyRanges { DEFAULT_OBJECT_PROPERTY_START_INDEX = 0, diff --git a/Tizen.NUI/src/internal/PropertyRegistration.cs b/Tizen.NUI/src/internal/PropertyRegistration.cs old mode 100644 new mode 100755 index 09c0515..01ee35a --- a/Tizen.NUI/src/internal/PropertyRegistration.cs +++ b/Tizen.NUI/src/internal/PropertyRegistration.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class PropertyRegistration : global::System.IDisposable { private global::System.Runtime.InteropServices.HandleRef swigCPtr; @@ -40,7 +40,7 @@ public class PropertyRegistration : global::System.IDisposable { } } - public PropertyRegistration(TypeRegistration registered, string name, int index, Property.Type type, SWIGTYPE_p_f_p_Dali__BaseObject_int_r_q_const__Dali__Property__Value__void setFunc, SWIGTYPE_p_f_p_Dali__BaseObject_Dali__Property__Index__Dali__Property__Value getFunc) : this(NDalicPINVOKE.new_PropertyRegistration(TypeRegistration.getCPtr(registered), name, index, (int)type, SWIGTYPE_p_f_p_Dali__BaseObject_int_r_q_const__Dali__Property__Value__void.getCPtr(setFunc), SWIGTYPE_p_f_p_Dali__BaseObject_Dali__Property__Index__Dali__Property__Value.getCPtr(getFunc)), true) { + public PropertyRegistration(TypeRegistration registered, string name, int index, PropertyType type, SWIGTYPE_p_f_p_Dali__BaseObject_int_r_q_const__Dali__Property__Value__void setFunc, SWIGTYPE_p_f_p_Dali__BaseObject_Dali__Property__Index__Dali__Property__Value getFunc) : this(NDalicPINVOKE.new_PropertyRegistration(TypeRegistration.getCPtr(registered), name, index, (int)type, SWIGTYPE_p_f_p_Dali__BaseObject_int_r_q_const__Dali__Property__Value__void.getCPtr(setFunc), SWIGTYPE_p_f_p_Dali__BaseObject_Dali__Property__Index__Dali__Property__Value.getCPtr(getFunc)), true) { if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } diff --git a/Tizen.NUI/src/public/Quaternion.cs b/Tizen.NUI/src/internal/Quaternion.cs old mode 100644 new mode 100755 similarity index 99% rename from Tizen.NUI/src/public/Quaternion.cs rename to Tizen.NUI/src/internal/Quaternion.cs index bf1e990..a11767e --- a/Tizen.NUI/src/public/Quaternion.cs +++ b/Tizen.NUI/src/internal/Quaternion.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class Quaternion : global::System.IDisposable { private global::System.Runtime.InteropServices.HandleRef swigCPtr; diff --git a/Tizen.NUI/src/public/Radian.cs b/Tizen.NUI/src/internal/Radian.cs old mode 100644 new mode 100755 similarity index 99% rename from Tizen.NUI/src/public/Radian.cs rename to Tizen.NUI/src/internal/Radian.cs index 30d58a9..683b611 --- a/Tizen.NUI/src/public/Radian.cs +++ b/Tizen.NUI/src/internal/Radian.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class Radian : global::System.IDisposable { private global::System.Runtime.InteropServices.HandleRef swigCPtr; diff --git a/Tizen.NUI/src/internal/RectDouble.cs b/Tizen.NUI/src/internal/RectDouble.cs old mode 100644 new mode 100755 index 9f89d1e..f77becc --- a/Tizen.NUI/src/internal/RectDouble.cs +++ b/Tizen.NUI/src/internal/RectDouble.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class RectDouble : global::System.IDisposable { private global::System.Runtime.InteropServices.HandleRef swigCPtr; diff --git a/Tizen.NUI/src/internal/RectFloat.cs b/Tizen.NUI/src/internal/RectFloat.cs old mode 100644 new mode 100755 index b932d96..fb121a7 --- a/Tizen.NUI/src/internal/RectFloat.cs +++ b/Tizen.NUI/src/internal/RectFloat.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class RectFloat : global::System.IDisposable { private global::System.Runtime.InteropServices.HandleRef swigCPtr; diff --git a/Tizen.NUI/src/internal/RectInteger.cs b/Tizen.NUI/src/internal/RectInteger.cs old mode 100644 new mode 100755 index d25664a..d847758 --- a/Tizen.NUI/src/internal/RectInteger.cs +++ b/Tizen.NUI/src/internal/RectInteger.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class RectInteger : global::System.IDisposable { private global::System.Runtime.InteropServices.HandleRef swigCPtr; diff --git a/Tizen.NUI/src/internal/RectUnsignedInteger.cs b/Tizen.NUI/src/internal/RectUnsignedInteger.cs old mode 100644 new mode 100755 index d322074..e970d34 --- a/Tizen.NUI/src/internal/RectUnsignedInteger.cs +++ b/Tizen.NUI/src/internal/RectUnsignedInteger.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class RectUnsignedInteger : global::System.IDisposable { private global::System.Runtime.InteropServices.HandleRef swigCPtr; diff --git a/Tizen.NUI/src/internal/RefObject.cs b/Tizen.NUI/src/internal/RefObject.cs old mode 100644 new mode 100755 index 54650b4..4fb2602 --- a/Tizen.NUI/src/internal/RefObject.cs +++ b/Tizen.NUI/src/internal/RefObject.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class RefObject : global::System.IDisposable { private global::System.Runtime.InteropServices.HandleRef swigCPtr; diff --git a/Tizen.NUI/src/internal/RenderBufferFormat.cs b/Tizen.NUI/src/internal/RenderBufferFormat.cs old mode 100644 new mode 100755 index 93cb88e..662ccc6 --- a/Tizen.NUI/src/internal/RenderBufferFormat.cs +++ b/Tizen.NUI/src/internal/RenderBufferFormat.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public enum RenderBufferFormat { COLOR, diff --git a/Tizen.NUI/src/internal/RenderModeType.cs b/Tizen.NUI/src/internal/RenderModeType.cs old mode 100644 new mode 100755 index 6e41663..418cc37 --- a/Tizen.NUI/src/internal/RenderModeType.cs +++ b/Tizen.NUI/src/internal/RenderModeType.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public enum RenderModeType { NONE, diff --git a/Tizen.NUI/src/internal/RenderTask.cs b/Tizen.NUI/src/internal/RenderTask.cs old mode 100644 new mode 100755 index 5dcb3b8..44a6bad --- a/Tizen.NUI/src/internal/RenderTask.cs +++ b/Tizen.NUI/src/internal/RenderTask.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class RenderTask : Handle { private global::System.Runtime.InteropServices.HandleRef swigCPtr; @@ -378,7 +378,7 @@ public class RenderTask : Handle { } set { - SetProperty( RenderTask.Property.VIEWPORT_POSITION, new NUI.Property.Value( value ) ); + SetProperty( RenderTask.Property.VIEWPORT_POSITION, new Tizen.NUI.PropertyValue( value ) ); } } public Vector2 ViewportSize @@ -391,7 +391,7 @@ public class RenderTask : Handle { } set { - SetProperty( RenderTask.Property.VIEWPORT_SIZE, new NUI.Property.Value( value ) ); + SetProperty( RenderTask.Property.VIEWPORT_SIZE, new Tizen.NUI.PropertyValue( value ) ); } } public Vector4 ClearColor @@ -404,7 +404,7 @@ public class RenderTask : Handle { } set { - SetProperty( RenderTask.Property.CLEAR_COLOR, new NUI.Property.Value( value ) ); + SetProperty( RenderTask.Property.CLEAR_COLOR, new Tizen.NUI.PropertyValue( value ) ); } } public bool RequiresSync @@ -417,7 +417,7 @@ public class RenderTask : Handle { } set { - SetProperty( RenderTask.Property.REQUIRES_SYNC, new NUI.Property.Value( value ) ); + SetProperty( RenderTask.Property.REQUIRES_SYNC, new Tizen.NUI.PropertyValue( value ) ); } } diff --git a/Tizen.NUI/src/internal/RenderTaskList.cs b/Tizen.NUI/src/internal/RenderTaskList.cs old mode 100644 new mode 100755 index 3aff8a7..1b761e3 --- a/Tizen.NUI/src/internal/RenderTaskList.cs +++ b/Tizen.NUI/src/internal/RenderTaskList.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class RenderTaskList : BaseHandle { private global::System.Runtime.InteropServices.HandleRef swigCPtr; diff --git a/Tizen.NUI/src/internal/RenderTaskSignal.cs b/Tizen.NUI/src/internal/RenderTaskSignal.cs old mode 100644 new mode 100755 index 51987ab..4e722b2 --- a/Tizen.NUI/src/internal/RenderTaskSignal.cs +++ b/Tizen.NUI/src/internal/RenderTaskSignal.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class RenderTaskSignal : global::System.IDisposable { private global::System.Runtime.InteropServices.HandleRef swigCPtr; diff --git a/Tizen.NUI/src/public/Renderer.cs b/Tizen.NUI/src/internal/Renderer.cs old mode 100644 new mode 100755 similarity index 86% rename from Tizen.NUI/src/public/Renderer.cs rename to Tizen.NUI/src/internal/Renderer.cs index 5c45b20..171378a --- a/Tizen.NUI/src/public/Renderer.cs +++ b/Tizen.NUI/src/internal/Renderer.cs @@ -24,7 +24,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class Renderer : Handle { private global::System.Runtime.InteropServices.HandleRef swigCPtr; @@ -61,6 +61,20 @@ public class Renderer : Handle { } + public bool BatchingEnabled + { + get + { + bool temp = false; + GetProperty( Renderer.Property.BATCHING_ENABLED).Get( ref temp ); + return temp; + } + set + { + SetProperty( Renderer.Property.BATCHING_ENABLED, new Tizen.NUI.PropertyValue( value ) ); + } + } + public class Property : global::System.IDisposable { private global::System.Runtime.InteropServices.HandleRef swigCPtr; protected bool swigCMemOwn; @@ -91,6 +105,8 @@ public class Renderer : Handle { } } + public static readonly int BATCHING_ENABLED = NDalicManualPINVOKE.Renderer_Property_BATCHING_ENABLED_get(); + public Property() : this(NDalicPINVOKE.new_Renderer_Property(), true) { if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } @@ -190,7 +206,7 @@ public class Renderer : Handle { } set { - SetProperty( Renderer.Property.DEPTH_INDEX, new NUI.Property.Value( value ) ); + SetProperty( Renderer.Property.DEPTH_INDEX, new Tizen.NUI.PropertyValue( value ) ); } } public int FaceCullingMode @@ -203,7 +219,7 @@ public class Renderer : Handle { } set { - SetProperty( Renderer.Property.FACE_CULLING_MODE, new NUI.Property.Value( value ) ); + SetProperty( Renderer.Property.FACE_CULLING_MODE, new Tizen.NUI.PropertyValue( value ) ); } } public int BlendMode @@ -216,7 +232,7 @@ public class Renderer : Handle { } set { - SetProperty( Renderer.Property.BLEND_MODE, new NUI.Property.Value( value ) ); + SetProperty( Renderer.Property.BLEND_MODE, new Tizen.NUI.PropertyValue( value ) ); } } public int BlendEquationRgb @@ -229,7 +245,7 @@ public class Renderer : Handle { } set { - SetProperty( Renderer.Property.BLEND_EQUATION_RGB, new NUI.Property.Value( value ) ); + SetProperty( Renderer.Property.BLEND_EQUATION_RGB, new Tizen.NUI.PropertyValue( value ) ); } } public int BlendEquationAlpha @@ -242,7 +258,7 @@ public class Renderer : Handle { } set { - SetProperty( Renderer.Property.BLEND_EQUATION_ALPHA, new NUI.Property.Value( value ) ); + SetProperty( Renderer.Property.BLEND_EQUATION_ALPHA, new Tizen.NUI.PropertyValue( value ) ); } } public int BlendFactorSrcRgb @@ -255,7 +271,7 @@ public class Renderer : Handle { } set { - SetProperty( Renderer.Property.BLEND_FACTOR_SRC_RGB, new NUI.Property.Value( value ) ); + SetProperty( Renderer.Property.BLEND_FACTOR_SRC_RGB, new Tizen.NUI.PropertyValue( value ) ); } } public int BlendFactorDestRgb @@ -268,7 +284,7 @@ public class Renderer : Handle { } set { - SetProperty( Renderer.Property.BLEND_FACTOR_DEST_RGB, new NUI.Property.Value( value ) ); + SetProperty( Renderer.Property.BLEND_FACTOR_DEST_RGB, new Tizen.NUI.PropertyValue( value ) ); } } public int BlendFactorSrcAlpha @@ -281,7 +297,7 @@ public class Renderer : Handle { } set { - SetProperty( Renderer.Property.BLEND_FACTOR_SRC_ALPHA, new NUI.Property.Value( value ) ); + SetProperty( Renderer.Property.BLEND_FACTOR_SRC_ALPHA, new Tizen.NUI.PropertyValue( value ) ); } } public int BlendFactorDestAlpha @@ -294,7 +310,7 @@ public class Renderer : Handle { } set { - SetProperty( Renderer.Property.BLEND_FACTOR_DEST_ALPHA, new NUI.Property.Value( value ) ); + SetProperty( Renderer.Property.BLEND_FACTOR_DEST_ALPHA, new Tizen.NUI.PropertyValue( value ) ); } } public Vector4 BlendColor @@ -307,7 +323,7 @@ public class Renderer : Handle { } set { - SetProperty( Renderer.Property.BLEND_COLOR, new NUI.Property.Value( value ) ); + SetProperty( Renderer.Property.BLEND_COLOR, new Tizen.NUI.PropertyValue( value ) ); } } public bool BlendPreMultipliedAlpha @@ -320,7 +336,7 @@ public class Renderer : Handle { } set { - SetProperty( Renderer.Property.BLEND_PRE_MULTIPLIED_ALPHA, new NUI.Property.Value( value ) ); + SetProperty( Renderer.Property.BLEND_PRE_MULTIPLIED_ALPHA, new Tizen.NUI.PropertyValue( value ) ); } } public int IndexRangeFirst @@ -333,7 +349,7 @@ public class Renderer : Handle { } set { - SetProperty( Renderer.Property.INDEX_RANGE_FIRST, new NUI.Property.Value( value ) ); + SetProperty( Renderer.Property.INDEX_RANGE_FIRST, new Tizen.NUI.PropertyValue( value ) ); } } public int IndexRangeCount @@ -346,7 +362,7 @@ public class Renderer : Handle { } set { - SetProperty( Renderer.Property.INDEX_RANGE_COUNT, new NUI.Property.Value( value ) ); + SetProperty( Renderer.Property.INDEX_RANGE_COUNT, new Tizen.NUI.PropertyValue( value ) ); } } public int DepthWriteMode @@ -359,7 +375,7 @@ public class Renderer : Handle { } set { - SetProperty( Renderer.Property.DEPTH_WRITE_MODE, new NUI.Property.Value( value ) ); + SetProperty( Renderer.Property.DEPTH_WRITE_MODE, new Tizen.NUI.PropertyValue( value ) ); } } public int DepthFunction @@ -372,7 +388,7 @@ public class Renderer : Handle { } set { - SetProperty( Renderer.Property.DEPTH_FUNCTION, new NUI.Property.Value( value ) ); + SetProperty( Renderer.Property.DEPTH_FUNCTION, new Tizen.NUI.PropertyValue( value ) ); } } public int DepthTestMode @@ -385,7 +401,7 @@ public class Renderer : Handle { } set { - SetProperty( Renderer.Property.DEPTH_TEST_MODE, new NUI.Property.Value( value ) ); + SetProperty( Renderer.Property.DEPTH_TEST_MODE, new Tizen.NUI.PropertyValue( value ) ); } } public int RenderMode @@ -398,7 +414,7 @@ public class Renderer : Handle { } set { - SetProperty( Renderer.Property.RENDER_MODE, new NUI.Property.Value( value ) ); + SetProperty( Renderer.Property.RENDER_MODE, new Tizen.NUI.PropertyValue( value ) ); } } public int StencilFunction @@ -411,7 +427,7 @@ public class Renderer : Handle { } set { - SetProperty( Renderer.Property.STENCIL_FUNCTION, new NUI.Property.Value( value ) ); + SetProperty( Renderer.Property.STENCIL_FUNCTION, new Tizen.NUI.PropertyValue( value ) ); } } public int StencilFunctionMask @@ -424,7 +440,7 @@ public class Renderer : Handle { } set { - SetProperty( Renderer.Property.STENCIL_FUNCTION_MASK, new NUI.Property.Value( value ) ); + SetProperty( Renderer.Property.STENCIL_FUNCTION_MASK, new Tizen.NUI.PropertyValue( value ) ); } } public int StencilFunctionReference @@ -437,7 +453,7 @@ public class Renderer : Handle { } set { - SetProperty( Renderer.Property.STENCIL_FUNCTION_REFERENCE, new NUI.Property.Value( value ) ); + SetProperty( Renderer.Property.STENCIL_FUNCTION_REFERENCE, new Tizen.NUI.PropertyValue( value ) ); } } public int StencilMask @@ -450,7 +466,7 @@ public class Renderer : Handle { } set { - SetProperty( Renderer.Property.STENCIL_MASK, new NUI.Property.Value( value ) ); + SetProperty( Renderer.Property.STENCIL_MASK, new Tizen.NUI.PropertyValue( value ) ); } } public int StencilOperationOnFail @@ -463,7 +479,7 @@ public class Renderer : Handle { } set { - SetProperty( Renderer.Property.STENCIL_OPERATION_ON_FAIL, new NUI.Property.Value( value ) ); + SetProperty( Renderer.Property.STENCIL_OPERATION_ON_FAIL, new Tizen.NUI.PropertyValue( value ) ); } } public int StencilOperationOnZFail @@ -476,7 +492,7 @@ public class Renderer : Handle { } set { - SetProperty( Renderer.Property.STENCIL_OPERATION_ON_Z_FAIL, new NUI.Property.Value( value ) ); + SetProperty( Renderer.Property.STENCIL_OPERATION_ON_Z_FAIL, new Tizen.NUI.PropertyValue( value ) ); } } public int StencilOperationOnZPass @@ -489,7 +505,7 @@ public class Renderer : Handle { } set { - SetProperty( Renderer.Property.STENCIL_OPERATION_ON_Z_PASS, new NUI.Property.Value( value ) ); + SetProperty( Renderer.Property.STENCIL_OPERATION_ON_Z_PASS, new Tizen.NUI.PropertyValue( value ) ); } } diff --git a/Tizen.NUI/src/internal/RenderingType.cs b/Tizen.NUI/src/internal/RenderingType.cs old mode 100644 new mode 100755 index 20cd5e1..601c97d --- a/Tizen.NUI/src/internal/RenderingType.cs +++ b/Tizen.NUI/src/internal/RenderingType.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public enum RenderingType { RENDERING_SHARED_ATLAS, diff --git a/Tizen.NUI/src/internal/ResourceImage.cs b/Tizen.NUI/src/internal/ResourceImage.cs old mode 100644 new mode 100755 index 4d7df4f..b33bdd4 --- a/Tizen.NUI/src/internal/ResourceImage.cs +++ b/Tizen.NUI/src/internal/ResourceImage.cs @@ -24,7 +24,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { using System; using System.Runtime.InteropServices; diff --git a/Tizen.NUI/src/internal/ResourceImageSignal.cs b/Tizen.NUI/src/internal/ResourceImageSignal.cs old mode 100644 new mode 100755 index fbe7910..f50b72e --- a/Tizen.NUI/src/internal/ResourceImageSignal.cs +++ b/Tizen.NUI/src/internal/ResourceImageSignal.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class ResourceImageSignal : global::System.IDisposable { private global::System.Runtime.InteropServices.HandleRef swigCPtr; diff --git a/Tizen.NUI/src/public/Ruler.cs b/Tizen.NUI/src/internal/Ruler.cs old mode 100644 new mode 100755 similarity index 99% rename from Tizen.NUI/src/public/Ruler.cs rename to Tizen.NUI/src/internal/Ruler.cs index 6aa3355..9c598e0 --- a/Tizen.NUI/src/public/Ruler.cs +++ b/Tizen.NUI/src/internal/Ruler.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class Ruler : RefObject { private global::System.Runtime.InteropServices.HandleRef swigCPtr; diff --git a/Tizen.NUI/src/internal/RulerDomain.cs b/Tizen.NUI/src/internal/RulerDomain.cs old mode 100644 new mode 100755 index 9021cf3..8560e8b --- a/Tizen.NUI/src/internal/RulerDomain.cs +++ b/Tizen.NUI/src/internal/RulerDomain.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class RulerDomain : global::System.IDisposable { private global::System.Runtime.InteropServices.HandleRef swigCPtr; diff --git a/Tizen.NUI/src/internal/RulerPtr.cs b/Tizen.NUI/src/internal/RulerPtr.cs old mode 100644 new mode 100755 index f427f09..cc1dc55 --- a/Tizen.NUI/src/internal/RulerPtr.cs +++ b/Tizen.NUI/src/internal/RulerPtr.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class RulerPtr : global::System.IDisposable { private global::System.Runtime.InteropServices.HandleRef swigCPtr; diff --git a/Tizen.NUI/src/internal/SWIGTYPE_p_CallbackBase.cs b/Tizen.NUI/src/internal/SWIGTYPE_p_CallbackBase.cs old mode 100644 new mode 100755 index d75d53f..8728a7a --- a/Tizen.NUI/src/internal/SWIGTYPE_p_CallbackBase.cs +++ b/Tizen.NUI/src/internal/SWIGTYPE_p_CallbackBase.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class SWIGTYPE_p_CallbackBase { private global::System.Runtime.InteropServices.HandleRef swigCPtr; diff --git a/Tizen.NUI/src/internal/SWIGTYPE_p_Configuration__ContextLoss.cs b/Tizen.NUI/src/internal/SWIGTYPE_p_Configuration__ContextLoss.cs old mode 100644 new mode 100755 index 9cda703..2493069 --- a/Tizen.NUI/src/internal/SWIGTYPE_p_Configuration__ContextLoss.cs +++ b/Tizen.NUI/src/internal/SWIGTYPE_p_Configuration__ContextLoss.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class SWIGTYPE_p_Configuration__ContextLoss { private global::System.Runtime.InteropServices.HandleRef swigCPtr; diff --git a/Tizen.NUI/src/internal/SWIGTYPE_p_Dali__CallbackBase.cs b/Tizen.NUI/src/internal/SWIGTYPE_p_Dali__CallbackBase.cs old mode 100644 new mode 100755 index f03b547..f4a8e52 --- a/Tizen.NUI/src/internal/SWIGTYPE_p_Dali__CallbackBase.cs +++ b/Tizen.NUI/src/internal/SWIGTYPE_p_Dali__CallbackBase.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class SWIGTYPE_p_Dali__CallbackBase { private global::System.Runtime.InteropServices.HandleRef swigCPtr; diff --git a/Tizen.NUI/src/internal/SWIGTYPE_p_Dali__Constraint.cs b/Tizen.NUI/src/internal/SWIGTYPE_p_Dali__Constraint.cs old mode 100644 new mode 100755 index 3832cfd..51c260b --- a/Tizen.NUI/src/internal/SWIGTYPE_p_Dali__Constraint.cs +++ b/Tizen.NUI/src/internal/SWIGTYPE_p_Dali__Constraint.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class SWIGTYPE_p_Dali__Constraint { private global::System.Runtime.InteropServices.HandleRef swigCPtr; diff --git a/Tizen.NUI/src/internal/SWIGTYPE_p_Dali__CustomActorImpl__Extension.cs b/Tizen.NUI/src/internal/SWIGTYPE_p_Dali__CustomActorImpl__Extension.cs old mode 100644 new mode 100755 index cb3d387..ddd0486 --- a/Tizen.NUI/src/internal/SWIGTYPE_p_Dali__CustomActorImpl__Extension.cs +++ b/Tizen.NUI/src/internal/SWIGTYPE_p_Dali__CustomActorImpl__Extension.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class SWIGTYPE_p_Dali__CustomActorImpl__Extension { private global::System.Runtime.InteropServices.HandleRef swigCPtr; diff --git a/Tizen.NUI/src/internal/SWIGTYPE_p_Dali__FunctorDelegate.cs b/Tizen.NUI/src/internal/SWIGTYPE_p_Dali__FunctorDelegate.cs old mode 100644 new mode 100755 index 0c11565..abc378a --- a/Tizen.NUI/src/internal/SWIGTYPE_p_Dali__FunctorDelegate.cs +++ b/Tizen.NUI/src/internal/SWIGTYPE_p_Dali__FunctorDelegate.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class SWIGTYPE_p_Dali__FunctorDelegate { private global::System.Runtime.InteropServices.HandleRef swigCPtr; diff --git a/Tizen.NUI/src/internal/SWIGTYPE_p_Dali__Internal__TypeRegistry.cs b/Tizen.NUI/src/internal/SWIGTYPE_p_Dali__Internal__TypeRegistry.cs old mode 100644 new mode 100755 index 7cbb167..e1ed5b3 --- a/Tizen.NUI/src/internal/SWIGTYPE_p_Dali__Internal__TypeRegistry.cs +++ b/Tizen.NUI/src/internal/SWIGTYPE_p_Dali__Internal__TypeRegistry.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class SWIGTYPE_p_Dali__Internal__TypeRegistry { private global::System.Runtime.InteropServices.HandleRef swigCPtr; diff --git a/Tizen.NUI/src/internal/SWIGTYPE_p_Dali__IntrusivePtrT_Dali__Toolkit__ItemLayout_t.cs b/Tizen.NUI/src/internal/SWIGTYPE_p_Dali__IntrusivePtrT_Dali__Toolkit__ItemLayout_t.cs old mode 100644 new mode 100755 index 321f5a8..74d9503 --- a/Tizen.NUI/src/internal/SWIGTYPE_p_Dali__IntrusivePtrT_Dali__Toolkit__ItemLayout_t.cs +++ b/Tizen.NUI/src/internal/SWIGTYPE_p_Dali__IntrusivePtrT_Dali__Toolkit__ItemLayout_t.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class SWIGTYPE_p_Dali__IntrusivePtrT_Dali__Toolkit__ItemLayout_t { private global::System.Runtime.InteropServices.HandleRef swigCPtr; diff --git a/Tizen.NUI/src/internal/SWIGTYPE_p_Dali__SignalT_bool_fDali__Actor_Dali__TouchEvent_const_RF_t.cs b/Tizen.NUI/src/internal/SWIGTYPE_p_Dali__SignalT_bool_fDali__Actor_Dali__TouchEvent_const_RF_t.cs old mode 100644 new mode 100755 index 79e5818..b10d6f9 --- a/Tizen.NUI/src/internal/SWIGTYPE_p_Dali__SignalT_bool_fDali__Actor_Dali__TouchEvent_const_RF_t.cs +++ b/Tizen.NUI/src/internal/SWIGTYPE_p_Dali__SignalT_bool_fDali__Actor_Dali__TouchEvent_const_RF_t.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class SWIGTYPE_p_Dali__SignalT_bool_fDali__Actor_Dali__TouchEvent_const_RF_t { private global::System.Runtime.InteropServices.HandleRef swigCPtr; diff --git a/Tizen.NUI/src/internal/SWIGTYPE_p_Dali__SignalT_bool_fDali__Toolkit__AccessibilityManager_R_Dali__TouchEvent_const_RF_t.cs b/Tizen.NUI/src/internal/SWIGTYPE_p_Dali__SignalT_bool_fDali__Toolkit__AccessibilityManager_R_Dali__TouchEvent_const_RF_t.cs new file mode 100755 index 0000000..7ae3407 --- /dev/null +++ b/Tizen.NUI/src/internal/SWIGTYPE_p_Dali__SignalT_bool_fDali__Toolkit__AccessibilityManager_R_Dali__TouchEvent_const_RF_t.cs @@ -0,0 +1,29 @@ +//------------------------------------------------------------------------------ +// +// +// This file was automatically generated by SWIG (http://www.swig.org). +// Version 3.0.9 +// +// Do not make changes to this file unless you know what you are doing--modify +// the SWIG interface file instead. +//------------------------------------------------------------------------------ + +namespace Tizen.NUI { + +public class SWIGTYPE_p_Dali__SignalT_bool_fDali__Toolkit__AccessibilityManager_R_Dali__TouchEvent_const_RF_t { + private global::System.Runtime.InteropServices.HandleRef swigCPtr; + + internal SWIGTYPE_p_Dali__SignalT_bool_fDali__Toolkit__AccessibilityManager_R_Dali__TouchEvent_const_RF_t(global::System.IntPtr cPtr, bool futureUse) { + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); + } + + protected SWIGTYPE_p_Dali__SignalT_bool_fDali__Toolkit__AccessibilityManager_R_Dali__TouchEvent_const_RF_t() { + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); + } + + internal static global::System.Runtime.InteropServices.HandleRef getCPtr(SWIGTYPE_p_Dali__SignalT_bool_fDali__Toolkit__AccessibilityManager_R_Dali__TouchEvent_const_RF_t obj) { + return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; + } +} + +} diff --git a/Tizen.NUI/src/internal/SWIGTYPE_p_Dali__SignalT_void_fDali__DragAndDropDetectorF_t.cs b/Tizen.NUI/src/internal/SWIGTYPE_p_Dali__SignalT_void_fDali__DragAndDropDetectorF_t.cs old mode 100644 new mode 100755 index 46366c8..36072cc --- a/Tizen.NUI/src/internal/SWIGTYPE_p_Dali__SignalT_void_fDali__DragAndDropDetectorF_t.cs +++ b/Tizen.NUI/src/internal/SWIGTYPE_p_Dali__SignalT_void_fDali__DragAndDropDetectorF_t.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class SWIGTYPE_p_Dali__SignalT_void_fDali__DragAndDropDetectorF_t { private global::System.Runtime.InteropServices.HandleRef swigCPtr; diff --git a/Tizen.NUI/src/internal/SWIGTYPE_p_Dali__SignalT_void_fDali__Toolkit__Control_Dali__Toolkit__ControlF_t.cs b/Tizen.NUI/src/internal/SWIGTYPE_p_Dali__SignalT_void_fDali__Toolkit__Control_Dali__Toolkit__ControlF_t.cs old mode 100644 new mode 100755 index d9dc516..94fb6ec --- a/Tizen.NUI/src/internal/SWIGTYPE_p_Dali__SignalT_void_fDali__Toolkit__Control_Dali__Toolkit__ControlF_t.cs +++ b/Tizen.NUI/src/internal/SWIGTYPE_p_Dali__SignalT_void_fDali__Toolkit__Control_Dali__Toolkit__ControlF_t.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class SWIGTYPE_p_Dali__SignalT_void_fDali__Toolkit__Control_Dali__Toolkit__ControlF_t { private global::System.Runtime.InteropServices.HandleRef swigCPtr; diff --git a/Tizen.NUI/src/internal/SWIGTYPE_p_Dali__SignalT_void_fDali__Toolkit__ProgressBar_floatF_t.cs b/Tizen.NUI/src/internal/SWIGTYPE_p_Dali__SignalT_void_fDali__Toolkit__ProgressBar_float_floatF_t.cs old mode 100644 new mode 100755 similarity index 87% rename from Tizen.NUI/src/internal/SWIGTYPE_p_Dali__SignalT_void_fDali__Toolkit__ProgressBar_floatF_t.cs rename to Tizen.NUI/src/internal/SWIGTYPE_p_Dali__SignalT_void_fDali__Toolkit__ProgressBar_float_floatF_t.cs index 9bd91d0..3ec4f2e --- a/Tizen.NUI/src/internal/SWIGTYPE_p_Dali__SignalT_void_fDali__Toolkit__ProgressBar_floatF_t.cs +++ b/Tizen.NUI/src/internal/SWIGTYPE_p_Dali__SignalT_void_fDali__Toolkit__ProgressBar_float_floatF_t.cs @@ -8,20 +8,20 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { -public class SWIGTYPE_p_Dali__SignalT_void_fDali__Toolkit__ProgressBar_floatF_t { +public class SWIGTYPE_p_Dali__SignalT_void_fDali__Toolkit__ProgressBar_float_floatF_t { private global::System.Runtime.InteropServices.HandleRef swigCPtr; - internal SWIGTYPE_p_Dali__SignalT_void_fDali__Toolkit__ProgressBar_floatF_t(global::System.IntPtr cPtr, bool futureUse) { + internal SWIGTYPE_p_Dali__SignalT_void_fDali__Toolkit__ProgressBar_float_floatF_t(global::System.IntPtr cPtr, bool futureUse) { swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); } - protected SWIGTYPE_p_Dali__SignalT_void_fDali__Toolkit__ProgressBar_floatF_t() { + protected SWIGTYPE_p_Dali__SignalT_void_fDali__Toolkit__ProgressBar_float_floatF_t() { swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); } - internal static global::System.Runtime.InteropServices.HandleRef getCPtr(SWIGTYPE_p_Dali__SignalT_void_fDali__Toolkit__ProgressBar_floatF_t obj) { + internal static global::System.Runtime.InteropServices.HandleRef getCPtr(SWIGTYPE_p_Dali__SignalT_void_fDali__Toolkit__ProgressBar_float_floatF_t obj) { return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; } } diff --git a/Tizen.NUI/src/internal/SWIGTYPE_p_Dali__SignalT_void_fDali__Toolkit__TextEditor_Dali__Toolkit__TextEditor__InputStyle__MaskF_t.cs b/Tizen.NUI/src/internal/SWIGTYPE_p_Dali__SignalT_void_fDali__Toolkit__TextEditor_Dali__Toolkit__TextEditor__InputStyle__MaskF_t.cs old mode 100644 new mode 100755 index 0500b0d..dc9220f --- a/Tizen.NUI/src/internal/SWIGTYPE_p_Dali__SignalT_void_fDali__Toolkit__TextEditor_Dali__Toolkit__TextEditor__InputStyle__MaskF_t.cs +++ b/Tizen.NUI/src/internal/SWIGTYPE_p_Dali__SignalT_void_fDali__Toolkit__TextEditor_Dali__Toolkit__TextEditor__InputStyle__MaskF_t.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class SWIGTYPE_p_Dali__SignalT_void_fDali__Toolkit__TextEditor_Dali__Toolkit__TextEditor__InputStyle__MaskF_t { private global::System.Runtime.InteropServices.HandleRef swigCPtr; diff --git a/Tizen.NUI/src/internal/SWIGTYPE_p_Dali__SignalT_void_fDali__Toolkit__TextField_Dali__Toolkit__TextField__InputStyle__MaskF_t.cs b/Tizen.NUI/src/internal/SWIGTYPE_p_Dali__SignalT_void_fDali__Toolkit__TextField_Dali__Toolkit__TextField__InputStyle__MaskF_t.cs old mode 100644 new mode 100755 index 754b376..0e75eed --- a/Tizen.NUI/src/internal/SWIGTYPE_p_Dali__SignalT_void_fDali__Toolkit__TextField_Dali__Toolkit__TextField__InputStyle__MaskF_t.cs +++ b/Tizen.NUI/src/internal/SWIGTYPE_p_Dali__SignalT_void_fDali__Toolkit__TextField_Dali__Toolkit__TextField__InputStyle__MaskF_t.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class SWIGTYPE_p_Dali__SignalT_void_fDali__Toolkit__TextField_Dali__Toolkit__TextField__InputStyle__MaskF_t { private global::System.Runtime.InteropServices.HandleRef swigCPtr; diff --git a/Tizen.NUI/src/internal/SWIGTYPE_p_Dali__SignalT_void_fboolF_t.cs b/Tizen.NUI/src/internal/SWIGTYPE_p_Dali__SignalT_void_fboolF_t.cs old mode 100644 new mode 100755 index ef76c99..28b5a57 --- a/Tizen.NUI/src/internal/SWIGTYPE_p_Dali__SignalT_void_fboolF_t.cs +++ b/Tizen.NUI/src/internal/SWIGTYPE_p_Dali__SignalT_void_fboolF_t.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class SWIGTYPE_p_Dali__SignalT_void_fboolF_t { private global::System.Runtime.InteropServices.HandleRef swigCPtr; diff --git a/Tizen.NUI/src/internal/SWIGTYPE_p_Dali__SignalT_void_fuint32_t_Dali__PixelDataF_t.cs b/Tizen.NUI/src/internal/SWIGTYPE_p_Dali__SignalT_void_fuint32_t_Dali__PixelDataF_t.cs old mode 100644 new mode 100755 index cdcc60e..b3f62fe --- a/Tizen.NUI/src/internal/SWIGTYPE_p_Dali__SignalT_void_fuint32_t_Dali__PixelDataF_t.cs +++ b/Tizen.NUI/src/internal/SWIGTYPE_p_Dali__SignalT_void_fuint32_t_Dali__PixelDataF_t.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class SWIGTYPE_p_Dali__SignalT_void_fuint32_t_Dali__PixelDataF_t { private global::System.Runtime.InteropServices.HandleRef swigCPtr; diff --git a/Tizen.NUI/src/internal/SWIGTYPE_p_Dali__Toolkit__ClampState.cs b/Tizen.NUI/src/internal/SWIGTYPE_p_Dali__Toolkit__ClampState.cs old mode 100644 new mode 100755 index 6865f86..fd8fa8e --- a/Tizen.NUI/src/internal/SWIGTYPE_p_Dali__Toolkit__ClampState.cs +++ b/Tizen.NUI/src/internal/SWIGTYPE_p_Dali__Toolkit__ClampState.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class SWIGTYPE_p_Dali__Toolkit__ClampState { private global::System.Runtime.InteropServices.HandleRef swigCPtr; diff --git a/Tizen.NUI/src/internal/SWIGTYPE_p_Dali__Toolkit__Internal__AsyncImageLoader.cs b/Tizen.NUI/src/internal/SWIGTYPE_p_Dali__Toolkit__Internal__AsyncImageLoader.cs old mode 100644 new mode 100755 index ad306ac..899a03a --- a/Tizen.NUI/src/internal/SWIGTYPE_p_Dali__Toolkit__Internal__AsyncImageLoader.cs +++ b/Tizen.NUI/src/internal/SWIGTYPE_p_Dali__Toolkit__Internal__AsyncImageLoader.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class SWIGTYPE_p_Dali__Toolkit__Internal__AsyncImageLoader { private global::System.Runtime.InteropServices.HandleRef swigCPtr; diff --git a/Tizen.NUI/src/internal/SWIGTYPE_p_Dali__Toolkit__Internal__Control__Extension.cs b/Tizen.NUI/src/internal/SWIGTYPE_p_Dali__Toolkit__Internal__Control__Extension.cs old mode 100644 new mode 100755 index 0b408a4..86fbe25 --- a/Tizen.NUI/src/internal/SWIGTYPE_p_Dali__Toolkit__Internal__Control__Extension.cs +++ b/Tizen.NUI/src/internal/SWIGTYPE_p_Dali__Toolkit__Internal__Control__Extension.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class SWIGTYPE_p_Dali__Toolkit__Internal__Control__Extension { private global::System.Runtime.InteropServices.HandleRef swigCPtr; diff --git a/Tizen.NUI/src/internal/SWIGTYPE_p_Dali__Toolkit__Internal__TransitionData.cs b/Tizen.NUI/src/internal/SWIGTYPE_p_Dali__Toolkit__Internal__TransitionData.cs old mode 100644 new mode 100755 index bc9dd53..bb53e48 --- a/Tizen.NUI/src/internal/SWIGTYPE_p_Dali__Toolkit__Internal__TransitionData.cs +++ b/Tizen.NUI/src/internal/SWIGTYPE_p_Dali__Toolkit__Internal__TransitionData.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class SWIGTYPE_p_Dali__Toolkit__Internal__TransitionData { private global::System.Runtime.InteropServices.HandleRef swigCPtr; diff --git a/Tizen.NUI/src/internal/SWIGTYPE_p_Dali__Toolkit__Internal__Visual__Base.cs b/Tizen.NUI/src/internal/SWIGTYPE_p_Dali__Toolkit__Internal__Visual__Base.cs old mode 100644 new mode 100755 index 70884f7..e59846f --- a/Tizen.NUI/src/internal/SWIGTYPE_p_Dali__Toolkit__Internal__Visual__Base.cs +++ b/Tizen.NUI/src/internal/SWIGTYPE_p_Dali__Toolkit__Internal__Visual__Base.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class SWIGTYPE_p_Dali__Toolkit__Internal__Visual__Base { private global::System.Runtime.InteropServices.HandleRef swigCPtr; diff --git a/Tizen.NUI/src/internal/SWIGTYPE_p_Dali__SignalT_void_fDali__TouchEvent_const_RF_t.cs b/Tizen.NUI/src/internal/SWIGTYPE_p_Dali__Toolkit__ItemFactory__Extension.cs old mode 100644 new mode 100755 similarity index 70% rename from Tizen.NUI/src/internal/SWIGTYPE_p_Dali__SignalT_void_fDali__TouchEvent_const_RF_t.cs rename to Tizen.NUI/src/internal/SWIGTYPE_p_Dali__Toolkit__ItemFactory__Extension.cs index 24bc046..1cf719a --- a/Tizen.NUI/src/internal/SWIGTYPE_p_Dali__SignalT_void_fDali__TouchEvent_const_RF_t.cs +++ b/Tizen.NUI/src/internal/SWIGTYPE_p_Dali__Toolkit__ItemFactory__Extension.cs @@ -8,20 +8,20 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { -public class SWIGTYPE_p_Dali__SignalT_void_fDali__TouchEvent_const_RF_t { +public class SWIGTYPE_p_Dali__Toolkit__ItemFactory__Extension { private global::System.Runtime.InteropServices.HandleRef swigCPtr; - internal SWIGTYPE_p_Dali__SignalT_void_fDali__TouchEvent_const_RF_t(global::System.IntPtr cPtr, bool futureUse) { + internal SWIGTYPE_p_Dali__Toolkit__ItemFactory__Extension(global::System.IntPtr cPtr, bool futureUse) { swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); } - protected SWIGTYPE_p_Dali__SignalT_void_fDali__TouchEvent_const_RF_t() { + protected SWIGTYPE_p_Dali__Toolkit__ItemFactory__Extension() { swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); } - internal static global::System.Runtime.InteropServices.HandleRef getCPtr(SWIGTYPE_p_Dali__SignalT_void_fDali__TouchEvent_const_RF_t obj) { + internal static global::System.Runtime.InteropServices.HandleRef getCPtr(SWIGTYPE_p_Dali__Toolkit__ItemFactory__Extension obj) { return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; } } diff --git a/Tizen.NUI/src/internal/SWIGTYPE_p_f___Dali__BaseHandle.cs b/Tizen.NUI/src/internal/SWIGTYPE_p_Dali__TouchEvent.cs old mode 100644 new mode 100755 similarity index 77% rename from Tizen.NUI/src/internal/SWIGTYPE_p_f___Dali__BaseHandle.cs rename to Tizen.NUI/src/internal/SWIGTYPE_p_Dali__TouchEvent.cs index 321d75f..0f22c5e --- a/Tizen.NUI/src/internal/SWIGTYPE_p_f___Dali__BaseHandle.cs +++ b/Tizen.NUI/src/internal/SWIGTYPE_p_Dali__TouchEvent.cs @@ -8,20 +8,20 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { -public class SWIGTYPE_p_f___Dali__BaseHandle { +public class SWIGTYPE_p_Dali__TouchEvent { private global::System.Runtime.InteropServices.HandleRef swigCPtr; - internal SWIGTYPE_p_f___Dali__BaseHandle(global::System.IntPtr cPtr, bool futureUse) { + internal SWIGTYPE_p_Dali__TouchEvent(global::System.IntPtr cPtr, bool futureUse) { swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); } - protected SWIGTYPE_p_f___Dali__BaseHandle() { + protected SWIGTYPE_p_Dali__TouchEvent() { swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); } - internal static global::System.Runtime.InteropServices.HandleRef getCPtr(SWIGTYPE_p_f___Dali__BaseHandle obj) { + internal static global::System.Runtime.InteropServices.HandleRef getCPtr(SWIGTYPE_p_Dali__TouchEvent obj) { return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; } } diff --git a/Tizen.NUI/src/internal/SWIGTYPE_p_FunctorDelegate.cs b/Tizen.NUI/src/internal/SWIGTYPE_p_FunctorDelegate.cs old mode 100644 new mode 100755 index e5cebe5..f2fe1a4 --- a/Tizen.NUI/src/internal/SWIGTYPE_p_FunctorDelegate.cs +++ b/Tizen.NUI/src/internal/SWIGTYPE_p_FunctorDelegate.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class SWIGTYPE_p_FunctorDelegate { private global::System.Runtime.InteropServices.HandleRef swigCPtr; diff --git a/Tizen.NUI/src/internal/SWIGTYPE_p_PropertyInputContainer.cs b/Tizen.NUI/src/internal/SWIGTYPE_p_PropertyInputContainer.cs old mode 100644 new mode 100755 index b47d218..8a36b7d --- a/Tizen.NUI/src/internal/SWIGTYPE_p_PropertyInputContainer.cs +++ b/Tizen.NUI/src/internal/SWIGTYPE_p_PropertyInputContainer.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class SWIGTYPE_p_PropertyInputContainer { private global::System.Runtime.InteropServices.HandleRef swigCPtr; diff --git a/Tizen.NUI/src/internal/SWIGTYPE_p_double.cs b/Tizen.NUI/src/internal/SWIGTYPE_p_double.cs old mode 100644 new mode 100755 index e9c1ad1..8d9c59f --- a/Tizen.NUI/src/internal/SWIGTYPE_p_double.cs +++ b/Tizen.NUI/src/internal/SWIGTYPE_p_double.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class SWIGTYPE_p_double { private global::System.Runtime.InteropServices.HandleRef swigCPtr; diff --git a/Tizen.NUI/src/internal/SWIGTYPE_p_f___bool.cs b/Tizen.NUI/src/internal/SWIGTYPE_p_f___bool.cs old mode 100644 new mode 100755 index d09fe03..0fa739b --- a/Tizen.NUI/src/internal/SWIGTYPE_p_f___bool.cs +++ b/Tizen.NUI/src/internal/SWIGTYPE_p_f___bool.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class SWIGTYPE_p_f___bool { private global::System.Runtime.InteropServices.HandleRef swigCPtr; diff --git a/Tizen.NUI/src/internal/SWIGTYPE_p_f_float__float.cs b/Tizen.NUI/src/internal/SWIGTYPE_p_f_float__float.cs old mode 100644 new mode 100755 index 9e6c9a1..0a2c70a --- a/Tizen.NUI/src/internal/SWIGTYPE_p_f_float__float.cs +++ b/Tizen.NUI/src/internal/SWIGTYPE_p_f_float__float.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class SWIGTYPE_p_f_float__float { private global::System.Runtime.InteropServices.HandleRef swigCPtr; diff --git a/Tizen.NUI/src/internal/SWIGTYPE_p_f_p_Dali__BaseObject_Dali__Property__Index__Dali__Property__Value.cs b/Tizen.NUI/src/internal/SWIGTYPE_p_f_p_Dali__BaseObject_Dali__Property__Index__Dali__Property__Value.cs old mode 100644 new mode 100755 index bb2868f..b16ce93 --- a/Tizen.NUI/src/internal/SWIGTYPE_p_f_p_Dali__BaseObject_Dali__Property__Index__Dali__Property__Value.cs +++ b/Tizen.NUI/src/internal/SWIGTYPE_p_f_p_Dali__BaseObject_Dali__Property__Index__Dali__Property__Value.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class SWIGTYPE_p_f_p_Dali__BaseObject_Dali__Property__Index__Dali__Property__Value { private global::System.Runtime.InteropServices.HandleRef swigCPtr; diff --git a/Tizen.NUI/src/internal/SWIGTYPE_p_f_p_Dali__BaseObject_int_r_q_const__Dali__Property__Value__void.cs b/Tizen.NUI/src/internal/SWIGTYPE_p_f_p_Dali__BaseObject_int_r_q_const__Dali__Property__Value__void.cs old mode 100644 new mode 100755 index ce392bc..ce3edd9 --- a/Tizen.NUI/src/internal/SWIGTYPE_p_f_p_Dali__BaseObject_int_r_q_const__Dali__Property__Value__void.cs +++ b/Tizen.NUI/src/internal/SWIGTYPE_p_f_p_Dali__BaseObject_int_r_q_const__Dali__Property__Value__void.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class SWIGTYPE_p_f_p_Dali__BaseObject_int_r_q_const__Dali__Property__Value__void { private global::System.Runtime.InteropServices.HandleRef swigCPtr; diff --git a/Tizen.NUI/src/internal/SWIGTYPE_p_f_p_Dali__BaseObject_p_Dali__ConnectionTrackerInterface_r_q_const__std__string_p_Dali__FunctorDelegate__bool.cs b/Tizen.NUI/src/internal/SWIGTYPE_p_f_p_Dali__BaseObject_p_Dali__ConnectionTrackerInterface_r_q_const__std__string_p_Dali__FunctorDelegate__bool.cs old mode 100644 new mode 100755 index eef930c..ae01122 --- a/Tizen.NUI/src/internal/SWIGTYPE_p_f_p_Dali__BaseObject_p_Dali__ConnectionTrackerInterface_r_q_const__std__string_p_Dali__FunctorDelegate__bool.cs +++ b/Tizen.NUI/src/internal/SWIGTYPE_p_f_p_Dali__BaseObject_p_Dali__ConnectionTrackerInterface_r_q_const__std__string_p_Dali__FunctorDelegate__bool.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class SWIGTYPE_p_f_p_Dali__BaseObject_p_Dali__ConnectionTrackerInterface_r_q_const__std__string_p_Dali__FunctorDelegate__bool { private global::System.Runtime.InteropServices.HandleRef swigCPtr; diff --git a/Tizen.NUI/src/internal/SWIGTYPE_p_f_p_Dali__BaseObject_r_q_const__std__string_r_q_const__Dali__Property__Map__bool.cs b/Tizen.NUI/src/internal/SWIGTYPE_p_f_p_Dali__BaseObject_r_q_const__std__string_r_q_const__Dali__Property__Map__bool.cs old mode 100644 new mode 100755 index 4bda519..08cfa4a --- a/Tizen.NUI/src/internal/SWIGTYPE_p_f_p_Dali__BaseObject_r_q_const__std__string_r_q_const__Dali__Property__Map__bool.cs +++ b/Tizen.NUI/src/internal/SWIGTYPE_p_f_p_Dali__BaseObject_r_q_const__std__string_r_q_const__Dali__Property__Map__bool.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class SWIGTYPE_p_f_p_Dali__BaseObject_r_q_const__std__string_r_q_const__Dali__Property__Map__bool { private global::System.Runtime.InteropServices.HandleRef swigCPtr; diff --git a/Tizen.NUI/src/internal/SWIGTYPE_p_f_p_q_const__Dali__Any__AnyContainerBase__void.cs b/Tizen.NUI/src/internal/SWIGTYPE_p_f_p_q_const__Dali__Any__AnyContainerBase__void.cs old mode 100644 new mode 100755 index 85745c9..8cd7c95 --- a/Tizen.NUI/src/internal/SWIGTYPE_p_f_p_q_const__Dali__Any__AnyContainerBase__void.cs +++ b/Tizen.NUI/src/internal/SWIGTYPE_p_f_p_q_const__Dali__Any__AnyContainerBase__void.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class SWIGTYPE_p_f_p_q_const__Dali__Any__AnyContainerBase__void { private global::System.Runtime.InteropServices.HandleRef swigCPtr; diff --git a/Tizen.NUI/src/internal/SWIGTYPE_p_f_r_Dali__Vector2__bool.cs b/Tizen.NUI/src/internal/SWIGTYPE_p_f_r_Dali__Vector2__bool.cs old mode 100644 new mode 100755 index c224e92..0bee9ba --- a/Tizen.NUI/src/internal/SWIGTYPE_p_f_r_Dali__Vector2__bool.cs +++ b/Tizen.NUI/src/internal/SWIGTYPE_p_f_r_Dali__Vector2__bool.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class SWIGTYPE_p_f_r_Dali__Vector2__bool { private global::System.Runtime.InteropServices.HandleRef swigCPtr; diff --git a/Tizen.NUI/src/internal/SWIGTYPE_p_f_r_q_const__Dali__Any__AnyContainerBase__p_Dali__Any__AnyContainerBase.cs b/Tizen.NUI/src/internal/SWIGTYPE_p_f_r_q_const__Dali__Any__AnyContainerBase__p_Dali__Any__AnyContainerBase.cs old mode 100644 new mode 100755 index 6d4712c..2bf37c9 --- a/Tizen.NUI/src/internal/SWIGTYPE_p_f_r_q_const__Dali__Any__AnyContainerBase__p_Dali__Any__AnyContainerBase.cs +++ b/Tizen.NUI/src/internal/SWIGTYPE_p_f_r_q_const__Dali__Any__AnyContainerBase__p_Dali__Any__AnyContainerBase.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class SWIGTYPE_p_f_r_q_const__Dali__Any__AnyContainerBase__p_Dali__Any__AnyContainerBase { private global::System.Runtime.InteropServices.HandleRef swigCPtr; diff --git a/Tizen.NUI/src/internal/SWIGTYPE_p_f_r_q_const__Dali__Vector3__float.cs b/Tizen.NUI/src/internal/SWIGTYPE_p_f_r_q_const__Dali__Vector3__float.cs old mode 100644 new mode 100755 index d940227..283e8ed --- a/Tizen.NUI/src/internal/SWIGTYPE_p_f_r_q_const__Dali__Vector3__float.cs +++ b/Tizen.NUI/src/internal/SWIGTYPE_p_f_r_q_const__Dali__Vector3__float.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class SWIGTYPE_p_f_r_q_const__Dali__Vector3__float { private global::System.Runtime.InteropServices.HandleRef swigCPtr; diff --git a/Tizen.NUI/src/internal/SWIGTYPE_p_float.cs b/Tizen.NUI/src/internal/SWIGTYPE_p_float.cs old mode 100644 new mode 100755 index 9a954e6..981023a --- a/Tizen.NUI/src/internal/SWIGTYPE_p_float.cs +++ b/Tizen.NUI/src/internal/SWIGTYPE_p_float.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class SWIGTYPE_p_float { private global::System.Runtime.InteropServices.HandleRef swigCPtr; diff --git a/Tizen.NUI/src/internal/SWIGTYPE_p_int.cs b/Tizen.NUI/src/internal/SWIGTYPE_p_int.cs old mode 100644 new mode 100755 index f6b5872..0a6ca69 --- a/Tizen.NUI/src/internal/SWIGTYPE_p_int.cs +++ b/Tizen.NUI/src/internal/SWIGTYPE_p_int.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class SWIGTYPE_p_int { private global::System.Runtime.InteropServices.HandleRef swigCPtr; diff --git a/Tizen.NUI/src/internal/SWIGTYPE_p_std__type_info.cs b/Tizen.NUI/src/internal/SWIGTYPE_p_std__type_info.cs old mode 100644 new mode 100755 index f4e2509..85f511d --- a/Tizen.NUI/src/internal/SWIGTYPE_p_std__type_info.cs +++ b/Tizen.NUI/src/internal/SWIGTYPE_p_std__type_info.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class SWIGTYPE_p_std__type_info { private global::System.Runtime.InteropServices.HandleRef swigCPtr; diff --git a/Tizen.NUI/src/internal/SWIGTYPE_p_uint8_t.cs b/Tizen.NUI/src/internal/SWIGTYPE_p_uint8_t.cs old mode 100644 new mode 100755 index ca0dc57..66cac48 --- a/Tizen.NUI/src/internal/SWIGTYPE_p_uint8_t.cs +++ b/Tizen.NUI/src/internal/SWIGTYPE_p_uint8_t.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class SWIGTYPE_p_uint8_t { private global::System.Runtime.InteropServices.HandleRef swigCPtr; diff --git a/Tizen.NUI/src/internal/SWIGTYPE_p_unsigned_char.cs b/Tizen.NUI/src/internal/SWIGTYPE_p_unsigned_char.cs old mode 100644 new mode 100755 index b76a24e..c36cc87 --- a/Tizen.NUI/src/internal/SWIGTYPE_p_unsigned_char.cs +++ b/Tizen.NUI/src/internal/SWIGTYPE_p_unsigned_char.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class SWIGTYPE_p_unsigned_char { private global::System.Runtime.InteropServices.HandleRef swigCPtr; diff --git a/Tizen.NUI/src/internal/SWIGTYPE_p_unsigned_int.cs b/Tizen.NUI/src/internal/SWIGTYPE_p_unsigned_int.cs old mode 100644 new mode 100755 index 340a519..4919f69 --- a/Tizen.NUI/src/internal/SWIGTYPE_p_unsigned_int.cs +++ b/Tizen.NUI/src/internal/SWIGTYPE_p_unsigned_int.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class SWIGTYPE_p_unsigned_int { private global::System.Runtime.InteropServices.HandleRef swigCPtr; diff --git a/Tizen.NUI/src/internal/SWIGTYPE_p_unsigned_short.cs b/Tizen.NUI/src/internal/SWIGTYPE_p_unsigned_short.cs old mode 100644 new mode 100755 index dcbd633..704f281 --- a/Tizen.NUI/src/internal/SWIGTYPE_p_unsigned_short.cs +++ b/Tizen.NUI/src/internal/SWIGTYPE_p_unsigned_short.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class SWIGTYPE_p_unsigned_short { private global::System.Runtime.InteropServices.HandleRef swigCPtr; diff --git a/Tizen.NUI/src/internal/Sampler.cs b/Tizen.NUI/src/internal/Sampler.cs old mode 100644 new mode 100755 index 4ea48ae..b4f6196 --- a/Tizen.NUI/src/internal/Sampler.cs +++ b/Tizen.NUI/src/internal/Sampler.cs @@ -24,7 +24,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class Sampler : BaseHandle { private global::System.Runtime.InteropServices.HandleRef swigCPtr; diff --git a/Tizen.NUI/src/internal/SamplingModeType.cs b/Tizen.NUI/src/internal/SamplingModeType.cs old mode 100644 new mode 100755 index a6e84d0..5fe99e9 --- a/Tizen.NUI/src/internal/SamplingModeType.cs +++ b/Tizen.NUI/src/internal/SamplingModeType.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public enum SamplingModeType { BOX, diff --git a/Tizen.NUI/src/public/ScrollView.cs b/Tizen.NUI/src/internal/ScrollView.cs old mode 100644 new mode 100755 similarity index 96% rename from Tizen.NUI/src/public/ScrollView.cs rename to Tizen.NUI/src/internal/ScrollView.cs index 92239c2..6434c50 --- a/Tizen.NUI/src/public/ScrollView.cs +++ b/Tizen.NUI/src/internal/ScrollView.cs @@ -24,7 +24,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { using System; using System.Runtime.InteropServices; @@ -72,13 +72,13 @@ public class ScrollView : Scrollable { */ public class SnapStartedEventArgs : EventArgs { - private NUI.ScrollView.SnapEvent _snapEvent; + private Tizen.NUI.ScrollView.SnapEvent _snapEvent; /** * @brief SnapEvent - is the SnapEvent information like snap or flick (it tells the target position, scale, rotation for the snap or flick). * */ - public NUI.ScrollView.SnapEvent SnapEventInfo + public Tizen.NUI.ScrollView.SnapEvent SnapEventInfo { get { @@ -709,7 +709,7 @@ public class SnapStartedEventArgs : EventArgs } set { - SetProperty( ScrollView.Property.WRAP_ENABLED, new NUI.Property.Value( value ) ); + SetProperty( ScrollView.Property.WRAP_ENABLED, new Tizen.NUI.PropertyValue( value ) ); } } public bool PanningEnabled @@ -722,7 +722,7 @@ public class SnapStartedEventArgs : EventArgs } set { - SetProperty( ScrollView.Property.PANNING_ENABLED, new NUI.Property.Value( value ) ); + SetProperty( ScrollView.Property.PANNING_ENABLED, new Tizen.NUI.PropertyValue( value ) ); } } public bool AxisAutoLockEnabled @@ -735,7 +735,7 @@ public class SnapStartedEventArgs : EventArgs } set { - SetProperty( ScrollView.Property.AXIS_AUTO_LOCK_ENABLED, new NUI.Property.Value( value ) ); + SetProperty( ScrollView.Property.AXIS_AUTO_LOCK_ENABLED, new Tizen.NUI.PropertyValue( value ) ); } } public Vector2 WheelScrollDistanceStep @@ -748,7 +748,7 @@ public class SnapStartedEventArgs : EventArgs } set { - SetProperty( ScrollView.Property.WHEEL_SCROLL_DISTANCE_STEP, new NUI.Property.Value( value ) ); + SetProperty( ScrollView.Property.WHEEL_SCROLL_DISTANCE_STEP, new Tizen.NUI.PropertyValue( value ) ); } } public Vector2 ScrollPosition @@ -761,7 +761,7 @@ public class SnapStartedEventArgs : EventArgs } set { - SetProperty( ScrollView.Property.SCROLL_POSITION, new NUI.Property.Value( value ) ); + SetProperty( ScrollView.Property.SCROLL_POSITION, new Tizen.NUI.PropertyValue( value ) ); } } public Vector2 ScrollPrePosition @@ -774,7 +774,7 @@ public class SnapStartedEventArgs : EventArgs } set { - SetProperty( ScrollView.Property.SCROLL_PRE_POSITION, new NUI.Property.Value( value ) ); + SetProperty( ScrollView.Property.SCROLL_PRE_POSITION, new Tizen.NUI.PropertyValue( value ) ); } } public Vector2 ScrollPrePositionMax @@ -787,7 +787,7 @@ public class SnapStartedEventArgs : EventArgs } set { - SetProperty( ScrollView.Property.SCROLL_PRE_POSITION_MAX, new NUI.Property.Value( value ) ); + SetProperty( ScrollView.Property.SCROLL_PRE_POSITION_MAX, new Tizen.NUI.PropertyValue( value ) ); } } public float OvershootX @@ -800,7 +800,7 @@ public class SnapStartedEventArgs : EventArgs } set { - SetProperty( ScrollView.Property.OVERSHOOT_X, new NUI.Property.Value( value ) ); + SetProperty( ScrollView.Property.OVERSHOOT_X, new Tizen.NUI.PropertyValue( value ) ); } } public float OvershootY @@ -813,7 +813,7 @@ public class SnapStartedEventArgs : EventArgs } set { - SetProperty( ScrollView.Property.OVERSHOOT_Y, new NUI.Property.Value( value ) ); + SetProperty( ScrollView.Property.OVERSHOOT_Y, new Tizen.NUI.PropertyValue( value ) ); } } public Vector2 ScrollFinal @@ -826,7 +826,7 @@ public class SnapStartedEventArgs : EventArgs } set { - SetProperty( ScrollView.Property.SCROLL_FINAL, new NUI.Property.Value( value ) ); + SetProperty( ScrollView.Property.SCROLL_FINAL, new Tizen.NUI.PropertyValue( value ) ); } } public bool Wrap @@ -839,7 +839,7 @@ public class SnapStartedEventArgs : EventArgs } set { - SetProperty( ScrollView.Property.WRAP, new NUI.Property.Value( value ) ); + SetProperty( ScrollView.Property.WRAP, new Tizen.NUI.PropertyValue( value ) ); } } public bool Panning @@ -852,7 +852,7 @@ public class SnapStartedEventArgs : EventArgs } set { - SetProperty( ScrollView.Property.PANNING, new NUI.Property.Value( value ) ); + SetProperty( ScrollView.Property.PANNING, new Tizen.NUI.PropertyValue( value ) ); } } public bool Scrolling @@ -865,7 +865,7 @@ public class SnapStartedEventArgs : EventArgs } set { - SetProperty( ScrollView.Property.SCROLLING, new NUI.Property.Value( value ) ); + SetProperty( ScrollView.Property.SCROLLING, new Tizen.NUI.PropertyValue( value ) ); } } public Vector2 ScrollDomainSize @@ -878,7 +878,7 @@ public class SnapStartedEventArgs : EventArgs } set { - SetProperty( ScrollView.Property.SCROLL_DOMAIN_SIZE, new NUI.Property.Value( value ) ); + SetProperty( ScrollView.Property.SCROLL_DOMAIN_SIZE, new Tizen.NUI.PropertyValue( value ) ); } } public Vector2 ScrollDomainOffset @@ -891,7 +891,7 @@ public class SnapStartedEventArgs : EventArgs } set { - SetProperty( ScrollView.Property.SCROLL_DOMAIN_OFFSET, new NUI.Property.Value( value ) ); + SetProperty( ScrollView.Property.SCROLL_DOMAIN_OFFSET, new Tizen.NUI.PropertyValue( value ) ); } } public Vector2 ScrollPositionDelta @@ -904,7 +904,7 @@ public class SnapStartedEventArgs : EventArgs } set { - SetProperty( ScrollView.Property.SCROLL_POSITION_DELTA, new NUI.Property.Value( value ) ); + SetProperty( ScrollView.Property.SCROLL_POSITION_DELTA, new Tizen.NUI.PropertyValue( value ) ); } } public Vector3 StartPagePosition @@ -917,7 +917,7 @@ public class SnapStartedEventArgs : EventArgs } set { - SetProperty( ScrollView.Property.START_PAGE_POSITION, new NUI.Property.Value( value ) ); + SetProperty( ScrollView.Property.START_PAGE_POSITION, new Tizen.NUI.PropertyValue( value ) ); } } diff --git a/Tizen.NUI/src/public/ScrollViewEffect.cs b/Tizen.NUI/src/internal/ScrollViewEffect.cs old mode 100644 new mode 100755 similarity index 98% rename from Tizen.NUI/src/public/ScrollViewEffect.cs rename to Tizen.NUI/src/internal/ScrollViewEffect.cs index b05cb1d..92f8a21 --- a/Tizen.NUI/src/public/ScrollViewEffect.cs +++ b/Tizen.NUI/src/internal/ScrollViewEffect.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class ScrollViewEffect : BaseHandle { private global::System.Runtime.InteropServices.HandleRef swigCPtr; diff --git a/Tizen.NUI/src/public/ScrollViewPagePathEffect.cs b/Tizen.NUI/src/internal/ScrollViewPagePathEffect.cs old mode 100644 new mode 100755 similarity index 99% rename from Tizen.NUI/src/public/ScrollViewPagePathEffect.cs rename to Tizen.NUI/src/internal/ScrollViewPagePathEffect.cs index 2f11135..b47b03b --- a/Tizen.NUI/src/public/ScrollViewPagePathEffect.cs +++ b/Tizen.NUI/src/internal/ScrollViewPagePathEffect.cs @@ -24,7 +24,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class ScrollViewPagePathEffect : ScrollViewEffect { private global::System.Runtime.InteropServices.HandleRef swigCPtr; diff --git a/Tizen.NUI/src/internal/ScrollViewSnapStartedSignal.cs b/Tizen.NUI/src/internal/ScrollViewSnapStartedSignal.cs old mode 100644 new mode 100755 index 28123b9..115fcb0 --- a/Tizen.NUI/src/internal/ScrollViewSnapStartedSignal.cs +++ b/Tizen.NUI/src/internal/ScrollViewSnapStartedSignal.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class ScrollViewSnapStartedSignal : global::System.IDisposable { private global::System.Runtime.InteropServices.HandleRef swigCPtr; diff --git a/Tizen.NUI/src/public/Scrollable.cs b/Tizen.NUI/src/internal/Scrollable.cs old mode 100644 new mode 100755 similarity index 95% rename from Tizen.NUI/src/public/Scrollable.cs rename to Tizen.NUI/src/internal/Scrollable.cs index 4fd495e..a1ede4a --- a/Tizen.NUI/src/public/Scrollable.cs +++ b/Tizen.NUI/src/internal/Scrollable.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { using System; using System.Runtime.InteropServices; @@ -152,7 +152,7 @@ public class CompletedEventArgs : EventArgs StartedEventArgs e = new StartedEventArgs(); // Populate all members of "e" (StartedEventArgs) with real data - e.Vector2 = NUI.Vector2.GetVector2FromPtr(vector2); + e.Vector2 = Tizen.NUI.Vector2.GetVector2FromPtr(vector2); if (_scrollableStartedEventHandler != null) { @@ -198,7 +198,7 @@ public class CompletedEventArgs : EventArgs UpdatedEventArgs e = new UpdatedEventArgs(); // Populate all members of "e" (UpdatedEventArgs) with real data - e.Vector2 = NUI.Vector2.GetVector2FromPtr(vector2); + e.Vector2 = Tizen.NUI.Vector2.GetVector2FromPtr(vector2); if (_scrollableUpdatedEventHandler != null) { @@ -244,7 +244,7 @@ public class CompletedEventArgs : EventArgs CompletedEventArgs e = new CompletedEventArgs(); // Populate all members of "e" (CompletedEventArgs) with real data - e.Vector2 = NUI.Vector2.GetVector2FromPtr(vector2); + e.Vector2 = Tizen.NUI.Vector2.GetVector2FromPtr(vector2); if (_scrollableCompletedEventHandler != null) { @@ -394,7 +394,7 @@ public class CompletedEventArgs : EventArgs } set { - SetProperty( Scrollable.Property.OVERSHOOT_EFFECT_COLOR, new NUI.Property.Value( value ) ); + SetProperty( Scrollable.Property.OVERSHOOT_EFFECT_COLOR, new Tizen.NUI.PropertyValue( value ) ); } } public float OvershootAnimationSpeed @@ -407,7 +407,7 @@ public class CompletedEventArgs : EventArgs } set { - SetProperty( Scrollable.Property.OVERSHOOT_ANIMATION_SPEED, new NUI.Property.Value( value ) ); + SetProperty( Scrollable.Property.OVERSHOOT_ANIMATION_SPEED, new Tizen.NUI.PropertyValue( value ) ); } } public bool OvershootEnabled @@ -420,7 +420,7 @@ public class CompletedEventArgs : EventArgs } set { - SetProperty( Scrollable.Property.OVERSHOOT_ENABLED, new NUI.Property.Value( value ) ); + SetProperty( Scrollable.Property.OVERSHOOT_ENABLED, new Tizen.NUI.PropertyValue( value ) ); } } public Vector2 OvershootSize @@ -433,7 +433,7 @@ public class CompletedEventArgs : EventArgs } set { - SetProperty( Scrollable.Property.OVERSHOOT_SIZE, new NUI.Property.Value( value ) ); + SetProperty( Scrollable.Property.OVERSHOOT_SIZE, new Tizen.NUI.PropertyValue( value ) ); } } public int ScrollToAlphaFunction @@ -446,7 +446,7 @@ public class CompletedEventArgs : EventArgs } set { - SetProperty( Scrollable.Property.SCROLL_TO_ALPHA_FUNCTION, new NUI.Property.Value( value ) ); + SetProperty( Scrollable.Property.SCROLL_TO_ALPHA_FUNCTION, new Tizen.NUI.PropertyValue( value ) ); } } public Vector2 ScrollRelativePosition @@ -459,7 +459,7 @@ public class CompletedEventArgs : EventArgs } set { - SetProperty( Scrollable.Property.SCROLL_RELATIVE_POSITION, new NUI.Property.Value( value ) ); + SetProperty( Scrollable.Property.SCROLL_RELATIVE_POSITION, new Tizen.NUI.PropertyValue( value ) ); } } public Vector2 ScrollPositionMin @@ -472,7 +472,7 @@ public class CompletedEventArgs : EventArgs } set { - SetProperty( Scrollable.Property.SCROLL_POSITION_MIN, new NUI.Property.Value( value ) ); + SetProperty( Scrollable.Property.SCROLL_POSITION_MIN, new Tizen.NUI.PropertyValue( value ) ); } } public Vector2 ScrollPositionMax @@ -485,7 +485,7 @@ public class CompletedEventArgs : EventArgs } set { - SetProperty( Scrollable.Property.SCROLL_POSITION_MAX, new NUI.Property.Value( value ) ); + SetProperty( Scrollable.Property.SCROLL_POSITION_MAX, new Tizen.NUI.PropertyValue( value ) ); } } public bool CanScrollVertical @@ -498,7 +498,7 @@ public class CompletedEventArgs : EventArgs } set { - SetProperty( Scrollable.Property.CAN_SCROLL_VERTICAL, new NUI.Property.Value( value ) ); + SetProperty( Scrollable.Property.CAN_SCROLL_VERTICAL, new Tizen.NUI.PropertyValue( value ) ); } } public bool CanScrollHorizontal @@ -511,7 +511,7 @@ public class CompletedEventArgs : EventArgs } set { - SetProperty( Scrollable.Property.CAN_SCROLL_HORIZONTAL, new NUI.Property.Value( value ) ); + SetProperty( Scrollable.Property.CAN_SCROLL_HORIZONTAL, new Tizen.NUI.PropertyValue( value ) ); } } diff --git a/Tizen.NUI/src/internal/ScrollableSignal.cs b/Tizen.NUI/src/internal/ScrollableSignal.cs old mode 100644 new mode 100755 index 93acbee..a0fd91a --- a/Tizen.NUI/src/internal/ScrollableSignal.cs +++ b/Tizen.NUI/src/internal/ScrollableSignal.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class ScrollableSignal : global::System.IDisposable { private global::System.Runtime.InteropServices.HandleRef swigCPtr; diff --git a/Tizen.NUI/src/public/Shader.cs b/Tizen.NUI/src/internal/Shader.cs old mode 100644 new mode 100755 similarity index 96% rename from Tizen.NUI/src/public/Shader.cs rename to Tizen.NUI/src/internal/Shader.cs index 15cff33..0faa671 --- a/Tizen.NUI/src/public/Shader.cs +++ b/Tizen.NUI/src/internal/Shader.cs @@ -24,7 +24,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class Shader : Handle { private global::System.Runtime.InteropServices.HandleRef swigCPtr; @@ -165,17 +165,17 @@ public class Shader : Handle { return ret; } - public NUI.Property.Map Program + public Tizen.NUI.PropertyMap Program { get { - NUI.Property.Map temp = new NUI.Property.Map(); + Tizen.NUI.PropertyMap temp = new Tizen.NUI.PropertyMap(); GetProperty( Shader.Property.PROGRAM).Get( temp ); return temp; } set { - SetProperty( Shader.Property.PROGRAM, new NUI.Property.Value( value ) ); + SetProperty( Shader.Property.PROGRAM, new Tizen.NUI.PropertyValue( value ) ); } } diff --git a/Tizen.NUI/src/internal/SignalConnectorType.cs b/Tizen.NUI/src/internal/SignalConnectorType.cs old mode 100644 new mode 100755 index be85c72..6723267 --- a/Tizen.NUI/src/internal/SignalConnectorType.cs +++ b/Tizen.NUI/src/internal/SignalConnectorType.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class SignalConnectorType : global::System.IDisposable { private global::System.Runtime.InteropServices.HandleRef swigCPtr; diff --git a/Tizen.NUI/src/internal/SignalObserver.cs b/Tizen.NUI/src/internal/SignalObserver.cs old mode 100644 new mode 100755 index c08cb4d..ded3db3 --- a/Tizen.NUI/src/internal/SignalObserver.cs +++ b/Tizen.NUI/src/internal/SignalObserver.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class SignalObserver : global::System.IDisposable { private global::System.Runtime.InteropServices.HandleRef swigCPtr; diff --git a/Tizen.NUI/src/internal/SliderMarkReachedSignal.cs b/Tizen.NUI/src/internal/SliderMarkReachedSignal.cs old mode 100644 new mode 100755 index cf9846d..beed0ea --- a/Tizen.NUI/src/internal/SliderMarkReachedSignal.cs +++ b/Tizen.NUI/src/internal/SliderMarkReachedSignal.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class SliderMarkReachedSignal : global::System.IDisposable { private global::System.Runtime.InteropServices.HandleRef swigCPtr; diff --git a/Tizen.NUI/src/internal/SliderValueChangedSignal.cs b/Tizen.NUI/src/internal/SliderValueChangedSignal.cs old mode 100644 new mode 100755 index 1cfbf0f..e3082a0 --- a/Tizen.NUI/src/internal/SliderValueChangedSignal.cs +++ b/Tizen.NUI/src/internal/SliderValueChangedSignal.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class SliderValueChangedSignal : global::System.IDisposable { private global::System.Runtime.InteropServices.HandleRef swigCPtr; diff --git a/Tizen.NUI/src/internal/SlotObserver.cs b/Tizen.NUI/src/internal/SlotObserver.cs old mode 100644 new mode 100755 index b3982c2..2066b0b --- a/Tizen.NUI/src/internal/SlotObserver.cs +++ b/Tizen.NUI/src/internal/SlotObserver.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class SlotObserver : global::System.IDisposable { private global::System.Runtime.InteropServices.HandleRef swigCPtr; diff --git a/Tizen.NUI/src/internal/SnapType.cs b/Tizen.NUI/src/internal/SnapType.cs old mode 100644 new mode 100755 index 5406a1a..8b4a060 --- a/Tizen.NUI/src/internal/SnapType.cs +++ b/Tizen.NUI/src/internal/SnapType.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public enum SnapType { Snap, diff --git a/Tizen.NUI/src/internal/StageWheelEventSignal.cs b/Tizen.NUI/src/internal/StageWheelSignal.cs old mode 100644 new mode 100755 similarity index 72% rename from Tizen.NUI/src/internal/StageWheelEventSignal.cs rename to Tizen.NUI/src/internal/StageWheelSignal.cs index 31f2b4c..009b598 --- a/Tizen.NUI/src/internal/StageWheelEventSignal.cs +++ b/Tizen.NUI/src/internal/StageWheelSignal.cs @@ -8,22 +8,22 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { -public class StageWheelEventSignal : global::System.IDisposable { +public class StageWheelSignal : global::System.IDisposable { private global::System.Runtime.InteropServices.HandleRef swigCPtr; protected bool swigCMemOwn; - internal StageWheelEventSignal(global::System.IntPtr cPtr, bool cMemoryOwn) { + internal StageWheelSignal(global::System.IntPtr cPtr, bool cMemoryOwn) { swigCMemOwn = cMemoryOwn; swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); } - internal static global::System.Runtime.InteropServices.HandleRef getCPtr(StageWheelEventSignal obj) { + internal static global::System.Runtime.InteropServices.HandleRef getCPtr(StageWheelSignal obj) { return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; } - ~StageWheelEventSignal() { + ~StageWheelSignal() { DisposeQueue.Instance.Add(this); } @@ -37,7 +37,7 @@ public class StageWheelEventSignal : global::System.IDisposable { if (swigCPtr.Handle != global::System.IntPtr.Zero) { if (swigCMemOwn) { swigCMemOwn = false; - NDalicPINVOKE.delete_StageWheelEventSignal(swigCPtr); + NDalicPINVOKE.delete_StageWheelSignal(swigCPtr); } swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); } @@ -47,13 +47,13 @@ public class StageWheelEventSignal : global::System.IDisposable { public bool Empty() { - bool ret = NDalicPINVOKE.StageWheelEventSignal_Empty(swigCPtr); + bool ret = NDalicPINVOKE.StageWheelSignal_Empty(swigCPtr); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } public uint GetConnectionCount() { - uint ret = NDalicPINVOKE.StageWheelEventSignal_GetConnectionCount(swigCPtr); + uint ret = NDalicPINVOKE.StageWheelSignal_GetConnectionCount(swigCPtr); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } @@ -61,7 +61,7 @@ public class StageWheelEventSignal : global::System.IDisposable { public void Connect(System.Delegate func) { System.IntPtr ip = System.Runtime.InteropServices.Marshal.GetFunctionPointerForDelegate(func); { - NDalicPINVOKE.StageWheelEventSignal_Connect(swigCPtr, new System.Runtime.InteropServices.HandleRef(this, ip)); + NDalicPINVOKE.StageWheelSignal_Connect(swigCPtr, new System.Runtime.InteropServices.HandleRef(this, ip)); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } } @@ -69,17 +69,17 @@ System.IntPtr ip = System.Runtime.InteropServices.Marshal.GetFunctionPointerForD public void Disconnect(System.Delegate func) { System.IntPtr ip = System.Runtime.InteropServices.Marshal.GetFunctionPointerForDelegate(func); { - NDalicPINVOKE.StageWheelEventSignal_Disconnect(swigCPtr, new System.Runtime.InteropServices.HandleRef(this, ip)); + NDalicPINVOKE.StageWheelSignal_Disconnect(swigCPtr, new System.Runtime.InteropServices.HandleRef(this, ip)); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } } - public void Emit(WheelEvent arg) { - NDalicPINVOKE.StageWheelEventSignal_Emit(swigCPtr, WheelEvent.getCPtr(arg)); + public void Emit(Wheel arg) { + NDalicPINVOKE.StageWheelSignal_Emit(swigCPtr, Wheel.getCPtr(arg)); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } - public StageWheelEventSignal() : this(NDalicPINVOKE.new_StageWheelEventSignal(), true) { + public StageWheelSignal() : this(NDalicPINVOKE.new_StageWheelSignal(), true) { if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } diff --git a/Tizen.NUI/src/internal/StencilFunctionType.cs b/Tizen.NUI/src/internal/StencilFunctionType.cs old mode 100644 new mode 100755 index 62ada86..de74f13 --- a/Tizen.NUI/src/internal/StencilFunctionType.cs +++ b/Tizen.NUI/src/internal/StencilFunctionType.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public enum StencilFunctionType { NEVER, diff --git a/Tizen.NUI/src/internal/StencilOperationType.cs b/Tizen.NUI/src/internal/StencilOperationType.cs old mode 100644 new mode 100755 index 542e0b5..5c3431c --- a/Tizen.NUI/src/internal/StencilOperationType.cs +++ b/Tizen.NUI/src/internal/StencilOperationType.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public enum StencilOperationType { ZERO, diff --git a/Tizen.NUI/src/internal/StringValuePair.cs b/Tizen.NUI/src/internal/StringValuePair.cs old mode 100644 new mode 100755 index cb4cceb..2dd5d12 --- a/Tizen.NUI/src/internal/StringValuePair.cs +++ b/Tizen.NUI/src/internal/StringValuePair.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class StringValuePair : global::System.IDisposable { private global::System.Runtime.InteropServices.HandleRef swigCPtr; @@ -44,7 +44,7 @@ public class StringValuePair : global::System.IDisposable { if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } - public StringValuePair(string t, Property.Value u) : this(NDalicPINVOKE.new_StringValuePair__SWIG_1(t, Property.Value.getCPtr(u)), true) { + public StringValuePair(string t, PropertyValue u) : this(NDalicPINVOKE.new_StringValuePair__SWIG_1(t, PropertyValue.getCPtr(u)), true) { if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } @@ -64,14 +64,14 @@ public class StringValuePair : global::System.IDisposable { } } - public Property.Value second { + public PropertyValue second { set { - NDalicPINVOKE.StringValuePair_second_set(swigCPtr, Property.Value.getCPtr(value)); + NDalicPINVOKE.StringValuePair_second_set(swigCPtr, PropertyValue.getCPtr(value)); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } get { global::System.IntPtr cPtr = NDalicPINVOKE.StringValuePair_second_get(swigCPtr); - Property.Value ret = (cPtr == global::System.IntPtr.Zero) ? null : new Property.Value(cPtr, false); + PropertyValue ret = (cPtr == global::System.IntPtr.Zero) ? null : new PropertyValue(cPtr, false); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } diff --git a/Tizen.NUI/src/internal/StyleChangeType.cs b/Tizen.NUI/src/internal/StyleChangeType.cs deleted file mode 100644 index a7f44cc..0000000 --- a/Tizen.NUI/src/internal/StyleChangeType.cs +++ /dev/null @@ -1,19 +0,0 @@ -//------------------------------------------------------------------------------ -// -// -// This file was automatically generated by SWIG (http://www.swig.org). -// Version 3.0.9 -// -// Do not make changes to this file unless you know what you are doing--modify -// the SWIG interface file instead. -//------------------------------------------------------------------------------ - -namespace NUI { - -public enum StyleChangeType { - DEFAULT_FONT_CHANGE, - DEFAULT_FONT_SIZE_CHANGE, - THEME_CHANGE -} - -} diff --git a/Tizen.NUI/src/internal/StyleChangedSignal.cs b/Tizen.NUI/src/internal/StyleChangedSignal.cs old mode 100644 new mode 100755 index 7afd6f3..df28f69 --- a/Tizen.NUI/src/internal/StyleChangedSignal.cs +++ b/Tizen.NUI/src/internal/StyleChangedSignal.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class StyleChangedSignal : global::System.IDisposable { private global::System.Runtime.InteropServices.HandleRef swigCPtr; diff --git a/Tizen.NUI/src/public/TapGesture.cs b/Tizen.NUI/src/internal/TapGesture.cs old mode 100644 new mode 100755 similarity index 86% rename from Tizen.NUI/src/public/TapGesture.cs rename to Tizen.NUI/src/internal/TapGesture.cs index 3fa1bfd..017e65f --- a/Tizen.NUI/src/public/TapGesture.cs +++ b/Tizen.NUI/src/internal/TapGesture.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class TapGesture : Gesture { private global::System.Runtime.InteropServices.HandleRef swigCPtr; @@ -45,12 +45,44 @@ public class TapGesture : Gesture { } - public static TapGesture GetTapGestureFromPtr(global::System.IntPtr cPtr) { + public static TapGesture GetTapGestureFromPtr(global::System.IntPtr cPtr) { TapGesture ret = new TapGesture(cPtr, false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } + public uint NumberOfTaps + { + get + { + return numberOfTaps; + } + } + + public uint NumberOfTouches + { + get + { + return numberOfTouches; + } + } + + public Vector2 ScreenPoint + { + get + { + return screenPoint; + } + } + + public Vector2 LocalPoint + { + get + { + return localPoint; + } + } + public TapGesture() : this(NDalicPINVOKE.new_TapGesture__SWIG_0(), true) { if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } @@ -65,7 +97,7 @@ public class TapGesture : Gesture { return ret; } - public uint numberOfTaps { + private uint numberOfTaps { set { NDalicPINVOKE.TapGesture_numberOfTaps_set(swigCPtr, value); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); @@ -77,7 +109,7 @@ public class TapGesture : Gesture { } } - public uint numberOfTouches { + private uint numberOfTouches { set { NDalicPINVOKE.TapGesture_numberOfTouches_set(swigCPtr, value); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); @@ -89,7 +121,7 @@ public class TapGesture : Gesture { } } - public Vector2 screenPoint { + private Vector2 screenPoint { set { NDalicPINVOKE.TapGesture_screenPoint_set(swigCPtr, Vector2.getCPtr(value)); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); @@ -102,7 +134,7 @@ public class TapGesture : Gesture { } } - public Vector2 localPoint { + private Vector2 localPoint { set { NDalicPINVOKE.TapGesture_localPoint_set(swigCPtr, Vector2.getCPtr(value)); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); diff --git a/Tizen.NUI/src/internal/TapGestureDetectedSignal.cs b/Tizen.NUI/src/internal/TapGestureDetectedSignal.cs old mode 100644 new mode 100755 index 4d91e1f..edddeb1 --- a/Tizen.NUI/src/internal/TapGestureDetectedSignal.cs +++ b/Tizen.NUI/src/internal/TapGestureDetectedSignal.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class TapGestureDetectedSignal : global::System.IDisposable { private global::System.Runtime.InteropServices.HandleRef swigCPtr; diff --git a/Tizen.NUI/src/internal/TapGestureDetector.cs b/Tizen.NUI/src/internal/TapGestureDetector.cs old mode 100644 new mode 100755 index 8509039..3b6067f --- a/Tizen.NUI/src/internal/TapGestureDetector.cs +++ b/Tizen.NUI/src/internal/TapGestureDetector.cs @@ -24,7 +24,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { using System; using System.Runtime.InteropServices; @@ -139,7 +139,7 @@ public class DetectedEventArgs : EventArgs // Populate all members of "e" (DetectedEventArgs) with real data e.Actor = Actor.GetActorFromPtr(actor); - e.TapGesture = NUI.TapGesture.GetTapGestureFromPtr(tapGesture); + e.TapGesture = Tizen.NUI.TapGesture.GetTapGestureFromPtr(tapGesture); if (_tapGestureEventHandler != null) { diff --git a/Tizen.NUI/src/internal/TextEditorSignal.cs b/Tizen.NUI/src/internal/TextEditorSignal.cs old mode 100644 new mode 100755 index cf80eb1..994845c --- a/Tizen.NUI/src/internal/TextEditorSignal.cs +++ b/Tizen.NUI/src/internal/TextEditorSignal.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class TextEditorSignal : global::System.IDisposable { private global::System.Runtime.InteropServices.HandleRef swigCPtr; diff --git a/Tizen.NUI/src/internal/TextFieldSignal.cs b/Tizen.NUI/src/internal/TextFieldSignal.cs old mode 100644 new mode 100755 index dbf1144..6b57457 --- a/Tizen.NUI/src/internal/TextFieldSignal.cs +++ b/Tizen.NUI/src/internal/TextFieldSignal.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class TextFieldSignal : global::System.IDisposable { private global::System.Runtime.InteropServices.HandleRef swigCPtr; diff --git a/Tizen.NUI/src/public/Texture.cs b/Tizen.NUI/src/internal/Texture.cs old mode 100644 new mode 100755 similarity index 99% rename from Tizen.NUI/src/public/Texture.cs rename to Tizen.NUI/src/internal/Texture.cs index 0d65114..0c8e2ec --- a/Tizen.NUI/src/public/Texture.cs +++ b/Tizen.NUI/src/internal/Texture.cs @@ -24,7 +24,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class Texture : BaseHandle { private global::System.Runtime.InteropServices.HandleRef swigCPtr; diff --git a/Tizen.NUI/src/internal/TextureSet.cs b/Tizen.NUI/src/internal/TextureSet.cs old mode 100644 new mode 100755 index 7dcee24..260d759 --- a/Tizen.NUI/src/internal/TextureSet.cs +++ b/Tizen.NUI/src/internal/TextureSet.cs @@ -24,7 +24,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class TextureSet : BaseHandle { private global::System.Runtime.InteropServices.HandleRef swigCPtr; diff --git a/Tizen.NUI/src/internal/TextureType.cs b/Tizen.NUI/src/internal/TextureType.cs old mode 100644 new mode 100755 index e78f58f..b3a2d81 --- a/Tizen.NUI/src/internal/TextureType.cs +++ b/Tizen.NUI/src/internal/TextureType.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public enum TextureType { TEXTURE_2D, diff --git a/Tizen.NUI/src/internal/TimePeriod.cs b/Tizen.NUI/src/internal/TimePeriod.cs old mode 100644 new mode 100755 index 20bee22..b6b04da --- a/Tizen.NUI/src/internal/TimePeriod.cs +++ b/Tizen.NUI/src/internal/TimePeriod.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class TimePeriod : global::System.IDisposable { private global::System.Runtime.InteropServices.HandleRef swigCPtr; diff --git a/Tizen.NUI/src/internal/TimerSignalType.cs b/Tizen.NUI/src/internal/TimerSignalType.cs old mode 100644 new mode 100755 index 00ed89a..427ebf3 --- a/Tizen.NUI/src/internal/TimerSignalType.cs +++ b/Tizen.NUI/src/internal/TimerSignalType.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class TimerSignalType : global::System.IDisposable { private global::System.Runtime.InteropServices.HandleRef swigCPtr; diff --git a/Tizen.NUI/src/internal/ToggleButton.cs b/Tizen.NUI/src/internal/ToggleButton.cs new file mode 100755 index 0000000..ad8697a --- /dev/null +++ b/Tizen.NUI/src/internal/ToggleButton.cs @@ -0,0 +1,165 @@ +/** Copyright (c) 2017 Samsung Electronics Co., Ltd. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +* +*/ +// This File has been auto-generated by SWIG and then modified using DALi Ruby Scripts +//------------------------------------------------------------------------------ +// +// +// This file was automatically generated by SWIG (http://www.swig.org). +// Version 3.0.9 +// +// Do not make changes to this file unless you know what you are doing--modify +// the SWIG interface file instead. +//------------------------------------------------------------------------------ + +namespace Tizen.NUI { + +public class ToggleButton : Button { + private global::System.Runtime.InteropServices.HandleRef swigCPtr; + + internal ToggleButton(global::System.IntPtr cPtr, bool cMemoryOwn) : base(NDalicPINVOKE.ToggleButton_SWIGUpcast(cPtr), cMemoryOwn) { + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); + } + + internal static global::System.Runtime.InteropServices.HandleRef getCPtr(ToggleButton obj) { + return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; + } + + ~ToggleButton() { + Dispose(); + } + + public override void Dispose() { + lock(this) { + if (swigCPtr.Handle != global::System.IntPtr.Zero) { + if (swigCMemOwn) { + swigCMemOwn = false; + NDalicPINVOKE.delete_ToggleButton(swigCPtr); + } + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); + } + global::System.GC.SuppressFinalize(this); + base.Dispose(); + } + } + + public class Property : global::System.IDisposable { + private global::System.Runtime.InteropServices.HandleRef swigCPtr; + protected bool swigCMemOwn; + + internal Property(global::System.IntPtr cPtr, bool cMemoryOwn) { + swigCMemOwn = cMemoryOwn; + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); + } + + internal static global::System.Runtime.InteropServices.HandleRef getCPtr(Property obj) { + return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; + } + + ~Property() { + Dispose(); + } + + public virtual void Dispose() { + lock(this) { + if (swigCPtr.Handle != global::System.IntPtr.Zero) { + if (swigCMemOwn) { + swigCMemOwn = false; + NDalicPINVOKE.delete_ToggleButton_Property(swigCPtr); + } + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); + } + global::System.GC.SuppressFinalize(this); + } + } + + public Property() : this(NDalicPINVOKE.new_ToggleButton_Property(), true) { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public static readonly int STATE_VISUALS = NDalicPINVOKE.ToggleButton_Property_STATE_VISUALS_get(); + public static readonly int TOOLTIPS = NDalicPINVOKE.ToggleButton_Property_TOOLTIPS_get(); + public static readonly int CURRENT_STATE_INDEX = NDalicPINVOKE.ToggleButton_Property_CURRENT_STATE_INDEX_get(); + + } + + public ToggleButton () : this (NDalicPINVOKE.ToggleButton_New(), true) { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + + } + public ToggleButton(ToggleButton toggleButton) : this(NDalicPINVOKE.new_ToggleButton__SWIG_1(ToggleButton.getCPtr(toggleButton)), true) { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public ToggleButton Assign(ToggleButton toggleButton) { + ToggleButton ret = new ToggleButton(NDalicPINVOKE.ToggleButton_Assign(swigCPtr, ToggleButton.getCPtr(toggleButton)), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public new static ToggleButton DownCast(BaseHandle handle) { + ToggleButton ret = new ToggleButton(NDalicPINVOKE.ToggleButton_DownCast(BaseHandle.getCPtr(handle)), true); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public enum PropertyRange { + PROPERTY_START_INDEX = PropertyRanges.PROPERTY_REGISTRATION_START_INDEX, + PROPERTY_END_INDEX = View.PropertyRange.PROPERTY_START_INDEX+1000 + } + + public Tizen.NUI.PropertyArray StateVisuals + { + get + { + Tizen.NUI.PropertyArray temp = new Tizen.NUI.PropertyArray(); + GetProperty( ToggleButton.Property.STATE_VISUALS).Get( temp ); + return temp; + } + set + { + SetProperty( ToggleButton.Property.STATE_VISUALS, new Tizen.NUI.PropertyValue( value ) ); + } + } + public Tizen.NUI.PropertyArray Tooltips + { + get + { + Tizen.NUI.PropertyArray temp = new Tizen.NUI.PropertyArray(); + GetProperty( ToggleButton.Property.TOOLTIPS).Get( temp ); + return temp; + } + set + { + SetProperty( ToggleButton.Property.TOOLTIPS, new Tizen.NUI.PropertyValue( value ) ); + } + } + public int CurrentStateIndex + { + get + { + int temp = 0; + GetProperty( ToggleButton.Property.CURRENT_STATE_INDEX).Get( ref temp ); + return temp; + } + set + { + SetProperty( ToggleButton.Property.CURRENT_STATE_INDEX, new Tizen.NUI.PropertyValue( value ) ); + } + } + +} + +} diff --git a/Tizen.NUI/src/internal/ToolkitPropertyRange.cs b/Tizen.NUI/src/internal/ToolkitPropertyRange.cs old mode 100644 new mode 100755 index 6fe667d..31186d7 --- a/Tizen.NUI/src/internal/ToolkitPropertyRange.cs +++ b/Tizen.NUI/src/internal/ToolkitPropertyRange.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public enum ToolkitPropertyRange { VISUAL_PROPERTY_BASE_START_INDEX = PropertyRanges.CORE_PROPERTY_MAX_INDEX+1, diff --git a/Tizen.NUI/src/internal/CameraType.cs b/Tizen.NUI/src/internal/TooltipPositionType.cs old mode 100644 new mode 100755 similarity index 82% rename from Tizen.NUI/src/internal/CameraType.cs rename to Tizen.NUI/src/internal/TooltipPositionType.cs index af358e5..9cf68b6 --- a/Tizen.NUI/src/internal/CameraType.cs +++ b/Tizen.NUI/src/internal/TooltipPositionType.cs @@ -8,11 +8,12 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { -public enum CameraType { - FREE_LOOK, - LOOK_AT_TARGET +public enum TooltipPositionType { + ABOVE, + BELOW, + HOVER_POINT } } diff --git a/Tizen.NUI/src/internal/TouchEvent.cs b/Tizen.NUI/src/internal/TouchEvent.cs deleted file mode 100644 index 2d39c82..0000000 --- a/Tizen.NUI/src/internal/TouchEvent.cs +++ /dev/null @@ -1,102 +0,0 @@ -//------------------------------------------------------------------------------ -// -// -// This file was automatically generated by SWIG (http://www.swig.org). -// Version 3.0.9 -// -// Do not make changes to this file unless you know what you are doing--modify -// the SWIG interface file instead. -//------------------------------------------------------------------------------ - -namespace NUI { - -public class TouchEvent : global::System.IDisposable { - private global::System.Runtime.InteropServices.HandleRef swigCPtr; - protected bool swigCMemOwn; - - internal TouchEvent(global::System.IntPtr cPtr, bool cMemoryOwn) { - swigCMemOwn = cMemoryOwn; - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); - } - - internal static global::System.Runtime.InteropServices.HandleRef getCPtr(TouchEvent obj) { - return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; - } - - ~TouchEvent() { - DisposeQueue.Instance.Add(this); - } - - public virtual void Dispose() { - if (!Stage.IsInstalled()) { - DisposeQueue.Instance.Add(this); - return; - } - - lock(this) { - if (swigCPtr.Handle != global::System.IntPtr.Zero) { - if (swigCMemOwn) { - swigCMemOwn = false; - NDalicPINVOKE.delete_TouchEvent(swigCPtr); - } - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); - } - global::System.GC.SuppressFinalize(this); - } - } - - - public static TouchEvent GetTouchEventFromPtr(global::System.IntPtr cPtr) { - TouchEvent ret = new TouchEvent(cPtr, false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public TouchEvent() : this(NDalicPINVOKE.new_TouchEvent__SWIG_0(), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public TouchEvent(uint time) : this(NDalicPINVOKE.new_TouchEvent__SWIG_1(time), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public TouchPointContainer points { - set { - NDalicPINVOKE.TouchEvent_points_set(swigCPtr, TouchPointContainer.getCPtr(value)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - get { - global::System.IntPtr cPtr = NDalicPINVOKE.TouchEvent_points_get(swigCPtr); - TouchPointContainer ret = (cPtr == global::System.IntPtr.Zero) ? null : new TouchPointContainer(cPtr, false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - } - - public uint time { - set { - NDalicPINVOKE.TouchEvent_time_set(swigCPtr, value); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - get { - uint ret = NDalicPINVOKE.TouchEvent_time_get(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - } - - public uint GetPointCount() { - uint ret = NDalicPINVOKE.TouchEvent_GetPointCount(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public TouchPoint GetPoint(uint point) { - TouchPoint ret = new TouchPoint(NDalicPINVOKE.TouchEvent_GetPoint(swigCPtr, point), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - -} - -} diff --git a/Tizen.NUI/src/internal/TouchPoint.cs b/Tizen.NUI/src/internal/TouchPoint.cs old mode 100644 new mode 100755 index 7141ac0..a1bb95c --- a/Tizen.NUI/src/internal/TouchPoint.cs +++ b/Tizen.NUI/src/internal/TouchPoint.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class TouchPoint : global::System.IDisposable { private global::System.Runtime.InteropServices.HandleRef swigCPtr; diff --git a/Tizen.NUI/src/internal/TouchPointContainer.cs b/Tizen.NUI/src/internal/TouchPointContainer.cs old mode 100644 new mode 100755 index 80858aa..44cc3ae --- a/Tizen.NUI/src/internal/TouchPointContainer.cs +++ b/Tizen.NUI/src/internal/TouchPointContainer.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class TouchPointContainer : global::System.IDisposable, global::System.Collections.IEnumerable , global::System.Collections.Generic.IEnumerable diff --git a/Tizen.NUI/src/internal/TouchSignal.cs b/Tizen.NUI/src/internal/TouchSignal.cs old mode 100644 new mode 100755 index 9f619e9..27dda6d --- a/Tizen.NUI/src/internal/TouchSignal.cs +++ b/Tizen.NUI/src/internal/TouchSignal.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class TouchSignal : global::System.IDisposable { private global::System.Runtime.InteropServices.HandleRef swigCPtr; @@ -68,8 +68,8 @@ System.IntPtr ip = System.Runtime.InteropServices.Marshal.GetFunctionPointerForD } } - public void Emit(TouchData arg) { - NDalicPINVOKE.TouchSignal_Emit(swigCPtr, TouchData.getCPtr(arg)); + public void Emit(Touch arg) { + NDalicPINVOKE.TouchSignal_Emit(swigCPtr, Touch.getCPtr(arg)); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } diff --git a/Tizen.NUI/src/internal/TransitionData.cs b/Tizen.NUI/src/internal/TransitionData.cs old mode 100644 new mode 100755 index f5a3686..b000b39 --- a/Tizen.NUI/src/internal/TransitionData.cs +++ b/Tizen.NUI/src/internal/TransitionData.cs @@ -24,7 +24,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class TransitionData : BaseHandle { private global::System.Runtime.InteropServices.HandleRef swigCPtr; @@ -55,11 +55,11 @@ public class TransitionData : BaseHandle { } } - public TransitionData (Property.Map transition) : this (NDalicPINVOKE.TransitionData_New__SWIG_0(Property.Map.getCPtr(transition)), true) { + public TransitionData (PropertyMap transition) : this (NDalicPINVOKE.TransitionData_New__SWIG_0(PropertyMap.getCPtr(transition)), true) { if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } - public TransitionData (Property.Array transition) : this (NDalicPINVOKE.TransitionData_New__SWIG_1(Property.Array.getCPtr(transition)), true) { + public TransitionData (PropertyArray transition) : this (NDalicPINVOKE.TransitionData_New__SWIG_1(PropertyArray.getCPtr(transition)), true) { if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } @@ -85,8 +85,8 @@ public class TransitionData : BaseHandle { return ret; } - public Property.Map GetAnimatorAt(uint index) { - Property.Map ret = new Property.Map(NDalicPINVOKE.TransitionData_GetAnimatorAt(swigCPtr, index), true); + public PropertyMap GetAnimatorAt(uint index) { + PropertyMap ret = new PropertyMap(NDalicPINVOKE.TransitionData_GetAnimatorAt(swigCPtr, index), true); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } diff --git a/Tizen.NUI/src/internal/TypeAction.cs b/Tizen.NUI/src/internal/TypeAction.cs old mode 100644 new mode 100755 index 646aa5c..a579ddd --- a/Tizen.NUI/src/internal/TypeAction.cs +++ b/Tizen.NUI/src/internal/TypeAction.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class TypeAction : global::System.IDisposable { private global::System.Runtime.InteropServices.HandleRef swigCPtr; diff --git a/Tizen.NUI/src/internal/TypeInfo.cs b/Tizen.NUI/src/internal/TypeInfo.cs old mode 100644 new mode 100755 index 30b447a..625fa73 --- a/Tizen.NUI/src/internal/TypeInfo.cs +++ b/Tizen.NUI/src/internal/TypeInfo.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class TypeInfo : BaseHandle { private global::System.Runtime.InteropServices.HandleRef swigCPtr; @@ -77,13 +77,6 @@ public class TypeInfo : BaseHandle { return ret; } - public SWIGTYPE_p_f___Dali__BaseHandle GetCreator() { - global::System.IntPtr cPtr = NDalicPINVOKE.TypeInfo_GetCreator(swigCPtr); - SWIGTYPE_p_f___Dali__BaseHandle ret = (cPtr == global::System.IntPtr.Zero) ? null : new SWIGTYPE_p_f___Dali__BaseHandle(cPtr, false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - public uint GetActionCount() { uint ret = NDalicPINVOKE.TypeInfo_GetActionCount(swigCPtr); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); diff --git a/Tizen.NUI/src/internal/TypeRegistration.cs b/Tizen.NUI/src/internal/TypeRegistration.cs old mode 100644 new mode 100755 index a3d5a28..f98073b --- a/Tizen.NUI/src/internal/TypeRegistration.cs +++ b/Tizen.NUI/src/internal/TypeRegistration.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class TypeRegistration : global::System.IDisposable { private global::System.Runtime.InteropServices.HandleRef swigCPtr; @@ -40,15 +40,30 @@ public class TypeRegistration : global::System.IDisposable { } } - public TypeRegistration(SWIGTYPE_p_std__type_info registerType, SWIGTYPE_p_std__type_info baseType, SWIGTYPE_p_f___Dali__BaseHandle f) : this(NDalicPINVOKE.new_TypeRegistration__SWIG_0(SWIGTYPE_p_std__type_info.getCPtr(registerType), SWIGTYPE_p_std__type_info.getCPtr(baseType), SWIGTYPE_p_f___Dali__BaseHandle.getCPtr(f)), true) { + static private global::System.IntPtr SwigConstructTypeRegistration(SWIGTYPE_p_std__type_info registerType, SWIGTYPE_p_std__type_info baseType, System.Delegate f) { +System.IntPtr ip = System.Runtime.InteropServices.Marshal.GetFunctionPointerForDelegate(f); + return NDalicPINVOKE.new_TypeRegistration__SWIG_0(SWIGTYPE_p_std__type_info.getCPtr(registerType), SWIGTYPE_p_std__type_info.getCPtr(baseType), new System.Runtime.InteropServices.HandleRef(null, ip)); + } + + public TypeRegistration(SWIGTYPE_p_std__type_info registerType, SWIGTYPE_p_std__type_info baseType, System.Delegate f) : this(TypeRegistration.SwigConstructTypeRegistration(registerType, baseType, f), true) { if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } - public TypeRegistration(SWIGTYPE_p_std__type_info registerType, SWIGTYPE_p_std__type_info baseType, SWIGTYPE_p_f___Dali__BaseHandle f, bool callCreateOnInit) : this(NDalicPINVOKE.new_TypeRegistration__SWIG_1(SWIGTYPE_p_std__type_info.getCPtr(registerType), SWIGTYPE_p_std__type_info.getCPtr(baseType), SWIGTYPE_p_f___Dali__BaseHandle.getCPtr(f), callCreateOnInit), true) { + static private global::System.IntPtr SwigConstructTypeRegistration(SWIGTYPE_p_std__type_info registerType, SWIGTYPE_p_std__type_info baseType, System.Delegate f, bool callCreateOnInit) { +System.IntPtr ip = System.Runtime.InteropServices.Marshal.GetFunctionPointerForDelegate(f); + return NDalicPINVOKE.new_TypeRegistration__SWIG_1(SWIGTYPE_p_std__type_info.getCPtr(registerType), SWIGTYPE_p_std__type_info.getCPtr(baseType), new System.Runtime.InteropServices.HandleRef(null, ip), callCreateOnInit); + } + + public TypeRegistration(SWIGTYPE_p_std__type_info registerType, SWIGTYPE_p_std__type_info baseType, System.Delegate f, bool callCreateOnInit) : this(TypeRegistration.SwigConstructTypeRegistration(registerType, baseType, f, callCreateOnInit), true) { if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } - public TypeRegistration(string name, SWIGTYPE_p_std__type_info baseType, SWIGTYPE_p_f___Dali__BaseHandle f) : this(NDalicPINVOKE.new_TypeRegistration__SWIG_2(name, SWIGTYPE_p_std__type_info.getCPtr(baseType), SWIGTYPE_p_f___Dali__BaseHandle.getCPtr(f)), true) { + static private global::System.IntPtr SwigConstructTypeRegistration(string name, SWIGTYPE_p_std__type_info baseType, System.Delegate f) { +System.IntPtr ip = System.Runtime.InteropServices.Marshal.GetFunctionPointerForDelegate(f); + return NDalicPINVOKE.new_TypeRegistration__SWIG_2(name, SWIGTYPE_p_std__type_info.getCPtr(baseType), new System.Runtime.InteropServices.HandleRef(null, ip)); + } + + public TypeRegistration(string name, SWIGTYPE_p_std__type_info baseType, System.Delegate f) : this(TypeRegistration.SwigConstructTypeRegistration(name, baseType, f), true) { if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } @@ -58,6 +73,23 @@ public class TypeRegistration : global::System.IDisposable { return ret; } + public static void RegisterControl(string controlName, System.Delegate createFunc) { +System.IntPtr ip = System.Runtime.InteropServices.Marshal.GetFunctionPointerForDelegate(createFunc); + { + NDalicPINVOKE.TypeRegistration_RegisterControl(controlName, new System.Runtime.InteropServices.HandleRef(null, ip)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + } + + public static void RegisterProperty(string controlName, string propertyName, int index, PropertyType type, System.Delegate setFunc, System.Delegate getFunc) { +System.IntPtr ip = System.Runtime.InteropServices.Marshal.GetFunctionPointerForDelegate(setFunc); +System.IntPtr ip2 = System.Runtime.InteropServices.Marshal.GetFunctionPointerForDelegate(getFunc); + { + NDalicPINVOKE.TypeRegistration_RegisterProperty(controlName, propertyName, index, (int)type, new System.Runtime.InteropServices.HandleRef(null, ip), new System.Runtime.InteropServices.HandleRef(null, ip2)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + } + } } diff --git a/Tizen.NUI/src/internal/TypeRegistry.cs b/Tizen.NUI/src/internal/TypeRegistry.cs old mode 100644 new mode 100755 index a12319c..4d87b07 --- a/Tizen.NUI/src/internal/TypeRegistry.cs +++ b/Tizen.NUI/src/internal/TypeRegistry.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class TypeRegistry : BaseHandle { private global::System.Runtime.InteropServices.HandleRef swigCPtr; diff --git a/Tizen.NUI/src/internal/Uint16Pair.cs b/Tizen.NUI/src/internal/Uint16Pair.cs old mode 100644 new mode 100755 index c02770e..594125e --- a/Tizen.NUI/src/internal/Uint16Pair.cs +++ b/Tizen.NUI/src/internal/Uint16Pair.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class Uint16Pair : global::System.IDisposable { private global::System.Runtime.InteropServices.HandleRef swigCPtr; diff --git a/Tizen.NUI/src/internal/VectorBase.cs b/Tizen.NUI/src/internal/VectorBase.cs old mode 100644 new mode 100755 index eb7007b..96d4ed1 --- a/Tizen.NUI/src/internal/VectorBase.cs +++ b/Tizen.NUI/src/internal/VectorBase.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class VectorBase : global::System.IDisposable { private global::System.Runtime.InteropServices.HandleRef swigCPtr; diff --git a/Tizen.NUI/src/internal/VectorFloat.cs b/Tizen.NUI/src/internal/VectorFloat.cs old mode 100644 new mode 100755 index fd91ace..c01ad6b --- a/Tizen.NUI/src/internal/VectorFloat.cs +++ b/Tizen.NUI/src/internal/VectorFloat.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class VectorFloat : global::System.IDisposable { private global::System.Runtime.InteropServices.HandleRef swigCPtr; diff --git a/Tizen.NUI/src/internal/VectorInteger.cs b/Tizen.NUI/src/internal/VectorInteger.cs old mode 100644 new mode 100755 index aa7a8ed..b12bf0c --- a/Tizen.NUI/src/internal/VectorInteger.cs +++ b/Tizen.NUI/src/internal/VectorInteger.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class VectorInteger : global::System.IDisposable { private global::System.Runtime.InteropServices.HandleRef swigCPtr; diff --git a/Tizen.NUI/src/internal/VectorUint16Pair.cs b/Tizen.NUI/src/internal/VectorUint16Pair.cs old mode 100644 new mode 100755 index a644a55..fe0216b --- a/Tizen.NUI/src/internal/VectorUint16Pair.cs +++ b/Tizen.NUI/src/internal/VectorUint16Pair.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class VectorUint16Pair : global::System.IDisposable { private global::System.Runtime.InteropServices.HandleRef swigCPtr; diff --git a/Tizen.NUI/src/internal/VectorUnsignedChar.cs b/Tizen.NUI/src/internal/VectorUnsignedChar.cs old mode 100644 new mode 100755 index ec1e969..f5679a4 --- a/Tizen.NUI/src/internal/VectorUnsignedChar.cs +++ b/Tizen.NUI/src/internal/VectorUnsignedChar.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class VectorUnsignedChar : global::System.IDisposable { private global::System.Runtime.InteropServices.HandleRef swigCPtr; diff --git a/Tizen.NUI/src/internal/VerticalAlignmentType.cs b/Tizen.NUI/src/internal/VerticalAlignmentType.cs deleted file mode 100644 index b1e97ce..0000000 --- a/Tizen.NUI/src/internal/VerticalAlignmentType.cs +++ /dev/null @@ -1,19 +0,0 @@ -//------------------------------------------------------------------------------ -// -// -// This file was automatically generated by SWIG (http://www.swig.org). -// Version 3.0.9 -// -// Do not make changes to this file unless you know what you are doing--modify -// the SWIG interface file instead. -//------------------------------------------------------------------------------ - -namespace NUI { - -public enum VerticalAlignmentType { - TOP, - CENTER, - BOTTOM -} - -} diff --git a/Tizen.NUI/src/internal/VideoViewSignal.cs b/Tizen.NUI/src/internal/VideoViewSignal.cs old mode 100644 new mode 100755 index e5ac682..6a7b743 --- a/Tizen.NUI/src/internal/VideoViewSignal.cs +++ b/Tizen.NUI/src/internal/VideoViewSignal.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class VideoViewSignal : global::System.IDisposable { private global::System.Runtime.InteropServices.HandleRef swigCPtr; diff --git a/Tizen.NUI/src/dotnetcore/ViewImpl.cs b/Tizen.NUI/src/internal/ViewImpl.cs old mode 100644 new mode 100755 similarity index 92% rename from Tizen.NUI/src/dotnetcore/ViewImpl.cs rename to Tizen.NUI/src/internal/ViewImpl.cs index 1ce0cc7..6d0de32 --- a/Tizen.NUI/src/dotnetcore/ViewImpl.cs +++ b/Tizen.NUI/src/internal/ViewImpl.cs @@ -1,19 +1,3 @@ -/** Copyright (c) 2017 Samsung Electronics Co., Ltd. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - //------------------------------------------------------------------------------ // // @@ -28,7 +12,8 @@ using System.Reflection; #endif -namespace NUI { + +namespace Tizen.NUI { public class ViewImpl : CustomActorImpl { private global::System.Runtime.InteropServices.HandleRef swigCPtr; @@ -88,8 +73,8 @@ public class ViewImpl : CustomActorImpl { if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } - public void SetBackground(Property.Map map) { - NDalicPINVOKE.ViewImpl_SetBackground(swigCPtr, Property.Map.getCPtr(map)); + public void SetBackground(PropertyMap map) { + NDalicPINVOKE.ViewImpl_SetBackground(swigCPtr, PropertyMap.getCPtr(map)); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } @@ -98,12 +83,12 @@ public class ViewImpl : CustomActorImpl { if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } - public void EnableGestureDetection(Gesture.Type type) { + public void EnableGestureDetection(Gesture.GestureType type) { NDalicPINVOKE.ViewImpl_EnableGestureDetection(swigCPtr, (int)type); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } - public void DisableGestureDetection(Gesture.Type type) { + public void DisableGestureDetection(Gesture.GestureType type) { NDalicPINVOKE.ViewImpl_DisableGestureDetection(swigCPtr, (int)type); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } @@ -180,8 +165,8 @@ public class ViewImpl : CustomActorImpl { if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } - public ControlKeyEventSignal KeyEventSignal() { - ControlKeyEventSignal ret = new ControlKeyEventSignal(NDalicPINVOKE.ViewImpl_KeyEventSignal(swigCPtr), false); + public ControlKeySignal KeyEventSignal() { + ControlKeySignal ret = new ControlKeySignal(NDalicPINVOKE.ViewImpl_KeyEventSignal(swigCPtr), false); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } @@ -198,8 +183,8 @@ public class ViewImpl : CustomActorImpl { return ret; } - public bool EmitKeyEventSignal(KeyEvent arg0) { - bool ret = NDalicPINVOKE.ViewImpl_EmitKeyEventSignal(swigCPtr, KeyEvent.getCPtr(arg0)); + public bool EmitKeyEventSignal(Key arg0) { + bool ret = NDalicPINVOKE.ViewImpl_EmitKeyEventSignal(swigCPtr, Key.getCPtr(arg0)); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } @@ -224,8 +209,8 @@ public class ViewImpl : CustomActorImpl { if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } - protected virtual new void OnPropertySet(int index, Property.Value propertyValue) { - if (SwigDerivedClassHasMethod("OnPropertySet", swigMethodTypes4)) NDalicPINVOKE.ViewImpl_OnPropertySetSwigExplicitViewImpl(swigCPtr, index, Property.Value.getCPtr(propertyValue)); else NDalicPINVOKE.ViewImpl_OnPropertySet(swigCPtr, index, Property.Value.getCPtr(propertyValue)); + protected virtual new void OnPropertySet(int index, PropertyValue propertyValue) { + if (SwigDerivedClassHasMethod("OnPropertySet", swigMethodTypes4)) NDalicPINVOKE.ViewImpl_OnPropertySetSwigExplicitViewImpl(swigCPtr, index, PropertyValue.getCPtr(propertyValue)); else NDalicPINVOKE.ViewImpl_OnPropertySet(swigCPtr, index, PropertyValue.getCPtr(propertyValue)); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } @@ -239,26 +224,26 @@ public class ViewImpl : CustomActorImpl { if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } - protected virtual new bool OnTouchEvent(TouchEvent arg0) { - bool ret = (SwigDerivedClassHasMethod("OnTouchEvent", swigMethodTypes7) ? NDalicPINVOKE.ViewImpl_OnTouchEventSwigExplicitViewImpl(swigCPtr, TouchEvent.getCPtr(arg0)) : NDalicPINVOKE.ViewImpl_OnTouchEvent(swigCPtr, TouchEvent.getCPtr(arg0))); + protected virtual new bool OnTouchEvent(SWIGTYPE_p_Dali__TouchEvent arg0) { + bool ret = (SwigDerivedClassHasMethod("OnTouchEvent", swigMethodTypes7) ? NDalicPINVOKE.ViewImpl_OnTouchEventSwigExplicitViewImpl(swigCPtr, SWIGTYPE_p_Dali__TouchEvent.getCPtr(arg0)) : NDalicPINVOKE.ViewImpl_OnTouchEvent(swigCPtr, SWIGTYPE_p_Dali__TouchEvent.getCPtr(arg0))); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } - protected virtual new bool OnHoverEvent(HoverEvent arg0) { - bool ret = (SwigDerivedClassHasMethod("OnHoverEvent", swigMethodTypes8) ? NDalicPINVOKE.ViewImpl_OnHoverEventSwigExplicitViewImpl(swigCPtr, HoverEvent.getCPtr(arg0)) : NDalicPINVOKE.ViewImpl_OnHoverEvent(swigCPtr, HoverEvent.getCPtr(arg0))); + protected virtual new bool OnHoverEvent(Hover arg0) { + bool ret = (SwigDerivedClassHasMethod("OnHoverEvent", swigMethodTypes8) ? NDalicPINVOKE.ViewImpl_OnHoverEventSwigExplicitViewImpl(swigCPtr, Hover.getCPtr(arg0)) : NDalicPINVOKE.ViewImpl_OnHoverEvent(swigCPtr, Hover.getCPtr(arg0))); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } - protected virtual new bool OnKeyEvent(KeyEvent arg0) { - bool ret = (SwigDerivedClassHasMethod("OnKeyEvent", swigMethodTypes9) ? NDalicPINVOKE.ViewImpl_OnKeyEventSwigExplicitViewImpl(swigCPtr, KeyEvent.getCPtr(arg0)) : NDalicPINVOKE.ViewImpl_OnKeyEvent(swigCPtr, KeyEvent.getCPtr(arg0))); + protected virtual new bool OnKeyEvent(Key arg0) { + bool ret = (SwigDerivedClassHasMethod("OnKeyEvent", swigMethodTypes9) ? NDalicPINVOKE.ViewImpl_OnKeyEventSwigExplicitViewImpl(swigCPtr, Key.getCPtr(arg0)) : NDalicPINVOKE.ViewImpl_OnKeyEvent(swigCPtr, Key.getCPtr(arg0))); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } - protected virtual new bool OnWheelEvent(WheelEvent arg0) { - bool ret = (SwigDerivedClassHasMethod("OnWheelEvent", swigMethodTypes10) ? NDalicPINVOKE.ViewImpl_OnWheelEventSwigExplicitViewImpl(swigCPtr, WheelEvent.getCPtr(arg0)) : NDalicPINVOKE.ViewImpl_OnWheelEvent(swigCPtr, WheelEvent.getCPtr(arg0))); + protected virtual new bool OnWheelEvent(Wheel arg0) { + bool ret = (SwigDerivedClassHasMethod("OnWheelEvent", swigMethodTypes10) ? NDalicPINVOKE.ViewImpl_OnWheelEventSwigExplicitViewImpl(swigCPtr, Wheel.getCPtr(arg0)) : NDalicPINVOKE.ViewImpl_OnWheelEvent(swigCPtr, Wheel.getCPtr(arg0))); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } @@ -351,8 +336,8 @@ public class ViewImpl : CustomActorImpl { return ret; } - public virtual bool OnAccessibilityTouch(TouchEvent touchEvent) { - bool ret = (SwigDerivedClassHasMethod("OnAccessibilityTouch", swigMethodTypes27) ? NDalicPINVOKE.ViewImpl_OnAccessibilityTouchSwigExplicitViewImpl(swigCPtr, TouchEvent.getCPtr(touchEvent)) : NDalicPINVOKE.ViewImpl_OnAccessibilityTouch(swigCPtr, TouchEvent.getCPtr(touchEvent))); + public virtual bool OnAccessibilityTouch(SWIGTYPE_p_Dali__TouchEvent touchEvent) { + bool ret = (SwigDerivedClassHasMethod("OnAccessibilityTouch", swigMethodTypes27) ? NDalicPINVOKE.ViewImpl_OnAccessibilityTouchSwigExplicitViewImpl(swigCPtr, SWIGTYPE_p_Dali__TouchEvent.getCPtr(touchEvent)) : NDalicPINVOKE.ViewImpl_OnAccessibilityTouch(swigCPtr, SWIGTYPE_p_Dali__TouchEvent.getCPtr(touchEvent))); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } @@ -379,7 +364,7 @@ public class ViewImpl : CustomActorImpl { if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } - public virtual Actor GetNextKeyboardFocusableActor(Actor currentFocusedActor, View.KeyboardFocus.Direction direction, bool loopEnabled) { + public virtual Actor GetNextKeyboardFocusableActor(Actor currentFocusedActor, View.FocusDirection direction, bool loopEnabled) { Actor ret = new Actor((SwigDerivedClassHasMethod("GetNextKeyboardFocusableActor", swigMethodTypes32) ? NDalicPINVOKE.ViewImpl_GetNextKeyboardFocusableActorSwigExplicitViewImpl(swigCPtr, Actor.getCPtr(currentFocusedActor), (int)direction, loopEnabled) : NDalicPINVOKE.ViewImpl_GetNextKeyboardFocusableActor(swigCPtr, Actor.getCPtr(currentFocusedActor), (int)direction, loopEnabled)), true); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; @@ -510,14 +495,15 @@ public class ViewImpl : CustomActorImpl { if (SwigDerivedClassHasMethod("SignalDisconnected", swigMethodTypes40)) swigDelegate40 = new SwigDelegateViewImpl_40(SwigDirectorSignalDisconnected); NDalicPINVOKE.ViewImpl_director_connect(swigCPtr, swigDelegate0, swigDelegate1, swigDelegate2, swigDelegate3, swigDelegate4, swigDelegate5, swigDelegate6, swigDelegate7, swigDelegate8, swigDelegate9, swigDelegate10, swigDelegate11, swigDelegate12, swigDelegate13, swigDelegate14, swigDelegate15, swigDelegate16, swigDelegate17, swigDelegate18, swigDelegate19, swigDelegate20, swigDelegate21, swigDelegate22, swigDelegate23, swigDelegate24, swigDelegate25, swigDelegate26, swigDelegate27, swigDelegate28, swigDelegate29, swigDelegate30, swigDelegate31, swigDelegate32, swigDelegate33, swigDelegate34, swigDelegate35, swigDelegate36, swigDelegate37, swigDelegate38, swigDelegate39, swigDelegate40); - } - + } + #if true - private bool SwigDerivedClassHasMethod(string methodName, global::System.Type[] methodTypes) { - global::System.Reflection.MethodInfo methodInfo = this.GetType().GetMethod(methodName, methodTypes); - bool hasDerivedMethod = methodInfo.GetType().GetTypeInfo().IsSubclassOf(typeof(ViewImpl)); - return hasDerivedMethod; - } + private bool SwigDerivedClassHasMethod(string methodName, global::System.Type[] methodTypes) + { + global::System.Reflection.MethodInfo methodInfo = this.GetType().GetMethod(methodName, methodTypes); + bool hasDerivedMethod = methodInfo.GetType().GetTypeInfo().IsSubclassOf(typeof(ViewImpl)); + return hasDerivedMethod; + } #else //original private bool SwigDerivedClassHasMethod(string methodName, global::System.Type[] methodTypes) { @@ -526,8 +512,8 @@ public class ViewImpl : CustomActorImpl { return hasDerivedMethod; } #endif - - private void SwigDirectorOnStageConnection(int depth) { + + private void SwigDirectorOnStageConnection(int depth) { OnStageConnection(depth); } @@ -544,7 +530,7 @@ public class ViewImpl : CustomActorImpl { } private void SwigDirectorOnPropertySet(int index, global::System.IntPtr propertyValue) { - OnPropertySet(index, new Property.Value(propertyValue, true)); + OnPropertySet(index, new PropertyValue(propertyValue, true)); } private void SwigDirectorOnSizeSet(global::System.IntPtr targetSize) { @@ -556,19 +542,19 @@ public class ViewImpl : CustomActorImpl { } private bool SwigDirectorOnTouchEvent(global::System.IntPtr arg0) { - return OnTouchEvent(new TouchEvent(arg0, false)); + return OnTouchEvent(new SWIGTYPE_p_Dali__TouchEvent(arg0, false)); } private bool SwigDirectorOnHoverEvent(global::System.IntPtr arg0) { - return OnHoverEvent(new HoverEvent(arg0, false)); + return OnHoverEvent(new Hover(arg0, false)); } private bool SwigDirectorOnKeyEvent(global::System.IntPtr arg0) { - return OnKeyEvent(new KeyEvent(arg0, false)); + return OnKeyEvent(new Key(arg0, false)); } private bool SwigDirectorOnWheelEvent(global::System.IntPtr arg0) { - return OnWheelEvent(new WheelEvent(arg0, false)); + return OnWheelEvent(new Wheel(arg0, false)); } private void SwigDirectorOnRelayout(global::System.IntPtr size, global::System.IntPtr container) { @@ -636,7 +622,7 @@ public class ViewImpl : CustomActorImpl { } private bool SwigDirectorOnAccessibilityTouch(global::System.IntPtr touchEvent) { - return OnAccessibilityTouch(new TouchEvent(touchEvent, false)); + return OnAccessibilityTouch(new SWIGTYPE_p_Dali__TouchEvent(touchEvent, false)); } private bool SwigDirectorOnAccessibilityValueChange(bool isIncrease) { @@ -656,7 +642,7 @@ public class ViewImpl : CustomActorImpl { } private global::System.IntPtr SwigDirectorGetNextKeyboardFocusableActor(global::System.IntPtr currentFocusedActor, int direction, bool loopEnabled) { - return Actor.getCPtr(GetNextKeyboardFocusableActor(new Actor(currentFocusedActor, true), (View.KeyboardFocus.Direction)direction, loopEnabled)).Handle; + return Actor.getCPtr(GetNextKeyboardFocusableActor(new Actor(currentFocusedActor, true), (View.FocusDirection)direction, loopEnabled)).Handle; } private void SwigDirectorOnKeyboardFocusChangeCommitted(global::System.IntPtr commitedFocusableActor) { @@ -779,13 +765,13 @@ public class ViewImpl : CustomActorImpl { private static global::System.Type[] swigMethodTypes1 = new global::System.Type[] { }; private static global::System.Type[] swigMethodTypes2 = new global::System.Type[] { typeof(Actor) }; private static global::System.Type[] swigMethodTypes3 = new global::System.Type[] { typeof(Actor) }; - private static global::System.Type[] swigMethodTypes4 = new global::System.Type[] { typeof(int), typeof(Property.Value) }; + private static global::System.Type[] swigMethodTypes4 = new global::System.Type[] { typeof(int), typeof(PropertyValue) }; private static global::System.Type[] swigMethodTypes5 = new global::System.Type[] { typeof(Vector3) }; private static global::System.Type[] swigMethodTypes6 = new global::System.Type[] { typeof(Animation), typeof(Vector3) }; - private static global::System.Type[] swigMethodTypes7 = new global::System.Type[] { typeof(TouchEvent) }; - private static global::System.Type[] swigMethodTypes8 = new global::System.Type[] { typeof(HoverEvent) }; - private static global::System.Type[] swigMethodTypes9 = new global::System.Type[] { typeof(KeyEvent) }; - private static global::System.Type[] swigMethodTypes10 = new global::System.Type[] { typeof(WheelEvent) }; + private static global::System.Type[] swigMethodTypes7 = new global::System.Type[] { typeof(SWIGTYPE_p_Dali__TouchEvent) }; + private static global::System.Type[] swigMethodTypes8 = new global::System.Type[] { typeof(Hover) }; + private static global::System.Type[] swigMethodTypes9 = new global::System.Type[] { typeof(Key) }; + private static global::System.Type[] swigMethodTypes10 = new global::System.Type[] { typeof(Wheel) }; private static global::System.Type[] swigMethodTypes11 = new global::System.Type[] { typeof(Vector2), typeof(RelayoutContainer) }; private static global::System.Type[] swigMethodTypes12 = new global::System.Type[] { typeof(ResizePolicyType), typeof(DimensionType) }; private static global::System.Type[] swigMethodTypes13 = new global::System.Type[] { }; @@ -802,12 +788,12 @@ public class ViewImpl : CustomActorImpl { private static global::System.Type[] swigMethodTypes24 = new global::System.Type[] { typeof(StyleManager), typeof(StyleChangeType) }; private static global::System.Type[] swigMethodTypes25 = new global::System.Type[] { }; private static global::System.Type[] swigMethodTypes26 = new global::System.Type[] { typeof(PanGesture) }; - private static global::System.Type[] swigMethodTypes27 = new global::System.Type[] { typeof(TouchEvent) }; + private static global::System.Type[] swigMethodTypes27 = new global::System.Type[] { typeof(SWIGTYPE_p_Dali__TouchEvent) }; private static global::System.Type[] swigMethodTypes28 = new global::System.Type[] { typeof(bool) }; private static global::System.Type[] swigMethodTypes29 = new global::System.Type[] { }; private static global::System.Type[] swigMethodTypes30 = new global::System.Type[] { }; private static global::System.Type[] swigMethodTypes31 = new global::System.Type[] { }; - private static global::System.Type[] swigMethodTypes32 = new global::System.Type[] { typeof(Actor), typeof(View.KeyboardFocus.Direction), typeof(bool) }; + private static global::System.Type[] swigMethodTypes32 = new global::System.Type[] { typeof(Actor), typeof(View.FocusDirection), typeof(bool) }; private static global::System.Type[] swigMethodTypes33 = new global::System.Type[] { typeof(Actor) }; private static global::System.Type[] swigMethodTypes34 = new global::System.Type[] { }; private static global::System.Type[] swigMethodTypes35 = new global::System.Type[] { typeof(PinchGesture) }; diff --git a/Tizen.NUI/src/internal/ViewMode.cs b/Tizen.NUI/src/internal/ViewMode.cs old mode 100644 new mode 100755 index c38dd93..68a6b94 --- a/Tizen.NUI/src/internal/ViewMode.cs +++ b/Tizen.NUI/src/internal/ViewMode.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public enum ViewMode { MONO, diff --git a/Tizen.NUI/src/internal/ViewRegistry.cs b/Tizen.NUI/src/internal/ViewRegistry.cs new file mode 100755 index 0000000..99987af --- /dev/null +++ b/Tizen.NUI/src/internal/ViewRegistry.cs @@ -0,0 +1,521 @@ +using System; +using System.Runtime.InteropServices; +using System.Collections.Generic; + +#if true +using System.Reflection; +#endif + +namespace Tizen.NUI +{ + /// + /// Add this attribute to any property belonging to a View (control) you want to be scriptable from JSON + /// + /// + /// Example: + /// + /// class MyView : public CustomView + /// { + /// [ScriptableProperty()] + /// public int MyProperty + /// { + /// get + /// { + /// return _myProperty; + /// } + /// set + /// { + /// _myProperty = value; + /// } + /// } + /// } + /// + /// Internally the following occurs for property registration ( this only occurs once per Type, not per Instance): + /// + /// - The controls static constructor should call ViewRegistry.Register() (only called once for the lifecycle of the app) + /// - Within Register() the code will introspect the Controls properties, looking for the ScriptableProperty() attribute + /// - For every property with the ScriptableProperty() attribute, TypeRegistration.RegisterProperty is called. + /// - TypeRegistration.RegisterProperty calls in to DALi C++ Code Dali::CSharpTypeRegistry::RegisterProperty() + /// - DALi C++ now knows the existance of the property and will try calling SetProperty, if it finds the property in a JSON file (loaded using builder). + /// + /// The DALi C# example + /// + /// class MyView : public CustomView + /// { + /// + /// [ScriptableProperty()] + /// public double Hours + /// { + /// get { return seconds / 3600; } + /// set { seconds = value * 3600; } + /// } + /// } + /// + /// Equivalent code in DALi C++: + /// in MyControl.h + /// class MyControl : public Control + /// { + /// struct Property + /// { + /// enum + /// { + /// HOURS = Control::CONTROL_PROPERTY_END_INDEX + 1 + /// } + /// } + /// + /// + /// in MyControl-impl.cpp + /// + /// DALI_TYPE_REGISTRATION_BEGIN( Toolkit::MyControl, Toolkit::Control, Create ); + /// DALI_PROPERTY_REGISTRATION( Toolkit, MyControl, "Hours", INTEGER, DISABLED ) + /// DALI_TYPE_REGISTRATION_END() + /// + /// + /// + public class ScriptableProperty : System.Attribute + { + public enum ScriptableType + { + Default, // Read Writable, non-animatable property, event thread only + // Animatable // Animatable property, Currently disabled, UK + } + public readonly ScriptableType type; + + public ScriptableProperty(ScriptableType type = ScriptableType.Default) + { + this.type = type; + } + } + + /// + /// View Registry singleton. + /// Used for registering controls and any scriptable properties they have ( see ScriptableProperty ) + /// + /// Internal Design from C# to C++ + /// + /// - Each custom C# view should have it's static constructor called before any JSON file is loaded. + /// Static constructors for a class will only run once ( they are run per control type, not per instance). + /// Example of running a static constructor: + /// System.Runtime.CompilerServices.RuntimeHelpers.RunClassConstructor (typeof(Spin).TypeHandle); + /// Inside the static constructor the control should register it's type with the ViewRegistry + /// e.g. + /// + /// static Spin() + /// { + /// ViewRegistry.Instance.RegisterControl("Spin", CreateInstance, typeof(Spin) ); + /// } + /// + /// The control should also provide a CreateInstance function, which gets passed to the ViewRegistry + /// // Eventually it will be called if DALi Builderfinds a Spin control in a JSON file + /// static CustomView CreateInstance() + /// { + /// return new Spin(); + /// } + /// + /// + /// + /// The DALi C++ equivalent of this is + /// + /// TypeRegistration mType( typeid(Toolkit::Spin), typeid(Toolkit::Control), CreateInstance ); + /// + /// + /// + /// + public sealed class ViewRegistry + { + /// + /// ViewRegistry is a singleton + /// + private static ViewRegistry instance = null; + + [UnmanagedFunctionPointer(CallingConvention.StdCall)] + delegate IntPtr CreateControlDelegate(IntPtr cPtrControlName); + + [UnmanagedFunctionPointer(CallingConvention.StdCall)] + delegate IntPtr GetPropertyDelegate(IntPtr controlPtr, IntPtr propertyName); + + [UnmanagedFunctionPointer(CallingConvention.StdCall)] + delegate void SetPropertyDelegate(IntPtr controlPtr, IntPtr propertyName, IntPtr propertyValue); + + private CreateControlDelegate _createCallback; + private SetPropertyDelegate _setPropertyCallback; + private GetPropertyDelegate _getPropertyCallback; + private PropertyRangeManager _propertyRangeManager; + + /// + /// Given a C++ custom control the dictionary allows us to find what CustomView it belongs to + /// + private Dictionary _controlMap; + + /// + // Maps the name of a custom view to a create instance function + /// E.g. given a string "Spin", we can get a function used to create the Spin View. + /// + private Dictionary> _constructorMap; + + /// + /// Lookup table to match C# types to DALi types, used for the automatic property registration + /// + private static readonly Dictionary _daliPropertyTypeLookup + = new Dictionary + { + { "float", PropertyType.Float }, + { "int", PropertyType.Integer }, + { "Int32", PropertyType.Integer }, + { "Boolean", PropertyType.Boolean }, + { "string", PropertyType.String }, + { "Vector2", PropertyType.Vector2 }, + { "Vector3", PropertyType.Vector3 }, + { "Vector4", PropertyType.Vector4 }, + { "Size", PropertyType.Vector2 }, + { "Position",PropertyType.Vector3 }, + { "Color", PropertyType.Vector4 }, + // { "Matrix3", PropertyType.MATRIX3 }, commented out until we need to use Matrices from JSON + // { "Matrix", PropertyType.MATRIX }, + }; + + + public ViewRegistry() + { + _createCallback = new CreateControlDelegate(CreateControl); + _getPropertyCallback = new GetPropertyDelegate(GetProperty); + _setPropertyCallback = new SetPropertyDelegate(SetProperty); + + _controlMap = new Dictionary(); + _constructorMap = new Dictionary>(); + _propertyRangeManager = new PropertyRangeManager(); + + } + + private Tizen.NUI.PropertyType GetDaliPropertyType(string cSharpTypeName) + { + Tizen.NUI.PropertyType daliType; + if (_daliPropertyTypeLookup.TryGetValue(cSharpTypeName, out daliType)) + { + //Console.WriteLine("mapped "+ cSharpTypeName + " to dAli type " +daliType ); + return daliType; + } + else + { + // Console.WriteLine("Failed to find a mapping between C# property" + cSharpTypeName +" and DALi type"); + return PropertyType.None; + } + } + + /// + /// Called directly from DALi C++ type registry to create a control (View) uses no marshalling. + /// + /// Pointer to the Control (Views) handle + /// C pointer to the Control (View) name + private static IntPtr CreateControl(IntPtr cPtrControlName) + { + string controlName = System.Runtime.InteropServices.Marshal.PtrToStringAnsi(cPtrControlName); + // Console.WriteLine ("Create controlled called from C++ create a " + controlName); + + Func controlConstructor; + + // find the control constructor + if (Instance._constructorMap.TryGetValue(controlName, out controlConstructor)) + { + // Create the control + CustomView newControl = controlConstructor(); + + // Store the mapping between this instance of the custom control and native part + // We store a pointer to the RefObject for the control + IntPtr cPtr = newControl.GetPtrfromActor(); + RefObject refObj = newControl.GetObjectPtr(); + IntPtr refCptr = (IntPtr)RefObject.getCPtr(refObj); + + //Console.WriteLine ("________Storing ref object cptr in control map Hex: {0:X}", refCptr); + Instance._controlMap.Add(refCptr, newControl); + + return cPtr; // return pointer to handle + } + else + { + throw new global::System.InvalidOperationException("C# View not registererd with ViewRegistry" + controlName); + return IntPtr.Zero; + } + } + + private static IntPtr GetProperty(IntPtr controlPtr, IntPtr propertyName) + { + string name = System.Runtime.InteropServices.Marshal.PtrToStringAnsi(propertyName); + return Instance.GetPropertyValue(controlPtr, name); + } + + private static void SetProperty(IntPtr controlPtr, IntPtr propertyName, IntPtr propertyValue) + { + string name = System.Runtime.InteropServices.Marshal.PtrToStringAnsi(propertyName); + //Console.WriteLine ( SetControlProperty called for:" + name ); + Instance.SetPropertyValue(controlPtr, name, propertyValue); + + } + + public static ViewRegistry Instance + { + get + { + if (instance == null) + { + instance = new ViewRegistry(); + } + return instance; + } + } + + public static CustomView GetCustomViewFromActor(Actor actor) + { + // we store a dictionary of ref-obects (C++ land) to custom views (C# land) + Tizen.NUI.CustomView view; + + RefObject refObj = actor.GetObjectPtr(); + IntPtr refObjectPtr = (IntPtr)RefObject.getCPtr(refObj); + + if (Instance._controlMap.TryGetValue(refObjectPtr, out view)) + { + + // call the get property function + + return view; + } + else + { + return null; + } + } + + + /// + /// Function which registers a view and all it's scriptable properties with DALi's type registry. + /// Means the View can be created / configured from a JSON script. + /// + /// The function uses introspection to scan a Views C# properties, then selects the ones with + ///[ScriptableProperty] attribute to be registered. + /// Example of a Spin view registering itself + /// static Spin() + /// { + /// ViewRegistry registers control type with DALi type registery + /// also uses introspection to find any properties that need to be registered with type registry + /// ViewRegistry.Instance.Register("Spin", CreateInstance, typeof(Spin) ); + /// } + /// + /// + public void Register(string viewName, Func createFunction, System.Type viewType) + { + // add the mapping between the view name and it's create function + _constructorMap.Add(viewName, createFunction); + + // Call into DALi C++ to register the control with the type registry + TypeRegistration.RegisterControl(viewName, _createCallback); + + // Cycle through each property in the class + foreach (System.Reflection.PropertyInfo propertyInfo in viewType.GetProperties()) + { + + if (propertyInfo.CanRead) + { + +#if true + IEnumerable ie_attrs = propertyInfo.GetCustomAttributes(); + List li_attrs = new List(ie_attrs); + System.Attribute[] attrs = li_attrs.ToArray(); +#else + System.Attribute[] attrs = System.Attribute.GetCustomAttributes(propertyInfo); +#endif + + foreach (System.Attribute attr in attrs) + { + // If the Scriptable attribute exists, then register it with the type registry. + if (attr is ScriptableProperty) + { + //Console.WriteLine ("Got a DALi JSON scriptable property = " + propertyInfo.Name +", of type " + propertyInfo.PropertyType.Name); + + // first get the attribute type, ( default, or animatable) + ScriptableProperty scriptableProp = attr as ScriptableProperty; + + // we get the start property index, based on the type and it's heirachy, e.g. DateView (70,000)-> Spin (60,000) -> View (50,000) + int propertyIndex = _propertyRangeManager.GetPropertyIndex(viewName, viewType, scriptableProp.type); + + // get the enum for the property type... E.g. registering a string property returns Tizen.NUI.PropertyType.String + Tizen.NUI.PropertyType propertyType = GetDaliPropertyType(propertyInfo.PropertyType.Name); + + // Example RegisterProperty("spin","maxValue", 50001, FLOAT, set, get ); + // Native call to register the property + TypeRegistration.RegisterProperty(viewName, propertyInfo.Name, propertyIndex, propertyType, _setPropertyCallback, _getPropertyCallback); + } + } + + + + // Console.WriteLine ("property name = " + propertyInfo.Name); + } + } + } + + /// + /// Get a property value from a View + /// + /// + private IntPtr GetPropertyValue(IntPtr controlPtr, string propertyName) + { + // Get the C# control that maps to the C++ control + Tizen.NUI.CustomView view; + + BaseHandle baseHandle = new BaseHandle(controlPtr, false); + + RefObject refObj = baseHandle.GetObjectPtr(); + + IntPtr refObjectPtr = (IntPtr)RefObject.getCPtr(refObj); + + if (_controlMap.TryGetValue(refObjectPtr, out view)) + { + + // call the get property function + System.Object val = view.GetType().GetProperty(propertyName).GetAccessors()[0].Invoke(view, null); + + PropertyValue value = PropertyValue.CreateFromObject(val); + + return (IntPtr)PropertyValue.getCPtr(value); + } + else + { + return IntPtr.Zero; + } + } + + /// + /// Set a property value on a View + /// + /// + private void SetPropertyValue(IntPtr controlPtr, string propertyName, IntPtr propertyValuePtr) + { + // Get the C# control that maps to the C++ control + Tizen.NUI.CustomView view; + + //Console.WriteLine ("SetPropertyValue refObjectPtr = {0:X}", controlPtr); + + PropertyValue propValue = new PropertyValue(propertyValuePtr, false); + + if (_controlMap.TryGetValue(controlPtr, out view)) + { + + System.Reflection.PropertyInfo propertyInfo = view.GetType().GetProperty(propertyName); + + // We know the property name, we know it's type, we just need to convert from a DALi property value to native C# type + System.Type type = propertyInfo.PropertyType; + bool ok = false; + + if (type.Equals(typeof(Int32))) + { + int value = 0; + ok = propValue.Get(ref value); + if (ok) + { + propertyInfo.SetValue(view, value); + } + } + else if (type.Equals(typeof(bool))) + { + bool value = false; + ok = propValue.Get(ref value); + if (ok) + { + propertyInfo.SetValue(view, value); + } + } + else if (type.Equals(typeof(float))) + { + float value = 0; + ok = propValue.Get(ref value); + if (ok) + { + propertyInfo.SetValue(view, value); + } + } + else if (type.Equals(typeof(string))) + { + string value = ""; + ok = propValue.Get(out value); + if (ok) + { + propertyInfo.SetValue(view, value); + } + } + else if (type.Equals(typeof(Vector2))) + { + Vector2 value = new Vector2(); + ok = propValue.Get(value); + if (ok) + { + propertyInfo.SetValue(view, value); + } + } + else if (type.Equals(typeof(Vector3))) + { + Vector3 value = new Vector3(); + ok = propValue.Get(value); + if (ok) + { + propertyInfo.SetValue(view, value); + } + } + else if (type.Equals(typeof(Vector4))) + { + Vector4 value = new Vector4(); + ok = propValue.Get(value); + + if (ok) + { + propertyInfo.SetValue(view, value); + } + } + else if (type.Equals(typeof(Position))) + { + Position value = new Position(); + ok = propValue.Get(value); + if (ok) + { + propertyInfo.SetValue(view, value); + } + } + else if (type.Equals(typeof(Size))) + { + // DALi sizes are Vector3 + Size value = new Size(); + ok = propValue.Get(value); + if (ok) + { + propertyInfo.SetValue(view, new Size(value.Width, value.Height, value.Depth)); + }; + } + else if (type.Equals(typeof(Color))) + { + // Colors are stored as Vector4's in DALi + Color value = new Color(); + ok = propValue.Get(value); + if (ok) + { + propertyInfo.SetValue(view, (Color)value); + }; + } + else + { + throw new global::System.InvalidOperationException("SetPropertyValue Unimplemented type for Property Value"); + } + if (!ok) + { + throw new global::System.InvalidOperationException("SetPropertyValue propValue.Get failed"); + } + } + else + { + throw new global::System.InvalidOperationException("failed to find the control to write a property to: cptr = " + controlPtr); + } + + } + + } + + +} \ No newline at end of file diff --git a/Tizen.NUI/src/internal/ViewRegistryHelper.cs b/Tizen.NUI/src/internal/ViewRegistryHelper.cs new file mode 100755 index 0000000..95054f6 --- /dev/null +++ b/Tizen.NUI/src/internal/ViewRegistryHelper.cs @@ -0,0 +1,15 @@ +using System; + +// include all custom views here which will be +namespace Tizen.NUI +{ + public class ViewRegistryHelper + { + static public void Initialize() + { + // Register all views with the type registry + System.Runtime.CompilerServices.RuntimeHelpers.RunClassConstructor (typeof(Tizen.NUI.Spin).TypeHandle); + } + } +} + diff --git a/Tizen.NUI/src/public/ViewWrapper.cs b/Tizen.NUI/src/internal/ViewWrapper.cs similarity index 99% rename from Tizen.NUI/src/public/ViewWrapper.cs rename to Tizen.NUI/src/internal/ViewWrapper.cs index 8277123..9f9c8dc 100755 --- a/Tizen.NUI/src/public/ViewWrapper.cs +++ b/Tizen.NUI/src/internal/ViewWrapper.cs @@ -15,7 +15,7 @@ * */ -namespace NUI +namespace Tizen.NUI { public class ViewWrapper : View { diff --git a/Tizen.NUI/src/internal/ViewWrapperImpl.cs b/Tizen.NUI/src/internal/ViewWrapperImpl.cs index d17b0db..9ded463 100755 --- a/Tizen.NUI/src/internal/ViewWrapperImpl.cs +++ b/Tizen.NUI/src/internal/ViewWrapperImpl.cs @@ -15,7 +15,7 @@ * */ -namespace NUI +namespace Tizen.NUI { public sealed class ViewWrapperImpl : ViewImpl { @@ -24,16 +24,16 @@ namespace NUI public delegate void OnStageDisconnectionDelegate(); public delegate void OnChildAddDelegate(Actor actor); public delegate void OnChildRemoveDelegate(Actor actor); - public delegate void OnPropertySetDelegate(int index, Property.Value propertyValue); + public delegate void OnPropertySetDelegate(int index, PropertyValue propertyValue); public delegate void OnSizeSetDelegate(Vector3 targetSize); public delegate void OnSizeAnimationDelegate(Animation animation, Vector3 targetSize); - public delegate bool OnTouchEventDelegate(TouchEvent touchEvent); - public delegate bool OnHoverEventDelegate(HoverEvent hoverEvent); - public delegate bool OnKeyEventDelegate(KeyEvent keyEvent); - public delegate bool OnWheelEventDelegate(WheelEvent wheelEvent); + public delegate bool OnTouchDelegate(Touch touch); + public delegate bool OnHoverDelegate(Hover hover); + public delegate bool OnKeyDelegate(Key key); + public delegate bool OnWheelDelegate(Wheel wheel); public delegate void OnRelayoutDelegate(Vector2 size, RelayoutContainer container); public delegate void OnSetResizePolicyDelegate(ResizePolicyType policy, DimensionType dimension); - public delegate Vector3 GetNaturalSizeDelegate(); + public delegate Size GetNaturalSizeDelegate(); public delegate float CalculateChildSizeDelegate(Actor child, DimensionType dimension); public delegate float GetHeightForWidthDelegate(float width); public delegate float GetWidthForHeightDelegate(float height); @@ -46,13 +46,13 @@ namespace NUI public delegate void OnStyleChangeDelegate(StyleManager styleManager, StyleChangeType change); public delegate bool OnAccessibilityActivatedDelegate(); public delegate bool OnAccessibilityPanDelegate(PanGesture gestures); - public delegate bool OnAccessibilityTouchDelegate(TouchEvent touchEvent); + public delegate bool OnAccessibilityTouchDelegate(Touch touch); public delegate bool OnAccessibilityValueChangeDelegate(bool isIncrease); public delegate bool OnAccessibilityZoomDelegate(); public delegate void OnKeyInputFocusGainedDelegate(); public delegate void OnKeyInputFocusLostDelegate(); - public delegate Actor GetNextKeyboardFocusableActorDelegate(Actor currentFocusedActor, View.KeyboardFocus.Direction direction, bool loopEnabled); - public delegate void OnKeyboardFocusChangeCommittedDelegate(Actor commitedFocusableActor); + public delegate View GetNextFocusableViewDelegate(View currentFocusedView, View.FocusDirection direction, bool loopEnabled); + public delegate void OnFocusChangeCommittedDelegate(View commitedFocusableView); public delegate bool OnKeyboardEnterDelegate(); public delegate void OnPinchDelegate(PinchGesture pinch); public delegate void OnPanDelegate(PanGesture pan); @@ -68,10 +68,10 @@ namespace NUI public OnPropertySetDelegate OnPropertySet; public OnSizeSetDelegate OnSizeSet; public OnSizeAnimationDelegate OnSizeAnimation; - public OnTouchEventDelegate OnTouchEvent; - public OnHoverEventDelegate OnHoverEvent; - public OnKeyEventDelegate OnKeyEvent; - public OnWheelEventDelegate OnWheelEvent; + public OnTouchDelegate OnTouch; + public OnHoverDelegate OnHover; + public OnKeyDelegate OnKey; + public OnWheelDelegate OnWheel; public OnRelayoutDelegate OnRelayout; public OnSetResizePolicyDelegate OnSetResizePolicy; public GetNaturalSizeDelegate GetNaturalSize; @@ -92,8 +92,8 @@ namespace NUI public OnAccessibilityZoomDelegate OnAccessibilityZoom; public OnKeyInputFocusGainedDelegate OnKeyInputFocusGained; public OnKeyInputFocusLostDelegate OnKeyInputFocusLost; - public GetNextKeyboardFocusableActorDelegate GetNextKeyboardFocusableActor; - public OnKeyboardFocusChangeCommittedDelegate OnKeyboardFocusChangeCommitted; + public GetNextFocusableViewDelegate GetNextFocusableView; + public OnFocusChangeCommittedDelegate OnFocusChangeCommitted; public OnKeyboardEnterDelegate OnKeyboardEnter; public OnPinchDelegate OnPinch; public OnPanDelegate OnPan; @@ -135,7 +135,7 @@ namespace NUI } } - public ViewWrapperImpl(ViewWrapperImpl.CustomViewBehaviour behaviourFlags) : this(NDalicManualPINVOKE.new_ViewWrapperImpl((int)behaviourFlags), true) + public ViewWrapperImpl(ViewBehaviour behaviourFlags) : this(NDalicManualPINVOKE.new_ViewWrapperImpl((int)behaviourFlags), true) { if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); DirectorConnect(); @@ -255,10 +255,10 @@ namespace NUI Delegate4 = new DelegateViewWrapperImpl_4(DirectorOnPropertySet); Delegate5 = new DelegateViewWrapperImpl_5(DirectorOnSizeSet); Delegate6 = new DelegateViewWrapperImpl_6(DirectorOnSizeAnimation); - Delegate7 = new DelegateViewWrapperImpl_7(DirectorOnTouchEvent); - Delegate8 = new DelegateViewWrapperImpl_8(DirectorOnHoverEvent); - Delegate9 = new DelegateViewWrapperImpl_9(DirectorOnKeyEvent); - Delegate10 = new DelegateViewWrapperImpl_10(DirectorOnWheelEvent); + Delegate7 = new DelegateViewWrapperImpl_7(DirectorOnTouch); + Delegate8 = new DelegateViewWrapperImpl_8(DirectorOnHover); + Delegate9 = new DelegateViewWrapperImpl_9(DirectorOnKey); + Delegate10 = new DelegateViewWrapperImpl_10(DirectorOnWheel); Delegate11 = new DelegateViewWrapperImpl_11(DirectorOnRelayout); Delegate12 = new DelegateViewWrapperImpl_12(DirectorOnSetResizePolicy); Delegate13 = new DelegateViewWrapperImpl_13(DirectorGetNaturalSize); @@ -312,7 +312,7 @@ namespace NUI private void DirectorOnPropertySet(int index, global::System.IntPtr propertyValue) { - OnPropertySet(index, new Property.Value(propertyValue, true)); + OnPropertySet(index, new PropertyValue(propertyValue, true)); } private void DirectorOnSizeSet(global::System.IntPtr targetSize) @@ -325,24 +325,24 @@ namespace NUI OnSizeAnimation(new Animation(animation, false), new Vector3(targetSize, false)); } - private bool DirectorOnTouchEvent(global::System.IntPtr arg0) + private bool DirectorOnTouch(global::System.IntPtr arg0) { - return OnTouchEvent(new TouchEvent(arg0, false)); + return OnTouch(new Touch(arg0, false)); } - private bool DirectorOnHoverEvent(global::System.IntPtr arg0) + private bool DirectorOnHover(global::System.IntPtr arg0) { - return OnHoverEvent(new HoverEvent(arg0, false)); + return OnHover(new Hover(arg0, false)); } - private bool DirectorOnKeyEvent(global::System.IntPtr arg0) + private bool DirectorOnKey(global::System.IntPtr arg0) { - return OnKeyEvent(new KeyEvent(arg0, false)); + return OnKey(new Key(arg0, false)); } - private bool DirectorOnWheelEvent(global::System.IntPtr arg0) + private bool DirectorOnWheel(global::System.IntPtr arg0) { - return OnWheelEvent(new WheelEvent(arg0, false)); + return OnWheel(new Wheel(arg0, false)); } private void DirectorOnRelayout(global::System.IntPtr size, global::System.IntPtr container) @@ -357,7 +357,7 @@ namespace NUI private global::System.IntPtr DirectorGetNaturalSize() { - return Vector3.getCPtr(GetNaturalSize()).Handle; + return Size.getCPtr(GetNaturalSize()).Handle; } private float DirectorCalculateChildSize(global::System.IntPtr child, int dimension) @@ -424,9 +424,9 @@ namespace NUI return OnAccessibilityPan(new PanGesture(gesture, false)); } - private bool DirectorOnAccessibilityTouch(global::System.IntPtr touchEvent) + private bool DirectorOnAccessibilityTouch(global::System.IntPtr touch) { - return OnAccessibilityTouch(new TouchEvent(touchEvent, false)); + return OnAccessibilityTouch(new Touch(touch, false)); } private bool DirectorOnAccessibilityValueChange(bool isIncrease) @@ -451,7 +451,7 @@ namespace NUI private global::System.IntPtr DirectorGetNextKeyboardFocusableActor(global::System.IntPtr currentFocusedActor, int direction, bool loopEnabled) { - return Actor.getCPtr(GetNextKeyboardFocusableActor(new Actor(currentFocusedActor, false), (View.KeyboardFocus.Direction)direction, loopEnabled)).Handle; + return Actor.getCPtr(GetNextKeyboardFocusableActor(new Actor(currentFocusedActor, false), (View.FocusDirection)direction, loopEnabled)).Handle; } private void DirectorOnKeyboardFocusChangeCommitted(global::System.IntPtr commitedFocusableActor) @@ -521,7 +521,7 @@ namespace NUI public delegate void DelegateViewWrapperImpl_24(global::System.IntPtr styleManager, int change); public delegate bool DelegateViewWrapperImpl_25(); public delegate bool DelegateViewWrapperImpl_26(global::System.IntPtr gesture); - public delegate bool DelegateViewWrapperImpl_27(global::System.IntPtr touchEvent); + public delegate bool DelegateViewWrapperImpl_27(global::System.IntPtr touch); public delegate bool DelegateViewWrapperImpl_28(bool isIncrease); public delegate bool DelegateViewWrapperImpl_29(); public delegate void DelegateViewWrapperImpl_30(); diff --git a/Tizen.NUI/src/internal/ClippingModeType.cs b/Tizen.NUI/src/internal/VisualTransformPropertyType.cs old mode 100644 new mode 100755 similarity index 75% rename from Tizen.NUI/src/internal/ClippingModeType.cs rename to Tizen.NUI/src/internal/VisualTransformPropertyType.cs index f19094e..816a8e5 --- a/Tizen.NUI/src/internal/ClippingModeType.cs +++ b/Tizen.NUI/src/internal/VisualTransformPropertyType.cs @@ -8,11 +8,14 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { -public enum ClippingModeType { - DISABLED, - CLIP_CHILDREN +public enum VisualTransformPropertyType { + OFFSET, + SIZE, + ORIGIN, + ANCHOR_POINT, + OFFSET_SIZE_MODE } } diff --git a/Tizen.NUI/src/internal/VisualType.cs b/Tizen.NUI/src/internal/VisualType.cs old mode 100644 new mode 100755 index 3cdbfac..147003d --- a/Tizen.NUI/src/internal/VisualType.cs +++ b/Tizen.NUI/src/internal/VisualType.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public enum VisualType { BORDER, @@ -18,6 +18,9 @@ public enum VisualType { MESH, PRIMITIVE, WIREFRAME + + , + TEXT } } diff --git a/Tizen.NUI/src/internal/VoidSignal.cs b/Tizen.NUI/src/internal/VoidSignal.cs old mode 100644 new mode 100755 index 17d6e26..15d1e06 --- a/Tizen.NUI/src/internal/VoidSignal.cs +++ b/Tizen.NUI/src/internal/VoidSignal.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class VoidSignal : global::System.IDisposable { private global::System.Runtime.InteropServices.HandleRef swigCPtr; diff --git a/Tizen.NUI/src/internal/WrapModeType.cs b/Tizen.NUI/src/internal/WrapModeType.cs old mode 100644 new mode 100755 index 061dd48..3e57514 --- a/Tizen.NUI/src/internal/WrapModeType.cs +++ b/Tizen.NUI/src/internal/WrapModeType.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public enum WrapModeType { DEFAULT = 0, diff --git a/Tizen.NUI/src/dotnetcore/addedManually.cs b/Tizen.NUI/src/internal/addedManually.cs similarity index 100% rename from Tizen.NUI/src/dotnetcore/addedManually.cs rename to Tizen.NUI/src/internal/addedManually.cs diff --git a/Tizen.NUI/src/internal/doublep.cs b/Tizen.NUI/src/internal/doublep.cs old mode 100644 new mode 100755 index 61b2290..0faeaad --- a/Tizen.NUI/src/internal/doublep.cs +++ b/Tizen.NUI/src/internal/doublep.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class doublep : global::System.IDisposable { private global::System.Runtime.InteropServices.HandleRef swigCPtr; diff --git a/Tizen.NUI/src/internal/floatp.cs b/Tizen.NUI/src/internal/floatp.cs old mode 100644 new mode 100755 index 8a3c4cb..5f18c5e --- a/Tizen.NUI/src/internal/floatp.cs +++ b/Tizen.NUI/src/internal/floatp.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class floatp : global::System.IDisposable { private global::System.Runtime.InteropServices.HandleRef swigCPtr; diff --git a/Tizen.NUI/src/dotnetcore/handleref.cs b/Tizen.NUI/src/internal/handleref.cs similarity index 100% rename from Tizen.NUI/src/dotnetcore/handleref.cs rename to Tizen.NUI/src/internal/handleref.cs diff --git a/Tizen.NUI/src/internal/intp.cs b/Tizen.NUI/src/internal/intp.cs old mode 100644 new mode 100755 index a7df697..aed5e07 --- a/Tizen.NUI/src/internal/intp.cs +++ b/Tizen.NUI/src/internal/intp.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class intp : global::System.IDisposable { private global::System.Runtime.InteropServices.HandleRef swigCPtr; diff --git a/Tizen.NUI/src/internal/spin.cs b/Tizen.NUI/src/internal/spin.cs new file mode 100755 index 0000000..da91b3b --- /dev/null +++ b/Tizen.NUI/src/internal/spin.cs @@ -0,0 +1,313 @@ +/* + * Copyright (c) 2016 Samsung Electronics Co., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +using System; +using System.Runtime.InteropServices; +using Tizen.NUI; + +// A spin control (for continously changing values when users can easily predict a set of values) + +namespace Tizen.NUI +{ + public class Spin : CustomView + { + private VisualBase _arrowVisual; + private TextField _textField; + private int _arrowVisualPropertyIndex; + private string _arrowImage; + private int _currentValue; + private int _minValue; + private int _maxValue; + private int _singleStep; + private bool _wrappingEnabled; + private string _fontFamily; + private string _fontStyle; + private int _pointSize; + private Color _textColor; + private Color _textBackgroundColor; + private int _maxTextLength; + + // Called by DALi Builder if it finds a Spin control in a JSON file + static CustomView CreateInstance() + { + return new Spin(); + } + + // static constructor registers the control type (only runs once) + static Spin() + { + // ViewRegistry registers control type with DALi type registery + // also uses introspection to find any properties that need to be registered with type registry + ViewRegistry.Instance.Register("Spin", CreateInstance, typeof(Spin)); + } + public Spin() : base(ViewBehaviour.RequiresKeyboardNavigationSupport | ViewBehaviour.DisableStyleChangeSignals) + { + + } + + public override void OnInitialize() + { + // Initialize the propertiesControl + _arrowImage = "/home/owner/apps_rw/NUISamples.TizenTV/res/images/arrow.png"; + _textBackgroundColor = new Color(0.6f, 0.6f, 0.6f, 1.0f); + _currentValue = 0; + _minValue = 0; + _maxValue = 0; + _singleStep = 1; + _maxTextLength = 0; + + // Create image visual for the arrow keys + _arrowVisualPropertyIndex = RegisterProperty("ArrowImage", new Tizen.NUI.PropertyValue(_arrowImage), Tizen.NUI.PropertyAccessMode.ReadWrite); + _arrowVisual = VisualFactory.Get().CreateVisual(_arrowImage, new Uint16Pair(150, 150)); + RegisterVisual(_arrowVisualPropertyIndex, _arrowVisual); + + // Create a text field + _textField = new TextField(); + _textField.ParentOrigin = Tizen.NUI.ParentOrigin.Center; + _textField.AnchorPoint = Tizen.NUI.AnchorPoint.Center; + _textField.WidthResizePolicy = ResizePolicyType.SizeRelativeToParent; + _textField.HeightResizePolicy = ResizePolicyType.SizeRelativeToParent; + _textField.SizeModeFactor = new Vector3(1.0f, 0.45f, 1.0f); + _textField.PlaceholderText = "----"; + _textField.BackgroundColor = _textBackgroundColor; + _textField.HorizontalAlignment = "Center"; + _textField.VerticalAlignment = "Center"; + _textField.SetKeyboardFocusable(true); + _textField.Name = "_textField"; + + this.Add(_textField); + + _textField.FocusGained += TextFieldKeyInputFocusGained; + _textField.FocusLost += TextFieldKeyInputFocusLost; + } + + public override Size GetNaturalSize() + { + return new Size(150.0f, 150.0f, 0.0f); + } + + public void TextFieldKeyInputFocusGained(object source, EventArgs e) + { + // Make sure when the current spin that takes input focus also takes the keyboard focus + // For example, when you tap the spin directly + FocusManager.Instance.SetCurrentFocusView(_textField); + } + + public void TextFieldKeyInputFocusLost(object source, EventArgs e) + { + int previousValue = _currentValue; + + // If the input value is invalid, change it back to the previous valid value + if (int.TryParse(_textField.Text, out _currentValue)) + { + if (_currentValue < _minValue || _currentValue > _maxValue) + { + _currentValue = previousValue; + } + } + else + { + _currentValue = previousValue; + } + + // Otherwise take the new value + this.Value = _currentValue; + } + + public override View GetNextFocusableView(View currentFocusedActor, View.FocusDirection direction, bool loopEnabled) + { + // Respond to Up/Down keys to change the value while keeping the current spin focused + View nextFocusedActor = currentFocusedActor; + if (direction == View.FocusDirection.Up) + { + this.Value += this.Step; + nextFocusedActor = _textField; + } + else if (direction == View.FocusDirection.Down) + { + this.Value -= this.Step; + nextFocusedActor = _textField; + } + else + { + // Return a native empty handle as nothing can be focused in the left or right + nextFocusedActor = new View(); + nextFocusedActor.Reset(); + } + + return nextFocusedActor; + } + + + [ScriptableProperty()] + public int Value + { + get + { + return _currentValue; + } + set + { + + Console.WriteLine("Value set to " + value); + _currentValue = value; + + // Make sure no invalid value is accepted + if (_currentValue < _minValue) + { + _currentValue = _minValue; + } + + if (_currentValue > _maxValue) + { + _currentValue = _maxValue; + } + + _textField.Text = _currentValue.ToString(); + } + } + // MinValue property of type int: + [ScriptableProperty()] + public int MinValue + { + get + { + return _minValue; + } + set + { + _minValue = value; + } + } + + // MaxValue property of type int: + [ScriptableProperty()] + public int MaxValue + { + get + { + return _maxValue; + } + set + { + _maxValue = value; + } + } + + // Step property of type int: + [ScriptableProperty()] + public int Step + { + get + { + return _singleStep; + } + set + { + _singleStep = value; + } + } + + // WrappingEnabled property of type bool: + [ScriptableProperty()] + public bool WrappingEnabled + { + get + { + return _wrappingEnabled; + } + set + { + _wrappingEnabled = value; + } + } + + // TextPointSize property of type int: + [ScriptableProperty()] + public int TextPointSize + { + get + { + return _pointSize; + } + set + { + _pointSize = value; + _textField.PointSize = _pointSize; + } + } + + // TextColor property of type Color: + [ScriptableProperty()] + public Color TextColor + { + get + { + return _textColor; + } + set + { + Console.WriteLine("TextColor set to " + value.R + "," + value.G + "," + value.B); + + _textColor = value; + _textField.TextColor = _textColor; + } + } + + // MaxTextLength property of type int: + [ScriptableProperty()] + public int MaxTextLength + { + get + { + return _maxTextLength; + } + set + { + _maxTextLength = value; + _textField.MaxLength = _maxTextLength; + } + } + + public TextField SpinText + { + get + { + return _textField; + } + set + { + _textField = value; + } + } + + // Indicator property of type string: + public string IndicatorImage + { + get + { + return _arrowImage; + } + set + { + _arrowImage = value; + _arrowVisual = VisualFactory.Get().CreateVisual(_arrowImage, new Uint16Pair(150, 150)); + RegisterVisual(_arrowVisualPropertyIndex, _arrowVisual); + } + } + } +} \ No newline at end of file diff --git a/Tizen.NUI/src/internal/uintp.cs b/Tizen.NUI/src/internal/uintp.cs old mode 100644 new mode 100755 index 7680280..f21f891 --- a/Tizen.NUI/src/internal/uintp.cs +++ b/Tizen.NUI/src/internal/uintp.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class uintp : global::System.IDisposable { private global::System.Runtime.InteropServices.HandleRef swigCPtr; diff --git a/Tizen.NUI/src/internal/ushortp.cs b/Tizen.NUI/src/internal/ushortp.cs old mode 100644 new mode 100755 index 9b9ffff..e812ca3 --- a/Tizen.NUI/src/internal/ushortp.cs +++ b/Tizen.NUI/src/internal/ushortp.cs @@ -8,7 +8,7 @@ // the SWIG interface file instead. //------------------------------------------------------------------------------ -namespace NUI { +namespace Tizen.NUI { public class ushortp : global::System.IDisposable { private global::System.Runtime.InteropServices.HandleRef swigCPtr; diff --git a/Tizen.NUI/src/public/Actor.cs b/Tizen.NUI/src/public/Actor.cs index 9339c66..8f7e283 100755 --- a/Tizen.NUI/src/public/Actor.cs +++ b/Tizen.NUI/src/public/Actor.cs @@ -1,1485 +1,1716 @@ -/** Copyright (c) 2017 Samsung Electronics Co., Ltd. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ -// This File has been auto-generated by SWIG and then modified using DALi Ruby Scripts -//------------------------------------------------------------------------------ -// +// Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved +// PROPRIETARY/CONFIDENTIAL +// This software is the confidential and proprietary +// information of SAMSUNG ELECTRONICS ("Confidential Information"). You shall +// not disclose such Confidential Information and shall use it only in +// accordance with the terms of the license agreement you entered into with +// SAMSUNG ELECTRONICS. SAMSUNG make no representations or warranties about the +// suitability of the software, either express or implied, including but not +// limited to the implied warranties of merchantability, fitness for a +// particular purpose, or non-infringement. SAMSUNG shall not be liable for any +// damages suffered by licensee as a result of using, modifying or distributing +// this software or its derivatives. + +// Copyright (c) 2017 Samsung Electronics Co., Ltd. // -// This file was automatically generated by SWIG (http://www.swig.org). -// Version 3.0.9 +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. // -// Do not make changes to this file unless you know what you are doing--modify -// the SWIG interface file instead. -//------------------------------------------------------------------------------ - -namespace NUI { - - using System; - using System.Runtime.InteropServices; - -public class Actor : Handle { - private global::System.Runtime.InteropServices.HandleRef swigCPtr; - - internal Actor(global::System.IntPtr cPtr, bool cMemoryOwn) : base(NDalicPINVOKE.Actor_SWIGUpcast(cPtr), cMemoryOwn) { - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); - } - - internal static global::System.Runtime.InteropServices.HandleRef getCPtr(Actor obj) { - return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; - } - - ~Actor() { - DisposeQueue.Instance.Add(this); - } - - public override void Dispose() { - if (!Stage.IsInstalled()) { - DisposeQueue.Instance.Add(this); - return; - } - - lock(this) { - if (swigCPtr.Handle != global::System.IntPtr.Zero) { - if (swigCMemOwn) { - swigCMemOwn = false; - NDalicPINVOKE.delete_Actor(swigCPtr); - } - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); - } - global::System.GC.SuppressFinalize(this); - base.Dispose(); - } - } - - - - internal static Actor GetActorFromPtr(global::System.IntPtr cPtr) { - Actor ret = new Actor(cPtr, false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - internal IntPtr GetPtrfromActor () - { - return (IntPtr)swigCPtr; - } - - public Actor Parent - { - get - { - return GetParent(); - } - } - - public bool Visibility - { - get - { - return IsVisible(); - } - } - - public float Opacity - { - set - { - SetOpacity(value); - } - get - { - return GetCurrentOpacity(); - } - } - - public bool StateFocusEnable - { - set - { - SetKeyboardFocusable(value); - } - get - { - return IsKeyboardFocusable(); - } - } - - public bool IsOnStage - { - get - { - return OnStage(); - } - } - - public void Show() - { - SetVisible(true); - } - - public void Hide() - { - SetVisible(false); - } - - - public class Property : global::System.IDisposable { - private global::System.Runtime.InteropServices.HandleRef swigCPtr; - protected bool swigCMemOwn; - - internal Property(global::System.IntPtr cPtr, bool cMemoryOwn) { - swigCMemOwn = cMemoryOwn; - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); - } - - internal static global::System.Runtime.InteropServices.HandleRef getCPtr(Property obj) { - return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; - } - - ~Property() { - Dispose(); - } - - public virtual void Dispose() { - lock(this) { - if (swigCPtr.Handle != global::System.IntPtr.Zero) { - if (swigCMemOwn) { - swigCMemOwn = false; - NDalicPINVOKE.delete_Actor_Property(swigCPtr); - } - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); - } - global::System.GC.SuppressFinalize(this); - } - } - - public Property() : this(NDalicPINVOKE.new_Actor_Property(), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - internal static readonly int PARENT_ORIGIN = NDalicPINVOKE.Actor_Property_PARENT_ORIGIN_get(); - internal static readonly int PARENT_ORIGIN_X = NDalicPINVOKE.Actor_Property_PARENT_ORIGIN_X_get(); - internal static readonly int PARENT_ORIGIN_Y = NDalicPINVOKE.Actor_Property_PARENT_ORIGIN_Y_get(); - internal static readonly int PARENT_ORIGIN_Z = NDalicPINVOKE.Actor_Property_PARENT_ORIGIN_Z_get(); - internal static readonly int ANCHOR_POINT = NDalicPINVOKE.Actor_Property_ANCHOR_POINT_get(); - internal static readonly int ANCHOR_POINT_X = NDalicPINVOKE.Actor_Property_ANCHOR_POINT_X_get(); - internal static readonly int ANCHOR_POINT_Y = NDalicPINVOKE.Actor_Property_ANCHOR_POINT_Y_get(); - internal static readonly int ANCHOR_POINT_Z = NDalicPINVOKE.Actor_Property_ANCHOR_POINT_Z_get(); - internal static readonly int SIZE = NDalicPINVOKE.Actor_Property_SIZE_get(); - internal static readonly int SIZE_WIDTH = NDalicPINVOKE.Actor_Property_SIZE_WIDTH_get(); - internal static readonly int SIZE_HEIGHT = NDalicPINVOKE.Actor_Property_SIZE_HEIGHT_get(); - internal static readonly int SIZE_DEPTH = NDalicPINVOKE.Actor_Property_SIZE_DEPTH_get(); - internal static readonly int POSITION = NDalicPINVOKE.Actor_Property_POSITION_get(); - internal static readonly int POSITION_X = NDalicPINVOKE.Actor_Property_POSITION_X_get(); - internal static readonly int POSITION_Y = NDalicPINVOKE.Actor_Property_POSITION_Y_get(); - internal static readonly int POSITION_Z = NDalicPINVOKE.Actor_Property_POSITION_Z_get(); - internal static readonly int WORLD_POSITION = NDalicPINVOKE.Actor_Property_WORLD_POSITION_get(); - internal static readonly int WORLD_POSITION_X = NDalicPINVOKE.Actor_Property_WORLD_POSITION_X_get(); - internal static readonly int WORLD_POSITION_Y = NDalicPINVOKE.Actor_Property_WORLD_POSITION_Y_get(); - internal static readonly int WORLD_POSITION_Z = NDalicPINVOKE.Actor_Property_WORLD_POSITION_Z_get(); - internal static readonly int ORIENTATION = NDalicPINVOKE.Actor_Property_ORIENTATION_get(); - internal static readonly int WORLD_ORIENTATION = NDalicPINVOKE.Actor_Property_WORLD_ORIENTATION_get(); - internal static readonly int SCALE = NDalicPINVOKE.Actor_Property_SCALE_get(); - internal static readonly int SCALE_X = NDalicPINVOKE.Actor_Property_SCALE_X_get(); - internal static readonly int SCALE_Y = NDalicPINVOKE.Actor_Property_SCALE_Y_get(); - internal static readonly int SCALE_Z = NDalicPINVOKE.Actor_Property_SCALE_Z_get(); - internal static readonly int WORLD_SCALE = NDalicPINVOKE.Actor_Property_WORLD_SCALE_get(); - internal static readonly int VISIBLE = NDalicPINVOKE.Actor_Property_VISIBLE_get(); - internal static readonly int COLOR = NDalicPINVOKE.Actor_Property_COLOR_get(); - internal static readonly int COLOR_RED = NDalicPINVOKE.Actor_Property_COLOR_RED_get(); - internal static readonly int COLOR_GREEN = NDalicPINVOKE.Actor_Property_COLOR_GREEN_get(); - internal static readonly int COLOR_BLUE = NDalicPINVOKE.Actor_Property_COLOR_BLUE_get(); - internal static readonly int COLOR_ALPHA = NDalicPINVOKE.Actor_Property_COLOR_ALPHA_get(); - internal static readonly int WORLD_COLOR = NDalicPINVOKE.Actor_Property_WORLD_COLOR_get(); - internal static readonly int WORLD_MATRIX = NDalicPINVOKE.Actor_Property_WORLD_MATRIX_get(); - internal static readonly int NAME = NDalicPINVOKE.Actor_Property_NAME_get(); - internal static readonly int SENSITIVE = NDalicPINVOKE.Actor_Property_SENSITIVE_get(); - internal static readonly int LEAVE_REQUIRED = NDalicPINVOKE.Actor_Property_LEAVE_REQUIRED_get(); - internal static readonly int INHERIT_ORIENTATION = NDalicPINVOKE.Actor_Property_INHERIT_ORIENTATION_get(); - internal static readonly int INHERIT_SCALE = NDalicPINVOKE.Actor_Property_INHERIT_SCALE_get(); - internal static readonly int COLOR_MODE = NDalicPINVOKE.Actor_Property_COLOR_MODE_get(); - internal static readonly int POSITION_INHERITANCE = NDalicPINVOKE.Actor_Property_POSITION_INHERITANCE_get(); - internal static readonly int DRAW_MODE = NDalicPINVOKE.Actor_Property_DRAW_MODE_get(); - internal static readonly int SIZE_MODE_FACTOR = NDalicPINVOKE.Actor_Property_SIZE_MODE_FACTOR_get(); - internal static readonly int WIDTH_RESIZE_POLICY = NDalicPINVOKE.Actor_Property_WIDTH_RESIZE_POLICY_get(); - internal static readonly int HEIGHT_RESIZE_POLICY = NDalicPINVOKE.Actor_Property_HEIGHT_RESIZE_POLICY_get(); - internal static readonly int SIZE_SCALE_POLICY = NDalicPINVOKE.Actor_Property_SIZE_SCALE_POLICY_get(); - internal static readonly int WIDTH_FOR_HEIGHT = NDalicPINVOKE.Actor_Property_WIDTH_FOR_HEIGHT_get(); - internal static readonly int HEIGHT_FOR_WIDTH = NDalicPINVOKE.Actor_Property_HEIGHT_FOR_WIDTH_get(); - internal static readonly int PADDING = NDalicPINVOKE.Actor_Property_PADDING_get(); - internal static readonly int MINIMUM_SIZE = NDalicPINVOKE.Actor_Property_MINIMUM_SIZE_get(); - internal static readonly int MAXIMUM_SIZE = NDalicPINVOKE.Actor_Property_MAXIMUM_SIZE_get(); - internal static readonly int INHERIT_POSITION = NDalicPINVOKE.Actor_Property_INHERIT_POSITION_get(); - internal static readonly int CLIPPING_MODE = NDalicPINVOKE.Actor_Property_CLIPPING_MODE_get(); - - } - - public Actor () : this (NDalicPINVOKE.Actor_New(), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - - } - public new static Actor DownCast(BaseHandle handle) { - Actor ret = new Actor(NDalicPINVOKE.Actor_DownCast(BaseHandle.getCPtr(handle)), true); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public Actor(Actor copy) : this(NDalicPINVOKE.new_Actor__SWIG_1(Actor.getCPtr(copy)), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - internal Actor Assign(Actor rhs) { - Actor ret = new Actor(NDalicPINVOKE.Actor_Assign(swigCPtr, Actor.getCPtr(rhs)), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public string GetName() { - string ret = NDalicPINVOKE.Actor_GetName(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public void SetName(string name) { - NDalicPINVOKE.Actor_SetName(swigCPtr, name); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public uint GetId() { - uint ret = NDalicPINVOKE.Actor_GetId(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public bool IsRoot() { - bool ret = NDalicPINVOKE.Actor_IsRoot(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - internal bool OnStage() { - bool ret = NDalicPINVOKE.Actor_OnStage(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public bool IsLayer() { - bool ret = NDalicPINVOKE.Actor_IsLayer(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public Layer GetLayer() { - Layer ret = new Layer(NDalicPINVOKE.Actor_GetLayer(swigCPtr), true); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public void Add(Actor child) { - NDalicPINVOKE.Actor_Add(swigCPtr, Actor.getCPtr(child)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public void Remove(Actor child) { - NDalicPINVOKE.Actor_Remove(swigCPtr, Actor.getCPtr(child)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public void Unparent() { - NDalicPINVOKE.Actor_Unparent(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public uint GetChildCount() { - uint ret = NDalicPINVOKE.Actor_GetChildCount(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public Actor GetChildAt(uint index) { - Actor ret = new Actor(NDalicPINVOKE.Actor_GetChildAt(swigCPtr, index), true); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public Actor FindChildByName(string actorName) { - Actor ret = new Actor(NDalicPINVOKE.Actor_FindChildByName(swigCPtr, actorName), true); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public Actor FindChildById(uint id) { - Actor ret = new Actor(NDalicPINVOKE.Actor_FindChildById(swigCPtr, id), true); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - internal Actor GetParent() { - Actor ret = new Actor(NDalicPINVOKE.Actor_GetParent(swigCPtr), true); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - internal void SetParentOrigin(Vector3 origin) { - NDalicPINVOKE.Actor_SetParentOrigin(swigCPtr, Vector3.getCPtr(origin)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - internal Vector3 GetCurrentParentOrigin() { - Vector3 ret = new Vector3(NDalicPINVOKE.Actor_GetCurrentParentOrigin(swigCPtr), true); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - internal void SetAnchorPoint(Vector3 anchorPoint) { - NDalicPINVOKE.Actor_SetAnchorPoint(swigCPtr, Vector3.getCPtr(anchorPoint)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - internal Vector3 GetCurrentAnchorPoint() { - Vector3 ret = new Vector3(NDalicPINVOKE.Actor_GetCurrentAnchorPoint(swigCPtr), true); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - internal void SetSize(float width, float height) { - NDalicPINVOKE.Actor_SetSize__SWIG_0(swigCPtr, width, height); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - internal void SetSize(float width, float height, float depth) { - NDalicPINVOKE.Actor_SetSize__SWIG_1(swigCPtr, width, height, depth); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - internal void SetSize(Vector2 size) { - NDalicPINVOKE.Actor_SetSize__SWIG_2(swigCPtr, Vector2.getCPtr(size)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - internal void SetSize(Vector3 size) { - NDalicPINVOKE.Actor_SetSize__SWIG_3(swigCPtr, Vector3.getCPtr(size)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public Vector3 GetTargetSize() { - Vector3 ret = new Vector3(NDalicPINVOKE.Actor_GetTargetSize(swigCPtr), true); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public Vector3 GetCurrentSize() { - Vector3 ret = new Vector3(NDalicPINVOKE.Actor_GetCurrentSize(swigCPtr), true); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public Vector3 GetNaturalSize() { - Vector3 ret = new Vector3(NDalicPINVOKE.Actor_GetNaturalSize(swigCPtr), true); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - internal void SetPosition(float x, float y) { - NDalicPINVOKE.Actor_SetPosition__SWIG_0(swigCPtr, x, y); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - internal void SetPosition(float x, float y, float z) { - NDalicPINVOKE.Actor_SetPosition__SWIG_1(swigCPtr, x, y, z); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - internal void SetPosition(Vector3 position) { - NDalicPINVOKE.Actor_SetPosition__SWIG_2(swigCPtr, Vector3.getCPtr(position)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - internal void SetX(float x) { - NDalicPINVOKE.Actor_SetX(swigCPtr, x); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - internal void SetY(float y) { - NDalicPINVOKE.Actor_SetY(swigCPtr, y); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - internal void SetZ(float z) { - NDalicPINVOKE.Actor_SetZ(swigCPtr, z); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public void TranslateBy(Vector3 distance) { - NDalicPINVOKE.Actor_TranslateBy(swigCPtr, Vector3.getCPtr(distance)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public Vector3 GetCurrentPosition() { - Vector3 ret = new Vector3(NDalicPINVOKE.Actor_GetCurrentPosition(swigCPtr), true); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public Vector3 GetCurrentWorldPosition() { - Vector3 ret = new Vector3(NDalicPINVOKE.Actor_GetCurrentWorldPosition(swigCPtr), true); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public void SetInheritPosition(bool inherit) { - NDalicPINVOKE.Actor_SetInheritPosition(swigCPtr, inherit); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public PositionInheritanceMode GetPositionInheritanceMode() { - PositionInheritanceMode ret = (PositionInheritanceMode)NDalicPINVOKE.Actor_GetPositionInheritanceMode(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - internal bool IsPositionInherited() { - bool ret = NDalicPINVOKE.Actor_IsPositionInherited(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - internal void SetOrientation(Degree angle, Vector3 axis) { - NDalicPINVOKE.Actor_SetOrientation__SWIG_0(swigCPtr, Degree.getCPtr(angle), Vector3.getCPtr(axis)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - internal void SetOrientation(Radian angle, Vector3 axis) { - NDalicPINVOKE.Actor_SetOrientation__SWIG_1(swigCPtr, Radian.getCPtr(angle), Vector3.getCPtr(axis)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - internal void SetOrientation(Quaternion orientation) { - NDalicPINVOKE.Actor_SetOrientation__SWIG_2(swigCPtr, Quaternion.getCPtr(orientation)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public void RotateBy(Degree angle, Vector3 axis) { - NDalicPINVOKE.Actor_RotateBy__SWIG_0(swigCPtr, Degree.getCPtr(angle), Vector3.getCPtr(axis)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public void RotateBy(Radian angle, Vector3 axis) { - NDalicPINVOKE.Actor_RotateBy__SWIG_1(swigCPtr, Radian.getCPtr(angle), Vector3.getCPtr(axis)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public void RotateBy(Quaternion relativeRotation) { - NDalicPINVOKE.Actor_RotateBy__SWIG_2(swigCPtr, Quaternion.getCPtr(relativeRotation)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public Quaternion GetCurrentOrientation() { - Quaternion ret = new Quaternion(NDalicPINVOKE.Actor_GetCurrentOrientation(swigCPtr), true); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public void SetInheritOrientation(bool inherit) { - NDalicPINVOKE.Actor_SetInheritOrientation(swigCPtr, inherit); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public bool IsOrientationInherited() { - bool ret = NDalicPINVOKE.Actor_IsOrientationInherited(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public Quaternion GetCurrentWorldOrientation() { - Quaternion ret = new Quaternion(NDalicPINVOKE.Actor_GetCurrentWorldOrientation(swigCPtr), true); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - internal void SetScale(float scale) { - NDalicPINVOKE.Actor_SetScale__SWIG_0(swigCPtr, scale); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - internal void SetScale(float scaleX, float scaleY, float scaleZ) { - NDalicPINVOKE.Actor_SetScale__SWIG_1(swigCPtr, scaleX, scaleY, scaleZ); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - internal void SetScale(Vector3 scale) { - NDalicPINVOKE.Actor_SetScale__SWIG_2(swigCPtr, Vector3.getCPtr(scale)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public void ScaleBy(Vector3 relativeScale) { - NDalicPINVOKE.Actor_ScaleBy(swigCPtr, Vector3.getCPtr(relativeScale)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public Vector3 GetCurrentScale() { - Vector3 ret = new Vector3(NDalicPINVOKE.Actor_GetCurrentScale(swigCPtr), true); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public Vector3 GetCurrentWorldScale() { - Vector3 ret = new Vector3(NDalicPINVOKE.Actor_GetCurrentWorldScale(swigCPtr), true); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public void SetInheritScale(bool inherit) { - NDalicPINVOKE.Actor_SetInheritScale(swigCPtr, inherit); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public bool IsScaleInherited() { - bool ret = NDalicPINVOKE.Actor_IsScaleInherited(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public Matrix GetCurrentWorldMatrix() { - Matrix ret = new Matrix(NDalicPINVOKE.Actor_GetCurrentWorldMatrix(swigCPtr), true); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - internal void SetVisible(bool visible) { - NDalicPINVOKE.Actor_SetVisible(swigCPtr, visible); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - internal bool IsVisible() { - bool ret = NDalicPINVOKE.Actor_IsVisible(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - internal void SetOpacity(float opacity) { - NDalicPINVOKE.Actor_SetOpacity(swigCPtr, opacity); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - internal float GetCurrentOpacity() { - float ret = NDalicPINVOKE.Actor_GetCurrentOpacity(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - internal void SetColor(Vector4 color) { - NDalicPINVOKE.Actor_SetColor(swigCPtr, Vector4.getCPtr(color)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public Vector4 GetCurrentColor() { - Vector4 ret = new Vector4(NDalicPINVOKE.Actor_GetCurrentColor(swigCPtr), true); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - internal void SetColorMode(ColorMode colorMode) { - NDalicPINVOKE.Actor_SetColorMode(swigCPtr, (int)colorMode); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - internal ColorMode GetColorMode() { - ColorMode ret = (ColorMode)NDalicPINVOKE.Actor_GetColorMode(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public Vector4 GetCurrentWorldColor() { - Vector4 ret = new Vector4(NDalicPINVOKE.Actor_GetCurrentWorldColor(swigCPtr), true); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public void SetDrawMode(DrawModeType drawMode) { - NDalicPINVOKE.Actor_SetDrawMode(swigCPtr, (int)drawMode); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public DrawModeType GetDrawMode() { - DrawModeType ret = (DrawModeType)NDalicPINVOKE.Actor_GetDrawMode(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - internal void SetSensitive(bool sensitive) { - NDalicPINVOKE.Actor_SetSensitive(swigCPtr, sensitive); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - internal bool IsSensitive() { - bool ret = NDalicPINVOKE.Actor_IsSensitive(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public bool ScreenToLocal(out float localX, out float localY, float screenX, float screenY) { - bool ret = NDalicPINVOKE.Actor_ScreenToLocal(swigCPtr, out localX, out localY, screenX, screenY); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public void SetLeaveRequired(bool required) { - NDalicPINVOKE.Actor_SetLeaveRequired(swigCPtr, required); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public bool GetLeaveRequired() { - bool ret = NDalicPINVOKE.Actor_GetLeaveRequired(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - internal void SetKeyboardFocusable(bool focusable) { - NDalicPINVOKE.Actor_SetKeyboardFocusable(swigCPtr, focusable); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - internal bool IsKeyboardFocusable() { - bool ret = NDalicPINVOKE.Actor_IsKeyboardFocusable(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public void SetResizePolicy(ResizePolicyType policy, DimensionType dimension) { - NDalicPINVOKE.Actor_SetResizePolicy(swigCPtr, (int)policy, (int)dimension); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public ResizePolicyType GetResizePolicy(DimensionType dimension) { - ResizePolicyType ret = (ResizePolicyType)NDalicPINVOKE.Actor_GetResizePolicy(swigCPtr, (int)dimension); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public void SetSizeScalePolicy(SizeScalePolicyType policy) { - NDalicPINVOKE.Actor_SetSizeScalePolicy(swigCPtr, (int)policy); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public SizeScalePolicyType GetSizeScalePolicy() { - SizeScalePolicyType ret = (SizeScalePolicyType)NDalicPINVOKE.Actor_GetSizeScalePolicy(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - internal void SetSizeModeFactor(Vector3 factor) { - NDalicPINVOKE.Actor_SetSizeModeFactor(swigCPtr, Vector3.getCPtr(factor)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - internal Vector3 GetSizeModeFactor() { - Vector3 ret = new Vector3(NDalicPINVOKE.Actor_GetSizeModeFactor(swigCPtr), true); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public float GetHeightForWidth(float width) { - float ret = NDalicPINVOKE.Actor_GetHeightForWidth(swigCPtr, width); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public float GetWidthForHeight(float height) { - float ret = NDalicPINVOKE.Actor_GetWidthForHeight(swigCPtr, height); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public float GetRelayoutSize(DimensionType dimension) { - float ret = NDalicPINVOKE.Actor_GetRelayoutSize(swigCPtr, (int)dimension); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public void SetPadding(RectFloat padding) { - NDalicPINVOKE.Actor_SetPadding(swigCPtr, RectFloat.getCPtr(padding)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public void GetPadding(RectFloat paddingOut) { - NDalicPINVOKE.Actor_GetPadding(swigCPtr, RectFloat.getCPtr(paddingOut)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - internal void SetMinimumSize(Vector2 size) { - NDalicPINVOKE.Actor_SetMinimumSize(swigCPtr, Vector2.getCPtr(size)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - internal Vector2 GetMinimumSize() { - Vector2 ret = new Vector2(NDalicPINVOKE.Actor_GetMinimumSize(swigCPtr), true); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - internal void SetMaximumSize(Vector2 size) { - NDalicPINVOKE.Actor_SetMaximumSize(swigCPtr, Vector2.getCPtr(size)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - internal Vector2 GetMaximumSize() { - Vector2 ret = new Vector2(NDalicPINVOKE.Actor_GetMaximumSize(swigCPtr), true); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public int GetHierarchyDepth() { - int ret = NDalicPINVOKE.Actor_GetHierarchyDepth(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - internal uint AddRenderer(Renderer renderer) { - uint ret = NDalicPINVOKE.Actor_AddRenderer(swigCPtr, Renderer.getCPtr(renderer)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - internal uint GetRendererCount() { - uint ret = NDalicPINVOKE.Actor_GetRendererCount(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - internal Renderer GetRendererAt(uint index) { - Renderer ret = new Renderer(NDalicPINVOKE.Actor_GetRendererAt(swigCPtr, index), true); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - internal void RemoveRenderer(Renderer renderer) { - NDalicPINVOKE.Actor_RemoveRenderer__SWIG_0(swigCPtr, Renderer.getCPtr(renderer)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - internal void RemoveRenderer(uint index) { - NDalicPINVOKE.Actor_RemoveRenderer__SWIG_1(swigCPtr, index); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - internal SWIGTYPE_p_Dali__SignalT_bool_fDali__Actor_Dali__TouchEvent_const_RF_t TouchedSignal() { - SWIGTYPE_p_Dali__SignalT_bool_fDali__Actor_Dali__TouchEvent_const_RF_t ret = new SWIGTYPE_p_Dali__SignalT_bool_fDali__Actor_Dali__TouchEvent_const_RF_t(NDalicPINVOKE.Actor_TouchedSignal(swigCPtr), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - internal ActorTouchDataSignal TouchSignal() { - ActorTouchDataSignal ret = new ActorTouchDataSignal(NDalicPINVOKE.Actor_TouchSignal(swigCPtr), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - internal ActorHoverEventSignal HoveredSignal() { - ActorHoverEventSignal ret = new ActorHoverEventSignal(NDalicPINVOKE.Actor_HoveredSignal(swigCPtr), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - internal ActorWheelEventSignal WheelEventSignal() { - ActorWheelEventSignal ret = new ActorWheelEventSignal(NDalicPINVOKE.Actor_WheelEventSignal(swigCPtr), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - internal ActorSignal OnStageSignal() { - ActorSignal ret = new ActorSignal(NDalicPINVOKE.Actor_OnStageSignal(swigCPtr), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - internal ActorSignal OffStageSignal() { - ActorSignal ret = new ActorSignal(NDalicPINVOKE.Actor_OffStageSignal(swigCPtr), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - internal ActorSignal OnRelayoutSignal() { - ActorSignal ret = new ActorSignal(NDalicPINVOKE.Actor_OnRelayoutSignal(swigCPtr), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } +// This File has been auto-generated by SWIG and then modified using DALi Ruby Scripts +// Some have been manually changed - public Vector3 ParentOrigin - { - get - { - Vector3 temp = new Vector3(0.0f,0.0f,0.0f); - GetProperty( Actor.Property.PARENT_ORIGIN).Get( temp ); - return temp; - } - set - { - SetProperty( Actor.Property.PARENT_ORIGIN, new NUI.Property.Value( value ) ); - } - } - public float ParentOriginX - { - get - { - float temp = 0.0f; - GetProperty( Actor.Property.PARENT_ORIGIN_X).Get( ref temp ); - return temp; - } - set - { - SetProperty( Actor.Property.PARENT_ORIGIN_X, new NUI.Property.Value( value ) ); - } - } - public float ParentOriginY - { - get - { - float temp = 0.0f; - GetProperty( Actor.Property.PARENT_ORIGIN_Y).Get( ref temp ); - return temp; - } - set - { - SetProperty( Actor.Property.PARENT_ORIGIN_Y, new NUI.Property.Value( value ) ); - } - } - public float ParentOriginZ - { - get - { - float temp = 0.0f; - GetProperty( Actor.Property.PARENT_ORIGIN_Z).Get( ref temp ); - return temp; - } - set - { - SetProperty( Actor.Property.PARENT_ORIGIN_Z, new NUI.Property.Value( value ) ); - } - } - public Vector3 AnchorPoint - { - get - { - Vector3 temp = new Vector3(0.0f,0.0f,0.0f); - GetProperty( Actor.Property.ANCHOR_POINT).Get( temp ); - return temp; - } - set - { - SetProperty( Actor.Property.ANCHOR_POINT, new NUI.Property.Value( value ) ); - } - } - public float AnchorPointX - { - get - { - float temp = 0.0f; - GetProperty( Actor.Property.ANCHOR_POINT_X).Get( ref temp ); - return temp; - } - set - { - SetProperty( Actor.Property.ANCHOR_POINT_X, new NUI.Property.Value( value ) ); - } - } - public float AnchorPointY - { - get - { - float temp = 0.0f; - GetProperty( Actor.Property.ANCHOR_POINT_Y).Get( ref temp ); - return temp; - } - set - { - SetProperty( Actor.Property.ANCHOR_POINT_Y, new NUI.Property.Value( value ) ); - } - } - public float AnchorPointZ - { - get - { - float temp = 0.0f; - GetProperty( Actor.Property.ANCHOR_POINT_Z).Get( ref temp ); - return temp; - } - set - { - SetProperty( Actor.Property.ANCHOR_POINT_Z, new NUI.Property.Value( value ) ); - } - } - public Vector3 Size - { - get - { - Vector3 temp = new Vector3(0.0f,0.0f,0.0f); - GetProperty( Actor.Property.SIZE).Get( temp ); - return temp; - } - set - { - SetProperty( Actor.Property.SIZE, new NUI.Property.Value( value ) ); - } - } - public float SizeWidth - { - get - { - float temp = 0.0f; - GetProperty( Actor.Property.SIZE_WIDTH).Get( ref temp ); - return temp; - } - set - { - SetProperty( Actor.Property.SIZE_WIDTH, new NUI.Property.Value( value ) ); - } - } - public float SizeHeight - { - get - { - float temp = 0.0f; - GetProperty( Actor.Property.SIZE_HEIGHT).Get( ref temp ); - return temp; - } - set - { - SetProperty( Actor.Property.SIZE_HEIGHT, new NUI.Property.Value( value ) ); - } - } - public float SizeDepth - { - get - { - float temp = 0.0f; - GetProperty( Actor.Property.SIZE_DEPTH).Get( ref temp ); - return temp; - } - set - { - SetProperty( Actor.Property.SIZE_DEPTH, new NUI.Property.Value( value ) ); - } - } - public Vector3 Position - { - get - { - Vector3 temp = new Vector3(0.0f,0.0f,0.0f); - GetProperty( Actor.Property.POSITION).Get( temp ); - return temp; - } - set - { - SetProperty( Actor.Property.POSITION, new NUI.Property.Value( value ) ); - } - } - public float PositionX - { - get - { - float temp = 0.0f; - GetProperty( Actor.Property.POSITION_X).Get( ref temp ); - return temp; - } - set - { - SetProperty( Actor.Property.POSITION_X, new NUI.Property.Value( value ) ); - } - } - public float PositionY - { - get - { - float temp = 0.0f; - GetProperty( Actor.Property.POSITION_Y).Get( ref temp ); - return temp; - } - set - { - SetProperty( Actor.Property.POSITION_Y, new NUI.Property.Value( value ) ); - } - } - public float PositionZ - { - get - { - float temp = 0.0f; - GetProperty( Actor.Property.POSITION_Z).Get( ref temp ); - return temp; - } - set - { - SetProperty( Actor.Property.POSITION_Z, new NUI.Property.Value( value ) ); - } - } - public Vector3 WorldPosition - { - get - { - Vector3 temp = new Vector3(0.0f,0.0f,0.0f); - GetProperty( Actor.Property.WORLD_POSITION).Get( temp ); - return temp; - } -} public float WorldPositionX - { - get - { - float temp = 0.0f; - GetProperty( Actor.Property.WORLD_POSITION_X).Get( ref temp ); - return temp; - } -} public float WorldPositionY - { - get - { - float temp = 0.0f; - GetProperty( Actor.Property.WORLD_POSITION_Y).Get( ref temp ); - return temp; - } -} public float WorldPositionZ - { - get - { - float temp = 0.0f; - GetProperty( Actor.Property.WORLD_POSITION_Z).Get( ref temp ); - return temp; - } -} public Quaternion Orientation - { - get - { - Quaternion temp = new Quaternion(); - GetProperty( Actor.Property.ORIENTATION).Get( temp ); - return temp; - } - set - { - SetProperty( Actor.Property.ORIENTATION, new NUI.Property.Value( value ) ); - } - } - public Quaternion WorldOrientation - { - get - { - Quaternion temp = new Quaternion(); - GetProperty( Actor.Property.WORLD_ORIENTATION).Get( temp ); - return temp; - } -} public Vector3 Scale - { - get - { - Vector3 temp = new Vector3(0.0f,0.0f,0.0f); - GetProperty( Actor.Property.SCALE).Get( temp ); - return temp; - } - set - { - SetProperty( Actor.Property.SCALE, new NUI.Property.Value( value ) ); - } - } - public float ScaleX - { - get - { - float temp = 0.0f; - GetProperty( Actor.Property.SCALE_X).Get( ref temp ); - return temp; - } - set - { - SetProperty( Actor.Property.SCALE_X, new NUI.Property.Value( value ) ); - } - } - public float ScaleY - { - get - { - float temp = 0.0f; - GetProperty( Actor.Property.SCALE_Y).Get( ref temp ); - return temp; - } - set - { - SetProperty( Actor.Property.SCALE_Y, new NUI.Property.Value( value ) ); - } - } - public float ScaleZ - { - get - { - float temp = 0.0f; - GetProperty( Actor.Property.SCALE_Z).Get( ref temp ); - return temp; - } - set - { - SetProperty( Actor.Property.SCALE_Z, new NUI.Property.Value( value ) ); - } - } - public Vector3 WorldScale - { - get - { - Vector3 temp = new Vector3(0.0f,0.0f,0.0f); - GetProperty( Actor.Property.WORLD_SCALE).Get( temp ); - return temp; - } -} public bool Visible - { - get - { - bool temp = false; - GetProperty( Actor.Property.VISIBLE).Get( ref temp ); - return temp; - } - set - { - SetProperty( Actor.Property.VISIBLE, new NUI.Property.Value( value ) ); - } - } - public Vector4 Color - { - get - { - Vector4 temp = new Vector4(0.0f,0.0f,0.0f,0.0f); - GetProperty( Actor.Property.COLOR).Get( temp ); - return temp; - } - set - { - SetProperty( Actor.Property.COLOR, new NUI.Property.Value( value ) ); - } - } - public float ColorRed - { - get - { - float temp = 0.0f; - GetProperty( Actor.Property.COLOR_RED).Get( ref temp ); - return temp; - } - set - { - SetProperty( Actor.Property.COLOR_RED, new NUI.Property.Value( value ) ); - } - } - public float ColorGreen - { - get - { - float temp = 0.0f; - GetProperty( Actor.Property.COLOR_GREEN).Get( ref temp ); - return temp; - } - set - { - SetProperty( Actor.Property.COLOR_GREEN, new NUI.Property.Value( value ) ); - } - } - public float ColorBlue - { - get - { - float temp = 0.0f; - GetProperty( Actor.Property.COLOR_BLUE).Get( ref temp ); - return temp; - } - set - { - SetProperty( Actor.Property.COLOR_BLUE, new NUI.Property.Value( value ) ); - } - } - public float ColorAlpha - { - get - { - float temp = 0.0f; - GetProperty( Actor.Property.COLOR_ALPHA).Get( ref temp ); - return temp; - } - set - { - SetProperty( Actor.Property.COLOR_ALPHA, new NUI.Property.Value( value ) ); - } - } - public Vector4 WorldColor - { - get - { - Vector4 temp = new Vector4(0.0f,0.0f,0.0f,0.0f); - GetProperty( Actor.Property.WORLD_COLOR).Get( temp ); - return temp; - } -} public Matrix WorldMatrix - { - get - { - Matrix temp = new Matrix(); - GetProperty( Actor.Property.WORLD_MATRIX).Get( temp ); - return temp; - } -} public string Name - { - get - { - string temp; - GetProperty( Actor.Property.NAME).Get( out temp ); - return temp; - } - set - { - SetProperty( Actor.Property.NAME, new NUI.Property.Value( value ) ); - } - } - public bool Sensitive - { - get - { - bool temp = false; - GetProperty( Actor.Property.SENSITIVE).Get( ref temp ); - return temp; - } - set - { - SetProperty( Actor.Property.SENSITIVE, new NUI.Property.Value( value ) ); - } - } - public bool LeaveRequired - { - get - { - bool temp = false; - GetProperty( Actor.Property.LEAVE_REQUIRED).Get( ref temp ); - return temp; - } - set - { - SetProperty( Actor.Property.LEAVE_REQUIRED, new NUI.Property.Value( value ) ); - } - } - public bool InheritOrientation - { - get - { - bool temp = false; - GetProperty( Actor.Property.INHERIT_ORIENTATION).Get( ref temp ); - return temp; - } - set - { - SetProperty( Actor.Property.INHERIT_ORIENTATION, new NUI.Property.Value( value ) ); - } - } - public bool InheritScale - { - get - { - bool temp = false; - GetProperty( Actor.Property.INHERIT_SCALE).Get( ref temp ); - return temp; - } - set - { - SetProperty( Actor.Property.INHERIT_SCALE, new NUI.Property.Value( value ) ); - } - } - public string ColorMode - { - get - { - string temp; - GetProperty( Actor.Property.COLOR_MODE).Get( out temp ); - return temp; - } - set - { - SetProperty( Actor.Property.COLOR_MODE, new NUI.Property.Value( value ) ); - } - } - public string PositionInheritance - { - get - { - string temp; - GetProperty( Actor.Property.POSITION_INHERITANCE).Get( out temp ); - return temp; - } - set - { - SetProperty( Actor.Property.POSITION_INHERITANCE, new NUI.Property.Value( value ) ); - } - } - public string DrawMode - { - get - { - string temp; - GetProperty( Actor.Property.DRAW_MODE).Get( out temp ); - return temp; - } - set - { - SetProperty( Actor.Property.DRAW_MODE, new NUI.Property.Value( value ) ); - } - } - public Vector3 SizeModeFactor - { - get - { - Vector3 temp = new Vector3(0.0f,0.0f,0.0f); - GetProperty( Actor.Property.SIZE_MODE_FACTOR).Get( temp ); - return temp; - } - set - { - SetProperty( Actor.Property.SIZE_MODE_FACTOR, new NUI.Property.Value( value ) ); - } - } - public string WidthResizePolicy - { - get - { - string temp; - GetProperty( Actor.Property.WIDTH_RESIZE_POLICY).Get( out temp ); - return temp; - } - set - { - SetProperty( Actor.Property.WIDTH_RESIZE_POLICY, new NUI.Property.Value( value ) ); - } - } - public string HeightResizePolicy - { - get - { - string temp; - GetProperty( Actor.Property.HEIGHT_RESIZE_POLICY).Get( out temp ); - return temp; - } - set - { - SetProperty( Actor.Property.HEIGHT_RESIZE_POLICY, new NUI.Property.Value( value ) ); - } - } - public string SizeScalePolicy - { - get - { - string temp; - GetProperty( Actor.Property.SIZE_SCALE_POLICY).Get( out temp ); - return temp; - } - set - { - SetProperty( Actor.Property.SIZE_SCALE_POLICY, new NUI.Property.Value( value ) ); - } - } - public bool WidthForHeight - { - get - { - bool temp = false; - GetProperty( Actor.Property.WIDTH_FOR_HEIGHT).Get( ref temp ); - return temp; - } - set - { - SetProperty( Actor.Property.WIDTH_FOR_HEIGHT, new NUI.Property.Value( value ) ); - } - } - public bool HeightForWidth - { - get - { - bool temp = false; - GetProperty( Actor.Property.HEIGHT_FOR_WIDTH).Get( ref temp ); - return temp; - } - set - { - SetProperty( Actor.Property.HEIGHT_FOR_WIDTH, new NUI.Property.Value( value ) ); - } - } - public Vector4 Padding - { - get - { - Vector4 temp = new Vector4(0.0f,0.0f,0.0f,0.0f); - GetProperty( Actor.Property.PADDING).Get( temp ); - return temp; - } - set - { - SetProperty( Actor.Property.PADDING, new NUI.Property.Value( value ) ); - } - } - public Vector2 MinimumSize - { - get - { - Vector2 temp = new Vector2(0.0f,0.0f); - GetProperty( Actor.Property.MINIMUM_SIZE).Get( temp ); - return temp; - } - set - { - SetProperty( Actor.Property.MINIMUM_SIZE, new NUI.Property.Value( value ) ); - } - } - public Vector2 MaximumSize - { - get - { - Vector2 temp = new Vector2(0.0f,0.0f); - GetProperty( Actor.Property.MAXIMUM_SIZE).Get( temp ); - return temp; - } - set - { - SetProperty( Actor.Property.MAXIMUM_SIZE, new NUI.Property.Value( value ) ); - } - } - public bool InheritPosition - { - get - { - bool temp = false; - GetProperty( Actor.Property.INHERIT_POSITION).Get( ref temp ); - return temp; - } - set - { - SetProperty( Actor.Property.INHERIT_POSITION, new NUI.Property.Value( value ) ); - } - } - public string ClippingMode - { - get - { - string temp; - GetProperty( Actor.Property.CLIPPING_MODE).Get( out temp ); - return temp; - } - set - { - SetProperty( Actor.Property.CLIPPING_MODE, new NUI.Property.Value( value ) ); - } - } +namespace Tizen.NUI +{ -} + using System; + using System.Runtime.InteropServices; + + public class Actor : Handle + { + private global::System.Runtime.InteropServices.HandleRef swigCPtr; + + internal Actor(global::System.IntPtr cPtr, bool cMemoryOwn) : base(NDalicPINVOKE.Actor_SWIGUpcast(cPtr), cMemoryOwn) + { + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); + } + + internal static global::System.Runtime.InteropServices.HandleRef getCPtr(Actor obj) + { + return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; + } + + ~Actor() + { + DisposeQueue.Instance.Add(this); + } + + public override void Dispose() + { + if (!Stage.IsInstalled()) + { + DisposeQueue.Instance.Add(this); + return; + } + + lock (this) + { + if (swigCPtr.Handle != global::System.IntPtr.Zero) + { + if (swigCMemOwn) + { + swigCMemOwn = false; + NDalicPINVOKE.delete_Actor(swigCPtr); + } + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); + } + global::System.GC.SuppressFinalize(this); + base.Dispose(); + } + } + + + + internal static Actor GetActorFromPtr(global::System.IntPtr cPtr) + { + Actor ret = new Actor(cPtr, false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal IntPtr GetPtrfromActor() + { + return (IntPtr)swigCPtr; + } + + public Actor Parent + { + get + { + return GetParent(); + } + } + + public bool Visibility + { + get + { + return IsVisible(); + } + } + + //changed + public float Opacity + { + get + { + float temp = 0.0f; + GetProperty(Actor.Property.COLOR_ALPHA).Get(ref temp); + return temp; + } + set + { + SetProperty(Actor.Property.COLOR_ALPHA, new Tizen.NUI.PropertyValue(value)); + } + } + + //changed. moved to View class + /* + public bool StateFocusEnable + { + set + { + SetKeyboardFocusable(value); + } + get + { + return IsKeyboardFocusable(); + } + } + */ + + public bool IsOnStage + { + get + { + return OnStage(); + } + } + + //changed + public int HierarchyDepth + { + get + { + return GetHierarchyDepth(); + } + } + + public bool BatchParent + { + get + { + bool temp = false; + GetProperty(Actor.Property.BATCH_PARENT).Get(ref temp); + return temp; + } + set + { + SetProperty(Actor.Property.BATCH_PARENT, new Tizen.NUI.PropertyValue(value)); + } + } + + public int SiblingOrder + { + get + { + int temp = 0; + GetProperty(Actor.Property.SIBLING_ORDER).Get(ref temp); + return temp; + } + set + { + SetProperty(Actor.Property.SIBLING_ORDER, new Tizen.NUI.PropertyValue(value)); + } + } + + public void Show() + { + SetVisible(true); + } + + public void Hide() + { + SetVisible(false); + } + + //changed + internal class Property : global::System.IDisposable + { + private global::System.Runtime.InteropServices.HandleRef swigCPtr; + protected bool swigCMemOwn; + + internal Property(global::System.IntPtr cPtr, bool cMemoryOwn) + { + swigCMemOwn = cMemoryOwn; + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); + } + + internal static global::System.Runtime.InteropServices.HandleRef getCPtr(Property obj) + { + return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; + } + + ~Property() + { + Dispose(); + } + + public virtual void Dispose() + { + lock (this) + { + if (swigCPtr.Handle != global::System.IntPtr.Zero) + { + if (swigCMemOwn) + { + swigCMemOwn = false; + NDalicPINVOKE.delete_Actor_Property(swigCPtr); + } + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); + } + global::System.GC.SuppressFinalize(this); + } + } + //changed + internal static readonly int BATCH_PARENT = NDalicManualPINVOKE.Actor_Property_BATCH_PARENT_get(); + internal static readonly int SIBLING_ORDER = NDalicManualPINVOKE.Actor_Property_SIBLING_ORDER_get(); + //changed + internal Property() : this(NDalicPINVOKE.new_Actor_Property(), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + //changed + internal static readonly int PARENT_ORIGIN = NDalicPINVOKE.Actor_Property_PARENT_ORIGIN_get(); + internal static readonly int PARENT_ORIGIN_X = NDalicPINVOKE.Actor_Property_PARENT_ORIGIN_X_get(); + internal static readonly int PARENT_ORIGIN_Y = NDalicPINVOKE.Actor_Property_PARENT_ORIGIN_Y_get(); + internal static readonly int PARENT_ORIGIN_Z = NDalicPINVOKE.Actor_Property_PARENT_ORIGIN_Z_get(); + internal static readonly int ANCHOR_POINT = NDalicPINVOKE.Actor_Property_ANCHOR_POINT_get(); + internal static readonly int ANCHOR_POINT_X = NDalicPINVOKE.Actor_Property_ANCHOR_POINT_X_get(); + internal static readonly int ANCHOR_POINT_Y = NDalicPINVOKE.Actor_Property_ANCHOR_POINT_Y_get(); + internal static readonly int ANCHOR_POINT_Z = NDalicPINVOKE.Actor_Property_ANCHOR_POINT_Z_get(); + internal static readonly int SIZE = NDalicPINVOKE.Actor_Property_SIZE_get(); + internal static readonly int SIZE_WIDTH = NDalicPINVOKE.Actor_Property_SIZE_WIDTH_get(); + internal static readonly int SIZE_HEIGHT = NDalicPINVOKE.Actor_Property_SIZE_HEIGHT_get(); + internal static readonly int SIZE_DEPTH = NDalicPINVOKE.Actor_Property_SIZE_DEPTH_get(); + internal static readonly int POSITION = NDalicPINVOKE.Actor_Property_POSITION_get(); + internal static readonly int POSITION_X = NDalicPINVOKE.Actor_Property_POSITION_X_get(); + internal static readonly int POSITION_Y = NDalicPINVOKE.Actor_Property_POSITION_Y_get(); + internal static readonly int POSITION_Z = NDalicPINVOKE.Actor_Property_POSITION_Z_get(); + internal static readonly int WORLD_POSITION = NDalicPINVOKE.Actor_Property_WORLD_POSITION_get(); + internal static readonly int WORLD_POSITION_X = NDalicPINVOKE.Actor_Property_WORLD_POSITION_X_get(); + internal static readonly int WORLD_POSITION_Y = NDalicPINVOKE.Actor_Property_WORLD_POSITION_Y_get(); + internal static readonly int WORLD_POSITION_Z = NDalicPINVOKE.Actor_Property_WORLD_POSITION_Z_get(); + internal static readonly int ORIENTATION = NDalicPINVOKE.Actor_Property_ORIENTATION_get(); + internal static readonly int WORLD_ORIENTATION = NDalicPINVOKE.Actor_Property_WORLD_ORIENTATION_get(); + internal static readonly int SCALE = NDalicPINVOKE.Actor_Property_SCALE_get(); + internal static readonly int SCALE_X = NDalicPINVOKE.Actor_Property_SCALE_X_get(); + internal static readonly int SCALE_Y = NDalicPINVOKE.Actor_Property_SCALE_Y_get(); + internal static readonly int SCALE_Z = NDalicPINVOKE.Actor_Property_SCALE_Z_get(); + internal static readonly int WORLD_SCALE = NDalicPINVOKE.Actor_Property_WORLD_SCALE_get(); + internal static readonly int VISIBLE = NDalicPINVOKE.Actor_Property_VISIBLE_get(); + internal static readonly int COLOR = NDalicPINVOKE.Actor_Property_COLOR_get(); + internal static readonly int COLOR_RED = NDalicPINVOKE.Actor_Property_COLOR_RED_get(); + internal static readonly int COLOR_GREEN = NDalicPINVOKE.Actor_Property_COLOR_GREEN_get(); + internal static readonly int COLOR_BLUE = NDalicPINVOKE.Actor_Property_COLOR_BLUE_get(); + internal static readonly int COLOR_ALPHA = NDalicPINVOKE.Actor_Property_COLOR_ALPHA_get(); + internal static readonly int WORLD_COLOR = NDalicPINVOKE.Actor_Property_WORLD_COLOR_get(); + internal static readonly int WORLD_MATRIX = NDalicPINVOKE.Actor_Property_WORLD_MATRIX_get(); + internal static readonly int NAME = NDalicPINVOKE.Actor_Property_NAME_get(); + internal static readonly int SENSITIVE = NDalicPINVOKE.Actor_Property_SENSITIVE_get(); + internal static readonly int LEAVE_REQUIRED = NDalicPINVOKE.Actor_Property_LEAVE_REQUIRED_get(); + internal static readonly int INHERIT_ORIENTATION = NDalicPINVOKE.Actor_Property_INHERIT_ORIENTATION_get(); + internal static readonly int INHERIT_SCALE = NDalicPINVOKE.Actor_Property_INHERIT_SCALE_get(); + internal static readonly int COLOR_MODE = NDalicPINVOKE.Actor_Property_COLOR_MODE_get(); + internal static readonly int POSITION_INHERITANCE = NDalicPINVOKE.Actor_Property_POSITION_INHERITANCE_get(); + internal static readonly int DRAW_MODE = NDalicPINVOKE.Actor_Property_DRAW_MODE_get(); + internal static readonly int SIZE_MODE_FACTOR = NDalicPINVOKE.Actor_Property_SIZE_MODE_FACTOR_get(); + internal static readonly int WIDTH_RESIZE_POLICY = NDalicPINVOKE.Actor_Property_WIDTH_RESIZE_POLICY_get(); + internal static readonly int HEIGHT_RESIZE_POLICY = NDalicPINVOKE.Actor_Property_HEIGHT_RESIZE_POLICY_get(); + internal static readonly int SIZE_SCALE_POLICY = NDalicPINVOKE.Actor_Property_SIZE_SCALE_POLICY_get(); + internal static readonly int WIDTH_FOR_HEIGHT = NDalicPINVOKE.Actor_Property_WIDTH_FOR_HEIGHT_get(); + internal static readonly int HEIGHT_FOR_WIDTH = NDalicPINVOKE.Actor_Property_HEIGHT_FOR_WIDTH_get(); + internal static readonly int PADDING = NDalicPINVOKE.Actor_Property_PADDING_get(); + internal static readonly int MINIMUM_SIZE = NDalicPINVOKE.Actor_Property_MINIMUM_SIZE_get(); + internal static readonly int MAXIMUM_SIZE = NDalicPINVOKE.Actor_Property_MAXIMUM_SIZE_get(); + internal static readonly int INHERIT_POSITION = NDalicPINVOKE.Actor_Property_INHERIT_POSITION_get(); + internal static readonly int CLIPPING_MODE = NDalicPINVOKE.Actor_Property_CLIPPING_MODE_get(); + + } + + public Actor() : this(NDalicPINVOKE.Actor_New(), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + + } + public new static Actor DownCast(BaseHandle handle) + { + Actor ret = new Actor(NDalicPINVOKE.Actor_DownCast(BaseHandle.getCPtr(handle)), true); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + //changed + internal Actor(Actor copy) : this(NDalicPINVOKE.new_Actor__SWIG_1(Actor.getCPtr(copy)), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + //changed + internal Actor Assign(Actor rhs) + { + Actor ret = new Actor(NDalicPINVOKE.Actor_Assign(swigCPtr, Actor.getCPtr(rhs)), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + //changed + internal string GetName() + { + string ret = NDalicPINVOKE.Actor_GetName(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + //changed + internal void SetName(string name) + { + NDalicPINVOKE.Actor_SetName(swigCPtr, name); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + //changed + internal uint GetId() + { + uint ret = NDalicPINVOKE.Actor_GetId(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + //changed + internal bool IsRoot() + { + bool ret = NDalicPINVOKE.Actor_IsRoot(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + //changed + internal bool OnStage() + { + bool ret = NDalicPINVOKE.Actor_OnStage(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + //changed + internal bool IsLayer() + { + bool ret = NDalicPINVOKE.Actor_IsLayer(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + //changed + internal Layer GetLayer() + { + Layer ret = new Layer(NDalicPINVOKE.Actor_GetLayer(swigCPtr), true); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public void Add(Actor child) + { + NDalicPINVOKE.Actor_Add(swigCPtr, Actor.getCPtr(child)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public void Remove(Actor child) + { + NDalicPINVOKE.Actor_Remove(swigCPtr, Actor.getCPtr(child)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + //changed + internal void Unparent() + { + NDalicPINVOKE.Actor_Unparent(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public uint GetChildCount() + { + uint ret = NDalicPINVOKE.Actor_GetChildCount(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public Actor GetChildAt(uint index) + { + Actor ret = new Actor(NDalicPINVOKE.Actor_GetChildAt(swigCPtr, index), true); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public Actor FindChildByName(string actorName) + { + Actor ret = new Actor(NDalicPINVOKE.Actor_FindChildByName(swigCPtr, actorName), true); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + //changed + internal Actor FindChildById(uint id) + { + Actor ret = new Actor(NDalicPINVOKE.Actor_FindChildById(swigCPtr, id), true); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + //changed + internal Actor GetParent() + { + Actor ret = new Actor(NDalicPINVOKE.Actor_GetParent(swigCPtr), true); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + //changed + internal void SetParentOrigin(Vector3 origin) + { + NDalicPINVOKE.Actor_SetParentOrigin(swigCPtr, Vector3.getCPtr(origin)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + //changed + internal Vector3 GetCurrentParentOrigin() + { + Vector3 ret = new Vector3(NDalicPINVOKE.Actor_GetCurrentParentOrigin(swigCPtr), true); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + //changed + internal void SetAnchorPoint(Vector3 anchorPoint) + { + NDalicPINVOKE.Actor_SetAnchorPoint(swigCPtr, Vector3.getCPtr(anchorPoint)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + //changed + internal Vector3 GetCurrentAnchorPoint() + { + Vector3 ret = new Vector3(NDalicPINVOKE.Actor_GetCurrentAnchorPoint(swigCPtr), true); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + //changed + internal void SetSize(float width, float height) + { + NDalicPINVOKE.Actor_SetSize__SWIG_0(swigCPtr, width, height); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + //changed + internal void SetSize(float width, float height, float depth) + { + NDalicPINVOKE.Actor_SetSize__SWIG_1(swigCPtr, width, height, depth); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + //changed + internal void SetSize(Vector2 size) + { + NDalicPINVOKE.Actor_SetSize__SWIG_2(swigCPtr, Vector2.getCPtr(size)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + //changed + internal void SetSize(Vector3 size) + { + NDalicPINVOKE.Actor_SetSize__SWIG_3(swigCPtr, Vector3.getCPtr(size)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + //changed + internal Vector3 GetTargetSize() + { + Vector3 ret = new Vector3(NDalicPINVOKE.Actor_GetTargetSize(swigCPtr), true); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + //changed + internal Vector3 GetCurrentSize() + { + Vector3 ret = new Vector3(NDalicPINVOKE.Actor_GetCurrentSize(swigCPtr), true); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public Vector3 GetNaturalSize() + { + Vector3 ret = new Vector3(NDalicPINVOKE.Actor_GetNaturalSize(swigCPtr), true); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + //changed + internal void SetPosition(float x, float y) + { + NDalicPINVOKE.Actor_SetPosition__SWIG_0(swigCPtr, x, y); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + //changed + internal void SetPosition(float x, float y, float z) + { + NDalicPINVOKE.Actor_SetPosition__SWIG_1(swigCPtr, x, y, z); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + //changed + internal void SetPosition(Vector3 position) + { + NDalicPINVOKE.Actor_SetPosition__SWIG_2(swigCPtr, Vector3.getCPtr(position)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + //changed + internal void SetX(float x) + { + NDalicPINVOKE.Actor_SetX(swigCPtr, x); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + //changed + internal void SetY(float y) + { + NDalicPINVOKE.Actor_SetY(swigCPtr, y); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + //changed + internal void SetZ(float z) + { + NDalicPINVOKE.Actor_SetZ(swigCPtr, z); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + //changed + internal void TranslateBy(Vector3 distance) + { + NDalicPINVOKE.Actor_TranslateBy(swigCPtr, Vector3.getCPtr(distance)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + //changed + internal Vector3 GetCurrentPosition() + { + Vector3 ret = new Vector3(NDalicPINVOKE.Actor_GetCurrentPosition(swigCPtr), true); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + //changed + internal Vector3 GetCurrentWorldPosition() + { + Vector3 ret = new Vector3(NDalicPINVOKE.Actor_GetCurrentWorldPosition(swigCPtr), true); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + //changed + internal void SetInheritPosition(bool inherit) + { + NDalicPINVOKE.Actor_SetInheritPosition(swigCPtr, inherit); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + //changed + internal PositionInheritanceMode GetPositionInheritanceMode() + { + PositionInheritanceMode ret = (PositionInheritanceMode)NDalicPINVOKE.Actor_GetPositionInheritanceMode(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + //changed + internal bool IsPositionInherited() + { + bool ret = NDalicPINVOKE.Actor_IsPositionInherited(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + //changed + internal void SetOrientation(Degree angle, Vector3 axis) + { + NDalicPINVOKE.Actor_SetOrientation__SWIG_0(swigCPtr, Degree.getCPtr(angle), Vector3.getCPtr(axis)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + //changed + internal void SetOrientation(Radian angle, Vector3 axis) + { + NDalicPINVOKE.Actor_SetOrientation__SWIG_1(swigCPtr, Radian.getCPtr(angle), Vector3.getCPtr(axis)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + //changed + internal void SetOrientation(Quaternion orientation) + { + NDalicPINVOKE.Actor_SetOrientation__SWIG_2(swigCPtr, Quaternion.getCPtr(orientation)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + //changed + internal void RotateBy(Degree angle, Vector3 axis) + { + NDalicPINVOKE.Actor_RotateBy__SWIG_0(swigCPtr, Degree.getCPtr(angle), Vector3.getCPtr(axis)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + //changed + internal void RotateBy(Radian angle, Vector3 axis) + { + NDalicPINVOKE.Actor_RotateBy__SWIG_1(swigCPtr, Radian.getCPtr(angle), Vector3.getCPtr(axis)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + //changed + internal void RotateBy(Quaternion relativeRotation) + { + NDalicPINVOKE.Actor_RotateBy__SWIG_2(swigCPtr, Quaternion.getCPtr(relativeRotation)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + //changed + internal Quaternion GetCurrentOrientation() + { + Quaternion ret = new Quaternion(NDalicPINVOKE.Actor_GetCurrentOrientation(swigCPtr), true); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + //changed + internal void SetInheritOrientation(bool inherit) + { + NDalicPINVOKE.Actor_SetInheritOrientation(swigCPtr, inherit); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + //changed + internal bool IsOrientationInherited() + { + bool ret = NDalicPINVOKE.Actor_IsOrientationInherited(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + //changed + internal Quaternion GetCurrentWorldOrientation() + { + Quaternion ret = new Quaternion(NDalicPINVOKE.Actor_GetCurrentWorldOrientation(swigCPtr), true); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + //changed + internal void SetScale(float scale) + { + NDalicPINVOKE.Actor_SetScale__SWIG_0(swigCPtr, scale); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + //changed + internal void SetScale(float scaleX, float scaleY, float scaleZ) + { + NDalicPINVOKE.Actor_SetScale__SWIG_1(swigCPtr, scaleX, scaleY, scaleZ); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + //changed + internal void SetScale(Vector3 scale) + { + NDalicPINVOKE.Actor_SetScale__SWIG_2(swigCPtr, Vector3.getCPtr(scale)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + //changed + internal void ScaleBy(Vector3 relativeScale) + { + NDalicPINVOKE.Actor_ScaleBy(swigCPtr, Vector3.getCPtr(relativeScale)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + //changed + internal Vector3 GetCurrentScale() + { + Vector3 ret = new Vector3(NDalicPINVOKE.Actor_GetCurrentScale(swigCPtr), true); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + //changed + internal Vector3 GetCurrentWorldScale() + { + Vector3 ret = new Vector3(NDalicPINVOKE.Actor_GetCurrentWorldScale(swigCPtr), true); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + //changed + internal void SetInheritScale(bool inherit) + { + NDalicPINVOKE.Actor_SetInheritScale(swigCPtr, inherit); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + //changed + internal bool IsScaleInherited() + { + bool ret = NDalicPINVOKE.Actor_IsScaleInherited(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + //changed + internal Matrix GetCurrentWorldMatrix() + { + Matrix ret = new Matrix(NDalicPINVOKE.Actor_GetCurrentWorldMatrix(swigCPtr), true); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + //changed + internal void SetVisible(bool visible) + { + NDalicPINVOKE.Actor_SetVisible(swigCPtr, visible); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + //changed + internal bool IsVisible() + { + bool ret = NDalicPINVOKE.Actor_IsVisible(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + //changed + internal void SetOpacity(float opacity) + { + NDalicPINVOKE.Actor_SetOpacity(swigCPtr, opacity); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + //changed + internal float GetCurrentOpacity() + { + float ret = NDalicPINVOKE.Actor_GetCurrentOpacity(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + //changed + internal void SetColor(Vector4 color) + { + NDalicPINVOKE.Actor_SetColor(swigCPtr, Vector4.getCPtr(color)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + //changed + internal Vector4 GetCurrentColor() + { + Vector4 ret = new Vector4(NDalicPINVOKE.Actor_GetCurrentColor(swigCPtr), true); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + //changed + internal void SetColorMode(ColorMode colorMode) + { + NDalicPINVOKE.Actor_SetColorMode(swigCPtr, (int)colorMode); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + //changed + internal ColorMode GetColorMode() + { + ColorMode ret = (ColorMode)NDalicPINVOKE.Actor_GetColorMode(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + //changed + internal Vector4 GetCurrentWorldColor() + { + Vector4 ret = new Vector4(NDalicPINVOKE.Actor_GetCurrentWorldColor(swigCPtr), true); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + //changed + internal void SetDrawMode(DrawModeType drawMode) + { + NDalicPINVOKE.Actor_SetDrawMode(swigCPtr, (int)drawMode); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + //changed + internal DrawModeType GetDrawMode() + { + DrawModeType ret = (DrawModeType)NDalicPINVOKE.Actor_GetDrawMode(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + //changed + internal void SetSensitive(bool sensitive) + { + NDalicPINVOKE.Actor_SetSensitive(swigCPtr, sensitive); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + //changed + internal bool IsSensitive() + { + bool ret = NDalicPINVOKE.Actor_IsSensitive(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public bool ScreenToLocal(out float localX, out float localY, float screenX, float screenY) + { + bool ret = NDalicPINVOKE.Actor_ScreenToLocal(swigCPtr, out localX, out localY, screenX, screenY); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + //changed + internal void SetLeaveRequired(bool required) + { + NDalicPINVOKE.Actor_SetLeaveRequired(swigCPtr, required); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + //changed + internal bool GetLeaveRequired() + { + bool ret = NDalicPINVOKE.Actor_GetLeaveRequired(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + //changed + internal void SetKeyboardFocusable(bool focusable) + { + NDalicPINVOKE.Actor_SetKeyboardFocusable(swigCPtr, focusable); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + //changed + internal bool IsKeyboardFocusable() + { + bool ret = NDalicPINVOKE.Actor_IsKeyboardFocusable(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + //changed + internal void SetResizePolicy(ResizePolicyType policy, DimensionType dimension) + { + NDalicPINVOKE.Actor_SetResizePolicy(swigCPtr, (int)policy, (int)dimension); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + //changed + internal ResizePolicyType GetResizePolicy(DimensionType dimension) + { + ResizePolicyType ret = (ResizePolicyType)NDalicPINVOKE.Actor_GetResizePolicy(swigCPtr, (int)dimension); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + //changed + internal void SetSizeScalePolicy(SizeScalePolicyType policy) + { + NDalicPINVOKE.Actor_SetSizeScalePolicy(swigCPtr, (int)policy); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + //changed + internal SizeScalePolicyType GetSizeScalePolicy() + { + SizeScalePolicyType ret = (SizeScalePolicyType)NDalicPINVOKE.Actor_GetSizeScalePolicy(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + //changed + internal void SetSizeModeFactor(Vector3 factor) + { + NDalicPINVOKE.Actor_SetSizeModeFactor(swigCPtr, Vector3.getCPtr(factor)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + //changed + internal Vector3 GetSizeModeFactor() + { + Vector3 ret = new Vector3(NDalicPINVOKE.Actor_GetSizeModeFactor(swigCPtr), true); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public float GetHeightForWidth(float width) + { + float ret = NDalicPINVOKE.Actor_GetHeightForWidth(swigCPtr, width); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public float GetWidthForHeight(float height) + { + float ret = NDalicPINVOKE.Actor_GetWidthForHeight(swigCPtr, height); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + //changed + internal float GetRelayoutSize(DimensionType dimension) + { + float ret = NDalicPINVOKE.Actor_GetRelayoutSize(swigCPtr, (int)dimension); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + //changed + internal void SetPadding(RectFloat padding) + { + NDalicPINVOKE.Actor_SetPadding(swigCPtr, RectFloat.getCPtr(padding)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + //changed + internal void GetPadding(RectFloat paddingOut) + { + NDalicPINVOKE.Actor_GetPadding(swigCPtr, RectFloat.getCPtr(paddingOut)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + //changed + internal void SetMinimumSize(Vector2 size) + { + NDalicPINVOKE.Actor_SetMinimumSize(swigCPtr, Vector2.getCPtr(size)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + //changed + internal Vector2 GetMinimumSize() + { + Vector2 ret = new Vector2(NDalicPINVOKE.Actor_GetMinimumSize(swigCPtr), true); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + //changed + internal void SetMaximumSize(Vector2 size) + { + NDalicPINVOKE.Actor_SetMaximumSize(swigCPtr, Vector2.getCPtr(size)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + //changed + internal Vector2 GetMaximumSize() + { + Vector2 ret = new Vector2(NDalicPINVOKE.Actor_GetMaximumSize(swigCPtr), true); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + //changed + internal int GetHierarchyDepth() + { + int ret = NDalicPINVOKE.Actor_GetHierarchyDepth(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + //changed + internal uint AddRenderer(Renderer renderer) + { + uint ret = NDalicPINVOKE.Actor_AddRenderer(swigCPtr, Renderer.getCPtr(renderer)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + //changed + internal uint GetRendererCount() + { + uint ret = NDalicPINVOKE.Actor_GetRendererCount(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + //changed + internal Renderer GetRendererAt(uint index) + { + Renderer ret = new Renderer(NDalicPINVOKE.Actor_GetRendererAt(swigCPtr, index), true); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + //changed + internal void RemoveRenderer(Renderer renderer) + { + NDalicPINVOKE.Actor_RemoveRenderer__SWIG_0(swigCPtr, Renderer.getCPtr(renderer)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + //changed + internal void RemoveRenderer(uint index) + { + NDalicPINVOKE.Actor_RemoveRenderer__SWIG_1(swigCPtr, index); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + //changed + internal SWIGTYPE_p_Dali__SignalT_bool_fDali__Actor_Dali__TouchEvent_const_RF_t TouchedSignal() + { + SWIGTYPE_p_Dali__SignalT_bool_fDali__Actor_Dali__TouchEvent_const_RF_t ret = new SWIGTYPE_p_Dali__SignalT_bool_fDali__Actor_Dali__TouchEvent_const_RF_t(NDalicPINVOKE.Actor_TouchedSignal(swigCPtr), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + //changed + internal ActorTouchDataSignal TouchSignal() + { + ActorTouchDataSignal ret = new ActorTouchDataSignal(NDalicPINVOKE.Actor_TouchSignal(swigCPtr), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + //changed + internal ActorHoverSignal HoveredSignal() + { + ActorHoverSignal ret = new ActorHoverSignal(NDalicPINVOKE.Actor_HoveredSignal(swigCPtr), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + //changed + internal ActorWheelSignal WheelEventSignal() + { + ActorWheelSignal ret = new ActorWheelSignal(NDalicPINVOKE.Actor_WheelEventSignal(swigCPtr), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + //changed + internal ActorSignal OnStageSignal() + { + ActorSignal ret = new ActorSignal(NDalicPINVOKE.Actor_OnStageSignal(swigCPtr), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + //changed + internal ActorSignal OffStageSignal() + { + ActorSignal ret = new ActorSignal(NDalicPINVOKE.Actor_OffStageSignal(swigCPtr), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + //changed + internal ActorSignal OnRelayoutSignal() + { + ActorSignal ret = new ActorSignal(NDalicPINVOKE.Actor_OnRelayoutSignal(swigCPtr), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public Position ParentOrigin + { + get + { + Position temp = new Position(0.0f, 0.0f, 0.0f); + GetProperty(Actor.Property.PARENT_ORIGIN).Get(temp); + return temp; + } + set + { + SetProperty(Actor.Property.PARENT_ORIGIN, new Tizen.NUI.PropertyValue(value)); + } + } + //removed + //public float ParentOriginX + //public float ParentOriginY + //public float ParentOriginZ + public Position AnchorPoint + { + get + { + Position temp = new Position(0.0f, 0.0f, 0.0f); + GetProperty(Actor.Property.ANCHOR_POINT).Get(temp); + return temp; + } + set + { + SetProperty(Actor.Property.ANCHOR_POINT, new Tizen.NUI.PropertyValue(value)); + } + } + //removed + //public float AnchorPointX + //public float AnchorPointY + //public float AnchorPointZ + public Size Size + { + get + { + Size temp = new Size(0.0f, 0.0f, 0.0f); + GetProperty(Actor.Property.SIZE).Get(temp); + return temp; + } + set + { + SetProperty(Actor.Property.SIZE, new Tizen.NUI.PropertyValue(value)); + } + } + public float SizeWidth + { + get + { + float temp = 0.0f; + GetProperty(Actor.Property.SIZE_WIDTH).Get(ref temp); + return temp; + } + set + { + SetProperty(Actor.Property.SIZE_WIDTH, new Tizen.NUI.PropertyValue(value)); + } + } + public float SizeHeight + { + get + { + float temp = 0.0f; + GetProperty(Actor.Property.SIZE_HEIGHT).Get(ref temp); + return temp; + } + set + { + SetProperty(Actor.Property.SIZE_HEIGHT, new Tizen.NUI.PropertyValue(value)); + } + } + public float SizeDepth + { + get + { + float temp = 0.0f; + GetProperty(Actor.Property.SIZE_DEPTH).Get(ref temp); + return temp; + } + set + { + SetProperty(Actor.Property.SIZE_DEPTH, new Tizen.NUI.PropertyValue(value)); + } + } + public Position Position + { + get + { + Position temp = new Position(0.0f, 0.0f, 0.0f); + GetProperty(Actor.Property.POSITION).Get(temp); + return temp; + } + set + { + SetProperty(Actor.Property.POSITION, new Tizen.NUI.PropertyValue(value)); + } + } + public float PositionX + { + get + { + float temp = 0.0f; + GetProperty(Actor.Property.POSITION_X).Get(ref temp); + return temp; + } + set + { + SetProperty(Actor.Property.POSITION_X, new Tizen.NUI.PropertyValue(value)); + } + } + public float PositionY + { + get + { + float temp = 0.0f; + GetProperty(Actor.Property.POSITION_Y).Get(ref temp); + return temp; + } + set + { + SetProperty(Actor.Property.POSITION_Y, new Tizen.NUI.PropertyValue(value)); + } + } + public float PositionZ + { + get + { + float temp = 0.0f; + GetProperty(Actor.Property.POSITION_Z).Get(ref temp); + return temp; + } + set + { + SetProperty(Actor.Property.POSITION_Z, new Tizen.NUI.PropertyValue(value)); + } + } + public Vector3 WorldPosition + { + get + { + Vector3 temp = new Vector3(0.0f, 0.0f, 0.0f); + GetProperty(Actor.Property.WORLD_POSITION).Get(temp); + return temp; + } + } + + //removed + //public float WorldPositionX + //public float WorldPositionY + //public float WorldPositionZ + + //need to be removed and replaced by "Rotation" high level class + public Quaternion Orientation + { + get + { + Quaternion temp = new Quaternion(); + GetProperty(Actor.Property.ORIENTATION).Get(temp); + return temp; + } + set + { + SetProperty(Actor.Property.ORIENTATION, new Tizen.NUI.PropertyValue(value)); + } + } + public Quaternion WorldOrientation + { + get + { + Quaternion temp = new Quaternion(); + GetProperty(Actor.Property.WORLD_ORIENTATION).Get(temp); + return temp; + } + } + public Vector3 Scale + { + get + { + Vector3 temp = new Vector3(0.0f, 0.0f, 0.0f); + GetProperty(Actor.Property.SCALE).Get(temp); + return temp; + } + set + { + SetProperty(Actor.Property.SCALE, new Tizen.NUI.PropertyValue(value)); + } + } + public float ScaleX + { + get + { + float temp = 0.0f; + GetProperty(Actor.Property.SCALE_X).Get(ref temp); + return temp; + } + set + { + SetProperty(Actor.Property.SCALE_X, new Tizen.NUI.PropertyValue(value)); + } + } + public float ScaleY + { + get + { + float temp = 0.0f; + GetProperty(Actor.Property.SCALE_Y).Get(ref temp); + return temp; + } + set + { + SetProperty(Actor.Property.SCALE_Y, new Tizen.NUI.PropertyValue(value)); + } + } + public float ScaleZ + { + get + { + float temp = 0.0f; + GetProperty(Actor.Property.SCALE_Z).Get(ref temp); + return temp; + } + set + { + SetProperty(Actor.Property.SCALE_Z, new Tizen.NUI.PropertyValue(value)); + } + } + public Vector3 WorldScale + { + get + { + Vector3 temp = new Vector3(0.0f, 0.0f, 0.0f); + GetProperty(Actor.Property.WORLD_SCALE).Get(temp); + return temp; + } + } + public bool Visible + { + get + { + bool temp = false; + GetProperty(Actor.Property.VISIBLE).Get(ref temp); + return temp; + } + set + { + SetProperty(Actor.Property.VISIBLE, new Tizen.NUI.PropertyValue(value)); + } + } + public Color MixColor + { + get + { + Color temp = new Color(0.0f, 0.0f, 0.0f, 0.0f); + GetProperty(Actor.Property.COLOR).Get(temp); + return temp; + } + set + { + SetProperty(Actor.Property.COLOR, new Tizen.NUI.PropertyValue(value)); + } + } + public float ColorRed + { + get + { + float temp = 0.0f; + GetProperty(Actor.Property.COLOR_RED).Get(ref temp); + return temp; + } + set + { + SetProperty(Actor.Property.COLOR_RED, new Tizen.NUI.PropertyValue(value)); + } + } + public float ColorGreen + { + get + { + float temp = 0.0f; + GetProperty(Actor.Property.COLOR_GREEN).Get(ref temp); + return temp; + } + set + { + SetProperty(Actor.Property.COLOR_GREEN, new Tizen.NUI.PropertyValue(value)); + } + } + public float ColorBlue + { + get + { + float temp = 0.0f; + GetProperty(Actor.Property.COLOR_BLUE).Get(ref temp); + return temp; + } + set + { + SetProperty(Actor.Property.COLOR_BLUE, new Tizen.NUI.PropertyValue(value)); + } + } + public float ColorAlpha + { + get + { + float temp = 0.0f; + GetProperty(Actor.Property.COLOR_ALPHA).Get(ref temp); + return temp; + } + set + { + SetProperty(Actor.Property.COLOR_ALPHA, new Tizen.NUI.PropertyValue(value)); + } + } + public Color WorldColor + { + get + { + Color temp = new Color(0.0f, 0.0f, 0.0f, 0.0f); + GetProperty(Actor.Property.WORLD_COLOR).Get(temp); + return temp; + } + } + //removed + //public Matrix WorldMatrix + public string Name + { + get + { + string temp; + GetProperty(Actor.Property.NAME).Get(out temp); + return temp; + } + set + { + SetProperty(Actor.Property.NAME, new Tizen.NUI.PropertyValue(value)); + } + } + public bool Sensitive + { + get + { + bool temp = false; + GetProperty(Actor.Property.SENSITIVE).Get(ref temp); + return temp; + } + set + { + SetProperty(Actor.Property.SENSITIVE, new Tizen.NUI.PropertyValue(value)); + } + } + public bool LeaveRequired + { + get + { + bool temp = false; + GetProperty(Actor.Property.LEAVE_REQUIRED).Get(ref temp); + return temp; + } + set + { + SetProperty(Actor.Property.LEAVE_REQUIRED, new Tizen.NUI.PropertyValue(value)); + } + } + public bool InheritOrientation + { + get + { + bool temp = false; + GetProperty(Actor.Property.INHERIT_ORIENTATION).Get(ref temp); + return temp; + } + set + { + SetProperty(Actor.Property.INHERIT_ORIENTATION, new Tizen.NUI.PropertyValue(value)); + } + } + public bool InheritScale + { + get + { + bool temp = false; + GetProperty(Actor.Property.INHERIT_SCALE).Get(ref temp); + return temp; + } + set + { + SetProperty(Actor.Property.INHERIT_SCALE, new Tizen.NUI.PropertyValue(value)); + } + } + //changed + public ColorMode ColorMode + { + get + { + string temp; + if (GetProperty(Actor.Property.COLOR_MODE).Get(out temp) == false) + { + //Tizen.Log.Error("NUI", "ColorMode get error!"); + } + switch (temp) + { + case "USE_OWN_COLOR": + return ColorMode.UseOwnColor; + case "USE_PARENT_COLOR": + return ColorMode.UseParentColor; + case "USE_OWN_MULTIPLY_PARENT_COLOR": + return ColorMode.UseOwnMultiplyParentColor; + case "USE_OWN_MULTIPLY_PARENT_ALPHA": + return ColorMode.UseOwnMultiplyParentAlpha; + default: + return ColorMode.UseOwnColor; + } + } + set + { + SetProperty(Actor.Property.COLOR_MODE, new Tizen.NUI.PropertyValue((int)value)); + } + } + //removed + //public string PositionInheritance + + //changed + public DrawModeType DrawMode + { + get + { + string temp; + if (GetProperty(Actor.Property.DRAW_MODE).Get(out temp) == false) + { + //Tizen.Log.Error("NUI", "DrawMode get error!"); + } + switch (temp) + { + case "NORMAL": + return DrawModeType.Normal; + case "OVERLAY_2D": + return DrawModeType.Overlay2D; + case "STENCIL": + return DrawModeType.Stencil; + default: + return DrawModeType.Normal; + } + } + set + { + SetProperty(Actor.Property.DRAW_MODE, new Tizen.NUI.PropertyValue((int)value)); + } + } + public Vector3 SizeModeFactor + { + get + { + Vector3 temp = new Vector3(0.0f, 0.0f, 0.0f); + GetProperty(Actor.Property.SIZE_MODE_FACTOR).Get(temp); + return temp; + } + set + { + SetProperty(Actor.Property.SIZE_MODE_FACTOR, new Tizen.NUI.PropertyValue(value)); + } + } + + //changed + public ResizePolicyType WidthResizePolicy + { + get + { + string temp; + if (GetProperty(Actor.Property.WIDTH_RESIZE_POLICY).Get(out temp) == false) + { + //Tizen.Log.Error("NUI", "WidthResizePolicy get error!"); + } + switch (temp) + { + case "FIXED": + return ResizePolicyType.Fixed; + case "USE_NATURAL_SIZE": + return ResizePolicyType.UseNaturalSize; + case "FILL_TO_PARENT": + return ResizePolicyType.FillToParent; + case "SIZE_RELATIVE_TO_PARENT": + return ResizePolicyType.SizeRelativeToParent; + case "SIZE_FIXED_OFFSET_FROM_PARENT": + return ResizePolicyType.SizeFixedOffsetFromParent; + case "FIT_TO_CHILDREN": + return ResizePolicyType.FitToChildren; + case "DIMENSION_DEPENDENCY": + return ResizePolicyType.DimensionDependency; + case "USE_ASSIGNED_SIZE": + return ResizePolicyType.UseAssignedSize; + default: + return ResizePolicyType.Fixed; + } + } + set + { + SetProperty(Actor.Property.WIDTH_RESIZE_POLICY, new Tizen.NUI.PropertyValue((int)value)); + } + } + //changed + public ResizePolicyType HeightResizePolicy + { + get + { + string temp; + if (GetProperty(Actor.Property.HEIGHT_RESIZE_POLICY).Get(out temp) == false) + { + //Tizen.Log.Error("NUI", "HeightResizePolicy get error!"); + } + switch (temp) + { + case "FIXED": + return ResizePolicyType.Fixed; + case "USE_NATURAL_SIZE": + return ResizePolicyType.UseNaturalSize; + case "FILL_TO_PARENT": + return ResizePolicyType.FillToParent; + case "SIZE_RELATIVE_TO_PARENT": + return ResizePolicyType.SizeRelativeToParent; + case "SIZE_FIXED_OFFSET_FROM_PARENT": + return ResizePolicyType.SizeFixedOffsetFromParent; + case "FIT_TO_CHILDREN": + return ResizePolicyType.FitToChildren; + case "DIMENSION_DEPENDENCY": + return ResizePolicyType.DimensionDependency; + case "USE_ASSIGNED_SIZE": + return ResizePolicyType.UseAssignedSize; + default: + return ResizePolicyType.Fixed; + } + } + set + { + SetProperty(Actor.Property.HEIGHT_RESIZE_POLICY, new Tizen.NUI.PropertyValue((int)value)); + } + } + //changed + public SizeScalePolicyType SizeScalePolicy + { + get + { + string temp; + if (GetProperty(Actor.Property.SIZE_SCALE_POLICY).Get(out temp) == false) + { + //Tizen.Log.Error("NUI", "SizeScalePolicy get error!"); + } + switch (temp) + { + case "USE_SIZE_SET": + return SizeScalePolicyType.UseSizeSet; + case "FIT_WITH_ASPECT_RATIO": + return SizeScalePolicyType.FitWithAspectRatio; + case "FILL_WITH_ASPECT_RATIO": + return SizeScalePolicyType.FillWithAspectRatio; + default: + return SizeScalePolicyType.UseSizeSet; + } + } + set + { + SetProperty(Actor.Property.SIZE_SCALE_POLICY, new Tizen.NUI.PropertyValue((int)value)); + } + } + + public bool WidthDependentOnHeight + { + get + { + bool temp = false; + GetProperty(Actor.Property.WIDTH_FOR_HEIGHT).Get(ref temp); + return temp; + } + set + { + SetProperty(Actor.Property.WIDTH_FOR_HEIGHT, new Tizen.NUI.PropertyValue(value)); + } + } + public bool HeightDependentOnWidth + { + get + { + bool temp = false; + GetProperty(Actor.Property.HEIGHT_FOR_WIDTH).Get(ref temp); + return temp; + } + set + { + SetProperty(Actor.Property.HEIGHT_FOR_WIDTH, new Tizen.NUI.PropertyValue(value)); + } + } + public Vector4 Padding + { + get + { + Vector4 temp = new Vector4(0.0f, 0.0f, 0.0f, 0.0f); + GetProperty(Actor.Property.PADDING).Get(temp); + return temp; + } + set + { + SetProperty(Actor.Property.PADDING, new Tizen.NUI.PropertyValue(value)); + } + } + //changed + public Size2D MinimumSize + { + get + { + Size2D temp = new Size2D(0.0f, 0.0f); + GetProperty(Actor.Property.MINIMUM_SIZE).Get(temp); + return temp; + } + set + { + SetProperty(Actor.Property.MINIMUM_SIZE, new Tizen.NUI.PropertyValue(value)); + } + } + //changed + public Size2D MaximumSize + { + get + { + Size2D temp = new Size2D(0.0f, 0.0f); + GetProperty(Actor.Property.MAXIMUM_SIZE).Get(temp); + return temp; + } + set + { + SetProperty(Actor.Property.MAXIMUM_SIZE, new Tizen.NUI.PropertyValue(value)); + } + } + public bool InheritPosition + { + get + { + bool temp = false; + GetProperty(Actor.Property.INHERIT_POSITION).Get(ref temp); + return temp; + } + set + { + SetProperty(Actor.Property.INHERIT_POSITION, new Tizen.NUI.PropertyValue(value)); + } + } + //changed + public ClippingModeType ClippingMode + { + get + { + string temp; + if (GetProperty(Actor.Property.SIZE_SCALE_POLICY).Get(out temp) == false) + { + //Tizen.Log.Error("NUI", "ClippingMode get error!"); + } + switch (temp) + { + case "DISABLED": + return ClippingModeType.Disabled; + case "CLIP_CHILDREN": + return ClippingModeType.ClipChildren; + default: + return ClippingModeType.Disabled; + } + } + set + { + SetProperty(Actor.Property.SIZE_SCALE_POLICY, new Tizen.NUI.PropertyValue((int)value)); + } + } + + } + //changed + public enum ColorMode + { + UseOwnColor, + UseParentColor, + UseOwnMultiplyParentColor, + UseOwnMultiplyParentAlpha + } + + public enum DimensionType + { + Width = 0x1, + Height = 0x2, + AllDimensions = 0x3 + } + + public enum DrawModeType + { + Normal = 0, + Overlay2D = 1, + Stencil = 3 + } + public enum ResizePolicyType + { + Fixed, + UseNaturalSize, + FillToParent, + SizeRelativeToParent, + SizeFixedOffsetFromParent, + FitToChildren, + DimensionDependency, + UseAssignedSize + } + public enum SizeScalePolicyType + { + UseSizeSet, + FitWithAspectRatio, + FillWithAspectRatio + } + public enum ClippingModeType + { + Disabled, + ClipChildren + } } diff --git a/Tizen.NUI/src/public/AlphaFunction.cs b/Tizen.NUI/src/public/AlphaFunction.cs index 2586d8d..9801c4d 100755 --- a/Tizen.NUI/src/public/AlphaFunction.cs +++ b/Tizen.NUI/src/public/AlphaFunction.cs @@ -1,120 +1,166 @@ -//------------------------------------------------------------------------------ -// +// Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved +// PROPRIETARY/CONFIDENTIAL +// This software is the confidential and proprietary +// information of SAMSUNG ELECTRONICS ("Confidential Information"). You shall +// not disclose such Confidential Information and shall use it only in +// accordance with the terms of the license agreement you entered into with +// SAMSUNG ELECTRONICS. SAMSUNG make no representations or warranties about the +// suitability of the software, either express or implied, including but not +// limited to the implied warranties of merchantability, fitness for a +// particular purpose, or non-infringement. SAMSUNG shall not be liable for any +// damages suffered by licensee as a result of using, modifying or distributing +// this software or its derivatives. + +// Copyright (c) 2017 Samsung Electronics Co., Ltd. // -// This file was automatically generated by SWIG (http://www.swig.org). -// Version 3.0.9 +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. // -// Do not make changes to this file unless you know what you are doing--modify -// the SWIG interface file instead. -//------------------------------------------------------------------------------ - -namespace NUI { - -public class AlphaFunction : global::System.IDisposable { - private global::System.Runtime.InteropServices.HandleRef swigCPtr; - protected bool swigCMemOwn; - - internal AlphaFunction(global::System.IntPtr cPtr, bool cMemoryOwn) { - swigCMemOwn = cMemoryOwn; - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); - } - - internal static global::System.Runtime.InteropServices.HandleRef getCPtr(AlphaFunction obj) { - return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; - } - - ~AlphaFunction() { - DisposeQueue.Instance.Add(this); - } - - public virtual void Dispose() { - if (!Stage.IsInstalled()) { - DisposeQueue.Instance.Add(this); - return; - } - lock(this) { - if (swigCPtr.Handle != global::System.IntPtr.Zero) { - if (swigCMemOwn) { - swigCMemOwn = false; - NDalicPINVOKE.delete_AlphaFunction(swigCPtr); - } - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); - } - global::System.GC.SuppressFinalize(this); +// This File has been auto-generated by SWIG and then modified using DALi Ruby Scripts +// Some have been manually changed + +namespace Tizen.NUI +{ + + public class AlphaFunction : global::System.IDisposable + { + private global::System.Runtime.InteropServices.HandleRef swigCPtr; + protected bool swigCMemOwn; + + internal AlphaFunction(global::System.IntPtr cPtr, bool cMemoryOwn) + { + swigCMemOwn = cMemoryOwn; + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); + } + + internal static global::System.Runtime.InteropServices.HandleRef getCPtr(AlphaFunction obj) + { + return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; + } + + ~AlphaFunction() + { + DisposeQueue.Instance.Add(this); + } + + public virtual void Dispose() + { + if (!Stage.IsInstalled()) + { + DisposeQueue.Instance.Add(this); + return; + } + + lock (this) + { + if (swigCPtr.Handle != global::System.IntPtr.Zero) + { + if (swigCMemOwn) + { + swigCMemOwn = false; + NDalicPINVOKE.delete_AlphaFunction(swigCPtr); + } + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); + } + global::System.GC.SuppressFinalize(this); + } + } + + + public AlphaFunction(System.Delegate func) : this(NDalicPINVOKE.new_AlphaFunction__SWIG_2(SWIGTYPE_p_f_float__float.getCPtr(new SWIGTYPE_p_f_float__float(System.Runtime.InteropServices.Marshal.GetFunctionPointerForDelegate(func), true))), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public AlphaFunction() : this(NDalicPINVOKE.new_AlphaFunction__SWIG_0(), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public AlphaFunction(AlphaFunction.BuiltinFunctions function) : this(NDalicPINVOKE.new_AlphaFunction__SWIG_1((int)function), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + //changed + internal AlphaFunction(SWIGTYPE_p_f_float__float function) : this(NDalicPINVOKE.new_AlphaFunction__SWIG_2(SWIGTYPE_p_f_float__float.getCPtr(function)), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public AlphaFunction(Vector2 controlPoint0, Vector2 controlPoint1) : this(NDalicPINVOKE.new_AlphaFunction__SWIG_3(Vector2.getCPtr(controlPoint0), Vector2.getCPtr(controlPoint1)), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + //changed + public void GetBezierControlPoints(out Vector2 controlPoint0, out Vector2 controlPoint1) + { + Vector4 ret = new Vector4(NDalicPINVOKE.AlphaFunction_GetBezierControlPoints(swigCPtr), true); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + + controlPoint0 = new Vector2(ret.X, ret.Y); + controlPoint1 = new Vector2(ret.Z, ret.W); + } + //changed + internal SWIGTYPE_p_f_float__float GetCustomFunction() + { + global::System.IntPtr cPtr = NDalicPINVOKE.AlphaFunction_GetCustomFunction(swigCPtr); + SWIGTYPE_p_f_float__float ret = (cPtr == global::System.IntPtr.Zero) ? null : new SWIGTYPE_p_f_float__float(cPtr, false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + //changed + public AlphaFunction.BuiltinFunctions GetBuiltinFunction() + { + AlphaFunction.BuiltinFunctions ret = (AlphaFunction.BuiltinFunctions)NDalicPINVOKE.AlphaFunction_GetBuiltinFunction(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + //changed + public AlphaFunction.Modes GetMode() + { + AlphaFunction.Modes ret = (AlphaFunction.Modes)NDalicPINVOKE.AlphaFunction_GetMode(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + //changed + public enum BuiltinFunctions + { + Default, + Linear, + Reverse, + EaseInSquare, + EaseOutSquare, + EaseIn, + EaseOut, + EaseInOut, + EaseInSine, + EaseOutSine, + EaseInOutSine, + Bounce, + Sin, + EaseOutBack, + Count + } + + //changed + public enum Modes + { + CustomFunction = 1, + Bezier + } + } - } - - - public AlphaFunction(System.Delegate func) : this(NDalicPINVOKE.new_AlphaFunction__SWIG_2(SWIGTYPE_p_f_float__float.getCPtr(new SWIGTYPE_p_f_float__float(System.Runtime.InteropServices.Marshal.GetFunctionPointerForDelegate(func), true))), true) - { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public AlphaFunction() : this(NDalicPINVOKE.new_AlphaFunction__SWIG_0(), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public AlphaFunction(AlphaFunction.BuiltinFunction function) : this(NDalicPINVOKE.new_AlphaFunction__SWIG_1((int)function), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - internal AlphaFunction(SWIGTYPE_p_f_float__float function) : this(NDalicPINVOKE.new_AlphaFunction__SWIG_2(SWIGTYPE_p_f_float__float.getCPtr(function)), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public AlphaFunction(Vector2 controlPoint0, Vector2 controlPoint1) : this(NDalicPINVOKE.new_AlphaFunction__SWIG_3(Vector2.getCPtr(controlPoint0), Vector2.getCPtr(controlPoint1)), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public Vector4 GetBezierControlPoints() { - Vector4 ret = new Vector4(NDalicPINVOKE.AlphaFunction_GetBezierControlPoints(swigCPtr), true); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - internal SWIGTYPE_p_f_float__float GetCustomFunction() { - global::System.IntPtr cPtr = NDalicPINVOKE.AlphaFunction_GetCustomFunction(swigCPtr); - SWIGTYPE_p_f_float__float ret = (cPtr == global::System.IntPtr.Zero) ? null : new SWIGTYPE_p_f_float__float(cPtr, false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public AlphaFunction.BuiltinFunction GetBuiltinFunction() { - AlphaFunction.BuiltinFunction ret = (AlphaFunction.BuiltinFunction)NDalicPINVOKE.AlphaFunction_GetBuiltinFunction(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public AlphaFunction.Mode GetMode() { - AlphaFunction.Mode ret = (AlphaFunction.Mode)NDalicPINVOKE.AlphaFunction_GetMode(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public enum BuiltinFunction { - Default, - Linear, - Reverse, - EaseInSquare, - EaseOutSquare, - EaseIn, - EaseOut, - EaseInOut, - EaseInSine, - EaseOutSine, - EaseInOutSine, - Bounce, - Sin, - EaseOutBack, - Count - } - - public enum Mode { - CustomFunction = 1, - Bezier - } - -} } diff --git a/Tizen.NUI/src/public/Animation.cs b/Tizen.NUI/src/public/Animation.cs index 0804f7e..ff31f42 100755 --- a/Tizen.NUI/src/public/Animation.cs +++ b/Tizen.NUI/src/public/Animation.cs @@ -1,793 +1,1149 @@ -/** Copyright (c) 2017 Samsung Electronics Co., Ltd. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ -// This File has been auto-generated by SWIG and then modified using DALi Ruby Scripts -//------------------------------------------------------------------------------ -// +// Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved +// PROPRIETARY/CONFIDENTIAL +// This software is the confidential and proprietary +// information of SAMSUNG ELECTRONICS ("Confidential Information"). You shall +// not disclose such Confidential Information and shall use it only in +// accordance with the terms of the license agreement you entered into with +// SAMSUNG ELECTRONICS. SAMSUNG make no representations or warranties about the +// suitability of the software, either express or implied, including but not +// limited to the implied warranties of merchantability, fitness for a +// particular purpose, or non-infringement. SAMSUNG shall not be liable for any +// damages suffered by licensee as a result of using, modifying or distributing +// this software or its derivatives. + +// Copyright (c) 2017 Samsung Electronics Co., Ltd. // -// This file was automatically generated by SWIG (http://www.swig.org). -// Version 3.0.9 +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. // -// Do not make changes to this file unless you know what you are doing--modify -// the SWIG interface file instead. -//------------------------------------------------------------------------------ - -namespace NUI { - -using System; -using System.Runtime.InteropServices; - -public class Animation : BaseHandle { - private global::System.Runtime.InteropServices.HandleRef swigCPtr; - - internal Animation(global::System.IntPtr cPtr, bool cMemoryOwn) : base(NDalicPINVOKE.Animation_SWIGUpcast(cPtr), cMemoryOwn) { - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); - } - - internal static global::System.Runtime.InteropServices.HandleRef getCPtr(Animation obj) { - return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; - } - - ~Animation() { - DisposeQueue.Instance.Add(this); - } - - public override void Dispose() { - if (!Stage.IsInstalled()) { - DisposeQueue.Instance.Add(this); - return; - } - - lock(this) { - if (swigCPtr.Handle != global::System.IntPtr.Zero) { - if (swigCMemOwn) { - swigCMemOwn = false; - NDalicPINVOKE.delete_Animation(swigCPtr); - } - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); - } - global::System.GC.SuppressFinalize(this); - base.Dispose(); - } - } - - - - private event EventHandler _animationFinishedEventHandler; - [UnmanagedFunctionPointer(CallingConvention.StdCall)] - private delegate void AnimationFinishedEventCallbackType(IntPtr data); - private AnimationFinishedEventCallbackType _animationFinishedEventCallback; - - /** - * @brief Event for Finished signal which can be used to subscribe/unsubscribe the event handler - * Finished signal is emitted when an Animation's animations have finished. - */ - public event EventHandler Finished - { - add - { - if (_animationFinishedEventHandler == null) - { - _animationFinishedEventCallback = OnFinished; - this.FinishedSignal().Connect(_animationFinishedEventCallback); - } - - _animationFinishedEventHandler += value; - } - remove - { - if (_animationFinishedEventHandler != null) - { - this.FinishedSignal().Disconnect(_animationFinishedEventCallback); - } - - _animationFinishedEventHandler -= value; - } - } - - // Callback for Animation FinishedSignal - private void OnFinished(IntPtr data) - { - if (_animationFinishedEventHandler != null) - { - //here we send all data to user event handlers - _animationFinishedEventHandler(this, null); - } - } - - internal static Animation GetAnimationFromPtr(global::System.IntPtr cPtr) { - Animation ret = new Animation(cPtr, false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - private float MilliSecondsToSeconds( int millisec ) - { - return (float)millisec / 1000.0f; - } - - private int SecondsToMilliSeconds( float sec ) - { - return (int)( sec * 1000 ); - } - - public int Duration - { - set - { - SetDuration( MilliSecondsToSeconds( value ) ); - } - get - { - return SecondsToMilliSeconds( GetDuration() ); - } - } - - public AlphaFunction DefaultAlphaFunction - { - set - { - SetDefaultAlphaFunction(value); - } - get - { - AlphaFunction ret = GetDefaultAlphaFunction(); - return ret; - } - } - - public Animation.State Status - { - get - { - return GetState(); - } - } - - public int LoopCount - { - set - { - SetLoopCount(value); - } - get - { - int ret = GetLoopCount(); - return ret; - } - } - - public bool Looping - { - set - { - SetLooping(value); - } - get - { - bool ret = IsLooping(); - return ret; - } - } - - public Animation.EndActions EndAction - { - set - { - SetEndAction(value); - } - get - { - return GetEndAction(); - } - } - - public void Stop(Animation.EndActions action) - { - SetEndAction(action); - NDalicPINVOKE.Animation_Stop(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public int StartTime { set; get; } - public int EndTime { set; get; } - public string TargetProperty { set; get; } - public object Destination { set; get; } - public NUI.AlphaFunction AlphaFunction { set; get; } - - - public void AnimateBy(Actor target) - { - string _str1 = TargetProperty.Substring(0, 1); - string _str2 = TargetProperty.Substring(1); - string _str = _str1.ToLower() + _str2; - - dynamic obj = (object)Destination; - - if( this.AlphaFunction != null ) - { - if( this.StartTime == 0 && this.EndTime == 0 ) - { - AnimateBy(new Property(target, _str), new Property.Value(obj), this.AlphaFunction ); - } - else - { - NUI.TimePeriod time = new NUI.TimePeriod( MilliSecondsToSeconds( this.StartTime ), MilliSecondsToSeconds( this.EndTime - this.StartTime ) ); - AnimateBy(new Property(target, _str), new Property.Value(obj), this.AlphaFunction, time ); - } - } - else - { - if( this.StartTime == 0 && this.EndTime == 0 ) - { - AnimateBy(new Property(target, _str), new Property.Value(obj) ); - } - else - { - NUI.TimePeriod time = new NUI.TimePeriod( MilliSecondsToSeconds( this.StartTime ), MilliSecondsToSeconds( this.EndTime - this.StartTime ) ); - AnimateBy(new Property(target, _str), new Property.Value(obj), time ); - } - } - } - - public void AnimateBy(Actor target, string propertyIndex) - { - string _str1 = propertyIndex.Substring(0, 1); - string _str2 = propertyIndex.Substring(1); - string _str = _str1.ToLower() + _str2; - - dynamic obj = (object)Destination; - - if( this.AlphaFunction != null ) - { - if( this.StartTime == 0 && this.EndTime == 0 ) - { - AnimateBy(new Property(target, _str), new Property.Value(obj), this.AlphaFunction ); - } - else - { - NUI.TimePeriod time = new NUI.TimePeriod( MilliSecondsToSeconds( this.StartTime ), MilliSecondsToSeconds( this.EndTime - this.StartTime ) ); - AnimateBy(new Property(target, _str), new Property.Value(obj), this.AlphaFunction, time ); - } - } - else - { - if( this.StartTime == 0 && this.EndTime == 0 ) - { - AnimateBy(new Property(target, _str), new Property.Value(obj) ); - } - else - { - NUI.TimePeriod time = new NUI.TimePeriod( MilliSecondsToSeconds( this.StartTime ), MilliSecondsToSeconds( this.EndTime - this.StartTime ) ); - AnimateBy(new Property(target, _str), new Property.Value(obj), time ); - } - } - } - - public void AnimateBy(Actor target, string propertyIndex, object relativeValue) - { - string _str1 = propertyIndex.Substring(0, 1); - string _str2 = propertyIndex.Substring(1); - string _str = _str1.ToLower() + _str2; - - dynamic obj = (object)relativeValue; - - if( this.AlphaFunction != null ) - { - if( this.StartTime == 0 && this.EndTime == 0 ) - { - AnimateBy(new Property(target, _str), new Property.Value(obj), this.AlphaFunction ); - } - else - { - NUI.TimePeriod time = new NUI.TimePeriod( MilliSecondsToSeconds( this.StartTime ), MilliSecondsToSeconds( this.EndTime - this.StartTime ) ); - AnimateBy(new Property(target, _str), new Property.Value(obj), this.AlphaFunction, time ); - } - } - else - { - if( this.StartTime == 0 && this.EndTime == 0 ) - { - AnimateBy(new Property(target, _str), new Property.Value(obj) ); - } - else - { - NUI.TimePeriod time = new NUI.TimePeriod( MilliSecondsToSeconds( this.StartTime ), MilliSecondsToSeconds( this.EndTime - this.StartTime ) ); - AnimateBy(new Property(target, _str), new Property.Value(obj), time ); - } - } - } - - public void AnimateTo(Actor target) - { - string _str1 = TargetProperty.Substring(0, 1); - string _str2 = TargetProperty.Substring(1); - string _str = _str1.ToLower() + _str2; - - dynamic obj = (object)Destination; - - if( this.AlphaFunction != null ) - { - if( this.StartTime == 0 && this.EndTime == 0 ) - { - AnimateTo(new Property(target, _str), new Property.Value(obj), this.AlphaFunction ); - } - else - { - NUI.TimePeriod time = new NUI.TimePeriod( MilliSecondsToSeconds( this.StartTime ), MilliSecondsToSeconds( this.EndTime - this.StartTime ) ); - AnimateTo(new Property(target, _str), new Property.Value(obj), this.AlphaFunction, time ); - } - } - else - { - if( this.StartTime == 0 && this.EndTime == 0 ) - { - AnimateTo(new Property(target, _str), new Property.Value(obj) ); - } - else - { - NUI.TimePeriod time = new NUI.TimePeriod( MilliSecondsToSeconds( this.StartTime ), MilliSecondsToSeconds( this.EndTime - this.StartTime ) ); - AnimateTo(new Property(target, _str), new Property.Value(obj), time ); - } - } - } - - public void AnimateTo(Actor target, string propertyIndex) - { - string _str1 = propertyIndex.Substring(0, 1); - string _str2 = propertyIndex.Substring(1); - string _str = _str1.ToLower() + _str2; - - dynamic obj = (object)Destination; - - if( this.AlphaFunction != null ) - { - if( this.StartTime == 0 && this.EndTime == 0 ) - { - AnimateTo(new Property(target, _str), new Property.Value(obj), this.AlphaFunction ); - } - else - { - NUI.TimePeriod time = new NUI.TimePeriod( MilliSecondsToSeconds( this.StartTime ), MilliSecondsToSeconds( this.EndTime - this.StartTime ) ); - AnimateTo(new Property(target, _str), new Property.Value(obj), this.AlphaFunction, time ); - } - } - else - { - if( this.StartTime == 0 && this.EndTime == 0 ) - { - AnimateTo(new Property(target, _str), new Property.Value(obj) ); - } - else - { - NUI.TimePeriod time = new NUI.TimePeriod( MilliSecondsToSeconds( this.StartTime ), MilliSecondsToSeconds( this.EndTime - this.StartTime ) ); - AnimateTo(new Property(target, _str), new Property.Value(obj), time ); - } - } - } - - public void AnimateTo(Actor target, string propertyIndex, object destinationValue) - { - string _str1 = propertyIndex.Substring(0, 1); - string _str2 = propertyIndex.Substring(1); - string _str = _str1.ToLower() + _str2; - - dynamic obj = (object)destinationValue; - - if( this.AlphaFunction != null ) - { - if( this.StartTime == 0 && this.EndTime == 0 ) - { - AnimateTo(new Property(target, _str), new Property.Value(obj), this.AlphaFunction ); - } - else - { - NUI.TimePeriod time = new NUI.TimePeriod( MilliSecondsToSeconds( this.StartTime ), MilliSecondsToSeconds( this.EndTime - this.StartTime ) ); - AnimateTo(new Property(target, _str), new Property.Value(obj), this.AlphaFunction, time ); - } - } - else - { - if( this.StartTime == 0 && this.EndTime == 0 ) - { - AnimateTo(new Property(target, _str), new Property.Value(obj) ); - } - else - { - NUI.TimePeriod time = new NUI.TimePeriod( MilliSecondsToSeconds( this.StartTime ), MilliSecondsToSeconds( this.EndTime - this.StartTime ) ); - AnimateTo(new Property(target, _str), new Property.Value(obj), time ); - } - } - } - - public void AnimateBetween(Actor target, KeyFrames keyFrames) - { - string _str1 = TargetProperty.Substring(0, 1); - string _str2 = TargetProperty.Substring(1); - string _str = _str1.ToLower() + _str2; - - - if( this.AlphaFunction != null ) - { - if( this.StartTime == 0 && this.EndTime == 0 ) - { - AnimateBetween(new Property(target, _str), keyFrames, this.AlphaFunction); - } - else - { - NUI.TimePeriod time = new NUI.TimePeriod( MilliSecondsToSeconds( this.StartTime ), MilliSecondsToSeconds( this.EndTime - this.StartTime ) ); - AnimateBetween(new Property(target, _str), keyFrames, this.AlphaFunction, time); - } - } - else - { - if( this.StartTime == 0 && this.EndTime == 0 ) - { - AnimateBetween(new Property(target, _str), keyFrames); - } - else - { - NUI.TimePeriod time = new NUI.TimePeriod( MilliSecondsToSeconds( this.StartTime ), MilliSecondsToSeconds( this.EndTime - this.StartTime ) ); - AnimateBetween(new Property(target, _str), keyFrames, time); - } - } - } - - public void AnimateBetween(Actor target, KeyFrames keyFrames, Animation.Interpolation interpolation) - { - string _str1 = TargetProperty.Substring(0, 1); - string _str2 = TargetProperty.Substring(1); - string _str = _str1.ToLower() + _str2; - - if( this.AlphaFunction != null ) - { - if( this.StartTime == 0 && this.EndTime == 0 ) - { - AnimateBetween(new Property(target, _str), keyFrames, this.AlphaFunction, interpolation); - } - else - { - NUI.TimePeriod time = new NUI.TimePeriod( MilliSecondsToSeconds( this.StartTime ), MilliSecondsToSeconds( this.EndTime - this.StartTime ) ); - AnimateBetween(new Property(target, _str), keyFrames, this.AlphaFunction, time, interpolation); - } - } - else - { - if( this.StartTime == 0 && this.EndTime == 0 ) - { - AnimateBetween(new Property(target, _str), keyFrames, interpolation); - } - else - { - NUI.TimePeriod time = new NUI.TimePeriod( MilliSecondsToSeconds( this.StartTime ), MilliSecondsToSeconds( this.EndTime - this.StartTime ) ); - AnimateBetween(new Property(target, _str), keyFrames, time, interpolation); - } +// This File has been auto-generated by SWIG and then modified using DALi Ruby Scripts +// Some have been manually changed + +namespace Tizen.NUI +{ + + using System; + using System.Runtime.InteropServices; + + public class Animation : BaseHandle + { + private global::System.Runtime.InteropServices.HandleRef swigCPtr; + + internal Animation(global::System.IntPtr cPtr, bool cMemoryOwn) : base(NDalicPINVOKE.Animation_SWIGUpcast(cPtr), cMemoryOwn) + { + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); + } + + internal static global::System.Runtime.InteropServices.HandleRef getCPtr(Animation obj) + { + return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; + } + + ~Animation() + { + DisposeQueue.Instance.Add(this); + } + + public override void Dispose() + { + if (!Stage.IsInstalled()) + { + DisposeQueue.Instance.Add(this); + return; + } + + lock (this) + { + if (swigCPtr.Handle != global::System.IntPtr.Zero) + { + if (swigCMemOwn) + { + swigCMemOwn = false; + NDalicPINVOKE.delete_Animation(swigCPtr); + } + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); + } + global::System.GC.SuppressFinalize(this); + base.Dispose(); + } + } + + //changed + /* + private EventCallbackDelegateType1 _animationFinishedEventCallbackDelegate; + private event EventHandler _animationFinishedEventHandler; + + public event EventHandler Finished + { + add + { + lock (this) + { + _animationFinishedEventHandler += value; + _animationFinishedEventCallbackDelegate = OnFinished; + this.FinishedSignal().Connect(_animationFinishedEventCallbackDelegate); + } + } + remove + { + lock (this) + { + if (_animationFinishedEventHandler != null) + { + this.FinishedSignal().Disconnect(_animationFinishedEventCallbackDelegate); + } + _animationFinishedEventHandler -= value; + } + } + } + + // Callback for Animation FinishedSignal + private void OnFinished(IntPtr data) + { + if (_animationFinishedEventHandler != null) + { + //here we send all data to user event handlers + _animationFinishedEventHandler(this, null); + } + } + */ + + private AnimationFinishedEventCallbackType _animationFinishedEventCallback; + [UnmanagedFunctionPointer(CallingConvention.StdCall)] + private delegate void AnimationFinishedEventCallbackType(IntPtr data); + private event EventHandler _animationFinishedEventHandler; + + /** + * @brief Create an initialized Animation. + * + * The animation will not loop. + * The default end action is "Bake". + * The default Alpha function is linear. + * @since 1.0.0 + * @param [in] durationmSeconds The duration in milli seconds (int). + * @return A handle to a newly allocated Dali resource. + * @pre DurationmSeconds must be greater than zero. + */ + public Animation(int durationMilliSeconds) : this(NDalicPINVOKE.Animation_New((float)durationMilliSeconds / 1000.0f), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + /** + * @brief Event for Finished signal which can be used to subscribe/unsubscribe the event handler + * Finished signal is emitted when an Animation's animations have finished. + */ + public event EventHandler Finished + { + add + { + if (_animationFinishedEventHandler == null) + { + _animationFinishedEventCallback = OnFinished; + FinishedSignal().Connect(_animationFinishedEventCallback); + } + + _animationFinishedEventHandler += value; + } + remove + { + if (_animationFinishedEventHandler != null) + { + FinishedSignal().Disconnect(_animationFinishedEventCallback); + } + + _animationFinishedEventHandler -= value; + } + } + private void OnFinished(IntPtr data) + { + if (_animationFinishedEventHandler != null) + { + //here we send all data to user event handlers + _animationFinishedEventHandler(this, null); + } + } + + + public static Animation GetAnimationFromPtr(global::System.IntPtr cPtr) + { + Animation ret = new Animation(cPtr, false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + private float MilliSecondsToSeconds(int millisec) + { + return (float)millisec / 1000.0f; + } + + private int SecondsToMilliSeconds(float sec) + { + return (int)(sec * 1000); + } + + public int Duration + { + set + { + SetDuration(MilliSecondsToSeconds(value)); + } + get + { + return SecondsToMilliSeconds(GetDuration()); + } + } + + public AlphaFunction DefaultAlphaFunction + { + set + { + SetDefaultAlphaFunction(value); + } + get + { + AlphaFunction ret = GetDefaultAlphaFunction(); + return ret; + } + } + //changed + public States State + { + get + { + return GetState(); + } + } + + public int LoopCount + { + set + { + SetLoopCount(value); + } + get + { + int ret = GetLoopCount(); + return ret; + } + } + + public bool Looping + { + set + { + SetLooping(value); + } + get + { + bool ret = IsLooping(); + return ret; + } + } + + public EndActions EndAction + { + set + { + SetEndAction(value); + } + get + { + return GetEndAction(); + } + } + //changed + public void Stop(EndActions action = EndActions.Cancel) + { + SetEndAction(action); + NDalicPINVOKE.Animation_Stop(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + //changed + public int CurrentLoop + { + get + { + return GetCurrentLoop(); + } + } + //changed + public EndActions DisconnectAction + { + set + { + NDalicPINVOKE.Animation_SetDisconnectAction(swigCPtr, (int)value); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + get + { + Animation.EndActions ret = (Animation.EndActions)NDalicPINVOKE.Animation_GetDisconnectAction(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + } + //changed + public float CurrentProgress + { + set + { + NDalicPINVOKE.Animation_SetCurrentProgress(swigCPtr, value); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + get + { + float ret = NDalicPINVOKE.Animation_GetCurrentProgress(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + } + //changed + public float SpeedFactor + { + set + { + NDalicPINVOKE.Animation_SetSpeedFactor(swigCPtr, value); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + get + { + float ret = NDalicPINVOKE.Animation_GetSpeedFactor(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + } + //changed + public Vector2 PlayRange + { + set + { + NDalicPINVOKE.Animation_SetPlayRange(swigCPtr, Vector2.getCPtr(value)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + get + { + Vector2 ret = new Vector2(NDalicPINVOKE.Animation_GetPlayRange(swigCPtr), true); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + } + + //changed + /* + public int StartTime { set; get; } + public int EndTime { set; get; } + public string TargetProperty { set; get; } + public object Destination { set; get; } + public Tizen.NUI.AlphaFunction AlphaFunction { set; get; } + + + public void AnimateBy(Actor target) + { + string _str1 = TargetProperty.Substring(0, 1); + string _str2 = TargetProperty.Substring(1); + string _str = _str1.ToLower() + _str2; + + dynamic obj = (object)Destination; + + if (this.AlphaFunction != null) + { + if (this.StartTime == 0 && this.EndTime == 0) + { + AnimateBy(new Property(target, _str), new PropertyValue(obj), this.AlphaFunction); + } + else + { + Tizen.NUI.TimePeriod time = new Tizen.NUI.TimePeriod(MilliSecondsToSeconds(this.StartTime), MilliSecondsToSeconds(this.EndTime - this.StartTime)); + AnimateBy(new Property(target, _str), new PropertyValue(obj), this.AlphaFunction, time); + } + } + else + { + if (this.StartTime == 0 && this.EndTime == 0) + { + AnimateBy(new Property(target, _str), new PropertyValue(obj)); + } + else + { + Tizen.NUI.TimePeriod time = new Tizen.NUI.TimePeriod(MilliSecondsToSeconds(this.StartTime), MilliSecondsToSeconds(this.EndTime - this.StartTime)); + AnimateBy(new Property(target, _str), new PropertyValue(obj), time); + } + } + } + + public void AnimateBy(Actor target, string propertyIndex) + { + string _str1 = propertyIndex.Substring(0, 1); + string _str2 = propertyIndex.Substring(1); + string _str = _str1.ToLower() + _str2; + + dynamic obj = (object)Destination; + + if (this.AlphaFunction != null) + { + if (this.StartTime == 0 && this.EndTime == 0) + { + AnimateBy(new Property(target, _str), new PropertyValue(obj), this.AlphaFunction); + } + else + { + Tizen.NUI.TimePeriod time = new Tizen.NUI.TimePeriod(MilliSecondsToSeconds(this.StartTime), MilliSecondsToSeconds(this.EndTime - this.StartTime)); + AnimateBy(new Property(target, _str), new PropertyValue(obj), this.AlphaFunction, time); + } + } + else + { + if (this.StartTime == 0 && this.EndTime == 0) + { + AnimateBy(new Property(target, _str), new PropertyValue(obj)); + } + else + { + Tizen.NUI.TimePeriod time = new Tizen.NUI.TimePeriod(MilliSecondsToSeconds(this.StartTime), MilliSecondsToSeconds(this.EndTime - this.StartTime)); + AnimateBy(new Property(target, _str), new PropertyValue(obj), time); + } + } + } + + public void AnimateBy(Actor target, string propertyIndex, object relativeValue) + { + string _str1 = propertyIndex.Substring(0, 1); + string _str2 = propertyIndex.Substring(1); + string _str = _str1.ToLower() + _str2; + + dynamic obj = (object)relativeValue; + + if (this.AlphaFunction != null) + { + if (this.StartTime == 0 && this.EndTime == 0) + { + AnimateBy(new Property(target, _str), new PropertyValue(obj), this.AlphaFunction); + } + else + { + Tizen.NUI.TimePeriod time = new Tizen.NUI.TimePeriod(MilliSecondsToSeconds(this.StartTime), MilliSecondsToSeconds(this.EndTime - this.StartTime)); + AnimateBy(new Property(target, _str), new PropertyValue(obj), this.AlphaFunction, time); + } + } + else + { + if (this.StartTime == 0 && this.EndTime == 0) + { + AnimateBy(new Property(target, _str), new PropertyValue(obj)); + } + else + { + Tizen.NUI.TimePeriod time = new Tizen.NUI.TimePeriod(MilliSecondsToSeconds(this.StartTime), MilliSecondsToSeconds(this.EndTime - this.StartTime)); + AnimateBy(new Property(target, _str), new PropertyValue(obj), time); + } + } + } + + public void AnimateTo(Actor target) + { + string _str1 = TargetProperty.Substring(0, 1); + string _str2 = TargetProperty.Substring(1); + string _str = _str1.ToLower() + _str2; + + dynamic obj = (object)Destination; + + if (this.AlphaFunction != null) + { + if (this.StartTime == 0 && this.EndTime == 0) + { + AnimateTo(new Property(target, _str), new PropertyValue(obj), this.AlphaFunction); + } + else + { + Tizen.NUI.TimePeriod time = new Tizen.NUI.TimePeriod(MilliSecondsToSeconds(this.StartTime), MilliSecondsToSeconds(this.EndTime - this.StartTime)); + AnimateTo(new Property(target, _str), new PropertyValue(obj), this.AlphaFunction, time); + } + } + else + { + if (this.StartTime == 0 && this.EndTime == 0) + { + AnimateTo(new Property(target, _str), new PropertyValue(obj)); + } + else + { + Tizen.NUI.TimePeriod time = new Tizen.NUI.TimePeriod(MilliSecondsToSeconds(this.StartTime), MilliSecondsToSeconds(this.EndTime - this.StartTime)); + AnimateTo(new Property(target, _str), new PropertyValue(obj), time); + } + } + } + + public void AnimateTo(Actor target, string propertyIndex) + { + string _str1 = propertyIndex.Substring(0, 1); + string _str2 = propertyIndex.Substring(1); + string _str = _str1.ToLower() + _str2; + + dynamic obj = (object)Destination; + + if (this.AlphaFunction != null) + { + if (this.StartTime == 0 && this.EndTime == 0) + { + AnimateTo(new Property(target, _str), new PropertyValue(obj), this.AlphaFunction); + } + else + { + Tizen.NUI.TimePeriod time = new Tizen.NUI.TimePeriod(MilliSecondsToSeconds(this.StartTime), MilliSecondsToSeconds(this.EndTime - this.StartTime)); + AnimateTo(new Property(target, _str), new PropertyValue(obj), this.AlphaFunction, time); + } + } + else + { + if (this.StartTime == 0 && this.EndTime == 0) + { + AnimateTo(new Property(target, _str), new PropertyValue(obj)); + } + else + { + Tizen.NUI.TimePeriod time = new Tizen.NUI.TimePeriod(MilliSecondsToSeconds(this.StartTime), MilliSecondsToSeconds(this.EndTime - this.StartTime)); + AnimateTo(new Property(target, _str), new PropertyValue(obj), time); + } + } + } + + public void AnimateTo(Actor target, string propertyIndex, object destinationValue) + { + string _str1 = propertyIndex.Substring(0, 1); + string _str2 = propertyIndex.Substring(1); + string _str = _str1.ToLower() + _str2; + + dynamic obj = (object)destinationValue; + + if (this.AlphaFunction != null) + { + if (this.StartTime == 0 && this.EndTime == 0) + { + AnimateTo(new Property(target, _str), new PropertyValue(obj), this.AlphaFunction); + } + else + { + Tizen.NUI.TimePeriod time = new Tizen.NUI.TimePeriod(MilliSecondsToSeconds(this.StartTime), MilliSecondsToSeconds(this.EndTime - this.StartTime)); + AnimateTo(new Property(target, _str), new PropertyValue(obj), this.AlphaFunction, time); + } + } + else + { + if (this.StartTime == 0 && this.EndTime == 0) + { + AnimateTo(new Property(target, _str), new PropertyValue(obj)); + } + else + { + Tizen.NUI.TimePeriod time = new Tizen.NUI.TimePeriod(MilliSecondsToSeconds(this.StartTime), MilliSecondsToSeconds(this.EndTime - this.StartTime)); + AnimateTo(new Property(target, _str), new PropertyValue(obj), time); + } + } + } + + public void AnimateBetween(Actor target, KeyFrames keyFrames) + { + string _str1 = TargetProperty.Substring(0, 1); + string _str2 = TargetProperty.Substring(1); + string _str = _str1.ToLower() + _str2; + + + if (this.AlphaFunction != null) + { + if (this.StartTime == 0 && this.EndTime == 0) + { + AnimateBetween(new Property(target, _str), keyFrames, this.AlphaFunction); + } + else + { + Tizen.NUI.TimePeriod time = new Tizen.NUI.TimePeriod(MilliSecondsToSeconds(this.StartTime), MilliSecondsToSeconds(this.EndTime - this.StartTime)); + AnimateBetween(new Property(target, _str), keyFrames, this.AlphaFunction, time); + } + } + else + { + if (this.StartTime == 0 && this.EndTime == 0) + { + AnimateBetween(new Property(target, _str), keyFrames); + } + else + { + Tizen.NUI.TimePeriod time = new Tizen.NUI.TimePeriod(MilliSecondsToSeconds(this.StartTime), MilliSecondsToSeconds(this.EndTime - this.StartTime)); + AnimateBetween(new Property(target, _str), keyFrames, time); + } + } + } + + public void AnimateBetween(Actor target, KeyFrames keyFrames, Animation.Interpolation interpolation) + { + string _str1 = TargetProperty.Substring(0, 1); + string _str2 = TargetProperty.Substring(1); + string _str = _str1.ToLower() + _str2; + + + if (this.AlphaFunction != null) + { + if (this.StartTime == 0 && this.EndTime == 0) + { + AnimateBetween(new Property(target, _str), keyFrames, this.AlphaFunction, interpolation); + } + else + { + Tizen.NUI.TimePeriod time = new Tizen.NUI.TimePeriod(MilliSecondsToSeconds(this.StartTime), MilliSecondsToSeconds(this.EndTime - this.StartTime)); + AnimateBetween(new Property(target, _str), keyFrames, this.AlphaFunction, time, interpolation); + } + } + else + { + if (this.StartTime == 0 && this.EndTime == 0) + { + AnimateBetween(new Property(target, _str), keyFrames, interpolation); + } + else + { + Tizen.NUI.TimePeriod time = new Tizen.NUI.TimePeriod(MilliSecondsToSeconds(this.StartTime), MilliSecondsToSeconds(this.EndTime - this.StartTime)); + AnimateBetween(new Property(target, _str), keyFrames, time, interpolation); + } + } + } + */ + //changed + public void AnimateBy(Actor target, string property, object relativeValue, AlphaFunction alphaFunction = null) + { + string _str1 = property.Substring(0, 1); + string _str2 = property.Substring(1); + string _str = _str1.ToLower() + _str2; + + Property _prop = new Property(target, _str); + if (_prop.propertyIndex == Property.INVALID_INDEX) + { + throw new System.Exception("second argument string property is invalid parameter!"); + } + + dynamic obj = (object)relativeValue; + + if (alphaFunction != null) + { + AnimateBy(_prop, new PropertyValue(obj), alphaFunction); + } + else + { + AnimateBy(_prop, new PropertyValue(obj)); + } + } + //changed + public void AnimateBy(Actor target, string property, object relativeValue, int startTime, int endTime, AlphaFunction alphaFunction = null) + { + string _str1 = property.Substring(0, 1); + string _str2 = property.Substring(1); + string _str = _str1.ToLower() + _str2; + + Property _prop = new Property(target, _str); + if (_prop.propertyIndex == Property.INVALID_INDEX) + { + throw new System.Exception("second argument string property is invalid parameter!"); + } + + dynamic obj = (object)relativeValue; + + if (alphaFunction != null) + { + Tizen.NUI.TimePeriod time = new Tizen.NUI.TimePeriod(MilliSecondsToSeconds(startTime), MilliSecondsToSeconds(endTime - startTime)); + AnimateBy(_prop, new PropertyValue(obj), alphaFunction, time); + } + else + { + Tizen.NUI.TimePeriod time = new Tizen.NUI.TimePeriod(MilliSecondsToSeconds(startTime), MilliSecondsToSeconds(endTime - startTime)); + AnimateBy(_prop, new PropertyValue(obj), time); + } + } + //changed + public void AnimateTo(Actor target, string property, object destinationValue, AlphaFunction alphaFunction = null) + { + string _str1 = property.Substring(0, 1); + string _str2 = property.Substring(1); + string _str = _str1.ToLower() + _str2; + + Property _prop = new Property(target, _str); + if (_prop.propertyIndex == Property.INVALID_INDEX) + { + throw new System.Exception("second argument string property is invalid parameter!"); + } + + dynamic obj = (object)destinationValue; + + if (alphaFunction != null) + { + AnimateTo(_prop, new PropertyValue(obj), alphaFunction); + } + else + { + AnimateTo(_prop, new PropertyValue(obj)); + } + } + //changed + public void AnimateTo(Actor target, string property, object destinationValue, int startTime, int endTime, AlphaFunction alphaFunction = null) + { + string _str1 = property.Substring(0, 1); + string _str2 = property.Substring(1); + string _str = _str1.ToLower() + _str2; + + Property _prop = new Property(target, _str); + if (_prop.propertyIndex == Property.INVALID_INDEX) + { + throw new System.Exception("second argument string property is invalid parameter!"); + } + + dynamic obj = (object)destinationValue; + + if (alphaFunction != null) + { + Tizen.NUI.TimePeriod time = new Tizen.NUI.TimePeriod(MilliSecondsToSeconds(startTime), MilliSecondsToSeconds(endTime - startTime)); + AnimateTo(_prop, new PropertyValue(obj), alphaFunction, time); + } + else + { + Tizen.NUI.TimePeriod time = new Tizen.NUI.TimePeriod(MilliSecondsToSeconds(startTime), MilliSecondsToSeconds(endTime - startTime)); + AnimateTo(_prop, new PropertyValue(obj), time); + } + } + //changed + public void AnimateBetween(Actor target, string property, KeyFrames keyFrames, AlphaFunction alphaFunction = null) + { + string _str1 = property.Substring(0, 1); + string _str2 = property.Substring(1); + string _str = _str1.ToLower() + _str2; + + Property _prop = new Property(target, _str); + if (_prop.propertyIndex == Property.INVALID_INDEX) + { + throw new System.Exception("second argument string property is invalid parameter!"); + } + + if (alphaFunction != null) + { + + AnimateBetween(_prop, keyFrames); + } + else + { + AnimateBetween(_prop, keyFrames, alphaFunction); + } + } + //changed + public void AnimateBetween(Actor target, string property, KeyFrames keyFrames, int startTime, int endTime, Interpolation interpolation = Interpolation.Linear, AlphaFunction alphaFunction = null) + { + string _str1 = property.Substring(0, 1); + string _str2 = property.Substring(1); + string _str = _str1.ToLower() + _str2; + + Property _prop = new Property(target, _str); + if (_prop.propertyIndex == Property.INVALID_INDEX) + { + throw new System.Exception("second argument string property is invalid parameter!"); + } + + Tizen.NUI.TimePeriod time = new Tizen.NUI.TimePeriod(MilliSecondsToSeconds(startTime), MilliSecondsToSeconds(endTime - startTime)); + if (alphaFunction != null) + { + AnimateBetween(_prop, keyFrames, alphaFunction, time, interpolation); + } + else + { + AnimateBetween(_prop, keyFrames, time, interpolation); + } + } + //changed + public void AnimatePath(Actor actor, Path path, Vector3 forward, AlphaFunction alphaFunction = null) + { + if (alphaFunction == null) + { + Animate(actor, path, forward); + } + else + { + Animate(actor, path, forward, alphaFunction); + } + } + //changed + public void AnimatePath(Actor actor, Path path, Vector3 forward, int startTime, int endTime, AlphaFunction alphaFunction = null) + { + TimePeriod time = new TimePeriod(MilliSecondsToSeconds(startTime), MilliSecondsToSeconds(endTime - startTime)); + if (alphaFunction == null) + { + Animate(actor, path, forward, time); + } + else + { + Animate(actor, path, forward, alphaFunction, time); + } + } + + + public Animation() : this(NDalicPINVOKE.Animation_New(0.0f), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + //changed + internal Animation(float durationSeconds) : this(NDalicPINVOKE.Animation_New(durationSeconds), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + + } + public static Animation DownCast(BaseHandle handle) + { + Animation ret = new Animation(NDalicPINVOKE.Animation_DownCast(BaseHandle.getCPtr(handle)), true); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + //changed + internal Animation(Animation handle) : this(NDalicPINVOKE.new_Animation__SWIG_1(Animation.getCPtr(handle)), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + //changed + + internal Animation Assign(Animation rhs) + { + Animation ret = new Animation(NDalicPINVOKE.Animation_Assign(swigCPtr, Animation.getCPtr(rhs)), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + //changed + + internal void SetDuration(float seconds) + { + NDalicPINVOKE.Animation_SetDuration(swigCPtr, seconds); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + //changed + + internal float GetDuration() + { + float ret = NDalicPINVOKE.Animation_GetDuration(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + //changed + internal void SetLooping(bool looping) + { + NDalicPINVOKE.Animation_SetLooping(swigCPtr, looping); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + //changed + internal void SetLoopCount(int count) + { + NDalicPINVOKE.Animation_SetLoopCount(swigCPtr, count); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + //changed + internal int GetLoopCount() + { + int ret = NDalicPINVOKE.Animation_GetLoopCount(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + //changed + internal int GetCurrentLoop() + { + int ret = NDalicPINVOKE.Animation_GetCurrentLoop(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + //changed + internal bool IsLooping() + { + bool ret = NDalicPINVOKE.Animation_IsLooping(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + //changed + internal void SetEndAction(EndActions action) + { + NDalicPINVOKE.Animation_SetEndAction(swigCPtr, (int)action); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + //changed + internal EndActions GetEndAction() + { + EndActions ret = (EndActions)NDalicPINVOKE.Animation_GetEndAction(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + //changed + internal void SetDisconnectAction(EndActions disconnectAction) + { + NDalicPINVOKE.Animation_SetDisconnectAction(swigCPtr, (int)disconnectAction); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + //changed + internal EndActions GetDisconnectAction() + { + Animation.EndActions ret = (Animation.EndActions)NDalicPINVOKE.Animation_GetDisconnectAction(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + //changed + internal void SetDefaultAlphaFunction(AlphaFunction alpha) + { + NDalicPINVOKE.Animation_SetDefaultAlphaFunction(swigCPtr, AlphaFunction.getCPtr(alpha)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + //changed + internal AlphaFunction GetDefaultAlphaFunction() + { + AlphaFunction ret = new AlphaFunction(NDalicPINVOKE.Animation_GetDefaultAlphaFunction(swigCPtr), true); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + //changed + internal void SetCurrentProgress(float progress) + { + NDalicPINVOKE.Animation_SetCurrentProgress(swigCPtr, progress); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + //changed + internal float GetCurrentProgress() + { + float ret = NDalicPINVOKE.Animation_GetCurrentProgress(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + //changed + internal void SetSpeedFactor(float factor) + { + NDalicPINVOKE.Animation_SetSpeedFactor(swigCPtr, factor); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + //changed + internal float GetSpeedFactor() + { + float ret = NDalicPINVOKE.Animation_GetSpeedFactor(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + //changed + internal void SetPlayRange(Vector2 range) + { + NDalicPINVOKE.Animation_SetPlayRange(swigCPtr, Vector2.getCPtr(range)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + //changed + internal Vector2 GetPlayRange() + { + Vector2 ret = new Vector2(NDalicPINVOKE.Animation_GetPlayRange(swigCPtr), true); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public void Play() + { + NDalicPINVOKE.Animation_Play(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public void PlayFrom(float progress) + { + NDalicPINVOKE.Animation_PlayFrom(swigCPtr, progress); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public void Pause() + { + NDalicPINVOKE.Animation_Pause(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + //changed + internal States GetState() + { + Animation.States ret = (Animation.States)NDalicPINVOKE.Animation_GetState(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public void Stop() + { + NDalicPINVOKE.Animation_Stop(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public void Clear() + { + NDalicPINVOKE.Animation_Clear(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + //changed + internal AnimationSignal FinishedSignal() + { + AnimationSignal ret = new AnimationSignal(NDalicPINVOKE.Animation_FinishedSignal(swigCPtr), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + //changed + internal void AnimateBy(Property target, PropertyValue relativeValue) + { + NDalicPINVOKE.Animation_AnimateBy__SWIG_0(swigCPtr, Property.getCPtr(target), PropertyValue.getCPtr(relativeValue)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + //changed + internal void AnimateBy(Property target, PropertyValue relativeValue, AlphaFunction alpha) + { + NDalicPINVOKE.Animation_AnimateBy__SWIG_1(swigCPtr, Property.getCPtr(target), PropertyValue.getCPtr(relativeValue), AlphaFunction.getCPtr(alpha)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + //changed + internal void AnimateBy(Property target, PropertyValue relativeValue, TimePeriod period) + { + NDalicPINVOKE.Animation_AnimateBy__SWIG_2(swigCPtr, Property.getCPtr(target), PropertyValue.getCPtr(relativeValue), TimePeriod.getCPtr(period)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + //changed + internal void AnimateBy(Property target, PropertyValue relativeValue, AlphaFunction alpha, TimePeriod period) + { + NDalicPINVOKE.Animation_AnimateBy__SWIG_3(swigCPtr, Property.getCPtr(target), PropertyValue.getCPtr(relativeValue), AlphaFunction.getCPtr(alpha), TimePeriod.getCPtr(period)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + //changed + internal void AnimateTo(Property target, PropertyValue destinationValue) + { + NDalicPINVOKE.Animation_AnimateTo__SWIG_0(swigCPtr, Property.getCPtr(target), PropertyValue.getCPtr(destinationValue)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + //changed + internal void AnimateTo(Property target, PropertyValue destinationValue, AlphaFunction alpha) + { + NDalicPINVOKE.Animation_AnimateTo__SWIG_1(swigCPtr, Property.getCPtr(target), PropertyValue.getCPtr(destinationValue), AlphaFunction.getCPtr(alpha)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + //changed + internal void AnimateTo(Property target, PropertyValue destinationValue, TimePeriod period) + { + NDalicPINVOKE.Animation_AnimateTo__SWIG_2(swigCPtr, Property.getCPtr(target), PropertyValue.getCPtr(destinationValue), TimePeriod.getCPtr(period)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + //changed + internal void AnimateTo(Property target, PropertyValue destinationValue, AlphaFunction alpha, TimePeriod period) + { + NDalicPINVOKE.Animation_AnimateTo__SWIG_3(swigCPtr, Property.getCPtr(target), PropertyValue.getCPtr(destinationValue), AlphaFunction.getCPtr(alpha), TimePeriod.getCPtr(period)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + //changed + internal void AnimateBetween(Property target, KeyFrames keyFrames) + { + NDalicPINVOKE.Animation_AnimateBetween__SWIG_0(swigCPtr, Property.getCPtr(target), KeyFrames.getCPtr(keyFrames)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + //changed + internal void AnimateBetween(Property target, KeyFrames keyFrames, Animation.Interpolation interpolation) + { + NDalicPINVOKE.Animation_AnimateBetween__SWIG_1(swigCPtr, Property.getCPtr(target), KeyFrames.getCPtr(keyFrames), (int)interpolation); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + //changed + internal void AnimateBetween(Property target, KeyFrames keyFrames, AlphaFunction alpha) + { + NDalicPINVOKE.Animation_AnimateBetween__SWIG_2(swigCPtr, Property.getCPtr(target), KeyFrames.getCPtr(keyFrames), AlphaFunction.getCPtr(alpha)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + //changed + internal void AnimateBetween(Property target, KeyFrames keyFrames, AlphaFunction alpha, Animation.Interpolation interpolation) + { + NDalicPINVOKE.Animation_AnimateBetween__SWIG_3(swigCPtr, Property.getCPtr(target), KeyFrames.getCPtr(keyFrames), AlphaFunction.getCPtr(alpha), (int)interpolation); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + //changed + internal void AnimateBetween(Property target, KeyFrames keyFrames, TimePeriod period) + { + NDalicPINVOKE.Animation_AnimateBetween__SWIG_4(swigCPtr, Property.getCPtr(target), KeyFrames.getCPtr(keyFrames), TimePeriod.getCPtr(period)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + //changed + internal void AnimateBetween(Property target, KeyFrames keyFrames, TimePeriod period, Animation.Interpolation interpolation) + { + NDalicPINVOKE.Animation_AnimateBetween__SWIG_5(swigCPtr, Property.getCPtr(target), KeyFrames.getCPtr(keyFrames), TimePeriod.getCPtr(period), (int)interpolation); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + //changed + internal void AnimateBetween(Property target, KeyFrames keyFrames, AlphaFunction alpha, TimePeriod period) + { + NDalicPINVOKE.Animation_AnimateBetween__SWIG_6(swigCPtr, Property.getCPtr(target), KeyFrames.getCPtr(keyFrames), AlphaFunction.getCPtr(alpha), TimePeriod.getCPtr(period)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + //changed + internal void AnimateBetween(Property target, KeyFrames keyFrames, AlphaFunction alpha, TimePeriod period, Animation.Interpolation interpolation) + { + NDalicPINVOKE.Animation_AnimateBetween__SWIG_7(swigCPtr, Property.getCPtr(target), KeyFrames.getCPtr(keyFrames), AlphaFunction.getCPtr(alpha), TimePeriod.getCPtr(period), (int)interpolation); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + //changed + internal void Animate(Actor actor, Path path, Vector3 forward) + { + NDalicPINVOKE.Animation_Animate__SWIG_0(swigCPtr, Actor.getCPtr(actor), Path.getCPtr(path), Vector3.getCPtr(forward)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + //changed + internal void Animate(Actor actor, Path path, Vector3 forward, AlphaFunction alpha) + { + NDalicPINVOKE.Animation_Animate__SWIG_1(swigCPtr, Actor.getCPtr(actor), Path.getCPtr(path), Vector3.getCPtr(forward), AlphaFunction.getCPtr(alpha)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + //changed + internal void Animate(Actor actor, Path path, Vector3 forward, TimePeriod period) + { + NDalicPINVOKE.Animation_Animate__SWIG_2(swigCPtr, Actor.getCPtr(actor), Path.getCPtr(path), Vector3.getCPtr(forward), TimePeriod.getCPtr(period)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + //changed + internal void Animate(Actor actor, Path path, Vector3 forward, AlphaFunction alpha, TimePeriod period) + { + NDalicPINVOKE.Animation_Animate__SWIG_3(swigCPtr, Actor.getCPtr(actor), Path.getCPtr(path), Vector3.getCPtr(forward), AlphaFunction.getCPtr(alpha), TimePeriod.getCPtr(period)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + //changed + internal void Show(Actor actor, float delaySeconds) + { + NDalicPINVOKE.Animation_Show(swigCPtr, Actor.getCPtr(actor), delaySeconds); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + //changed + internal void Hide(Actor actor, float delaySeconds) + { + NDalicPINVOKE.Animation_Hide(swigCPtr, Actor.getCPtr(actor), delaySeconds); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public enum EndActions + { + Cancel, + Discard, + StopFinal + } + + public enum Interpolation + { + Linear, + Cubic + } + + public enum States + { + Stopped, + Playing, + Paused + } + } - } - - - /** - * @brief Create an initialized Animation. - * - * The animation will not loop. - * The default end action is "Bake". - * The default Alpha function is linear. - * @since 1.0.0 - * @param [in] durationmSeconds The duration in milli seconds (int). - * @return A handle to a newly allocated Dali resource. - * @pre DurationmSeconds must be greater than zero. - */ - public Animation (int durationmSeconds) : this (NDalicPINVOKE.Animation_New((float)durationmSeconds/1000.0f), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public Animation () : this (NDalicPINVOKE.Animation_New( 0.0f ), true ) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - - internal Animation (float durationSeconds) : this (NDalicPINVOKE.Animation_New(durationSeconds), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - - } - internal static Animation DownCast(BaseHandle handle) { - Animation ret = new Animation(NDalicPINVOKE.Animation_DownCast(BaseHandle.getCPtr(handle)), true); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public Animation(Animation handle) : this(NDalicPINVOKE.new_Animation__SWIG_1(Animation.getCPtr(handle)), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - internal Animation Assign(Animation rhs) { - Animation ret = new Animation(NDalicPINVOKE.Animation_Assign(swigCPtr, Animation.getCPtr(rhs)), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - internal void SetDuration(float seconds) { - NDalicPINVOKE.Animation_SetDuration(swigCPtr, seconds); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - internal float GetDuration() { - float ret = NDalicPINVOKE.Animation_GetDuration(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - internal void SetLooping(bool looping) { - NDalicPINVOKE.Animation_SetLooping(swigCPtr, looping); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - internal void SetLoopCount(int count) { - NDalicPINVOKE.Animation_SetLoopCount(swigCPtr, count); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - internal int GetLoopCount() { - int ret = NDalicPINVOKE.Animation_GetLoopCount(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public int GetCurrentLoop() { - int ret = NDalicPINVOKE.Animation_GetCurrentLoop(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - internal bool IsLooping() { - bool ret = NDalicPINVOKE.Animation_IsLooping(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - internal void SetEndAction(Animation.EndActions action) { - NDalicPINVOKE.Animation_SetEndAction(swigCPtr, (int)action); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - internal Animation.EndActions GetEndAction() { - Animation.EndActions ret = (Animation.EndActions)NDalicPINVOKE.Animation_GetEndAction(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public void SetDisconnectAction(Animation.EndActions disconnectAction) { - NDalicPINVOKE.Animation_SetDisconnectAction(swigCPtr, (int)disconnectAction); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public Animation.EndActions GetDisconnectAction() { - Animation.EndActions ret = (Animation.EndActions)NDalicPINVOKE.Animation_GetDisconnectAction(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - internal void SetDefaultAlphaFunction(AlphaFunction alpha) { - NDalicPINVOKE.Animation_SetDefaultAlphaFunction(swigCPtr, AlphaFunction.getCPtr(alpha)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - internal AlphaFunction GetDefaultAlphaFunction() { - AlphaFunction ret = new AlphaFunction(NDalicPINVOKE.Animation_GetDefaultAlphaFunction(swigCPtr), true); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public void SetCurrentProgress(float progress) { - NDalicPINVOKE.Animation_SetCurrentProgress(swigCPtr, progress); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public float GetCurrentProgress() { - float ret = NDalicPINVOKE.Animation_GetCurrentProgress(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public void SetSpeedFactor(float factor) { - NDalicPINVOKE.Animation_SetSpeedFactor(swigCPtr, factor); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public float GetSpeedFactor() { - float ret = NDalicPINVOKE.Animation_GetSpeedFactor(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public void SetPlayRange(Vector2 range) { - NDalicPINVOKE.Animation_SetPlayRange(swigCPtr, Vector2.getCPtr(range)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public Vector2 GetPlayRange() { - Vector2 ret = new Vector2(NDalicPINVOKE.Animation_GetPlayRange(swigCPtr), true); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public void Play() { - NDalicPINVOKE.Animation_Play(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public void PlayFrom(float progress) { - NDalicPINVOKE.Animation_PlayFrom(swigCPtr, progress); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public void Pause() { - NDalicPINVOKE.Animation_Pause(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - internal Animation.State GetState() { - Animation.State ret = (Animation.State)NDalicPINVOKE.Animation_GetState(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public void Stop() { - NDalicPINVOKE.Animation_Stop(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public void Clear() { - NDalicPINVOKE.Animation_Clear(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - internal AnimationSignal FinishedSignal() { - AnimationSignal ret = new AnimationSignal(NDalicPINVOKE.Animation_FinishedSignal(swigCPtr), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - internal void AnimateBy(Property target, Property.Value relativeValue) { - NDalicPINVOKE.Animation_AnimateBy__SWIG_0(swigCPtr, Property.getCPtr(target), Property.Value.getCPtr(relativeValue)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - internal void AnimateBy(Property target, Property.Value relativeValue, AlphaFunction alpha) { - NDalicPINVOKE.Animation_AnimateBy__SWIG_1(swigCPtr, Property.getCPtr(target), Property.Value.getCPtr(relativeValue), AlphaFunction.getCPtr(alpha)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - internal void AnimateBy(Property target, Property.Value relativeValue, TimePeriod period) { - NDalicPINVOKE.Animation_AnimateBy__SWIG_2(swigCPtr, Property.getCPtr(target), Property.Value.getCPtr(relativeValue), TimePeriod.getCPtr(period)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - internal void AnimateBy(Property target, Property.Value relativeValue, AlphaFunction alpha, TimePeriod period) { - NDalicPINVOKE.Animation_AnimateBy__SWIG_3(swigCPtr, Property.getCPtr(target), Property.Value.getCPtr(relativeValue), AlphaFunction.getCPtr(alpha), TimePeriod.getCPtr(period)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - internal void AnimateTo(Property target, Property.Value destinationValue) { - NDalicPINVOKE.Animation_AnimateTo__SWIG_0(swigCPtr, Property.getCPtr(target), Property.Value.getCPtr(destinationValue)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - internal void AnimateTo(Property target, Property.Value destinationValue, AlphaFunction alpha) { - NDalicPINVOKE.Animation_AnimateTo__SWIG_1(swigCPtr, Property.getCPtr(target), Property.Value.getCPtr(destinationValue), AlphaFunction.getCPtr(alpha)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - internal void AnimateTo(Property target, Property.Value destinationValue, TimePeriod period) { - NDalicPINVOKE.Animation_AnimateTo__SWIG_2(swigCPtr, Property.getCPtr(target), Property.Value.getCPtr(destinationValue), TimePeriod.getCPtr(period)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - internal void AnimateTo(Property target, Property.Value destinationValue, AlphaFunction alpha, TimePeriod period) { - NDalicPINVOKE.Animation_AnimateTo__SWIG_3(swigCPtr, Property.getCPtr(target), Property.Value.getCPtr(destinationValue), AlphaFunction.getCPtr(alpha), TimePeriod.getCPtr(period)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - internal void AnimateBetween(Property target, KeyFrames keyFrames) { - NDalicPINVOKE.Animation_AnimateBetween__SWIG_0(swigCPtr, Property.getCPtr(target), KeyFrames.getCPtr(keyFrames)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - internal void AnimateBetween(Property target, KeyFrames keyFrames, Animation.Interpolation interpolation) { - NDalicPINVOKE.Animation_AnimateBetween__SWIG_1(swigCPtr, Property.getCPtr(target), KeyFrames.getCPtr(keyFrames), (int)interpolation); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - internal void AnimateBetween(Property target, KeyFrames keyFrames, AlphaFunction alpha) { - NDalicPINVOKE.Animation_AnimateBetween__SWIG_2(swigCPtr, Property.getCPtr(target), KeyFrames.getCPtr(keyFrames), AlphaFunction.getCPtr(alpha)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - internal void AnimateBetween(Property target, KeyFrames keyFrames, AlphaFunction alpha, Animation.Interpolation interpolation) { - NDalicPINVOKE.Animation_AnimateBetween__SWIG_3(swigCPtr, Property.getCPtr(target), KeyFrames.getCPtr(keyFrames), AlphaFunction.getCPtr(alpha), (int)interpolation); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - internal void AnimateBetween(Property target, KeyFrames keyFrames, TimePeriod period) { - NDalicPINVOKE.Animation_AnimateBetween__SWIG_4(swigCPtr, Property.getCPtr(target), KeyFrames.getCPtr(keyFrames), TimePeriod.getCPtr(period)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - internal void AnimateBetween(Property target, KeyFrames keyFrames, TimePeriod period, Animation.Interpolation interpolation) { - NDalicPINVOKE.Animation_AnimateBetween__SWIG_5(swigCPtr, Property.getCPtr(target), KeyFrames.getCPtr(keyFrames), TimePeriod.getCPtr(period), (int)interpolation); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - internal void AnimateBetween(Property target, KeyFrames keyFrames, AlphaFunction alpha, TimePeriod period) { - NDalicPINVOKE.Animation_AnimateBetween__SWIG_6(swigCPtr, Property.getCPtr(target), KeyFrames.getCPtr(keyFrames), AlphaFunction.getCPtr(alpha), TimePeriod.getCPtr(period)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - internal void AnimateBetween(Property target, KeyFrames keyFrames, AlphaFunction alpha, TimePeriod period, Animation.Interpolation interpolation) { - NDalicPINVOKE.Animation_AnimateBetween__SWIG_7(swigCPtr, Property.getCPtr(target), KeyFrames.getCPtr(keyFrames), AlphaFunction.getCPtr(alpha), TimePeriod.getCPtr(period), (int)interpolation); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public void Animate(Actor actor, Path path, Vector3 forward) { - NDalicPINVOKE.Animation_Animate__SWIG_0(swigCPtr, Actor.getCPtr(actor), Path.getCPtr(path), Vector3.getCPtr(forward)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public void Animate(Actor actor, Path path, Vector3 forward, AlphaFunction alpha) { - NDalicPINVOKE.Animation_Animate__SWIG_1(swigCPtr, Actor.getCPtr(actor), Path.getCPtr(path), Vector3.getCPtr(forward), AlphaFunction.getCPtr(alpha)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public void Animate(Actor actor, Path path, Vector3 forward, TimePeriod period) { - NDalicPINVOKE.Animation_Animate__SWIG_2(swigCPtr, Actor.getCPtr(actor), Path.getCPtr(path), Vector3.getCPtr(forward), TimePeriod.getCPtr(period)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public void Animate(Actor actor, Path path, Vector3 forward, AlphaFunction alpha, TimePeriod period) { - NDalicPINVOKE.Animation_Animate__SWIG_3(swigCPtr, Actor.getCPtr(actor), Path.getCPtr(path), Vector3.getCPtr(forward), AlphaFunction.getCPtr(alpha), TimePeriod.getCPtr(period)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - internal void Show(Actor actor, float delaySeconds) { - NDalicPINVOKE.Animation_Show(swigCPtr, Actor.getCPtr(actor), delaySeconds); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - internal void Hide(Actor actor, float delaySeconds) { - NDalicPINVOKE.Animation_Hide(swigCPtr, Actor.getCPtr(actor), delaySeconds); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public enum EndActions { - Cancel, - Discard, - StopFinal - } - - public enum Interpolation { - Linear, - Cubic - } - - public enum State { - Stopped, - Playing, - Paused - } - -} } diff --git a/Tizen.NUI/src/public/Application.cs b/Tizen.NUI/src/public/Application.cs deleted file mode 100644 index 34f282b..0000000 --- a/Tizen.NUI/src/public/Application.cs +++ /dev/null @@ -1,838 +0,0 @@ -//------------------------------------------------------------------------------ -// -// -// This file was automatically generated by SWIG (http://www.swig.org). -// Version 3.0.9 -// -// Do not make changes to this file unless you know what you are doing--modify -// the SWIG interface file instead. -//------------------------------------------------------------------------------ - -namespace NUI { - - using System; - using System.Runtime.InteropServices; - - -public class Application : BaseHandle { - private global::System.Runtime.InteropServices.HandleRef swigCPtr; - - internal Application(global::System.IntPtr cPtr, bool cMemoryOwn) : base(NDalicPINVOKE.Application_SWIGUpcast(cPtr), cMemoryOwn) { - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); - } - - internal static global::System.Runtime.InteropServices.HandleRef getCPtr(Application obj) { - return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; - } - - ~Application() { - DisposeQueue.Instance.Add(this); - } - - public override void Dispose() { - if (!Stage.IsInstalled()) { - DisposeQueue.Instance.Add(this); - return; - } - - lock(this) { - if (swigCPtr.Handle != global::System.IntPtr.Zero) { - if (swigCMemOwn) { - swigCMemOwn = false; - NDalicPINVOKE.delete_Application(swigCPtr); - } - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); - } - global::System.GC.SuppressFinalize(this); - base.Dispose(); - } - } - - - - - private EventHandler _applicationInitEventHandler; - [UnmanagedFunctionPointer(CallingConvention.StdCall)] - private delegate void ApplicationInitEventCallbackType(IntPtr data); - private ApplicationInitEventCallbackType _applicationInitEventCallback; - - /** - * @brief Event for Initialized signal which can be used to subscribe/unsubscribe the event handler - * provided by the user. Initialized signal is emitted when application is initialised - */ - public event EventHandler Initialized - { - add - { - if( _applicationInitEventHandler == null ) - { - _applicationInitEventCallback = OnApplicationInit; - this.InitSignal().Connect( _applicationInitEventCallback ); - } - - _applicationInitEventHandler += value; - } - - remove - { - if( _applicationInitEventHandler != null ) - { - this.InitSignal().Disconnect( _applicationInitEventCallback ); - } - - _applicationInitEventHandler -= value; - } - } - - private void OnApplicationInit(IntPtr data) - { - if( _applicationInitEventHandler != null ) - { - _applicationInitEventHandler( this, null ); - } - } - - - private EventHandler _applicationTerminateEventHandler; - [UnmanagedFunctionPointer(CallingConvention.StdCall)] - private delegate void ApplicationTerminateEventCallbackType(IntPtr data); - private ApplicationTerminateEventCallbackType _applicationTerminateEventCallback; - - /** - * @brief Event for Terminated signal which can be used to subscribe/unsubscribe the event handler - * provided by the user. Terminated signal is emitted when application is terminated - */ - public event EventHandler Terminated - { - add - { - if( _applicationTerminateEventHandler == null ) - { - _applicationTerminateEventCallback = OnNUIApplicationTerminate; - this.TerminateSignal().Connect( _applicationTerminateEventCallback ); - } - - _applicationTerminateEventHandler += value; - } - - remove - { - if( _applicationTerminateEventHandler != null ) - { - this.TerminateSignal().Disconnect( _applicationTerminateEventCallback ); - } - - _applicationTerminateEventHandler -= value; - } - } - - private void OnNUIApplicationTerminate(IntPtr data) - { - if( _applicationTerminateEventHandler != null ) - { - _applicationTerminateEventHandler( this, null ); - } - } - - - private EventHandler _applicationPauseEventHandler; - [UnmanagedFunctionPointer(CallingConvention.StdCall)] - private delegate void ApplicationPauseEventCallbackType(IntPtr data); - private ApplicationPauseEventCallbackType _applicationPauseEventCallback; - - /** - * @brief Event for Paused signal which can be used to subscribe/unsubscribe the event handler - * provided by the user. Paused signal is emitted when application is paused - */ - public event EventHandler Paused - { - add - { - if( _applicationPauseEventHandler == null ) - { - _applicationPauseEventCallback = OnNUIApplicationPause; - this.PauseSignal().Connect( _applicationPauseEventCallback ); - } - - _applicationPauseEventHandler += value; - } - - remove - { - if( _applicationPauseEventHandler != null ) - { - this.PauseSignal().Disconnect( _applicationPauseEventCallback ); - } - - _applicationTerminateEventHandler -= value; - } - } - - private void OnNUIApplicationPause(IntPtr data) - { - if( _applicationPauseEventHandler != null ) - { - _applicationPauseEventHandler( this, null ); - } - } - - - private EventHandler _applicationResumeEventHandler; - [UnmanagedFunctionPointer(CallingConvention.StdCall)] - private delegate void ApplicationResumeEventCallbackType(IntPtr data); - private ApplicationResumeEventCallbackType _applicationResumeEventCallback; - - /** - * @brief Event for Resumed signal which can be used to subscribe/unsubscribe the event handler - * provided by the user. Resumed signal is emitted when application is resumed - */ - public event EventHandler Resumed - { - add - { - if( _applicationResumeEventHandler == null ) - { - _applicationResumeEventCallback = OnNUIApplicationResume; - this.ResumeSignal().Connect( _applicationResumeEventCallback ); - } - - _applicationResumeEventHandler += value; - } - - remove - { - if( _applicationResumeEventHandler != null ) - { - this.ResumeSignal().Disconnect( _applicationResumeEventCallback ); - } - - _applicationResumeEventHandler -= value; - } - } - - private void OnNUIApplicationResume(IntPtr data) - { - if( _applicationResumeEventHandler != null ) - { - _applicationResumeEventHandler( this, null ); - } - } - - - private EventHandler _applicationResetEventHandler; - [UnmanagedFunctionPointer(CallingConvention.StdCall)] - private delegate void ApplicationResetEventCallbackType(IntPtr data); - private ApplicationResetEventCallbackType _applicationResetEventCallback; - - /** - * @brief Event for Reset signal which can be used to subscribe/unsubscribe the event handler - * provided by the user. Reset signal is emitted when application is reset - */ - public event EventHandler Reset - { - add - { - if( _applicationResetEventHandler == null ) - { - _applicationResetEventCallback = OnNUIApplicationReset; - this.ResetSignal().Connect( _applicationResetEventCallback ); - } - - _applicationResetEventHandler += value; - } - - remove - { - if( _applicationResetEventHandler != null ) - { - this.ResetSignal().Disconnect( _applicationResetEventCallback ); - } - - _applicationResetEventHandler -= value; - } - } - - private void OnNUIApplicationReset(IntPtr data) - { - if( _applicationResetEventHandler != null ) - { - _applicationResetEventHandler( this, null ); - } - } - - - - private EventHandler _applicationResizeEventHandler; - [UnmanagedFunctionPointer(CallingConvention.StdCall)] - private delegate void ApplicationResizeEventCallbackType(IntPtr data); - private ApplicationResizeEventCallbackType _applicationResizeEventCallback; - - /** - * @brief Event for Resized signal which can be used to subscribe/unsubscribe the event handler - * provided by the user. Resized signal is emitted when application is resized - */ - public event EventHandler Resized - { - add - { - if( _applicationResizeEventHandler == null ) - { - _applicationResizeEventCallback = OnNUIApplicationResize; - this.ResizeSignal().Connect( _applicationResizeEventCallback ); - } - - _applicationResizeEventHandler += value; - } - - remove - { - if( _applicationResizeEventHandler != null ) - { - this.ResizeSignal().Disconnect( _applicationResizeEventCallback ); - } - - _applicationResizeEventHandler -= value; - } - } - - private void OnNUIApplicationResize(IntPtr data) - { - if( _applicationResizeEventHandler != null ) - { - _applicationResizeEventHandler( this, null ); - } - } - - - private EventHandler _applicationLanguageChangedEventHandler; - [UnmanagedFunctionPointer(CallingConvention.StdCall)] - private delegate void ApplicationLanguageChangedEventCallbackType(IntPtr data); - private ApplicationLanguageChangedEventCallbackType _applicationLanguageChangedEventCallback; - - /** - * @brief Event for Paused signal which can be used to subscribe/unsubscribe the event handler - * provided by the user. Paused signal is emitted when application is paused - */ - public event EventHandler LanguageChanged - { - add - { - if( _applicationLanguageChangedEventHandler == null ) - { - _applicationLanguageChangedEventCallback = OnNUIApplicationLanguageChanged; - this.LanguageChangedSignal().Connect( _applicationLanguageChangedEventCallback ); - } - - _applicationLanguageChangedEventHandler += value; - } - - remove - { - if( _applicationLanguageChangedEventHandler != null ) - { - this.LanguageChangedSignal().Disconnect( _applicationLanguageChangedEventCallback ); - } - - _applicationLanguageChangedEventHandler -= value; - } - } - - private void OnNUIApplicationLanguageChanged(IntPtr data) - { - if( _applicationLanguageChangedEventHandler != null ) - { - _applicationLanguageChangedEventHandler( this, null ); - } - } - - - private EventHandler _applicationRegionChangedEventHandler; - [UnmanagedFunctionPointer(CallingConvention.StdCall)] - private delegate void ApplicationRegionChangedEventCallbackType(IntPtr data); - private ApplicationRegionChangedEventCallbackType _applicationRegionChangedEventCallback; - - /** - * @brief Event for RegionChanged signal which can be used to subscribe/unsubscribe the event handler - * provided by the user. RegionChanged signal is emitted when the region of the device is changed. - */ - public event EventHandler RegionChanged - { - add - { - if( _applicationRegionChangedEventHandler != null ) - { - _applicationRegionChangedEventCallback = OnNUIApplicationRegionChanged; - this.RegionChangedSignal().Connect( _applicationRegionChangedEventCallback ); - } - - _applicationRegionChangedEventHandler += value; - } - - remove - { - if( _applicationRegionChangedEventHandler != null ) - { - this.RegionChangedSignal().Disconnect( _applicationRegionChangedEventCallback ); - } - - _applicationRegionChangedEventHandler -= value; - } - } - - private void OnNUIApplicationRegionChanged(IntPtr data) - { - if( _applicationRegionChangedEventHandler != null ) - { - _applicationRegionChangedEventHandler( this, null ); - } - } - - - - private EventHandler _applicationBatteryLowEventHandler; - [UnmanagedFunctionPointer(CallingConvention.StdCall)] - private delegate void ApplicationBatteryLowEventCallbackType(IntPtr data); - private ApplicationBatteryLowEventCallbackType _applicationBatteryLowEventCallback; - - /** - * @brief Event for BatteryLow signal which can be used to subscribe/unsubscribe the event handler - * provided by the user. BatteryLow signal is emitted when the battery level of the device is low. - */ - public event EventHandler BatteryLow - { - add - { - if( _applicationBatteryLowEventHandler == null ) - { - _applicationBatteryLowEventCallback = OnNUIApplicationBatteryLow; - this.BatteryLowSignal().Connect( _applicationBatteryLowEventCallback ); - } - - _applicationBatteryLowEventHandler += value; - } - - remove - { - if( _applicationBatteryLowEventHandler != null ) - { - this.BatteryLowSignal().Disconnect( _applicationBatteryLowEventCallback ); - } - - _applicationBatteryLowEventHandler -= value; - } - } - - private void OnNUIApplicationBatteryLow(IntPtr data) - { - if( _applicationBatteryLowEventHandler != null ) - { - _applicationBatteryLowEventHandler( this, null ); - } - } - - - private EventHandler _applicationMemoryLowEventHandler; - [UnmanagedFunctionPointer(CallingConvention.StdCall)] - private delegate void ApplicationMemoryLowEventCallbackType(IntPtr data); - private ApplicationMemoryLowEventCallbackType _applicationMemoryLowEventCallback; - - /** - * @brief Event for Paused signal which can be used to subscribe/unsubscribe the event handler - * provided by the user. Paused signal is emitted when application is paused - */ - public event EventHandler MemoryLow - { - add - { - if( _applicationMemoryLowEventHandler == null ) - { - _applicationMemoryLowEventCallback = OnNUIApplicationMemoryLow; - this.MemoryLowSignal().Connect( _applicationMemoryLowEventCallback ); - } - - _applicationMemoryLowEventHandler += value; - } - - remove - { - if( _applicationMemoryLowEventHandler != null ) - { - this.MemoryLowSignal().Disconnect( _applicationMemoryLowEventCallback ); - } - - _applicationMemoryLowEventHandler -= value; - } - } - - private void OnNUIApplicationMemoryLow(IntPtr data) - { - if( _applicationMemoryLowEventHandler != null ) - { - _applicationMemoryLowEventHandler( this, null ); - } - } - - /** - * @brief Event arguments that passed via NUIApplicationAppControl signal - * - */ - public class NUIApplicationAppControlEventArgs : EventArgs - { - private IntPtr _voidp; - /** - * @brief VoidP - contains the information about why the application is launched - * - */ - public IntPtr VoidP - { - get - { - return _voidp; - } - set - { - _voidp = value; - } - } - } - - private EventHandler _applicationAppControlEventHandler; - [UnmanagedFunctionPointer(CallingConvention.StdCall)] - private delegate void ApplicationAppControlEventCallbackType(IntPtr application, IntPtr voidp); - private ApplicationAppControlEventCallbackType _applicationAppControlEventCallback; - - /** - * @brief Event for AppControl signal which can be used to subscribe/unsubscribe the event handler - * (in the type of NUIApplicationAppControlEventHandler-DaliEventHandler) - * provided by the user. AppControl signal is emitted when another application sends a launch request to the application. - */ - public event EventHandler AppControl - { - add - { - if( _applicationAppControlEventHandler != null ) - { - _applicationAppControlEventCallback = OnNUIApplicationAppControl; - this.AppControlSignal().Connect( _applicationAppControlEventCallback ); - } - - _applicationAppControlEventHandler += value; - } - - remove - { - if( _applicationAppControlEventHandler != null ) - { - this.AppControlSignal().Disconnect( _applicationAppControlEventCallback ); - } - - _applicationAppControlEventHandler -= value; - } - } - - private void OnNUIApplicationAppControl(IntPtr application, IntPtr voidp) - { - NUIApplicationAppControlEventArgs e = new NUIApplicationAppControlEventArgs(); - e.VoidP = voidp; - - if ( _applicationAppControlEventHandler != null ) - { - _applicationAppControlEventHandler(this, e); - } - } - - - - private static Application instance; // singleton - - public delegate void InitDelegate(); - - public delegate void TerminateDelegate(); - - public delegate void PauseDelegate(); - - public delegate void ResumeDelegate(); - - public delegate void ResizeDelegate(); - - public delegate void AppControlDelegate(); - - public delegate void LanguageChangedDelegate(); - - public delegate void RegionChangedDelegate(); - - public delegate void BatteryLowDelegate(); - - public delegate void MemoryLowDelegate(); - - [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)] - internal delegate void InitDelegateInternal(); - - [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)] - internal delegate void TerminateDelegateInternal(); - - [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)] - internal delegate void PauseDelegateInternal(); - - [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)] - internal delegate void ResumeDelegateInternal(); - - [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)] - internal delegate void ResizeDelegateInternal(); - - [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)] - internal delegate void AppControlDelegateInternal(); - - [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)] - internal delegate void LanguageChangedDelegateInternal(); - - [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)] - internal delegate void RegionChangedDelegateInternal(); - - [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)] - internal delegate void BatteryLowDelegateInternal(); - - [System.Runtime.InteropServices.UnmanagedFunctionPointer(System.Runtime.InteropServices.CallingConvention.StdCall)] - internal delegate void MemoryLowDelegateInternal(); - - static void Initialize() - { - // instance.InitDelegate(); - } - - public static Application Instance - { - get - { - return instance; - } - } - - public static Application GetApplicationFromPtr(global::System.IntPtr cPtr) { - Application ret = new Application(cPtr, false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - internal void SetupDelegates() { - InitDelegateInternal initializeCallback = new InitDelegateInternal( Initialize ); - System.Console.WriteLine( "InitSignal connection count"); - - this.InitSignal().Connect( initializeCallback ); - //Console.WriteLine( "InitSignal connection count = " + app.InitSignal().GetConnectionCount() ); - } - - public static Application NewApplication() { - instance = NewApplication("", Application.WINDOW_MODE.OPAQUE); - return instance; - } - - public static Application NewApplication(string stylesheet) { - instance = NewApplication(stylesheet, Application.WINDOW_MODE.OPAQUE); - return instance; - } - - public static Application NewApplication(string stylesheet, Application.WINDOW_MODE windowMode) { - - Application ret = New(1, stylesheet, windowMode); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - - // we've got an application now connect the signals - ret.SetupDelegates(); - // set the singleton - instance = ret; - return ret; - } - - public bool AddIdle(System.Delegate func) { - System.IntPtr ip = System.Runtime.InteropServices.Marshal.GetFunctionPointerForDelegate(func); - System.IntPtr ip2 = NDalicManualPINVOKE.MakeCallback(new System.Runtime.InteropServices.HandleRef(this, ip)); - - bool ret = NDalicPINVOKE.Application_AddIdle(swigCPtr, new System.Runtime.InteropServices.HandleRef(this, ip2)); - - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - - - /** - * Outer::outer_method(int) - */ - public static Application New() { - Application ret = new Application(NDalicPINVOKE.Application_New__SWIG_0(), true); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public static Application New(int argc) { - Application ret = new Application(NDalicPINVOKE.Application_New__SWIG_1(argc), true); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public static Application New(int argc, string stylesheet) { - Application ret = new Application(NDalicPINVOKE.Application_New__SWIG_2(argc, stylesheet), true); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public static Application New(int argc, string stylesheet, Application.WINDOW_MODE windowMode) { - Application ret = new Application(NDalicPINVOKE.Application_New__SWIG_3(argc, stylesheet, (int)windowMode), true); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public Application() : this(NDalicPINVOKE.new_Application__SWIG_0(), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public Application(Application application) : this(NDalicPINVOKE.new_Application__SWIG_1(Application.getCPtr(application)), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public Application Assign(Application application) { - Application ret = new Application(NDalicPINVOKE.Application_Assign(swigCPtr, Application.getCPtr(application)), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public void MainLoop() { - NDalicPINVOKE.Application_MainLoop__SWIG_0(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public void MainLoop(SWIGTYPE_p_Configuration__ContextLoss configuration) { - NDalicPINVOKE.Application_MainLoop__SWIG_1(swigCPtr, SWIGTYPE_p_Configuration__ContextLoss.getCPtr(configuration)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public void Lower() { - NDalicPINVOKE.Application_Lower(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public void Quit() { - NDalicPINVOKE.Application_Quit(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public bool AddIdle(SWIGTYPE_p_Dali__CallbackBase callback) { - bool ret = NDalicPINVOKE.Application_AddIdle(swigCPtr, SWIGTYPE_p_Dali__CallbackBase.getCPtr(callback)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public Window GetWindow() { - Window ret = new Window(NDalicPINVOKE.Application_GetWindow(swigCPtr), true); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public void ReplaceWindow(RectInteger windowPosition, string name) { - NDalicPINVOKE.Application_ReplaceWindow(swigCPtr, RectInteger.getCPtr(windowPosition), name); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public static string GetResourcePath() { - string ret = NDalicPINVOKE.Application_GetResourcePath(); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public void SetViewMode(ViewMode viewMode) { - NDalicPINVOKE.Application_SetViewMode(swigCPtr, (int)viewMode); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public ViewMode GetViewMode() { - ViewMode ret = (ViewMode)NDalicPINVOKE.Application_GetViewMode(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public void SetStereoBase(float stereoBase) { - NDalicPINVOKE.Application_SetStereoBase(swigCPtr, stereoBase); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public float GetStereoBase() { - float ret = NDalicPINVOKE.Application_GetStereoBase(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public ApplicationSignal InitSignal() { - ApplicationSignal ret = new ApplicationSignal(NDalicPINVOKE.Application_InitSignal(swigCPtr), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public ApplicationSignal TerminateSignal() { - ApplicationSignal ret = new ApplicationSignal(NDalicPINVOKE.Application_TerminateSignal(swigCPtr), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public ApplicationSignal PauseSignal() { - ApplicationSignal ret = new ApplicationSignal(NDalicPINVOKE.Application_PauseSignal(swigCPtr), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public ApplicationSignal ResumeSignal() { - ApplicationSignal ret = new ApplicationSignal(NDalicPINVOKE.Application_ResumeSignal(swigCPtr), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public ApplicationSignal ResetSignal() { - ApplicationSignal ret = new ApplicationSignal(NDalicPINVOKE.Application_ResetSignal(swigCPtr), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public ApplicationSignal ResizeSignal() { - ApplicationSignal ret = new ApplicationSignal(NDalicPINVOKE.Application_ResizeSignal(swigCPtr), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public ApplicationControlSignal AppControlSignal() { - ApplicationControlSignal ret = new ApplicationControlSignal(NDalicPINVOKE.Application_AppControlSignal(swigCPtr), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public ApplicationSignal LanguageChangedSignal() { - ApplicationSignal ret = new ApplicationSignal(NDalicPINVOKE.Application_LanguageChangedSignal(swigCPtr), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public ApplicationSignal RegionChangedSignal() { - ApplicationSignal ret = new ApplicationSignal(NDalicPINVOKE.Application_RegionChangedSignal(swigCPtr), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public ApplicationSignal BatteryLowSignal() { - ApplicationSignal ret = new ApplicationSignal(NDalicPINVOKE.Application_BatteryLowSignal(swigCPtr), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public ApplicationSignal MemoryLowSignal() { - ApplicationSignal ret = new ApplicationSignal(NDalicPINVOKE.Application_MemoryLowSignal(swigCPtr), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public enum WINDOW_MODE { - OPAQUE = 0, - TRANSPARENT = 1 - } - -} - -} diff --git a/Tizen.NUI/src/public/Button.cs b/Tizen.NUI/src/public/Button.cs old mode 100644 new mode 100755 index ba611ed..22e9a96 --- a/Tizen.NUI/src/public/Button.cs +++ b/Tizen.NUI/src/public/Button.cs @@ -1,579 +1,1075 @@ -//------------------------------------------------------------------------------ -// -// -// This file was automatically generated by SWIG (http://www.swig.org). -// Version 3.0.9 -// -// Do not make changes to this file unless you know what you are doing--modify -// the SWIG interface file instead. -//------------------------------------------------------------------------------ - -namespace NUI { - -using System; -using System.Runtime.InteropServices; - - -public class Button : View { - private global::System.Runtime.InteropServices.HandleRef swigCPtr; - - internal Button(global::System.IntPtr cPtr, bool cMemoryOwn) : base(NDalicPINVOKE.Button_SWIGUpcast(cPtr), cMemoryOwn) { - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); - } - - internal static global::System.Runtime.InteropServices.HandleRef getCPtr(Button obj) { - return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; - } - - ~Button() { - DisposeQueue.Instance.Add(this); - } - - public override void Dispose() { - if (!Stage.IsInstalled()) { - DisposeQueue.Instance.Add(this); - return; - } - - lock(this) { - if (swigCPtr.Handle != global::System.IntPtr.Zero) { - if (swigCMemOwn) { - swigCMemOwn = false; - NDalicPINVOKE.delete_Button(swigCPtr); - } - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); - } - global::System.GC.SuppressFinalize(this); - base.Dispose(); - } - } - - - - private EventHandlerWithReturnType _clickedEventHandler; - [UnmanagedFunctionPointer(CallingConvention.StdCall)] - private delegate bool ClickedCallbackType(global::System.IntPtr data); - private ClickedCallbackType _clickedCallback; - - public event EventHandlerWithReturnType Clicked - { - add - { - // Restricted to only one listener - if (_clickedEventHandler == null) - { - _clickedCallback = new ClickedCallbackType(OnClicked); - this.ClickedSignal().Connect(_clickedCallback); - } - - _clickedEventHandler += value; - } - - remove - { - if (_clickedEventHandler != null) - { - this.ClickedSignal().Disconnect(_clickedCallback); - } - - _clickedEventHandler -= value; - } - } - - // Callback for button click signal - private bool OnClicked (IntPtr data) - { - - if (_clickedEventHandler != null) - { - //here we send all data to user event handlers - return _clickedEventHandler(this, null); - } - return false; - } - - - - private EventHandlerWithReturnType _pressedEventHandler; - [UnmanagedFunctionPointer(CallingConvention.StdCall)] - private delegate bool PressedCallbackType(global::System.IntPtr data); - private PressedCallbackType _pressedCallback; - - public event EventHandlerWithReturnType Pressed - { - add - { - // Restricted to only one listener - if (_pressedEventHandler == null) - { - _pressedCallback = new PressedCallbackType(OnPressed); - this.PressedSignal().Connect(_pressedCallback); - } - - _pressedEventHandler += value; - } - - remove - { - if (_pressedEventHandler != null) - { - this.PressedSignal().Disconnect(_pressedCallback); - } - - _pressedEventHandler -= value; - } - } - - // Callback for button click signal - private bool OnPressed (IntPtr data) - { - if (_pressedEventHandler != null) - { - //here we send all data to user event handlers - return _pressedEventHandler(this, null); - } - return false; - } - - - - private EventHandlerWithReturnType _releasedEventHandler; - [UnmanagedFunctionPointer(CallingConvention.StdCall)] - private delegate bool ReleasedCallbackType(global::System.IntPtr data); - private ReleasedCallbackType _releasedCallback; - - public event EventHandlerWithReturnType Released - { - add - { - // Restricted to only one listener - if (_releasedEventHandler == null) - { - _releasedCallback = new ReleasedCallbackType(OnReleased); - this.ReleasedSignal().Connect(_releasedCallback); - } - - _releasedEventHandler += value; - } - - remove - { - lock(this) - { - if (_releasedEventHandler != null) - { - this.ReleasedSignal().Disconnect(_releasedCallback); - } - - _releasedEventHandler -= value; - } - } - } - - // Callback for button click signal - private bool OnReleased (IntPtr data) - { - if (_releasedEventHandler != null) - { - //here we send all data to user event handlers - return _releasedEventHandler(this, null); - } - return false; - } - - - private EventHandlerWithReturnType _stateChangedEventHandler; - [UnmanagedFunctionPointer(CallingConvention.StdCall)] - private delegate bool StateChangedCallback(global::System.IntPtr data); - private StateChangedCallback _stateChangedCallback; - - public event EventHandlerWithReturnType StateChanged - { - add - { - // Restricted to only one listener - if (_stateChangedEventHandler == null) - { - _stateChangedCallback = new StateChangedCallback(OnStateChanged); - this.StateChangedSignal().Connect(_stateChangedCallback); - } - - _stateChangedEventHandler += value; - } - - remove - { - if (_stateChangedEventHandler != null) - { - this.StateChangedSignal().Disconnect(_stateChangedCallback); - } - - _stateChangedEventHandler -= value; - } - } - - // Callback for button click signal - private bool OnStateChanged (IntPtr data) - { - if (_stateChangedEventHandler != null) - { - //here we send all data to user event handlers - return _stateChangedEventHandler(this, null); - } - return false; - } - - public static Button GetButtonFromPtr(global::System.IntPtr cPtr) { - Button ret = new Button(cPtr, false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - - public class Property : global::System.IDisposable { - private global::System.Runtime.InteropServices.HandleRef swigCPtr; - protected bool swigCMemOwn; - - internal Property(global::System.IntPtr cPtr, bool cMemoryOwn) { - swigCMemOwn = cMemoryOwn; - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); - } - - internal static global::System.Runtime.InteropServices.HandleRef getCPtr(Property obj) { - return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; - } - - ~Property() { - Dispose(); - } - - public virtual void Dispose() { - lock(this) { - if (swigCPtr.Handle != global::System.IntPtr.Zero) { - if (swigCMemOwn) { - swigCMemOwn = false; - NDalicPINVOKE.delete_Button_Property(swigCPtr); - } - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); - } - global::System.GC.SuppressFinalize(this); - } - } - - public Property() : this(NDalicPINVOKE.new_Button_Property(), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public static readonly int DISABLED = NDalicPINVOKE.Button_Property_DISABLED_get(); - public static readonly int AUTO_REPEATING = NDalicPINVOKE.Button_Property_AUTO_REPEATING_get(); - public static readonly int INITIAL_AUTO_REPEATING_DELAY = NDalicPINVOKE.Button_Property_INITIAL_AUTO_REPEATING_DELAY_get(); - public static readonly int NEXT_AUTO_REPEATING_DELAY = NDalicPINVOKE.Button_Property_NEXT_AUTO_REPEATING_DELAY_get(); - public static readonly int TOGGLABLE = NDalicPINVOKE.Button_Property_TOGGLABLE_get(); - public static readonly int SELECTED = NDalicPINVOKE.Button_Property_SELECTED_get(); - public static readonly int UNSELECTED_STATE_IMAGE = NDalicPINVOKE.Button_Property_UNSELECTED_STATE_IMAGE_get(); - public static readonly int SELECTED_STATE_IMAGE = NDalicPINVOKE.Button_Property_SELECTED_STATE_IMAGE_get(); - public static readonly int DISABLED_STATE_IMAGE = NDalicPINVOKE.Button_Property_DISABLED_STATE_IMAGE_get(); - public static readonly int UNSELECTED_COLOR = NDalicPINVOKE.Button_Property_UNSELECTED_COLOR_get(); - public static readonly int SELECTED_COLOR = NDalicPINVOKE.Button_Property_SELECTED_COLOR_get(); - public static readonly int LABEL = NDalicPINVOKE.Button_Property_LABEL_get(); - public static readonly int LABEL_TEXT = NDalicPINVOKE.Button_Property_LABEL_TEXT_get(); - - } - - public Button() : this(NDalicPINVOKE.new_Button__SWIG_0(), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public Button(Button button) : this(NDalicPINVOKE.new_Button__SWIG_1(Button.getCPtr(button)), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public Button Assign(Button button) { - Button ret = new Button(NDalicPINVOKE.Button_Assign(swigCPtr, Button.getCPtr(button)), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public new static Button DownCast(BaseHandle handle) { - Button ret = new Button(NDalicPINVOKE.Button_DownCast(BaseHandle.getCPtr(handle)), true); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public bool IsDisabled() { - bool ret = NDalicPINVOKE.Button_IsDisabled(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public bool IsAutoRepeating() { - bool ret = NDalicPINVOKE.Button_IsAutoRepeating(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public float GetInitialAutoRepeatingDelay() { - float ret = NDalicPINVOKE.Button_GetInitialAutoRepeatingDelay(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public float GetNextAutoRepeatingDelay() { - float ret = NDalicPINVOKE.Button_GetNextAutoRepeatingDelay(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public bool IsTogglableButton() { - bool ret = NDalicPINVOKE.Button_IsTogglableButton(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public bool IsSelected() { - bool ret = NDalicPINVOKE.Button_IsSelected(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public float GetAnimationTime() { - float ret = NDalicPINVOKE.Button_GetAnimationTime(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public string GetLabelText() { - string ret = NDalicPINVOKE.Button_GetLabelText(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public void SetLabel(Actor label) { - NDalicPINVOKE.Button_SetLabel(swigCPtr, Actor.getCPtr(label)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public void SetButtonImage(Image image) { - NDalicPINVOKE.Button_SetButtonImage(swigCPtr, Image.getCPtr(image)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public void SetSelectedImage(Image image) { - NDalicPINVOKE.Button_SetSelectedImage(swigCPtr, Image.getCPtr(image)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public Actor GetButtonImage() { - Actor ret = new Actor(NDalicPINVOKE.Button_GetButtonImage(swigCPtr), true); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public Actor GetSelectedImage() { - Actor ret = new Actor(NDalicPINVOKE.Button_GetSelectedImage(swigCPtr), true); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public ButtonSignal PressedSignal() { - ButtonSignal ret = new ButtonSignal(NDalicPINVOKE.Button_PressedSignal(swigCPtr), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public ButtonSignal ReleasedSignal() { - ButtonSignal ret = new ButtonSignal(NDalicPINVOKE.Button_ReleasedSignal(swigCPtr), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public ButtonSignal ClickedSignal() { - ButtonSignal ret = new ButtonSignal(NDalicPINVOKE.Button_ClickedSignal(swigCPtr), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public ButtonSignal StateChangedSignal() { - ButtonSignal ret = new ButtonSignal(NDalicPINVOKE.Button_StateChangedSignal(swigCPtr), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public enum PropertyRange { - PROPERTY_START_INDEX = PropertyRanges.PROPERTY_REGISTRATION_START_INDEX, - PROPERTY_END_INDEX = View.PropertyRange.PROPERTY_START_INDEX+1000 - } - - public bool Disabled - { - get - { - bool temp = false; - GetProperty( Button.Property.DISABLED).Get( ref temp ); - return temp; - } - set - { - SetProperty( Button.Property.DISABLED, new NUI.Property.Value( value ) ); - } - } - public bool AutoRepeating - { - get - { - bool temp = false; - GetProperty( Button.Property.AUTO_REPEATING).Get( ref temp ); - return temp; - } - set - { - SetProperty( Button.Property.AUTO_REPEATING, new NUI.Property.Value( value ) ); - } - } - public float InitialAutoRepeatingDelay - { - get - { - float temp = 0.0f; - GetProperty( Button.Property.INITIAL_AUTO_REPEATING_DELAY).Get( ref temp ); - return temp; - } - set - { - SetProperty( Button.Property.INITIAL_AUTO_REPEATING_DELAY, new NUI.Property.Value( value ) ); - } - } - public float NextAutoRepeatingDelay - { - get - { - float temp = 0.0f; - GetProperty( Button.Property.NEXT_AUTO_REPEATING_DELAY).Get( ref temp ); - return temp; - } - set - { - SetProperty( Button.Property.NEXT_AUTO_REPEATING_DELAY, new NUI.Property.Value( value ) ); - } - } - public bool Togglable - { - get - { - bool temp = false; - GetProperty( Button.Property.TOGGLABLE).Get( ref temp ); - return temp; - } - set - { - SetProperty( Button.Property.TOGGLABLE, new NUI.Property.Value( value ) ); - } - } - public bool Selected - { - get - { - bool temp = false; - GetProperty( Button.Property.SELECTED).Get( ref temp ); - return temp; - } - set - { - SetProperty( Button.Property.SELECTED, new NUI.Property.Value( value ) ); - } - } - public NUI.Property.Map UnselectedStateImage - { - get - { - NUI.Property.Map temp = new NUI.Property.Map(); - GetProperty( Button.Property.UNSELECTED_STATE_IMAGE).Get( temp ); - return temp; - } - set - { - SetProperty( Button.Property.UNSELECTED_STATE_IMAGE, new NUI.Property.Value( value ) ); - } - } - public NUI.Property.Map SelectedStateImage - { - get - { - NUI.Property.Map temp = new NUI.Property.Map(); - GetProperty( Button.Property.SELECTED_STATE_IMAGE).Get( temp ); - return temp; - } - set - { - SetProperty( Button.Property.SELECTED_STATE_IMAGE, new NUI.Property.Value( value ) ); - } - } - public NUI.Property.Map DisabledStateImage - { - get - { - NUI.Property.Map temp = new NUI.Property.Map(); - GetProperty( Button.Property.DISABLED_STATE_IMAGE).Get( temp ); - return temp; - } - set - { - SetProperty( Button.Property.DISABLED_STATE_IMAGE, new NUI.Property.Value( value ) ); - } - } - public Vector4 UnselectedColor - { - get - { - Vector4 temp = new Vector4(0.0f,0.0f,0.0f,0.0f); - GetProperty( Button.Property.UNSELECTED_COLOR).Get( temp ); - return temp; - } - set - { - SetProperty( Button.Property.UNSELECTED_COLOR, new NUI.Property.Value( value ) ); - } - } - public Vector4 SelectedColor - { - get - { - Vector4 temp = new Vector4(0.0f,0.0f,0.0f,0.0f); - GetProperty( Button.Property.SELECTED_COLOR).Get( temp ); - return temp; - } - set - { - SetProperty( Button.Property.SELECTED_COLOR, new NUI.Property.Value( value ) ); - } - } - public NUI.Property.Map Label - { - get - { - NUI.Property.Map temp = new NUI.Property.Map(); - GetProperty( Button.Property.LABEL).Get( temp ); - return temp; - } - set - { - SetProperty( Button.Property.LABEL, new NUI.Property.Value( value ) ); - } - } - public string LabelText - { - get - { - string temp; - GetProperty( Button.Property.LABEL_TEXT).Get( out temp ); - return temp; - } - set - { - SetProperty( Button.Property.LABEL_TEXT, new NUI.Property.Value( value ) ); - } - } - -} - +// Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved +// PROPRIETARY/CONFIDENTIAL +// This software is the confidential and proprietary +// information of SAMSUNG ELECTRONICS ("Confidential Information"). You shall +// not disclose such Confidential Information and shall use it only in +// accordance with the terms of the license agreement you entered into with +// SAMSUNG ELECTRONICS. SAMSUNG make no representations or warranties about the +// suitability of the software, either express or implied, including but not +// limited to the implied warranties of merchantability, fitness for a +// particular purpose, or non-infringement. SAMSUNG shall not be liable for any +// damages suffered by licensee as a result of using, modifying or distributing +// this software or its derivatives. + +// Copyright (c) 2017 Samsung Electronics Co., Ltd. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// + +// This File has been auto-generated by SWIG and then modified using DALi Ruby Scripts +// Some have been manually changed + +namespace Tizen.NUI +{ + + using System; + using System.Runtime.InteropServices; + + + public class Button : View + { + private global::System.Runtime.InteropServices.HandleRef swigCPtr; + + internal Button(global::System.IntPtr cPtr, bool cMemoryOwn) : base(NDalicPINVOKE.Button_SWIGUpcast(cPtr), cMemoryOwn) + { + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); + } + + internal static global::System.Runtime.InteropServices.HandleRef getCPtr(Button obj) + { + return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; + } + + ~Button() + { + DisposeQueue.Instance.Add(this); + } + + public override void Dispose() + { + if (!Stage.IsInstalled()) + { + DisposeQueue.Instance.Add(this); + return; + } + + lock (this) + { + if (swigCPtr.Handle != global::System.IntPtr.Zero) + { + if (swigCMemOwn) + { + swigCMemOwn = false; + NDalicPINVOKE.delete_Button(swigCPtr); + } + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); + } + global::System.GC.SuppressFinalize(this); + base.Dispose(); + } + } + + + //changed + /* + public class ClickedEventArgs : EventArgs + { + private Button _button; + + public Button Button + { + get + { + return _button; + } + set + { + _button = value; + } + } + } + + public class PressedEventArgs : EventArgs + { + private Button _button; + + public Button Button + { + get + { + return _button; + } + set + { + _button = value; + } + } + } + + public class ReleasedEventArgs : EventArgs + { + private Button _button; + + public Button Button + { + get + { + return _button; + } + set + { + _button = value; + } + } + } + + public class StateChangedEventArgs : EventArgs + { + private Button _button; + + public Button Button + { + get + { + return _button; + } + set + { + _button = value; + } + } + } + + + [UnmanagedFunctionPointer(CallingConvention.StdCall)] + private delegate bool ClickedCallbackDelegate(global::System.IntPtr data); + private DaliEventHandlerWithReturnType _buttonClickedEventHandler; + private ClickedCallbackDelegate _buttonClickedCallbackDelegate; + + [UnmanagedFunctionPointer(CallingConvention.StdCall)] + private delegate bool PressedCallbackDelegate(global::System.IntPtr data); + private DaliEventHandlerWithReturnType _buttonPressedEventHandler; + private PressedCallbackDelegate _buttonPressedCallbackDelegate; + + [UnmanagedFunctionPointer(CallingConvention.StdCall)] + private delegate bool ReleasedCallbackDelegate(global::System.IntPtr data); + private DaliEventHandlerWithReturnType _buttonReleasedEventHandler; + private ReleasedCallbackDelegate _buttonReleasedCallbackDelegate; + + [UnmanagedFunctionPointer(CallingConvention.StdCall)] + private delegate bool StateChangedCallbackDelegate(global::System.IntPtr data); + private DaliEventHandlerWithReturnType _buttonStateChangedEventHandler; + private StateChangedCallbackDelegate _buttonStateChangedCallbackDelegate; + + + public event DaliEventHandlerWithReturnType Clicked + { + add + { + lock (this) + { + // Restricted to only one listener + if (_buttonClickedEventHandler == null) + { + _buttonClickedEventHandler += value; + + _buttonClickedCallbackDelegate = new ClickedCallbackDelegate(OnClicked); + this.ClickedSignal().Connect(_buttonClickedCallbackDelegate); + } + } + } + + remove + { + lock (this) + { + if (_buttonClickedEventHandler != null) + { + this.ClickedSignal().Disconnect(_buttonClickedCallbackDelegate); + } + + _buttonClickedEventHandler -= value; + } + } + } + + // Callback for button click signal + private bool OnClicked(IntPtr data) + { + ClickedEventArgs e = new ClickedEventArgs(); + + e.Button = Button.GetButtonFromPtr(data); + + if (_buttonClickedEventHandler != null) + { + //here we send all data to user event handlers + return _buttonClickedEventHandler(this, e); + } + return false; + } + + + public event DaliEventHandlerWithReturnType Pressed + { + add + { + lock (this) + { + // Restricted to only one listener + if (_buttonPressedEventHandler == null) + { + _buttonPressedEventHandler += value; + + _buttonPressedCallbackDelegate = new PressedCallbackDelegate(OnPressed); + this.PressedSignal().Connect(_buttonPressedCallbackDelegate); + } + } + } + + remove + { + lock (this) + { + if (_buttonPressedEventHandler != null) + { + this.PressedSignal().Disconnect(_buttonPressedCallbackDelegate); + } + + _buttonPressedEventHandler -= value; + } + } + } + + // Callback for button click signal + private bool OnPressed(IntPtr data) + { + PressedEventArgs e = new PressedEventArgs(); + + e.Button = Button.GetButtonFromPtr(data); + + if (_buttonPressedEventHandler != null) + { + //here we send all data to user event handlers + return _buttonPressedEventHandler(this, e); + } + return false; + } + + + public event DaliEventHandlerWithReturnType Released + { + add + { + lock (this) + { + // Restricted to only one listener + if (_buttonReleasedEventHandler == null) + { + _buttonReleasedEventHandler += value; + + _buttonReleasedCallbackDelegate = new ReleasedCallbackDelegate(OnReleased); + this.ReleasedSignal().Connect(_buttonReleasedCallbackDelegate); + } + } + } + + remove + { + lock (this) + { + if (_buttonReleasedEventHandler != null) + { + this.ReleasedSignal().Disconnect(_buttonReleasedCallbackDelegate); + } + + _buttonReleasedEventHandler -= value; + } + } + } + + // Callback for button click signal + private bool OnReleased(IntPtr data) + { + ReleasedEventArgs e = new ReleasedEventArgs(); + + e.Button = Button.GetButtonFromPtr(data); + + if (_buttonReleasedEventHandler != null) + { + //here we send all data to user event handlers + return _buttonReleasedEventHandler(this, e); + } + return false; + } + + + public event DaliEventHandlerWithReturnType StateChanged + { + add + { + lock (this) + { + // Restricted to only one listener + if (_buttonStateChangedEventHandler == null) + { + _buttonStateChangedEventHandler += value; + + _buttonStateChangedCallbackDelegate = new StateChangedCallbackDelegate(OnStateChanged); + this.StateChangedSignal().Connect(_buttonStateChangedCallbackDelegate); + } + } + } + + remove + { + lock (this) + { + if (_buttonStateChangedEventHandler != null) + { + this.StateChangedSignal().Disconnect(_buttonStateChangedCallbackDelegate); + } + + _buttonStateChangedEventHandler -= value; + } + } + } + + // Callback for button click signal + private bool OnStateChanged(IntPtr data) + { + StateChangedEventArgs e = new StateChangedEventArgs(); + + e.Button = Button.GetButtonFromPtr(data); + + if (_buttonStateChangedEventHandler != null) + { + //here we send all data to user event handlers + return _buttonStateChangedEventHandler(this, e); + } + return false; + } + */ + //changed <<<< + private EventHandlerWithReturnType _clickedEventHandler; + [UnmanagedFunctionPointer(CallingConvention.StdCall)] + private delegate bool ClickedCallbackType(global::System.IntPtr data); + private ClickedCallbackType _clickedCallback; + + public event EventHandlerWithReturnType Clicked + { + add + { + if (_clickedEventHandler == null) + { + _clickedCallback = OnClicked; + ClickedSignal().Connect(_clickedCallback); + } + + _clickedEventHandler += value; + } + + remove + { + if (_clickedEventHandler != null) + { + ClickedSignal().Disconnect(_clickedCallback); + } + + _clickedEventHandler -= value; + } + } + + + private bool OnClicked(IntPtr data) + { + if (_clickedEventHandler != null) + { + return _clickedEventHandler(this, null); + } + return false; + } + + + + private EventHandlerWithReturnType _pressedEventHandler; + [UnmanagedFunctionPointer(CallingConvention.StdCall)] + private delegate bool PressedCallbackType(global::System.IntPtr data); + private PressedCallbackType _pressedCallback; + + public event EventHandlerWithReturnType Pressed + { + add + { + if (_pressedEventHandler == null) + { + _pressedCallback = OnPressed; + PressedSignal().Connect(_pressedCallback); + } + + _pressedEventHandler += value; + } + + remove + { + if (_pressedEventHandler != null) + { + this.PressedSignal().Disconnect(_pressedCallback); + } + + _pressedEventHandler -= value; + } + } + + private bool OnPressed(IntPtr data) + { + if (_pressedEventHandler != null) + { + return _pressedEventHandler(this, null); + } + return false; + } + + + + private EventHandlerWithReturnType _releasedEventHandler; + [UnmanagedFunctionPointer(CallingConvention.StdCall)] + private delegate bool ReleasedCallbackType(global::System.IntPtr data); + private ReleasedCallbackType _releasedCallback; + + public event EventHandlerWithReturnType Released + { + add + { + if (_releasedEventHandler == null) + { + _releasedCallback = OnReleased; + ReleasedSignal().Connect(_releasedCallback); + } + + _releasedEventHandler += value; + } + + remove + { + lock (this) + { + if (_releasedEventHandler != null) + { + ReleasedSignal().Disconnect(_releasedCallback); + } + + _releasedEventHandler -= value; + } + } + } + + private bool OnReleased(IntPtr data) + { + if (_releasedEventHandler != null) + { + return _releasedEventHandler(this, null); + } + return false; + } + + + private EventHandlerWithReturnType _stateChangedEventHandler; + [UnmanagedFunctionPointer(CallingConvention.StdCall)] + private delegate bool StateChangedCallback(global::System.IntPtr data); + private StateChangedCallback _stateChangedCallback; + + public event EventHandlerWithReturnType StateChanged + { + add + { + if (_stateChangedEventHandler == null) + { + _stateChangedCallback = OnStateChanged; + StateChangedSignal().Connect(_stateChangedCallback); + } + + _stateChangedEventHandler += value; + } + + remove + { + if (_stateChangedEventHandler != null) + { + StateChangedSignal().Disconnect(_stateChangedCallback); + } + + _stateChangedEventHandler -= value; + } + } + + private bool OnStateChanged(IntPtr data) + { + if (_stateChangedEventHandler != null) + { + return _stateChangedEventHandler(this, null); + } + return false; + } + //changed >>> + + public static Button GetButtonFromPtr(global::System.IntPtr cPtr) + { + Button ret = new Button(cPtr, false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public Tizen.NUI.PropertyMap UnselectedVisual + { + get + { + Tizen.NUI.PropertyMap temp = new Tizen.NUI.PropertyMap(); + GetProperty(Button.Property.UNSELECTED_VISUAL).Get(temp); + return temp; + } + set + { + SetProperty(Button.Property.UNSELECTED_VISUAL, new Tizen.NUI.PropertyValue(value)); + } + } + + public Tizen.NUI.PropertyMap SelectedVisual + { + get + { + Tizen.NUI.PropertyMap temp = new Tizen.NUI.PropertyMap(); + GetProperty(Button.Property.SELECTED_VISUAL).Get(temp); + return temp; + } + set + { + SetProperty(Button.Property.SELECTED_VISUAL, new Tizen.NUI.PropertyValue(value)); + } + } + + public Tizen.NUI.PropertyMap DisabledSelectedVisual + { + get + { + Tizen.NUI.PropertyMap temp = new Tizen.NUI.PropertyMap(); + GetProperty(Button.Property.DISABLED_SELECTED_VISUAL).Get(temp); + return temp; + } + set + { + SetProperty(Button.Property.DISABLED_SELECTED_VISUAL, new Tizen.NUI.PropertyValue(value)); + } + } + + public Tizen.NUI.PropertyMap DisabledUnselectedVisual + { + get + { + Tizen.NUI.PropertyMap temp = new Tizen.NUI.PropertyMap(); + GetProperty(Button.Property.DISABLED_UNSELECTED_VISUAL).Get(temp); + return temp; + } + set + { + SetProperty(Button.Property.DISABLED_UNSELECTED_VISUAL, new Tizen.NUI.PropertyValue(value)); + } + } + + public Tizen.NUI.PropertyMap UnselectedBackgroundVisual + { + get + { + Tizen.NUI.PropertyMap temp = new Tizen.NUI.PropertyMap(); + GetProperty(Button.Property.UNSELECTED_BACKGROUND_VISUAL).Get(temp); + return temp; + } + set + { + SetProperty(Button.Property.UNSELECTED_BACKGROUND_VISUAL, new Tizen.NUI.PropertyValue(value)); + } + } + + public Tizen.NUI.PropertyMap SelectedBackgroundVisual + { + get + { + Tizen.NUI.PropertyMap temp = new Tizen.NUI.PropertyMap(); + GetProperty(Button.Property.SELECTED_BACKGROUND_VISUAL).Get(temp); + return temp; + } + set + { + SetProperty(Button.Property.SELECTED_BACKGROUND_VISUAL, new Tizen.NUI.PropertyValue(value)); + } + } + + public Tizen.NUI.PropertyMap DisabledUnselectedBackgroundVisual + { + get + { + Tizen.NUI.PropertyMap temp = new Tizen.NUI.PropertyMap(); + GetProperty(Button.Property.DISABLED_UNSELECTED_BACKGROUND_VISUAL).Get(temp); + return temp; + } + set + { + SetProperty(Button.Property.DISABLED_UNSELECTED_BACKGROUND_VISUAL, new Tizen.NUI.PropertyValue(value)); + } + } + + public Tizen.NUI.PropertyMap DisabledSelectedBackgroundVisual + { + get + { + Tizen.NUI.PropertyMap temp = new Tizen.NUI.PropertyMap(); + GetProperty(Button.Property.DISABLED_SELECTED_BACKGROUND_VISUAL).Get(temp); + return temp; + } + set + { + SetProperty(Button.Property.DISABLED_SELECTED_BACKGROUND_VISUAL, new Tizen.NUI.PropertyValue(value)); + } + } + + public string LabelRelativeAlignment + { + get + { + string temp; + GetProperty(Button.Property.LABEL_RELATIVE_ALIGNMENT).Get(out temp); + return temp; + } + set + { + SetProperty(Button.Property.LABEL_RELATIVE_ALIGNMENT, new Tizen.NUI.PropertyValue(value)); + } + } + + public Vector4 LabelPadding + { + get + { + Vector4 temp = new Vector4(0.0f, 0.0f, 0.0f, 0.0f); + GetProperty(Button.Property.LABEL_PADDING).Get(temp); + return temp; + } + set + { + SetProperty(Button.Property.LABEL_PADDING, new Tizen.NUI.PropertyValue(value)); + } + } + + public Vector4 VisualPadding + { + get + { + Vector4 temp = new Vector4(0.0f, 0.0f, 0.0f, 0.0f); + GetProperty(Button.Property.VISUAL_PADDING).Get(temp); + return temp; + } + set + { + SetProperty(Button.Property.VISUAL_PADDING, new Tizen.NUI.PropertyValue(value)); + } + } + //internal + internal class Property : global::System.IDisposable + { + private global::System.Runtime.InteropServices.HandleRef swigCPtr; + protected bool swigCMemOwn; + + internal Property(global::System.IntPtr cPtr, bool cMemoryOwn) + { + swigCMemOwn = cMemoryOwn; + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); + } + + internal static global::System.Runtime.InteropServices.HandleRef getCPtr(Property obj) + { + return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; + } + + ~Property() + { + Dispose(); + } + + public virtual void Dispose() + { + lock (this) + { + if (swigCPtr.Handle != global::System.IntPtr.Zero) + { + if (swigCMemOwn) + { + swigCMemOwn = false; + NDalicPINVOKE.delete_Button_Property(swigCPtr); + } + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); + } + global::System.GC.SuppressFinalize(this); + } + } + //chagned + internal static readonly int UNSELECTED_VISUAL = NDalicManualPINVOKE.Button_Property_UNSELECTED_VISUAL_get(); + internal static readonly int SELECTED_VISUAL = NDalicManualPINVOKE.Button_Property_SELECTED_VISUAL_get(); + internal static readonly int DISABLED_SELECTED_VISUAL = NDalicManualPINVOKE.Button_Property_DISABLED_SELECTED_VISUAL_get(); + internal static readonly int DISABLED_UNSELECTED_VISUAL = NDalicManualPINVOKE.Button_Property_DISABLED_UNSELECTED_VISUAL_get(); + internal static readonly int UNSELECTED_BACKGROUND_VISUAL = NDalicManualPINVOKE.Button_Property_UNSELECTED_BACKGROUND_VISUAL_get(); + internal static readonly int SELECTED_BACKGROUND_VISUAL = NDalicManualPINVOKE.Button_Property_SELECTED_BACKGROUND_VISUAL_get(); + internal static readonly int DISABLED_UNSELECTED_BACKGROUND_VISUAL = NDalicManualPINVOKE.Button_Property_DISABLED_UNSELECTED_BACKGROUND_VISUAL_get(); + internal static readonly int DISABLED_SELECTED_BACKGROUND_VISUAL = NDalicManualPINVOKE.Button_Property_DISABLED_SELECTED_BACKGROUND_VISUAL_get(); + internal static readonly int LABEL_RELATIVE_ALIGNMENT = NDalicManualPINVOKE.Button_Property_LABEL_RELATIVE_ALIGNMENT_get(); + internal static readonly int LABEL_PADDING = NDalicManualPINVOKE.Button_Property_LABEL_PADDING_get(); + internal static readonly int VISUAL_PADDING = NDalicManualPINVOKE.Button_Property_VISUAL_PADDING_get(); + //changed + internal Property() : this(NDalicPINVOKE.new_Button_Property(), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + //changed + internal static readonly int DISABLED = NDalicPINVOKE.Button_Property_DISABLED_get(); + internal static readonly int AUTO_REPEATING = NDalicPINVOKE.Button_Property_AUTO_REPEATING_get(); + internal static readonly int INITIAL_AUTO_REPEATING_DELAY = NDalicPINVOKE.Button_Property_INITIAL_AUTO_REPEATING_DELAY_get(); + internal static readonly int NEXT_AUTO_REPEATING_DELAY = NDalicPINVOKE.Button_Property_NEXT_AUTO_REPEATING_DELAY_get(); + internal static readonly int TOGGLABLE = NDalicPINVOKE.Button_Property_TOGGLABLE_get(); + internal static readonly int SELECTED = NDalicPINVOKE.Button_Property_SELECTED_get(); + internal static readonly int UNSELECTED_STATE_IMAGE = NDalicPINVOKE.Button_Property_UNSELECTED_STATE_IMAGE_get(); + internal static readonly int SELECTED_STATE_IMAGE = NDalicPINVOKE.Button_Property_SELECTED_STATE_IMAGE_get(); + internal static readonly int DISABLED_STATE_IMAGE = NDalicPINVOKE.Button_Property_DISABLED_STATE_IMAGE_get(); + internal static readonly int UNSELECTED_COLOR = NDalicPINVOKE.Button_Property_UNSELECTED_COLOR_get(); + internal static readonly int SELECTED_COLOR = NDalicPINVOKE.Button_Property_SELECTED_COLOR_get(); + internal static readonly int LABEL = NDalicPINVOKE.Button_Property_LABEL_get(); + internal static readonly int LABEL_TEXT = NDalicPINVOKE.Button_Property_LABEL_TEXT_get(); + + } + + public Button() : this(NDalicPINVOKE.new_Button__SWIG_0(), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + //changed + internal Button(Button button) : this(NDalicPINVOKE.new_Button__SWIG_1(Button.getCPtr(button)), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + //changed + internal Button Assign(Button button) + { + Button ret = new Button(NDalicPINVOKE.Button_Assign(swigCPtr, Button.getCPtr(button)), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public new static Button DownCast(BaseHandle handle) + { + Button ret = new Button(NDalicPINVOKE.Button_DownCast(BaseHandle.getCPtr(handle)), true); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + //changed + internal bool IsDisabled() + { + bool ret = NDalicPINVOKE.Button_IsDisabled(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + //changed + internal bool IsAutoRepeating() + { + bool ret = NDalicPINVOKE.Button_IsAutoRepeating(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + //changed + internal float GetInitialAutoRepeatingDelay() + { + float ret = NDalicPINVOKE.Button_GetInitialAutoRepeatingDelay(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + //changed + internal float GetNextAutoRepeatingDelay() + { + float ret = NDalicPINVOKE.Button_GetNextAutoRepeatingDelay(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + //changed + internal bool IsTogglableButton() + { + bool ret = NDalicPINVOKE.Button_IsTogglableButton(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + //changed + internal bool IsSelected() + { + bool ret = NDalicPINVOKE.Button_IsSelected(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public float GetAnimationTime() + { + float ret = NDalicPINVOKE.Button_GetAnimationTime(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + //changed + internal string GetLabelText() + { + string ret = NDalicPINVOKE.Button_GetLabelText(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + //changed + internal void SetLabel(Actor label) + { + NDalicPINVOKE.Button_SetLabel(swigCPtr, Actor.getCPtr(label)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + //changed + internal void SetButtonImage(Image image) + { + NDalicPINVOKE.Button_SetButtonImage(swigCPtr, Image.getCPtr(image)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + //changed + internal void SetSelectedImage(Image image) + { + NDalicPINVOKE.Button_SetSelectedImage(swigCPtr, Image.getCPtr(image)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + //changed + internal Actor GetButtonImage() + { + Actor ret = new Actor(NDalicPINVOKE.Button_GetButtonImage(swigCPtr), true); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + //changed + internal Actor GetSelectedImage() + { + Actor ret = new Actor(NDalicPINVOKE.Button_GetSelectedImage(swigCPtr), true); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + //changed + internal ButtonSignal PressedSignal() + { + ButtonSignal ret = new ButtonSignal(NDalicPINVOKE.Button_PressedSignal(swigCPtr), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + //changed + internal ButtonSignal ReleasedSignal() + { + ButtonSignal ret = new ButtonSignal(NDalicPINVOKE.Button_ReleasedSignal(swigCPtr), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + //changed + internal ButtonSignal ClickedSignal() + { + ButtonSignal ret = new ButtonSignal(NDalicPINVOKE.Button_ClickedSignal(swigCPtr), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + //changed + internal ButtonSignal StateChangedSignal() + { + ButtonSignal ret = new ButtonSignal(NDalicPINVOKE.Button_StateChangedSignal(swigCPtr), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + //changed + internal enum PropertyRange + { + PROPERTY_START_INDEX = PropertyRanges.PROPERTY_REGISTRATION_START_INDEX, + PROPERTY_END_INDEX = View.PropertyRange.PROPERTY_START_INDEX + 1000 + } + + public bool Disabled + { + get + { + bool temp = false; + GetProperty(Button.Property.DISABLED).Get(ref temp); + return temp; + } + set + { + SetProperty(Button.Property.DISABLED, new Tizen.NUI.PropertyValue(value)); + } + } + public bool AutoRepeating + { + get + { + bool temp = false; + GetProperty(Button.Property.AUTO_REPEATING).Get(ref temp); + return temp; + } + set + { + SetProperty(Button.Property.AUTO_REPEATING, new Tizen.NUI.PropertyValue(value)); + } + } + public float InitialAutoRepeatingDelay + { + get + { + float temp = 0.0f; + GetProperty(Button.Property.INITIAL_AUTO_REPEATING_DELAY).Get(ref temp); + return temp; + } + set + { + SetProperty(Button.Property.INITIAL_AUTO_REPEATING_DELAY, new Tizen.NUI.PropertyValue(value)); + } + } + public float NextAutoRepeatingDelay + { + get + { + float temp = 0.0f; + GetProperty(Button.Property.NEXT_AUTO_REPEATING_DELAY).Get(ref temp); + return temp; + } + set + { + SetProperty(Button.Property.NEXT_AUTO_REPEATING_DELAY, new Tizen.NUI.PropertyValue(value)); + } + } + public bool Togglable + { + get + { + bool temp = false; + GetProperty(Button.Property.TOGGLABLE).Get(ref temp); + return temp; + } + set + { + SetProperty(Button.Property.TOGGLABLE, new Tizen.NUI.PropertyValue(value)); + } + } + public bool Selected + { + get + { + bool temp = false; + GetProperty(Button.Property.SELECTED).Get(ref temp); + return temp; + } + set + { + SetProperty(Button.Property.SELECTED, new Tizen.NUI.PropertyValue(value)); + } + } + public Tizen.NUI.PropertyMap UnselectedStateImage + { + get + { + Tizen.NUI.PropertyMap temp = new Tizen.NUI.PropertyMap(); + GetProperty(Button.Property.UNSELECTED_STATE_IMAGE).Get(temp); + return temp; + } + set + { + SetProperty(Button.Property.UNSELECTED_STATE_IMAGE, new Tizen.NUI.PropertyValue(value)); + } + } + public Tizen.NUI.PropertyMap SelectedStateImage + { + get + { + Tizen.NUI.PropertyMap temp = new Tizen.NUI.PropertyMap(); + GetProperty(Button.Property.SELECTED_STATE_IMAGE).Get(temp); + return temp; + } + set + { + SetProperty(Button.Property.SELECTED_STATE_IMAGE, new Tizen.NUI.PropertyValue(value)); + } + } + public Tizen.NUI.PropertyMap DisabledStateImage + { + get + { + Tizen.NUI.PropertyMap temp = new Tizen.NUI.PropertyMap(); + GetProperty(Button.Property.DISABLED_STATE_IMAGE).Get(temp); + return temp; + } + set + { + SetProperty(Button.Property.DISABLED_STATE_IMAGE, new Tizen.NUI.PropertyValue(value)); + } + } + public Color UnselectedColor + { + get + { + Color temp = new Color(0.0f, 0.0f, 0.0f, 0.0f); + GetProperty(Button.Property.UNSELECTED_COLOR).Get(temp); + return temp; + } + set + { + SetProperty(Button.Property.UNSELECTED_COLOR, new Tizen.NUI.PropertyValue(value)); + } + } + public Color SelectedColor + { + get + { + Color temp = new Color(0.0f, 0.0f, 0.0f, 0.0f); + GetProperty(Button.Property.SELECTED_COLOR).Get(temp); + return temp; + } + set + { + SetProperty(Button.Property.SELECTED_COLOR, new Tizen.NUI.PropertyValue(value)); + } + } + public Tizen.NUI.PropertyMap Label + { + get + { + Tizen.NUI.PropertyMap temp = new Tizen.NUI.PropertyMap(); + GetProperty(Button.Property.LABEL).Get(temp); + return temp; + } + set + { + SetProperty(Button.Property.LABEL, new Tizen.NUI.PropertyValue(value)); + } + } + public string LabelText + { + get + { + string temp; + GetProperty(Button.Property.LABEL_TEXT).Get(out temp); + return temp; + } + set + { + SetProperty(Button.Property.LABEL_TEXT, new Tizen.NUI.PropertyValue(value)); + } + } + + } + } \ No newline at end of file diff --git a/Tizen.NUI/src/public/CameraActor.cs b/Tizen.NUI/src/public/CameraActor.cs old mode 100644 new mode 100755 index 21091c0..b076fc3 --- a/Tizen.NUI/src/public/CameraActor.cs +++ b/Tizen.NUI/src/public/CameraActor.cs @@ -1,417 +1,480 @@ -/** Copyright (c) 2017 Samsung Electronics Co., Ltd. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ -// This File has been auto-generated by SWIG and then modified using DALi Ruby Scripts -//------------------------------------------------------------------------------ -// -// -// This file was automatically generated by SWIG (http://www.swig.org). -// Version 3.0.9 -// -// Do not make changes to this file unless you know what you are doing--modify -// the SWIG interface file instead. -//------------------------------------------------------------------------------ - -namespace NUI { - -public class CameraActor : Actor { - private global::System.Runtime.InteropServices.HandleRef swigCPtr; - - internal CameraActor(global::System.IntPtr cPtr, bool cMemoryOwn) : base(NDalicPINVOKE.CameraActor_SWIGUpcast(cPtr), cMemoryOwn) { - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); - } - - internal static global::System.Runtime.InteropServices.HandleRef getCPtr(CameraActor obj) { - return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; - } - - ~CameraActor() { - DisposeQueue.Instance.Add(this); - } - - public override void Dispose() { - if (!Stage.IsInstalled()) { - DisposeQueue.Instance.Add(this); - return; - } - - lock(this) { - if (swigCPtr.Handle != global::System.IntPtr.Zero) { - if (swigCMemOwn) { - swigCMemOwn = false; - NDalicPINVOKE.delete_CameraActor(swigCPtr); - } - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); - } - global::System.GC.SuppressFinalize(this); - base.Dispose(); - } - } - - - public class Property : global::System.IDisposable { - private global::System.Runtime.InteropServices.HandleRef swigCPtr; - protected bool swigCMemOwn; - - internal Property(global::System.IntPtr cPtr, bool cMemoryOwn) { - swigCMemOwn = cMemoryOwn; - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); - } - - internal static global::System.Runtime.InteropServices.HandleRef getCPtr(Property obj) { - return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; - } - - ~Property() { - Dispose(); - } - - public virtual void Dispose() { - lock(this) { - if (swigCPtr.Handle != global::System.IntPtr.Zero) { - if (swigCMemOwn) { - swigCMemOwn = false; - NDalicPINVOKE.delete_CameraActor_Property(swigCPtr); - } - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); - } - global::System.GC.SuppressFinalize(this); - } - } - - public Property() : this(NDalicPINVOKE.new_CameraActor_Property(), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public static readonly int TYPE = NDalicPINVOKE.CameraActor_Property_TYPE_get(); - public static readonly int PROJECTION_MODE = NDalicPINVOKE.CameraActor_Property_PROJECTION_MODE_get(); - public static readonly int FIELD_OF_VIEW = NDalicPINVOKE.CameraActor_Property_FIELD_OF_VIEW_get(); - public static readonly int ASPECT_RATIO = NDalicPINVOKE.CameraActor_Property_ASPECT_RATIO_get(); - public static readonly int NEAR_PLANE_DISTANCE = NDalicPINVOKE.CameraActor_Property_NEAR_PLANE_DISTANCE_get(); - public static readonly int FAR_PLANE_DISTANCE = NDalicPINVOKE.CameraActor_Property_FAR_PLANE_DISTANCE_get(); - public static readonly int LEFT_PLANE_DISTANCE = NDalicPINVOKE.CameraActor_Property_LEFT_PLANE_DISTANCE_get(); - public static readonly int RIGHT_PLANE_DISTANCE = NDalicPINVOKE.CameraActor_Property_RIGHT_PLANE_DISTANCE_get(); - public static readonly int TOP_PLANE_DISTANCE = NDalicPINVOKE.CameraActor_Property_TOP_PLANE_DISTANCE_get(); - public static readonly int BOTTOM_PLANE_DISTANCE = NDalicPINVOKE.CameraActor_Property_BOTTOM_PLANE_DISTANCE_get(); - public static readonly int TARGET_POSITION = NDalicPINVOKE.CameraActor_Property_TARGET_POSITION_get(); - public static readonly int PROJECTION_MATRIX = NDalicPINVOKE.CameraActor_Property_PROJECTION_MATRIX_get(); - public static readonly int VIEW_MATRIX = NDalicPINVOKE.CameraActor_Property_VIEW_MATRIX_get(); - public static readonly int INVERT_Y_AXIS = NDalicPINVOKE.CameraActor_Property_INVERT_Y_AXIS_get(); - - } - - public CameraActor () : this (NDalicPINVOKE.CameraActor_New__SWIG_0(), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - - } - public CameraActor (Vector2 size) : this (NDalicPINVOKE.CameraActor_New__SWIG_1(Vector2.getCPtr(size)), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - - } - public new static CameraActor DownCast(BaseHandle handle) { - CameraActor ret = new CameraActor(NDalicPINVOKE.CameraActor_DownCast(BaseHandle.getCPtr(handle)), true); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public CameraActor(CameraActor copy) : this(NDalicPINVOKE.new_CameraActor__SWIG_1(CameraActor.getCPtr(copy)), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public CameraActor Assign(CameraActor rhs) { - CameraActor ret = new CameraActor(NDalicPINVOKE.CameraActor_Assign(swigCPtr, CameraActor.getCPtr(rhs)), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public void SetType(CameraType type) { - NDalicPINVOKE.CameraActor_SetType(swigCPtr, (int)type); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public CameraType GetType() { - CameraType ret = (CameraType)NDalicPINVOKE.CameraActor_GetType(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public void SetProjectionMode(ProjectionMode mode) { - NDalicPINVOKE.CameraActor_SetProjectionMode(swigCPtr, (int)mode); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public ProjectionMode GetProjectionMode() { - ProjectionMode ret = (ProjectionMode)NDalicPINVOKE.CameraActor_GetProjectionMode(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public void SetFieldOfView(float fieldOfView) { - NDalicPINVOKE.CameraActor_SetFieldOfView(swigCPtr, fieldOfView); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public float GetFieldOfView() { - float ret = NDalicPINVOKE.CameraActor_GetFieldOfView(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public void SetAspectRatio(float aspectRatio) { - NDalicPINVOKE.CameraActor_SetAspectRatio(swigCPtr, aspectRatio); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public float GetAspectRatio() { - float ret = NDalicPINVOKE.CameraActor_GetAspectRatio(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public void SetNearClippingPlane(float nearClippingPlane) { - NDalicPINVOKE.CameraActor_SetNearClippingPlane(swigCPtr, nearClippingPlane); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public float GetNearClippingPlane() { - float ret = NDalicPINVOKE.CameraActor_GetNearClippingPlane(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public void SetFarClippingPlane(float farClippingPlane) { - NDalicPINVOKE.CameraActor_SetFarClippingPlane(swigCPtr, farClippingPlane); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public float GetFarClippingPlane() { - float ret = NDalicPINVOKE.CameraActor_GetFarClippingPlane(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public void SetTargetPosition(Vector3 targetPosition) { - NDalicPINVOKE.CameraActor_SetTargetPosition(swigCPtr, Vector3.getCPtr(targetPosition)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public Vector3 GetTargetPosition() { - Vector3 ret = new Vector3(NDalicPINVOKE.CameraActor_GetTargetPosition(swigCPtr), true); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public void SetInvertYAxis(bool invertYAxis) { - NDalicPINVOKE.CameraActor_SetInvertYAxis(swigCPtr, invertYAxis); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public bool GetInvertYAxis() { - bool ret = NDalicPINVOKE.CameraActor_GetInvertYAxis(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public void SetPerspectiveProjection(Vector2 size) { - NDalicPINVOKE.CameraActor_SetPerspectiveProjection(swigCPtr, Vector2.getCPtr(size)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public void SetOrthographicProjection(Vector2 size) { - NDalicPINVOKE.CameraActor_SetOrthographicProjection__SWIG_0(swigCPtr, Vector2.getCPtr(size)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public void SetOrthographicProjection(float left, float right, float top, float bottom, float near, float far) { - NDalicPINVOKE.CameraActor_SetOrthographicProjection__SWIG_1(swigCPtr, left, right, top, bottom, near, far); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public string Type - { - get - { - string temp; - GetProperty( CameraActor.Property.TYPE).Get( out temp ); - return temp; - } - set - { - SetProperty( CameraActor.Property.TYPE, new NUI.Property.Value( value ) ); - } - } - public string ProjectionMode - { - get - { - string temp; - GetProperty( CameraActor.Property.PROJECTION_MODE).Get( out temp ); - return temp; - } - set - { - SetProperty( CameraActor.Property.PROJECTION_MODE, new NUI.Property.Value( value ) ); - } - } - public float FieldOfView - { - get - { - float temp = 0.0f; - GetProperty( CameraActor.Property.FIELD_OF_VIEW).Get( ref temp ); - return temp; - } - set - { - SetProperty( CameraActor.Property.FIELD_OF_VIEW, new NUI.Property.Value( value ) ); - } - } - public float AspectRatio - { - get - { - float temp = 0.0f; - GetProperty( CameraActor.Property.ASPECT_RATIO).Get( ref temp ); - return temp; - } - set - { - SetProperty( CameraActor.Property.ASPECT_RATIO, new NUI.Property.Value( value ) ); - } - } - public float NearPlaneDistance - { - get - { - float temp = 0.0f; - GetProperty( CameraActor.Property.NEAR_PLANE_DISTANCE).Get( ref temp ); - return temp; - } - set - { - SetProperty( CameraActor.Property.NEAR_PLANE_DISTANCE, new NUI.Property.Value( value ) ); - } - } - public float FarPlaneDistance - { - get - { - float temp = 0.0f; - GetProperty( CameraActor.Property.FAR_PLANE_DISTANCE).Get( ref temp ); - return temp; - } - set - { - SetProperty( CameraActor.Property.FAR_PLANE_DISTANCE, new NUI.Property.Value( value ) ); - } - } - public float LeftPlaneDistance - { - get - { - float temp = 0.0f; - GetProperty( CameraActor.Property.LEFT_PLANE_DISTANCE).Get( ref temp ); - return temp; - } - set - { - SetProperty( CameraActor.Property.LEFT_PLANE_DISTANCE, new NUI.Property.Value( value ) ); - } - } - public float RightPlaneDistance - { - get - { - float temp = 0.0f; - GetProperty( CameraActor.Property.RIGHT_PLANE_DISTANCE).Get( ref temp ); - return temp; - } - set - { - SetProperty( CameraActor.Property.RIGHT_PLANE_DISTANCE, new NUI.Property.Value( value ) ); - } - } - public float TopPlaneDistance - { - get - { - float temp = 0.0f; - GetProperty( CameraActor.Property.TOP_PLANE_DISTANCE).Get( ref temp ); - return temp; - } - set - { - SetProperty( CameraActor.Property.TOP_PLANE_DISTANCE, new NUI.Property.Value( value ) ); - } - } - public float BottomPlaneDistance - { - get - { - float temp = 0.0f; - GetProperty( CameraActor.Property.BOTTOM_PLANE_DISTANCE).Get( ref temp ); - return temp; - } - set - { - SetProperty( CameraActor.Property.BOTTOM_PLANE_DISTANCE, new NUI.Property.Value( value ) ); - } - } - public Vector3 TargetPosition - { - get - { - Vector3 temp = new Vector3(0.0f,0.0f,0.0f); - GetProperty( CameraActor.Property.TARGET_POSITION).Get( temp ); - return temp; - } - set - { - SetProperty( CameraActor.Property.TARGET_POSITION, new NUI.Property.Value( value ) ); - } - } - public Matrix ProjectionMatrix - { - get - { - Matrix temp = new Matrix(); - GetProperty( CameraActor.Property.PROJECTION_MATRIX).Get( temp ); - return temp; - } -} public Matrix ViewMatrix - { - get - { - Matrix temp = new Matrix(); - GetProperty( CameraActor.Property.VIEW_MATRIX).Get( temp ); - return temp; - } -} public bool InvertYAxis - { - get - { - bool temp = false; - GetProperty( CameraActor.Property.INVERT_Y_AXIS).Get( ref temp ); - return temp; - } - set - { - SetProperty( CameraActor.Property.INVERT_Y_AXIS, new NUI.Property.Value( value ) ); - } - } - -} - -} +// Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved +// PROPRIETARY/CONFIDENTIAL +// This software is the confidential and proprietary +// information of SAMSUNG ELECTRONICS ("Confidential Information"). You shall +// not disclose such Confidential Information and shall use it only in +// accordance with the terms of the license agreement you entered into with +// SAMSUNG ELECTRONICS. SAMSUNG make no representations or warranties about the +// suitability of the software, either express or implied, including but not +// limited to the implied warranties of merchantability, fitness for a +// particular purpose, or non-infringement. SAMSUNG shall not be liable for any +// damages suffered by licensee as a result of using, modifying or distributing +// this software or its derivatives. + +// Copyright (c) 2017 Samsung Electronics Co., Ltd. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// + +// This File has been auto-generated by SWIG and then modified using DALi Ruby Scripts +// Some have been manually changed + +namespace Tizen.NUI +{ + + public class CameraActor : Actor + { + private global::System.Runtime.InteropServices.HandleRef swigCPtr; + + internal CameraActor(global::System.IntPtr cPtr, bool cMemoryOwn) : base(NDalicPINVOKE.CameraActor_SWIGUpcast(cPtr), cMemoryOwn) + { + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); + } + + internal static global::System.Runtime.InteropServices.HandleRef getCPtr(CameraActor obj) + { + return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; + } + + ~CameraActor() + { + DisposeQueue.Instance.Add(this); + } + + public override void Dispose() + { + if (!Stage.IsInstalled()) + { + DisposeQueue.Instance.Add(this); + return; + } + + lock (this) + { + if (swigCPtr.Handle != global::System.IntPtr.Zero) + { + if (swigCMemOwn) + { + swigCMemOwn = false; + NDalicPINVOKE.delete_CameraActor(swigCPtr); + } + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); + } + global::System.GC.SuppressFinalize(this); + base.Dispose(); + } + } + + + internal class Property : global::System.IDisposable + { + private global::System.Runtime.InteropServices.HandleRef swigCPtr; + protected bool swigCMemOwn; + + internal Property(global::System.IntPtr cPtr, bool cMemoryOwn) + { + swigCMemOwn = cMemoryOwn; + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); + } + + internal static global::System.Runtime.InteropServices.HandleRef getCPtr(Property obj) + { + return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; + } + + ~Property() + { + Dispose(); + } + + public virtual void Dispose() + { + lock (this) + { + if (swigCPtr.Handle != global::System.IntPtr.Zero) + { + if (swigCMemOwn) + { + swigCMemOwn = false; + NDalicPINVOKE.delete_CameraActor_Property(swigCPtr); + } + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); + } + global::System.GC.SuppressFinalize(this); + } + } + + internal Property() : this(NDalicPINVOKE.new_CameraActor_Property(), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + internal static readonly int TYPE = NDalicPINVOKE.CameraActor_Property_TYPE_get(); + internal static readonly int PROJECTION_MODE = NDalicPINVOKE.CameraActor_Property_PROJECTION_MODE_get(); + internal static readonly int FIELD_OF_VIEW = NDalicPINVOKE.CameraActor_Property_FIELD_OF_VIEW_get(); + internal static readonly int ASPECT_RATIO = NDalicPINVOKE.CameraActor_Property_ASPECT_RATIO_get(); + internal static readonly int NEAR_PLANE_DISTANCE = NDalicPINVOKE.CameraActor_Property_NEAR_PLANE_DISTANCE_get(); + internal static readonly int FAR_PLANE_DISTANCE = NDalicPINVOKE.CameraActor_Property_FAR_PLANE_DISTANCE_get(); + internal static readonly int LEFT_PLANE_DISTANCE = NDalicPINVOKE.CameraActor_Property_LEFT_PLANE_DISTANCE_get(); + internal static readonly int RIGHT_PLANE_DISTANCE = NDalicPINVOKE.CameraActor_Property_RIGHT_PLANE_DISTANCE_get(); + internal static readonly int TOP_PLANE_DISTANCE = NDalicPINVOKE.CameraActor_Property_TOP_PLANE_DISTANCE_get(); + internal static readonly int BOTTOM_PLANE_DISTANCE = NDalicPINVOKE.CameraActor_Property_BOTTOM_PLANE_DISTANCE_get(); + internal static readonly int TARGET_POSITION = NDalicPINVOKE.CameraActor_Property_TARGET_POSITION_get(); + internal static readonly int PROJECTION_MATRIX = NDalicPINVOKE.CameraActor_Property_PROJECTION_MATRIX_get(); + internal static readonly int VIEW_MATRIX = NDalicPINVOKE.CameraActor_Property_VIEW_MATRIX_get(); + internal static readonly int INVERT_Y_AXIS = NDalicPINVOKE.CameraActor_Property_INVERT_Y_AXIS_get(); + + } + + public CameraActor() : this(NDalicPINVOKE.CameraActor_New__SWIG_0(), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + + } + public CameraActor(Size2D size) : this(NDalicPINVOKE.CameraActor_New__SWIG_1(Size2D.getCPtr(size)), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + + } + public new static CameraActor DownCast(BaseHandle handle) + { + CameraActor ret = new CameraActor(NDalicPINVOKE.CameraActor_DownCast(BaseHandle.getCPtr(handle)), true); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal CameraActor(CameraActor copy) : this(NDalicPINVOKE.new_CameraActor__SWIG_1(CameraActor.getCPtr(copy)), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + internal CameraActor Assign(CameraActor rhs) + { + CameraActor ret = new CameraActor(NDalicPINVOKE.CameraActor_Assign(swigCPtr, CameraActor.getCPtr(rhs)), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal void SetType(CameraType type) + { + NDalicPINVOKE.CameraActor_SetType(swigCPtr, (int)type); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + internal CameraType GetType() + { + CameraType ret = (CameraType)NDalicPINVOKE.CameraActor_GetType(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal void SetProjectionMode(ProjectionMode mode) + { + NDalicPINVOKE.CameraActor_SetProjectionMode(swigCPtr, (int)mode); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + internal ProjectionMode GetProjectionMode() + { + ProjectionMode ret = (ProjectionMode)NDalicPINVOKE.CameraActor_GetProjectionMode(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal void SetFieldOfView(float fieldOfView) + { + NDalicPINVOKE.CameraActor_SetFieldOfView(swigCPtr, fieldOfView); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + internal float GetFieldOfView() + { + float ret = NDalicPINVOKE.CameraActor_GetFieldOfView(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal void SetAspectRatio(float aspectRatio) + { + NDalicPINVOKE.CameraActor_SetAspectRatio(swigCPtr, aspectRatio); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + internal float GetAspectRatio() + { + float ret = NDalicPINVOKE.CameraActor_GetAspectRatio(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal void SetNearClippingPlane(float nearClippingPlane) + { + NDalicPINVOKE.CameraActor_SetNearClippingPlane(swigCPtr, nearClippingPlane); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + internal float GetNearClippingPlane() + { + float ret = NDalicPINVOKE.CameraActor_GetNearClippingPlane(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal void SetFarClippingPlane(float farClippingPlane) + { + NDalicPINVOKE.CameraActor_SetFarClippingPlane(swigCPtr, farClippingPlane); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + internal float GetFarClippingPlane() + { + float ret = NDalicPINVOKE.CameraActor_GetFarClippingPlane(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal void SetTargetPosition(Vector3 targetPosition) + { + NDalicPINVOKE.CameraActor_SetTargetPosition(swigCPtr, Vector3.getCPtr(targetPosition)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + internal Vector3 GetTargetPosition() + { + Vector3 ret = new Vector3(NDalicPINVOKE.CameraActor_GetTargetPosition(swigCPtr), true); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal void SetInvertYAxis(bool invertYAxis) + { + NDalicPINVOKE.CameraActor_SetInvertYAxis(swigCPtr, invertYAxis); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + internal bool GetInvertYAxis() + { + bool ret = NDalicPINVOKE.CameraActor_GetInvertYAxis(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal void SetPerspectiveProjection(Vector2 size) + { + NDalicPINVOKE.CameraActor_SetPerspectiveProjection(swigCPtr, Vector2.getCPtr(size)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + internal void SetOrthographicProjection(Vector2 size) + { + NDalicPINVOKE.CameraActor_SetOrthographicProjection__SWIG_0(swigCPtr, Vector2.getCPtr(size)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + internal void SetOrthographicProjection(float left, float right, float top, float bottom, float near, float far) + { + NDalicPINVOKE.CameraActor_SetOrthographicProjection__SWIG_1(swigCPtr, left, right, top, bottom, near, far); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public string Type + { + get + { + string temp; + GetProperty(CameraActor.Property.TYPE).Get(out temp); + return temp; + } + set + { + SetProperty(CameraActor.Property.TYPE, new Tizen.NUI.PropertyValue(value)); + } + } + public string ProjectionMode + { + get + { + string temp; + GetProperty(CameraActor.Property.PROJECTION_MODE).Get(out temp); + return temp; + } + set + { + SetProperty(CameraActor.Property.PROJECTION_MODE, new Tizen.NUI.PropertyValue(value)); + } + } + public float FieldOfView + { + get + { + float temp = 0.0f; + GetProperty(CameraActor.Property.FIELD_OF_VIEW).Get(ref temp); + return temp; + } + set + { + SetProperty(CameraActor.Property.FIELD_OF_VIEW, new Tizen.NUI.PropertyValue(value)); + } + } + public float AspectRatio + { + get + { + float temp = 0.0f; + GetProperty(CameraActor.Property.ASPECT_RATIO).Get(ref temp); + return temp; + } + set + { + SetProperty(CameraActor.Property.ASPECT_RATIO, new Tizen.NUI.PropertyValue(value)); + } + } + public float NearPlaneDistance + { + get + { + float temp = 0.0f; + GetProperty(CameraActor.Property.NEAR_PLANE_DISTANCE).Get(ref temp); + return temp; + } + set + { + SetProperty(CameraActor.Property.NEAR_PLANE_DISTANCE, new Tizen.NUI.PropertyValue(value)); + } + } + public float FarPlaneDistance + { + get + { + float temp = 0.0f; + GetProperty(CameraActor.Property.FAR_PLANE_DISTANCE).Get(ref temp); + return temp; + } + set + { + SetProperty(CameraActor.Property.FAR_PLANE_DISTANCE, new Tizen.NUI.PropertyValue(value)); + } + } + public float LeftPlaneDistance + { + get + { + float temp = 0.0f; + GetProperty(CameraActor.Property.LEFT_PLANE_DISTANCE).Get(ref temp); + return temp; + } + set + { + SetProperty(CameraActor.Property.LEFT_PLANE_DISTANCE, new Tizen.NUI.PropertyValue(value)); + } + } + public float RightPlaneDistance + { + get + { + float temp = 0.0f; + GetProperty(CameraActor.Property.RIGHT_PLANE_DISTANCE).Get(ref temp); + return temp; + } + set + { + SetProperty(CameraActor.Property.RIGHT_PLANE_DISTANCE, new Tizen.NUI.PropertyValue(value)); + } + } + public float TopPlaneDistance + { + get + { + float temp = 0.0f; + GetProperty(CameraActor.Property.TOP_PLANE_DISTANCE).Get(ref temp); + return temp; + } + set + { + SetProperty(CameraActor.Property.TOP_PLANE_DISTANCE, new Tizen.NUI.PropertyValue(value)); + } + } + public float BottomPlaneDistance + { + get + { + float temp = 0.0f; + GetProperty(CameraActor.Property.BOTTOM_PLANE_DISTANCE).Get(ref temp); + return temp; + } + set + { + SetProperty(CameraActor.Property.BOTTOM_PLANE_DISTANCE, new Tizen.NUI.PropertyValue(value)); + } + } + public Position TargetPosition + { + get + { + Position temp = new Position(0.0f, 0.0f, 0.0f); + GetProperty(CameraActor.Property.TARGET_POSITION).Get(temp); + return temp; + } + set + { + SetProperty(CameraActor.Property.TARGET_POSITION, new Tizen.NUI.PropertyValue(value)); + } + } + internal Matrix ProjectionMatrix + { + get + { + Matrix temp = new Matrix(); + GetProperty(CameraActor.Property.PROJECTION_MATRIX).Get(temp); + return temp; + } + } + + internal Matrix ViewMatrix + { + get + { + Matrix temp = new Matrix(); + GetProperty(CameraActor.Property.VIEW_MATRIX).Get(temp); + return temp; + } + } + public bool InvertYAxis + { + get + { + bool temp = false; + GetProperty(CameraActor.Property.INVERT_Y_AXIS).Get(ref temp); + return temp; + } + set + { + SetProperty(CameraActor.Property.INVERT_Y_AXIS, new Tizen.NUI.PropertyValue(value)); + } + } + + } + + public enum CameraType + { + FreeLook, + LookAtTarget + } + + public enum ProjectionMode + { + PerspectiveProjection, + OrthographicProjection + } + +} diff --git a/Tizen.NUI/src/public/CheckBoxButton.cs b/Tizen.NUI/src/public/CheckBoxButton.cs old mode 100644 new mode 100755 index 59ef8d4..a995552 --- a/Tizen.NUI/src/public/CheckBoxButton.cs +++ b/Tizen.NUI/src/public/CheckBoxButton.cs @@ -1,86 +1,105 @@ -/** Copyright (c) 2017 Samsung Electronics Co., Ltd. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ -// This File has been auto-generated by SWIG and then modified using DALi Ruby Scripts -//------------------------------------------------------------------------------ -// -// -// This file was automatically generated by SWIG (http://www.swig.org). -// Version 3.0.9 -// -// Do not make changes to this file unless you know what you are doing--modify -// the SWIG interface file instead. -//------------------------------------------------------------------------------ - -namespace NUI { - -public class CheckBoxButton : Button { - private global::System.Runtime.InteropServices.HandleRef swigCPtr; - - internal CheckBoxButton(global::System.IntPtr cPtr, bool cMemoryOwn) : base(NDalicPINVOKE.CheckBoxButton_SWIGUpcast(cPtr), cMemoryOwn) { - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); - } - - internal static global::System.Runtime.InteropServices.HandleRef getCPtr(CheckBoxButton obj) { - return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; - } - - ~CheckBoxButton() { - DisposeQueue.Instance.Add(this); - } - - public override void Dispose() { - if (!Stage.IsInstalled()) { - DisposeQueue.Instance.Add(this); - return; - } - - lock(this) { - if (swigCPtr.Handle != global::System.IntPtr.Zero) { - if (swigCMemOwn) { - swigCMemOwn = false; - NDalicPINVOKE.delete_CheckBoxButton(swigCPtr); - } - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); - } - global::System.GC.SuppressFinalize(this); - base.Dispose(); - } - } - - - public CheckBoxButton () : this (NDalicPINVOKE.CheckBoxButton_New(), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - - } - public CheckBoxButton(CheckBoxButton checkBox) : this(NDalicPINVOKE.new_CheckBoxButton__SWIG_1(CheckBoxButton.getCPtr(checkBox)), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public CheckBoxButton Assign(CheckBoxButton checkBox) { - CheckBoxButton ret = new CheckBoxButton(NDalicPINVOKE.CheckBoxButton_Assign(swigCPtr, CheckBoxButton.getCPtr(checkBox)), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public new static CheckBoxButton DownCast(BaseHandle handle) { - CheckBoxButton ret = new CheckBoxButton(NDalicPINVOKE.CheckBoxButton_DownCast(BaseHandle.getCPtr(handle)), true); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - -} - -} +// Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved +// PROPRIETARY/CONFIDENTIAL +// This software is the confidential and proprietary +// information of SAMSUNG ELECTRONICS ("Confidential Information"). You shall +// not disclose such Confidential Information and shall use it only in +// accordance with the terms of the license agreement you entered into with +// SAMSUNG ELECTRONICS. SAMSUNG make no representations or warranties about the +// suitability of the software, either express or implied, including but not +// limited to the implied warranties of merchantability, fitness for a +// particular purpose, or non-infringement. SAMSUNG shall not be liable for any +// damages suffered by licensee as a result of using, modifying or distributing +// this software or its derivatives. + +// Copyright (c) 2017 Samsung Electronics Co., Ltd. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// + +// This File has been auto-generated by SWIG and then modified using DALi Ruby Scripts +// Some have been manually changed + +namespace Tizen.NUI +{ + + public class CheckBoxButton : Button + { + private global::System.Runtime.InteropServices.HandleRef swigCPtr; + + internal CheckBoxButton(global::System.IntPtr cPtr, bool cMemoryOwn) : base(NDalicPINVOKE.CheckBoxButton_SWIGUpcast(cPtr), cMemoryOwn) + { + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); + } + + internal static global::System.Runtime.InteropServices.HandleRef getCPtr(CheckBoxButton obj) + { + return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; + } + + ~CheckBoxButton() + { + DisposeQueue.Instance.Add(this); + } + + public override void Dispose() + { + if (!Stage.IsInstalled()) + { + DisposeQueue.Instance.Add(this); + return; + } + + lock (this) + { + if (swigCPtr.Handle != global::System.IntPtr.Zero) + { + if (swigCMemOwn) + { + swigCMemOwn = false; + NDalicPINVOKE.delete_CheckBoxButton(swigCPtr); + } + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); + } + global::System.GC.SuppressFinalize(this); + base.Dispose(); + } + } + + + public CheckBoxButton() : this(NDalicPINVOKE.CheckBoxButton_New(), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + + } + internal CheckBoxButton(CheckBoxButton checkBox) : this(NDalicPINVOKE.new_CheckBoxButton__SWIG_1(CheckBoxButton.getCPtr(checkBox)), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + internal CheckBoxButton Assign(CheckBoxButton checkBox) + { + CheckBoxButton ret = new CheckBoxButton(NDalicPINVOKE.CheckBoxButton_Assign(swigCPtr, CheckBoxButton.getCPtr(checkBox)), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal new static CheckBoxButton DownCast(BaseHandle handle) + { + CheckBoxButton ret = new CheckBoxButton(NDalicPINVOKE.CheckBoxButton_DownCast(BaseHandle.getCPtr(handle)), true); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + } + +} diff --git a/Tizen.NUI/src/public/Color.cs b/Tizen.NUI/src/public/Color.cs index 2de332b..f145c9e 100755 --- a/Tizen.NUI/src/public/Color.cs +++ b/Tizen.NUI/src/public/Color.cs @@ -1,381 +1,259 @@ -namespace NUI -{ - using System; - - public enum Colors - { - Red, - White, - Blue, - Green, - Black, - Yellow, - Magenta, - Cyan - } - - - public class Color - { - - private float r; - private float g; - private float b; - private float a; - - /** - * @brief constructor - * - * @since 1.0.0 - */ - public Color() - { - r = 0.0f; - g = 0.0f; - b = 0.0f; - a = 0.0f; - } - - /** - * @brief constructor - * - * @since 1.0.0 - * @param [in] red The Color r. - * @param [in] green The Color g. - * @param [in] blue The Color b. - * @param [in] alpha The Color a. - */ - public Color(float red, float green, float blue, float alpha) - { - r = red; - g = green; - b = blue; - a = alpha; - } - - /** - * @brief constructor - * - * @since 1.0.0 - * @param [in] o The Vector4 having r g b a components - */ - public Color(Vector4 o) - { - r = o.r; - g = o.g; - b = o.b; - a = o.a; - } - - - /** - * @brief constructor - * - * @since 1.0.0 - * @param [in] color as enum Colors. - */ - public Color(Colors color) - { - switch (color) - { - case Colors.Red: - SetColor(1.0f, 0.0f, 0.0f, 1.0f); - break; - case Colors.White: - SetColor(1.0f, 1.0f, 1.0f, 1.0f); - break; - case Colors.Blue: - SetColor(0.0f, 0.0f, 1.0f, 1.0f); - break; - case Colors.Green: - SetColor(0.0f, 1.0f, 0.0f, 1.0f); - break; - case Colors.Black: - SetColor(0.0f, 0.0f, 0.0f, 1.0f); - break; - case Colors.Yellow: - SetColor(1.0f, 1.0f, 0.0f, 1.0f); - break; - case Colors.Cyan: - SetColor(0.0f, 1.0f, 1.0f, 1.0f); - break; - case Colors.Magenta: - SetColor(1.0f, 0.0f, 1.0f, 1.0f); - break; - } - } - - - /** - * @brief SetColor - * - * @since 1.0.0 - * @param [in] red The Color r. - * @param [in] green The Color g. - * @param [in] blue The Color b. - * @param [in] alpha The Color a. - */ - public void SetColor(float red, float green, float blue, float alpha) - { - r = red; - g = green; - b = blue; - a = alpha; - } - - /** - * @brief name "R", type float (Color's Red component) - * @SINCE_1_0.0 - */ - - public float R - { - get { return r; } - set { r = value; } - } - - /** - * @brief name "G", type float (Color's Green component) - * @SINCE_1_0.0 - */ - public float G - { - get { return g; } - set { g = value; } - } - - /** - * @brief name "B", type float (Color's Blue component) - * @SINCE_1_0.0 - */ - public float B - { - get { return b; } - set { b = value; } - } - - /** - * @brief name "A", type float (Color's Alpha value) - * @SINCE_1_0.0 - */ - public float A - { - get { return a; } - set { a = value; } - } - - /** - * @brief operator+ - * - * @since 1.0.0 - * @param [in] l The Color to add. - * @param [in] r The Color to add - * @return A reference to this - */ - public static Color operator +(Color l, Color r) - { - return new Color(l.R + r.R, l.G + r.G, l.B + r.B, l.A + r.A); - } - - /** - * @brief operator- - * - * @since 1.0.0 - * @param [in] l The Color to substract. - * @param [in] r The Color to substract - * @return A reference to this - */ - public static Color operator -(Color l, Color r) - { - return new Color(l.R - r.R, l.G - r.G, l.B - r.B, l.A - r.A); - } - - /** - * @brief operator* - * - * @since 1.0.0 - * @param [in] a The Color to multiply. - * @param [in] b The constant double to multiply. - * @return A reference to this - */ - public static Color operator *(Color a, double b) - { - return new Color((float)(a.R * b), (float)(a.G * b), (float)(a.B * b), (float)(a.A * b)); - } - - /** - * @brief operator/ - * - * @since 1.0.0 - * @param [in] a The Color to divide. - * @param [in] b The Color to divide - * @return float value of division operation - */ - public static float operator /(Color a, Color b) - { - return (float)System.Math.Sqrt((a.R / b.R) * (a.G / b.G) * (a.B / b.B) * (a.A / b.A)); - } - - /** - * @brief Operator == - * - * @since 1.0.0 - * @param [in] x The Color object to compare. - * @param [in] y The Color object to compare. - * @return bool, whether colors are equal or not - */ - public static bool operator == (Color x, Color y) - { - return x.R == y.R && x.G == y.G && x.B == y.B && x.A == y.A; - } - - /** - * @brief Operator != - * - * @since 1.0.0 - * @param [in] x The Color object to compare. - * @param [in] y The Color object to compare. - * @return bool, whether colors are equal or not - */ - public static bool operator != (Color x, Color y) - { - return x.R != y.R || x.G != y.G || x.B != y.B || x.A != y.A; - } - - /** - * @brief GetHashCode - * - * @since 1.0.0 - * @return int, hascode of Color - */ - public override int GetHashCode() - { - return base.GetHashCode(); - } - - /** - * @brief Clone - * - * @since 1.0.0 - * @return Color object - */ - public Color Clone() - { - Color copy = new Color(R, G, B, A); - return copy; - } - - // Create a color for RGBA values ranging from 0..255, useful when dealing with HTML colors - static Color FromRgbaByte( byte red, byte green, byte blue, byte alpha ) - { - return new Color ( red / 255, green / 255, blue / 255, alpha / 255 ); - } - - // User-defined conversion from Color to Vector4 - public static implicit operator Vector4(Color color) - { - return new Vector4(color.r, color.g, color.b, color.a); - } - - public static implicit operator Color(Vector4 vec) - { - return new Color(vec.r, vec.g, vec.b, vec.a); - } - - /** - * @brief name "White", type Color (White Color object) - * @SINCE_1_0.0 - */ - public static Color White - { - get - { - return new Color(Colors.White); - } - } - - /** - * @brief name "Black", type Color (Black Color object) - * @SINCE_1_0.0 - */ - public static Color Black - { - get - { - return new Color(Colors.Black); - } - } - - /** - * @brief name "Red", type Color (Red Color object) - * @SINCE_1_0.0 - */ - public static Color Red - { - get - { - return new Color(Colors.Red); - } - } - - /** - * @brief name "Green", type Color (Green Color object) - * @SINCE_1_0.0 - */ - public static Color Green - { - get - { - return new Color(Colors.Green); - } - } - - /** - * @brief name "Blue", type Color (Blue Color object) - * @SINCE_1_0.0 - */ - public static Color Blue - { - get - { - return new Color(Colors.Blue); - } - } - - /** - * @brief name "Yellow", type Color (Yellow Color object) - * @SINCE_1_0.0 - */ - public static Color Yellow - { - get - { - return new Color(Colors.Yellow); - } - } - - /** - * @brief name "Magenta", type Color (Magenta Color object) - * @SINCE_1_0.0 - */ - public static Color Magenta - { - get - { - return new Color(Colors.Magenta); - } - } - - /** - * @brief name "Cyan", type Color (Cyan Color object) - * @SINCE_1_0.0 - */ - public static Color Cyan - { - get - { - return new Color(Colors.Cyan); - } - } - } -} +// Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved +// PROPRIETARY/CONFIDENTIAL +// This software is the confidential and proprietary +// information of SAMSUNG ELECTRONICS ("Confidential Information"). You shall +// not disclose such Confidential Information and shall use it only in +// accordance with the terms of the license agreement you entered into with +// SAMSUNG ELECTRONICS. SAMSUNG make no representations or warranties about the +// suitability of the software, either express or implied, including but not +// limited to the implied warranties of merchantability, fitness for a +// particular purpose, or non-infringement. SAMSUNG shall not be liable for any +// damages suffered by licensee as a result of using, modifying or distributing +// this software or its derivatives. + +// Copyright (c) 2017 Samsung Electronics Co., Ltd. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// + +// This File has been auto-generated by SWIG and then modified using DALi Ruby Scripts +// Some have been manually changed + + +namespace Tizen.NUI +{ + + public class Color : global::System.IDisposable + { + private global::System.Runtime.InteropServices.HandleRef swigCPtr; + protected bool swigCMemOwn; + + internal Color(global::System.IntPtr cPtr, bool cMemoryOwn) + { + swigCMemOwn = cMemoryOwn; + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); + } + + internal static global::System.Runtime.InteropServices.HandleRef getCPtr(Color obj) + { + return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; + } + + ~Color() + { + DisposeQueue.Instance.Add(this); + } + + public virtual void Dispose() + { + if (!Stage.IsInstalled()) + { + DisposeQueue.Instance.Add(this); + return; + } + + lock (this) + { + if (swigCPtr.Handle != global::System.IntPtr.Zero) + { + if (swigCMemOwn) + { + swigCMemOwn = false; + NDalicPINVOKE.delete_Vector4(swigCPtr); + } + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); + } + global::System.GC.SuppressFinalize(this); + } + } + + internal static Color GetVector4FromPtr(global::System.IntPtr cPtr) + { + Color ret = new Color(cPtr, false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public Color() : this(NDalicPINVOKE.new_Vector4__SWIG_0(), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public Color(float r, float g, float b, float a) : this(NDalicPINVOKE.new_Vector4__SWIG_1(r, g, b, a), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public float R + { + set + { + NDalicPINVOKE.Vector4_r_set(swigCPtr, value); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + get + { + float ret = NDalicPINVOKE.Vector4_r_get(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + } + + public float G + { + set + { + NDalicPINVOKE.Vector4_g_set(swigCPtr, value); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + get + { + float ret = NDalicPINVOKE.Vector4_g_get(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + } + + public float B + { + set + { + NDalicPINVOKE.Vector4_b_set(swigCPtr, value); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + get + { + float ret = NDalicPINVOKE.Vector4_b_get(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + } + + public float A + { + set + { + NDalicPINVOKE.Vector4_a_set(swigCPtr, value); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + get + { + float ret = NDalicPINVOKE.Vector4_a_get(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + } + + public static Color Black + { + get + { + global::System.IntPtr cPtr = NDalicPINVOKE.BLACK_get(); + Color ret = (cPtr == global::System.IntPtr.Zero) ? null : new Color(cPtr, false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + } + + public static Color White + { + get + { + global::System.IntPtr cPtr = NDalicPINVOKE.WHITE_get(); + Color ret = (cPtr == global::System.IntPtr.Zero) ? null : new Color(cPtr, false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + } + + public static Color Red + { + get + { + global::System.IntPtr cPtr = NDalicPINVOKE.RED_get(); + Color ret = (cPtr == global::System.IntPtr.Zero) ? null : new Color(cPtr, false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + } + + public static Color Green + { + get + { + global::System.IntPtr cPtr = NDalicPINVOKE.GREEN_get(); + Color ret = (cPtr == global::System.IntPtr.Zero) ? null : new Color(cPtr, false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + } + + public static Color Blue + { + get + { + global::System.IntPtr cPtr = NDalicPINVOKE.BLUE_get(); + Color ret = (cPtr == global::System.IntPtr.Zero) ? null : new Color(cPtr, false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + } + + public static Color Yellow + { + get + { + global::System.IntPtr cPtr = NDalicPINVOKE.YELLOW_get(); + Color ret = (cPtr == global::System.IntPtr.Zero) ? null : new Color(cPtr, false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + } + + public static Color Magenta + { + get + { + global::System.IntPtr cPtr = NDalicPINVOKE.MAGENTA_get(); + Color ret = (cPtr == global::System.IntPtr.Zero) ? null : new Color(cPtr, false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + } + + public static Color Cyan + { + get + { + global::System.IntPtr cPtr = NDalicPINVOKE.CYAN_get(); + Color ret = (cPtr == global::System.IntPtr.Zero) ? null : new Color(cPtr, false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + } + + public static Color Transparent + { + get + { + global::System.IntPtr cPtr = NDalicPINVOKE.TRANSPARENT_get(); + Color ret = (cPtr == global::System.IntPtr.Zero) ? null : new Color(cPtr, false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + } + + } + +} + diff --git a/Tizen.NUI/src/public/CustomView.cs b/Tizen.NUI/src/public/CustomView.cs index dbfc6ac..c371734 100755 --- a/Tizen.NUI/src/public/CustomView.cs +++ b/Tizen.NUI/src/public/CustomView.cs @@ -1,824 +1,876 @@ -/* - * Copyright (c) 2016 Samsung Electronics Co., Ltd. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - */ - -namespace NUI -{ - public class CustomView : ViewWrapper - { - public CustomView(ViewWrapperImpl.CustomViewBehaviour behaviour) : base(new ViewWrapperImpl(behaviour)) - { - // Registering CustomView virtual functions to viewWrapperImpl delegates. - viewWrapperImpl.OnStageConnection = new ViewWrapperImpl.OnStageConnectionDelegate(OnStageConnection); - viewWrapperImpl.OnStageDisconnection = new ViewWrapperImpl.OnStageDisconnectionDelegate(OnStageDisconnection); - viewWrapperImpl.OnChildAdd = new ViewWrapperImpl.OnChildAddDelegate(OnChildAdd); - viewWrapperImpl.OnChildRemove = new ViewWrapperImpl.OnChildRemoveDelegate(OnChildRemove); - viewWrapperImpl.OnPropertySet = new ViewWrapperImpl.OnPropertySetDelegate(OnPropertySet); - viewWrapperImpl.OnSizeSet = new ViewWrapperImpl.OnSizeSetDelegate(OnSizeSet); - viewWrapperImpl.OnSizeAnimation = new ViewWrapperImpl.OnSizeAnimationDelegate(OnSizeAnimation); - viewWrapperImpl.OnTouchEvent = new ViewWrapperImpl.OnTouchEventDelegate(OnTouchEvent); - viewWrapperImpl.OnHoverEvent = new ViewWrapperImpl.OnHoverEventDelegate(OnHoverEvent); - viewWrapperImpl.OnKeyEvent = new ViewWrapperImpl.OnKeyEventDelegate(OnKeyEvent); - viewWrapperImpl.OnWheelEvent = new ViewWrapperImpl.OnWheelEventDelegate(OnWheelEvent); - viewWrapperImpl.OnRelayout = new ViewWrapperImpl.OnRelayoutDelegate(OnRelayout); - viewWrapperImpl.OnSetResizePolicy = new ViewWrapperImpl.OnSetResizePolicyDelegate(OnSetResizePolicy); - viewWrapperImpl.GetNaturalSize = new ViewWrapperImpl.GetNaturalSizeDelegate(GetNaturalSize); - viewWrapperImpl.CalculateChildSize = new ViewWrapperImpl.CalculateChildSizeDelegate(CalculateChildSize); - viewWrapperImpl.GetHeightForWidth = new ViewWrapperImpl.GetHeightForWidthDelegate(GetHeightForWidth); - viewWrapperImpl.GetWidthForHeight = new ViewWrapperImpl.GetWidthForHeightDelegate(GetWidthForHeight); - viewWrapperImpl.RelayoutDependentOnChildrenDimension = new ViewWrapperImpl.RelayoutDependentOnChildrenDimensionDelegate(RelayoutDependentOnChildren); - viewWrapperImpl.RelayoutDependentOnChildren = new ViewWrapperImpl.RelayoutDependentOnChildrenDelegate(RelayoutDependentOnChildren); - viewWrapperImpl.OnCalculateRelayoutSize = new ViewWrapperImpl.OnCalculateRelayoutSizeDelegate(OnCalculateRelayoutSize); - viewWrapperImpl.OnLayoutNegotiated = new ViewWrapperImpl.OnLayoutNegotiatedDelegate(OnLayoutNegotiated); - viewWrapperImpl.OnControlChildAdd = new ViewWrapperImpl.OnControlChildAddDelegate(OnControlChildAdd); - viewWrapperImpl.OnControlChildRemove = new ViewWrapperImpl.OnControlChildRemoveDelegate(OnControlChildRemove); - viewWrapperImpl.OnStyleChange = new ViewWrapperImpl.OnStyleChangeDelegate(OnStyleChange); - viewWrapperImpl.OnAccessibilityActivated = new ViewWrapperImpl.OnAccessibilityActivatedDelegate(OnAccessibilityActivated); - viewWrapperImpl.OnAccessibilityPan = new ViewWrapperImpl.OnAccessibilityPanDelegate(OnAccessibilityPan); - viewWrapperImpl.OnAccessibilityTouch = new ViewWrapperImpl.OnAccessibilityTouchDelegate(OnAccessibilityTouch); - viewWrapperImpl.OnAccessibilityValueChange = new ViewWrapperImpl.OnAccessibilityValueChangeDelegate(OnAccessibilityValueChange); - viewWrapperImpl.OnAccessibilityZoom = new ViewWrapperImpl.OnAccessibilityZoomDelegate(OnAccessibilityZoom); - viewWrapperImpl.OnKeyInputFocusGained = new ViewWrapperImpl.OnKeyInputFocusGainedDelegate(OnKeyInputFocusGained); - viewWrapperImpl.OnKeyInputFocusLost = new ViewWrapperImpl.OnKeyInputFocusLostDelegate(OnKeyInputFocusLost); - viewWrapperImpl.GetNextKeyboardFocusableActor = new ViewWrapperImpl.GetNextKeyboardFocusableActorDelegate(GetNextKeyboardFocusableActor); - viewWrapperImpl.OnKeyboardFocusChangeCommitted = new ViewWrapperImpl.OnKeyboardFocusChangeCommittedDelegate(OnKeyboardFocusChangeCommitted); - viewWrapperImpl.OnKeyboardEnter = new ViewWrapperImpl.OnKeyboardEnterDelegate(OnKeyboardEnter); - viewWrapperImpl.OnPinch = new ViewWrapperImpl.OnPinchDelegate(OnPinch); - viewWrapperImpl.OnPan = new ViewWrapperImpl.OnPanDelegate(OnPan); - viewWrapperImpl.OnTap = new ViewWrapperImpl.OnTapDelegate(OnTap); - viewWrapperImpl.OnLongPress = new ViewWrapperImpl.OnLongPressDelegate(OnLongPress); - viewWrapperImpl.SignalConnected = new ViewWrapperImpl.SignalConnectedDelegate(SignalConnected); - viewWrapperImpl.SignalDisconnected = new ViewWrapperImpl.SignalDisconnectedDelegate(SignalDisconnected); - - // Make sure CustomView is initialized. - OnInitialize(); - - // Make sure the style of actors/visuals initialized above are applied by the style manager. - viewWrapperImpl.ApplyThemeStyle(); - } - - /** - * @brief Set the background with a property map. - * - * @param[in] map The background property map. - */ - public void SetBackground(NUI.Property.Map map) - { - viewWrapperImpl.SetBackground(map); - } - - /** - * @brief Allows deriving classes to enable any of the gesture detectors that are available. - * - * Gesture detection can be enabled one at a time or in bitwise format as shown: - * @code - * EnableGestureDetection(Gesture.Type.Pinch | Gesture.Type.Tap | Gesture.Type.Pan)); - * @endcode - * @param[in] type The gesture type(s) to enable. - */ - public void EnableGestureDetection(Gesture.Type type) - { - viewWrapperImpl.EnableGestureDetection(type); - } - - /** - * @brief Allows deriving classes to disable any of the gesture detectors. - * - * Like EnableGestureDetection, this can also be called using bitwise or. - * @param[in] type The gesture type(s) to disable. - * @see EnableGetureDetection - */ - public void DisableGestureDetection(Gesture.Type type) - { - viewWrapperImpl.DisableGestureDetection(type); - } - - /** - * @brief Sets whether this control supports two dimensional - * keyboard navigation (i.e. whether it knows how to handle the - * keyboard focus movement between its child actors). - * - * The control doesn't support it by default. - * @param[in] isSupported Whether this control supports two dimensional keyboard navigation. - */ - public void SetKeyboardNavigationSupport(bool isSupported) - { - viewWrapperImpl.SetKeyboardNavigationSupport(isSupported); - } - - /** - * @brief Gets whether this control supports two dimensional keyboard navigation. - * - * @return true if this control supports two dimensional keyboard navigation. - */ - public bool IsKeyboardNavigationSupported() - { - return viewWrapperImpl.IsKeyboardNavigationSupported(); - } - - /** - * @brief Sets whether this control is a focus group for keyboard navigation. - * - * (i.e. the scope of keyboard focus movement - * can be limitied to its child actors). The control is not a focus group by default. - * @param[in] isFocusGroup Whether this control is set as a focus group for keyboard navigation. - */ - public void SetAsKeyboardFocusGroup(bool isFocusGroup) - { - viewWrapperImpl.SetAsKeyboardFocusGroup(isFocusGroup); - } - - /** - * @brief Gets whether this control is a focus group for keyboard navigation. - * - * @return true if this control is set as a focus group for keyboard navigation. - */ - public bool IsKeyboardFocusGroup() - { - return viewWrapperImpl.IsKeyboardFocusGroup(); - } - - /** - * @brief Called by the AccessibilityManager to activate the Control. - * @SINCE_1_0.0 - */ - public void AccessibilityActivate() - { - viewWrapperImpl.AccessibilityActivate(); - } - - /** - * @brief Called by the KeyboardFocusManager. - */ - public void KeyboardEnter() - { - viewWrapperImpl.KeyboardEnter(); - } - - /** - * @brief Called by the KeyInputFocusManager to emit key event signals. - * - * @param[in] keyEvent The key event. - * @return True if the event was consumed. - */ - public bool EmitKeyEventSignal(KeyEvent keyEvent) - { - return viewWrapperImpl.EmitKeyEventSignal(keyEvent); - } - - /** - * @brief Request a relayout, which means performing a size negotiation on this actor, its parent and children (and potentially whole scene). - * - * This method can also be called from a derived class every time it needs a different size. - * At the end of event processing, the relayout process starts and - * all controls which requested Relayout will have their sizes (re)negotiated. - * - * @note RelayoutRequest() can be called multiple times; the size negotiation is still - * only performed once, i.e. there is no need to keep track of this in the calling side. - */ - protected void RelayoutRequest() - { - viewWrapperImpl.RelayoutRequest(); - } - - /** - * @brief Provides the Actor implementation of GetHeightForWidth. - * @param width Width to use. - * @return The height based on the width. - */ - protected float GetHeightForWidthBase(float width) - { - return viewWrapperImpl.GetHeightForWidthBase( width ); - } - - /** - * @brief Provides the Actor implementation of GetWidthForHeight. - * @param height Height to use. - * @return The width based on the height. - */ - protected float GetWidthForHeightBase(float height) - { - return viewWrapperImpl.GetWidthForHeightBase( height ); - } - - /** - * @brief Calculate the size for a child using the base actor object. - * - * @param[in] child The child actor to calculate the size for - * @param[in] dimension The dimension to calculate the size for. E.g. width or height - * @return Return the calculated size for the given dimension. If more than one dimension is requested, just return the first one found. - */ - protected float CalculateChildSizeBase(Actor child, DimensionType dimension) - { - return viewWrapperImpl.CalculateChildSizeBase( child, dimension ); - } - - /** - * @brief Determine if this actor is dependent on it's children for relayout from the base class. - * - * @param dimension The dimension(s) to check for - * @return Return if the actor is dependent on it's children. - */ - protected bool RelayoutDependentOnChildrenBase(DimensionType dimension) - { - return viewWrapperImpl.RelayoutDependentOnChildrenBase( dimension ); - } - - /** - * @brief Determine if this actor is dependent on it's children for relayout from the base class. - * - * @param dimension The dimension(s) to check for - * @return Return if the actor is dependent on it's children. - */ - protected bool RelayoutDependentOnChildrenBase() - { - return viewWrapperImpl.RelayoutDependentOnChildrenBase(); - } - - /** - * @brief Register a visual by Property Index, linking an Actor to visual when required. - * In the case of the visual being an actor or control deeming visual not required then visual should be an empty handle. - * No parenting is done during registration, this should be done by derived class. - * - * @param[in] index The Property index of the visual, used to reference visual - * @param[in] visual The visual to register - * @note Derived class should not call visual.SetOnStage(actor). It is the responsibility of the base class to connect/disconnect registered visual to stage. - * Use below API with enabled set to false if derived class wishes to control when visual is staged. - */ - protected void RegisterVisual(int index, VisualBase visual) - { - viewWrapperImpl.RegisterVisual( index, visual ); - } - - /** - * @brief Register a visual by Property Index, linking an Actor to visual when required. - * In the case of the visual being an actor or control deeming visual not required then visual should be an empty handle. - * If enabled is false then the visual is not set on stage until enabled by the derived class. - * @see EnableVisual - * - * @param[in] index The Property index of the visual, used to reference visual - * @param[in] visual The visual to register - * @param[in] enabled false if derived class wants to control when visual is set on stage. - * - */ - protected void RegisterVisual(int index, VisualBase visual, bool enabled) - { - viewWrapperImpl.RegisterVisual( index, visual, enabled ); - } - - /** - * @brief Erase the entry matching the given index from the list of registered visuals - * @param[in] index The Property index of the visual, used to reference visual - * - */ - protected void UnregisterVisual(int index) - { - viewWrapperImpl.UnregisterVisual( index ); - } - - /** - * @brief Retrieve the visual associated with the given property index. - * - * @param[in] index The Property index of the visual. - * @return The registered visual if exist, otherwise empty handle. - * @note For managing object life-cycle, do not store the returned visual as a member which increments its reference count. - */ - protected VisualBase GetVisual(int index) - { - return viewWrapperImpl.GetVisual( index ); - } - - /** - * @brief Sets the given visual to be displayed or not when parent staged. - * - * @param[in] index The Property index of the visual - * @param[in] enable flag to set enabled or disabled. - */ - protected void EnableVisual(int index, bool enable) - { - viewWrapperImpl.EnableVisual( index, enable ); - } - - /** - * @brief Queries if the given visual is to be displayed when parent staged. - * - * @param[in] index The Property index of the visual - * @return bool whether visual is enabled or not - */ - protected bool IsVisualEnabled(int index) - { - return viewWrapperImpl.IsVisualEnabled( index ); - } - - /** - * @brief Create a transition effect on the control. - * - * @param[in] transitionData The transition data describing the effect to create - * @return A handle to an animation defined with the given effect, or an empty - * handle if no properties match. - */ - protected Animation CreateTransition(TransitionData transitionData) - { - return viewWrapperImpl.CreateTransition( transitionData ); - } - - /** - * @brief Emits KeyInputFocusGained signal if true else emits KeyInputFocusLost signal - * - * Should be called last by the control after it acts on the Input Focus change. - * - * @param[in] focusGained True if gained, False if lost - */ - protected void EmitKeyInputFocusSignal(bool focusGained) - { - viewWrapperImpl.EmitKeyInputFocusSignal( focusGained ); - } - - /** - * @brief This method is called after the Control has been initialized. - * - * Derived classes should do any second phase initialization by overriding this method. - */ - public virtual void OnInitialize() - { - } - - /** - * @brief Called after the actor has been connected to the stage. - * - * When an actor is connected, it will be directly or indirectly parented to the root Actor. - * @param[in] depth The depth in the hierarchy for the actor - * - * @note The root Actor is provided automatically by Dali::Stage, and is always considered to be connected. - * When the parent of a set of actors is connected to the stage, then all of the children - * will received this callback. - * For the following actor tree, the callback order will be A, B, D, E, C, and finally F. - * - * @code - * - * A (parent) - * / \ - * B C - * / \ \ - * D E F - * - * @endcode - * @param[in] depth The depth in the hierarchy for the actor - */ - public virtual void OnStageConnection(int depth) - { - } - - /** - * @brief Called after the actor has been disconnected from Stage. - * - * If an actor is disconnected it either has no parent, or is parented to a disconnected actor. - * - * @note When the parent of a set of actors is disconnected to the stage, then all of the children - * will received this callback, starting with the leaf actors. - * For the following actor tree, the callback order will be D, E, B, F, C, and finally A. - * - * @code - * - * A (parent) - * / \ - * B C - * / \ \ - * D E F - * - * @endcode - */ - public virtual void OnStageDisconnection() - { - } - - /** - * @brief Called after a child has been added to the owning actor. - * - * @param[in] child The child which has been added - */ - public virtual void OnChildAdd(Actor actor) - { - } - - /** - * @brief Called after the owning actor has attempted to remove a child( regardless of whether it succeeded or not ). - * - * @param[in] child The child being removed - */ - public virtual void OnChildRemove(Actor actor) - { - } - - /** - * @brief Called when the owning actor property is set. - * - * @param[in] index The Property index that was set - * @param[in] propertyValue The value to set - */ - public virtual void OnPropertySet(int index, NUI.Property.Value propertyValue) - { - } - - /** - * @brief Called when the owning actor's size is set e.g. using Actor::SetSize(). - * - * @param[in] targetSize The target size. Note that this target size may not match the size returned via Actor.GetTargetSize. - */ - public virtual void OnSizeSet(Vector3 targetSize) - { - } - - /** - * @brief Called when the owning actor's size is animated e.g. using Animation::AnimateTo( Property( actor, Actor::Property::SIZE ), ... ). - * - * @param[in] animation The object which is animating the owning actor. - * @param[in] targetSize The target size. Note that this target size may not match the size returned via @ref Actor.GetTargetSize. - */ - public virtual void OnSizeAnimation(Animation animation, Vector3 targetSize) - { - } - - /** - * @DEPRECATED_1_1.37 Connect to TouchSignal() instead. - * - * @brief Called after a touch-event is received by the owning actor. - * - * @param[in] event The touch event - * @return True if the event should be consumed. - * @note CustomViewBehaviour.REQUIRES_TOUCH_EVENTS must be enabled during construction. See CustomView(ViewWrapperImpl.CustomViewBehaviour behaviour). - */ - public virtual bool OnTouchEvent(TouchEvent touchEvent) - { - return false; // Do not consume - } - - /** - * @brief Called after a hover-event is received by the owning actor. - * - * @param[in] event The hover event - * @return True if the event should be consumed. - * @note CustomViewBehaviour.REQUIRES_HOVER_EVENTS must be enabled during construction. See CustomView(ViewWrapperImpl.CustomViewBehaviour behaviour). - */ - public virtual bool OnHoverEvent(HoverEvent hoverEvent) - { - return false; // Do not consume - } - - /** - * @brief Called after a key-event is received by the actor that has had its focus set. - * - * @param[in] event the Key Event - * @return True if the event should be consumed. - */ - public virtual bool OnKeyEvent(KeyEvent keyEvent) - { - return false; // Do not consume - } - - /** - * @brief Called after a wheel-event is received by the owning actor. - * - * @param[in] event The wheel event - * @return True if the event should be consumed. - * @note CustomViewBehaviour.REQUIRES_WHEEL_EVENTS must be enabled during construction. See CustomView(ViewWrapperImpl.CustomViewBehaviour behaviour). - */ - public virtual bool OnWheelEvent(WheelEvent wheelEvent) - { - return false; // Do not consume - } - - /** - * @brief Called after the size negotiation has been finished for this control. - * - * The control is expected to assign this given size to itself/its children. - * - * Should be overridden by derived classes if they need to layout - * actors differently after certain operations like add or remove - * actors, resize or after changing specific properties. - * - * @param[in] size The allocated size. - * @param[in,out] container The control should add actors to this container that it is not able - * to allocate a size for. - * @note As this function is called from inside the size negotiation algorithm, you cannot - * call RequestRelayout (the call would just be ignored). - */ - public virtual void OnRelayout(Vector2 size, RelayoutContainer container) - { - } - - /** - * @brief Notification for deriving classes - * - * @param[in] policy The policy being set - * @param[in] dimension The dimension the policy is being set for - */ - public virtual void OnSetResizePolicy(ResizePolicyType policy, DimensionType dimension) - { - } - - /** - * @brief Return the natural size of the actor. - * - * @return The actor's natural size - */ - public virtual Vector3 GetNaturalSize() - { - return new Vector3(0.0f, 0.0f, 0.0f); - } - - /** - * @brief Calculate the size for a child. - * - * @param[in] child The child actor to calculate the size for - * @param[in] dimension The dimension to calculate the size for. E.g. width or height. - * @return Return the calculated size for the given dimension. - */ - public virtual float CalculateChildSize(Actor child, DimensionType dimension) - { - return viewWrapperImpl.CalculateChildSizeBase( child, dimension ); - } - - /** - * @brief This method is called during size negotiation when a height is required for a given width. - * - * Derived classes should override this if they wish to customize the height returned. - * - * @param width Width to use. - * @return The height based on the width. - */ - public virtual float GetHeightForWidth(float width) - { - return viewWrapperImpl.GetHeightForWidthBase( width ); - } - - /** - * @brief This method is called during size negotiation when a width is required for a given height. - * - * Derived classes should override this if they wish to customize the width returned. - * - * @param height Height to use. - * @return The width based on the width. - */ - public virtual float GetWidthForHeight(float height) - { - return viewWrapperImpl.GetWidthForHeightBase( height ); - } - - /** - * @brief Determine if this actor is dependent on it's children for relayout. - * - * @param dimension The dimension(s) to check for - * @return Return if the actor is dependent on it's children. - */ - public virtual bool RelayoutDependentOnChildren(DimensionType dimension) - { - return viewWrapperImpl.RelayoutDependentOnChildrenBase( dimension ); - } - - /** - * @brief Determine if this actor is dependent on it's children for relayout from the base class. - * - * @return Return if the actor is dependent on it's children. - */ - public virtual bool RelayoutDependentOnChildren() - { - return viewWrapperImpl.RelayoutDependentOnChildrenBase(); - } - - /** - * @brief Virtual method to notify deriving classes that relayout dependencies have been - * met and the size for this object is about to be calculated for the given dimension - * - * @param dimension The dimension that is about to be calculated - */ - public virtual void OnCalculateRelayoutSize(DimensionType dimension) - { - } - - /** - * @brief Virtual method to notify deriving classes that the size for a dimension - * has just been negotiated - * - * @param[in] size The new size for the given dimension - * @param[in] dimension The dimension that was just negotiated - */ - public virtual void OnLayoutNegotiated(float size, DimensionType dimension) - { - } - - /** - * @brief This method should be overridden by deriving classes requiring notifications when the style changes. - * - * @param[in] styleManager The StyleManager object. - * @param[in] change Information denoting what has changed. - */ - public virtual void OnStyleChange(StyleManager styleManager, StyleChangeType change) - { - } - - /** - * @brief This method is called when the control is accessibility activated. - * - * Derived classes should override this to perform custom accessibility activation. - * @return true if this control can perform accessibility activation. - */ - public virtual bool OnAccessibilityActivated() - { - return false; - } - - /** - * @brief This method should be overridden by deriving classes when they wish to respond the accessibility - * pan gesture. - * - * @param[in] gesture The pan gesture. - * @return true if the pan gesture has been consumed by this control - */ - public virtual bool OnAccessibilityPan(PanGesture gestures) - { - return false; - } - - /** - * @brief This method should be overridden by deriving classes when they wish to respond the accessibility - * touch event. - * - * @param[in] touchEvent The touch event. - * @return true if the touch event has been consumed by this control - */ - public virtual bool OnAccessibilityTouch(TouchEvent touchEvent) - { - return false; - } - - /** - * @brief This method should be overridden by deriving classes when they wish to respond - * the accessibility up and down action (i.e. value change of slider control). - * - * @param[in] isIncrease Whether the value should be increased or decreased - * @return true if the value changed action has been consumed by this control - */ - public virtual bool OnAccessibilityValueChange(bool isIncrease) - { - return false; - } - - /** - * @brief This method should be overridden by deriving classes when they wish to respond - * the accessibility zoom action. - * - * @return true if the zoom action has been consumed by this control - */ - public virtual bool OnAccessibilityZoom() - { - return false; - } - - /** - * @brief This method should be overridden by deriving classes when they wish to respond - * the accessibility zoom action. - * - * @return true if the zoom action has been consumed by this control - */ - public virtual void OnKeyInputFocusGained() - { - } - - /** - * @brief Called when the control loses key input focus. - * - * Should be overridden by derived classes if they need to customize what happens when focus is lost. - */ - public virtual void OnKeyInputFocusLost() - { - } - - /** - * @brief Gets the next keyboard focusable actor in this control towards the given direction. - * - * A control needs to override this function in order to support two dimensional keyboard navigation. - * @param[in] currentFocusedActor The current focused actor. - * @param[in] direction The direction to move the focus towards. - * @param[in] loopEnabled Whether the focus movement should be looped within the control. - * @return the next keyboard focusable actor in this control or an empty handle if no actor can be focused. - */ - public virtual Actor GetNextKeyboardFocusableActor(Actor currentFocusedActor, View.KeyboardFocus.Direction direction, bool loopEnabled) - { - return new Actor(); - } - - /** - * @brief Informs this control that its chosen focusable actor will be focused. - * - * This allows the application to preform any actions if wishes - * before the focus is actually moved to the chosen actor. - * - * @param[in] commitedFocusableActor The commited focusable actor. - */ - public virtual void OnKeyboardFocusChangeCommitted(Actor commitedFocusableActor) - { - } - - /** - * @brief This method is called when the control has enter pressed on it. - * - * Derived classes should override this to perform custom actions. - * @return true if this control supported this action. - */ - public virtual bool OnKeyboardEnter() - { - return false; - } - - /** - * @brief Called whenever a pinch gesture is detected on this control. - * - * This can be overridden by deriving classes when pinch detection - * is enabled. The default behaviour is to scale the control by the - * pinch scale. - * - * @param[in] pinch The pinch gesture. - * @note If overridden, then the default behaviour will not occur. - * @note Pinch detection should be enabled via EnableGestureDetection(). - * @see EnableGestureDetection - */ - public virtual void OnPinch(PinchGesture pinch) - { - } - - /** - * @brief Called whenever a pan gesture is detected on this control. - * - * This should be overridden by deriving classes when pan detection - * is enabled. - * - * @param[in] pan The pan gesture. - * @note There is no default behaviour with panning. - * @note Pan detection should be enabled via EnableGestureDetection(). - * @see EnableGestureDetection - */ - public virtual void OnPan(PanGesture pan) - { - } - - /** - * @brief Called whenever a tap gesture is detected on this control. - * - * This should be overridden by deriving classes when tap detection - * is enabled. - * - * @param[in] tap The tap gesture. - * @note There is no default behaviour with a tap. - * @note Tap detection should be enabled via EnableGestureDetection(). - * @see EnableGestureDetection - */ - public virtual void OnTap(TapGesture tap) - { - } - - /** - * @brief Called whenever a long press gesture is detected on this control. - * - * This should be overridden by deriving classes when long press - * detection is enabled. - * - * @param[in] longPress The long press gesture. - * @note There is no default behaviour associated with a long press. - * @note Long press detection should be enabled via EnableGestureDetection(). - * @see EnableGestureDetection - */ - public virtual void OnLongPress(LongPressGesture longPress) - { - } - - private void SignalConnected(SlotObserver slotObserver, SWIGTYPE_p_Dali__CallbackBase callback) - { - } - - private void SignalDisconnected(SlotObserver slotObserver, SWIGTYPE_p_Dali__CallbackBase callback) - { - } - - private void OnControlChildAdd(Actor child) - { - } - - private void OnControlChildRemove(Actor child) - { - } - } -} +// Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved +// PROPRIETARY/CONFIDENTIAL +// This software is the confidential and proprietary +// information of SAMSUNG ELECTRONICS ("Confidential Information"). You shall +// not disclose such Confidential Information and shall use it only in +// accordance with the terms of the license agreement you entered into with +// SAMSUNG ELECTRONICS. SAMSUNG make no representations or warranties about the +// suitability of the software, either express or implied, including but not +// limited to the implied warranties of merchantability, fitness for a +// particular purpose, or non-infringement. SAMSUNG shall not be liable for any +// damages suffered by licensee as a result of using, modifying or distributing +// this software or its derivatives. + +// Copyright (c) 2017 Samsung Electronics Co., Ltd. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// + +// This File has been auto-generated by SWIG and then modified using DALi Ruby Scripts +// Some have been manually changed + +namespace Tizen.NUI +{ + public class CustomView : ViewWrapper + { + public CustomView(ViewBehaviour behaviour) : base(new ViewWrapperImpl(behaviour)) + { + // Registering CustomView virtual functions to viewWrapperImpl delegates. + viewWrapperImpl.OnStageConnection = new ViewWrapperImpl.OnStageConnectionDelegate(OnStageConnection); + viewWrapperImpl.OnStageDisconnection = new ViewWrapperImpl.OnStageDisconnectionDelegate(OnStageDisconnection); + viewWrapperImpl.OnChildAdd = new ViewWrapperImpl.OnChildAddDelegate(OnChildAdd); + viewWrapperImpl.OnChildRemove = new ViewWrapperImpl.OnChildRemoveDelegate(OnChildRemove); + viewWrapperImpl.OnPropertySet = new ViewWrapperImpl.OnPropertySetDelegate(OnPropertySet); + viewWrapperImpl.OnSizeSet = new ViewWrapperImpl.OnSizeSetDelegate(OnSizeSet); + viewWrapperImpl.OnSizeAnimation = new ViewWrapperImpl.OnSizeAnimationDelegate(OnSizeAnimation); + viewWrapperImpl.OnTouch = new ViewWrapperImpl.OnTouchDelegate(OnTouch); + viewWrapperImpl.OnHover = new ViewWrapperImpl.OnHoverDelegate(OnHover); + viewWrapperImpl.OnKey = new ViewWrapperImpl.OnKeyDelegate(OnKey); + viewWrapperImpl.OnWheel = new ViewWrapperImpl.OnWheelDelegate(OnWheel); + viewWrapperImpl.OnRelayout = new ViewWrapperImpl.OnRelayoutDelegate(OnRelayout); + viewWrapperImpl.OnSetResizePolicy = new ViewWrapperImpl.OnSetResizePolicyDelegate(OnSetResizePolicy); + viewWrapperImpl.GetNaturalSize = new ViewWrapperImpl.GetNaturalSizeDelegate(GetNaturalSize); + viewWrapperImpl.CalculateChildSize = new ViewWrapperImpl.CalculateChildSizeDelegate(CalculateChildSize); + viewWrapperImpl.GetHeightForWidth = new ViewWrapperImpl.GetHeightForWidthDelegate(GetHeightForWidth); + viewWrapperImpl.GetWidthForHeight = new ViewWrapperImpl.GetWidthForHeightDelegate(GetWidthForHeight); + viewWrapperImpl.RelayoutDependentOnChildrenDimension = new ViewWrapperImpl.RelayoutDependentOnChildrenDimensionDelegate(RelayoutDependentOnChildren); + viewWrapperImpl.RelayoutDependentOnChildren = new ViewWrapperImpl.RelayoutDependentOnChildrenDelegate(RelayoutDependentOnChildren); + viewWrapperImpl.OnCalculateRelayoutSize = new ViewWrapperImpl.OnCalculateRelayoutSizeDelegate(OnCalculateRelayoutSize); + viewWrapperImpl.OnLayoutNegotiated = new ViewWrapperImpl.OnLayoutNegotiatedDelegate(OnLayoutNegotiated); + viewWrapperImpl.OnControlChildAdd = new ViewWrapperImpl.OnControlChildAddDelegate(OnControlChildAdd); + viewWrapperImpl.OnControlChildRemove = new ViewWrapperImpl.OnControlChildRemoveDelegate(OnControlChildRemove); + viewWrapperImpl.OnStyleChange = new ViewWrapperImpl.OnStyleChangeDelegate(OnStyleChange); + viewWrapperImpl.OnAccessibilityActivated = new ViewWrapperImpl.OnAccessibilityActivatedDelegate(OnAccessibilityActivated); + viewWrapperImpl.OnAccessibilityPan = new ViewWrapperImpl.OnAccessibilityPanDelegate(OnAccessibilityPan); + viewWrapperImpl.OnAccessibilityTouch = new ViewWrapperImpl.OnAccessibilityTouchDelegate(OnAccessibilityTouch); + viewWrapperImpl.OnAccessibilityValueChange = new ViewWrapperImpl.OnAccessibilityValueChangeDelegate(OnAccessibilityValueChange); + viewWrapperImpl.OnAccessibilityZoom = new ViewWrapperImpl.OnAccessibilityZoomDelegate(OnAccessibilityZoom); + viewWrapperImpl.OnKeyInputFocusGained = new ViewWrapperImpl.OnKeyInputFocusGainedDelegate(OnFocusGained); + viewWrapperImpl.OnKeyInputFocusLost = new ViewWrapperImpl.OnKeyInputFocusLostDelegate(OnFocusLost); + viewWrapperImpl.GetNextFocusableView = new ViewWrapperImpl.GetNextFocusableViewDelegate(GetNextFocusableView); + viewWrapperImpl.OnFocusChangeCommitted = new ViewWrapperImpl.OnFocusChangeCommittedDelegate(OnFocusChangeCommitted); + viewWrapperImpl.OnKeyboardEnter = new ViewWrapperImpl.OnKeyboardEnterDelegate(OnKeyEnter); + viewWrapperImpl.OnPinch = new ViewWrapperImpl.OnPinchDelegate(OnPinch); + viewWrapperImpl.OnPan = new ViewWrapperImpl.OnPanDelegate(OnPan); + viewWrapperImpl.OnTap = new ViewWrapperImpl.OnTapDelegate(OnTap); + viewWrapperImpl.OnLongPress = new ViewWrapperImpl.OnLongPressDelegate(OnLongPress); + viewWrapperImpl.SignalConnected = new ViewWrapperImpl.SignalConnectedDelegate(SignalConnected); + viewWrapperImpl.SignalDisconnected = new ViewWrapperImpl.SignalDisconnectedDelegate(SignalDisconnected); + + // Make sure CustomView is initialized. + OnInitialize(); + + // Make sure the style of actors/visuals initialized above are applied by the style manager. + viewWrapperImpl.ApplyThemeStyle(); + } + + /** + * @brief Set the background with a property map. + * + * @param[in] map The background property map. + */ + public void SetBackground(Tizen.NUI.PropertyMap map) + { + viewWrapperImpl.SetBackground(map); + } + + /** + * @brief Allows deriving classes to enable any of the gesture detectors that are available. + * + * Gesture detection can be enabled one at a time or in bitwise format as shown: + * @code + * EnableGestureDetection(Gesture.Type.Pinch | Gesture.Type.Tap | Gesture.Type.Pan)); + * @endcode + * @param[in] type The gesture type(s) to enable. + */ + internal void EnableGestureDetection(Gesture.GestureType type) + { + viewWrapperImpl.EnableGestureDetection(type); + } + + /** + * @brief Allows deriving classes to disable any of the gesture detectors. + * + * Like EnableGestureDetection, this can also be called using bitwise or. + * @param[in] type The gesture type(s) to disable. + * @see EnableGetureDetection + */ + internal void DisableGestureDetection(Gesture.GestureType type) + { + viewWrapperImpl.DisableGestureDetection(type); + } + + /** + * @brief Sets whether this control supports two dimensional + * keyboard navigation (i.e. whether it knows how to handle the + * keyboard focus movement between its child actors). + * + * The control doesn't support it by default. + * @param[in] isSupported Whether this control supports two dimensional keyboard navigation. + */ + + public bool FocusNavigationSupport + { + get + { + return IsKeyboardNavigationSupported(); + } + set + { + SetKeyboardNavigationSupport(value); + } + } + + internal void SetKeyboardNavigationSupport(bool isSupported) + { + viewWrapperImpl.SetKeyboardNavigationSupport(isSupported); + } + + + /** + * @brief Gets whether this control supports two dimensional keyboard navigation. + * + * @return true if this control supports two dimensional keyboard navigation. + */ + internal bool IsKeyboardNavigationSupported() + { + return viewWrapperImpl.IsKeyboardNavigationSupported(); + } + + + public bool FocusGroup + { + get + { + return IsKeyboardFocusGroup(); + } + set + { + SetAsKeyboardFocusGroup(value); + } + } + + /** + * @brief Sets whether this control is a focus group for keyboard navigation. + * + * (i.e. the scope of keyboard focus movement + * can be limitied to its child actors). The control is not a focus group by default. + * @param[in] isFocusGroup Whether this control is set as a focus group for keyboard navigation. + */ + internal void SetAsKeyboardFocusGroup(bool isFocusGroup) + { + viewWrapperImpl.SetAsKeyboardFocusGroup(isFocusGroup); + } + + /** + * @brief Gets whether this control is a focus group for keyboard navigation. + * + * @return true if this control is set as a focus group for keyboard navigation. + */ + internal bool IsKeyboardFocusGroup() + { + return viewWrapperImpl.IsKeyboardFocusGroup(); + } + + /** + * @brief Called by the AccessibilityManager to activate the Control. + * @SINCE_1_0.0 + */ + internal void AccessibilityActivate() + { + viewWrapperImpl.AccessibilityActivate(); + } + + /** + * @brief Called by the KeyboardFocusManager. + */ + public void KeyboardEnter() + { + viewWrapperImpl.KeyboardEnter(); + } + + /** + * @brief Called by the KeyInputFocusManager to emit key event signals. + * + * @param[in] key The key event. + * @return True if the event was consumed. + */ + public bool EmitKeyEventSignal(Key key) + { + return viewWrapperImpl.EmitKeyEventSignal(key); + } + + /** + * @brief Request a relayout, which means performing a size negotiation on this actor, its parent and children (and potentially whole scene). + * + * This method can also be called from a derived class every time it needs a different size. + * At the end of event processing, the relayout process starts and + * all controls which requested Relayout will have their sizes (re)negotiated. + * + * @note RelayoutRequest() can be called multiple times; the size negotiation is still + * only performed once, i.e. there is no need to keep track of this in the calling side. + */ + protected void RelayoutRequest() + { + viewWrapperImpl.RelayoutRequest(); + } + + /** + * @brief Provides the Actor implementation of GetHeightForWidth. + * @param width Width to use. + * @return The height based on the width. + */ + protected float GetHeightForWidthBase(float width) + { + return viewWrapperImpl.GetHeightForWidthBase(width); + } + + /** + * @brief Provides the Actor implementation of GetWidthForHeight. + * @param height Height to use. + * @return The width based on the height. + */ + protected float GetWidthForHeightBase(float height) + { + return viewWrapperImpl.GetWidthForHeightBase(height); + } + + /** + * @brief Calculate the size for a child using the base actor object. + * + * @param[in] child The child actor to calculate the size for + * @param[in] dimension The dimension to calculate the size for. E.g. width or height + * @return Return the calculated size for the given dimension. If more than one dimension is requested, just return the first one found. + */ + protected float CalculateChildSizeBase(Actor child, DimensionType dimension) + { + return viewWrapperImpl.CalculateChildSizeBase(child, dimension); + } + + /** + * @brief Determine if this actor is dependent on it's children for relayout from the base class. + * + * @param dimension The dimension(s) to check for + * @return Return if the actor is dependent on it's children. + */ + protected bool RelayoutDependentOnChildrenBase(DimensionType dimension) + { + return viewWrapperImpl.RelayoutDependentOnChildrenBase(dimension); + } + + /** + * @brief Determine if this actor is dependent on it's children for relayout from the base class. + * + * @param dimension The dimension(s) to check for + * @return Return if the actor is dependent on it's children. + */ + protected bool RelayoutDependentOnChildrenBase() + { + return viewWrapperImpl.RelayoutDependentOnChildrenBase(); + } + + /** + * @brief Register a visual by Property Index, linking an Actor to visual when required. + * In the case of the visual being an actor or control deeming visual not required then visual should be an empty handle. + * No parenting is done during registration, this should be done by derived class. + * + * @param[in] index The Property index of the visual, used to reference visual + * @param[in] visual The visual to register + * @note Derived class should not call visual.SetOnStage(actor). It is the responsibility of the base class to connect/disconnect registered visual to stage. + * Use below API with enabled set to false if derived class wishes to control when visual is staged. + */ + protected void RegisterVisual(int index, VisualBase visual) + { + viewWrapperImpl.RegisterVisual(index, visual); + } + + /** + * @brief Register a visual by Property Index, linking an Actor to visual when required. + * In the case of the visual being an actor or control deeming visual not required then visual should be an empty handle. + * If enabled is false then the visual is not set on stage until enabled by the derived class. + * @see EnableVisual + * + * @param[in] index The Property index of the visual, used to reference visual + * @param[in] visual The visual to register + * @param[in] enabled false if derived class wants to control when visual is set on stage. + * + */ + protected void RegisterVisual(int index, VisualBase visual, bool enabled) + { + viewWrapperImpl.RegisterVisual(index, visual, enabled); + } + + /** + * @brief Erase the entry matching the given index from the list of registered visuals + * @param[in] index The Property index of the visual, used to reference visual + * + */ + protected void UnregisterVisual(int index) + { + viewWrapperImpl.UnregisterVisual(index); + } + + /** + * @brief Retrieve the visual associated with the given property index. + * + * @param[in] index The Property index of the visual. + * @return The registered visual if exist, otherwise empty handle. + * @note For managing object life-cycle, do not store the returned visual as a member which increments its reference count. + */ + protected VisualBase GetVisual(int index) + { + return viewWrapperImpl.GetVisual(index); + } + + /** + * @brief Sets the given visual to be displayed or not when parent staged. + * + * @param[in] index The Property index of the visual + * @param[in] enable flag to set enabled or disabled. + */ + protected void EnableVisual(int index, bool enable) + { + viewWrapperImpl.EnableVisual(index, enable); + } + + /** + * @brief Queries if the given visual is to be displayed when parent staged. + * + * @param[in] index The Property index of the visual + * @return bool whether visual is enabled or not + */ + protected bool IsVisualEnabled(int index) + { + return viewWrapperImpl.IsVisualEnabled(index); + } + + /** + * @brief Create a transition effect on the control. + * + * @param[in] transitionData The transition data describing the effect to create + * @return A handle to an animation defined with the given effect, or an empty + * handle if no properties match. + */ + protected Animation CreateTransition(TransitionData transitionData) + { + return viewWrapperImpl.CreateTransition(transitionData); + } + + /** + * @brief Emits KeyInputFocusGained signal if true else emits KeyInputFocusLost signal + * + * Should be called last by the control after it acts on the Input Focus change. + * + * @param[in] focusGained True if gained, False if lost + */ + protected void EmitKeyInputFocusSignal(bool focusGained) + { + viewWrapperImpl.EmitKeyInputFocusSignal(focusGained); + } + + /** + * @brief This method is called after the Control has been initialized. + * + * Derived classes should do any second phase initialization by overriding this method. + */ + public virtual void OnInitialize() + { + } + + /** + * @brief Called after the actor has been connected to the stage. + * + * When an actor is connected, it will be directly or indirectly parented to the root Actor. + * @param[in] depth The depth in the hierarchy for the actor + * + * @note The root Actor is provided automatically by Dali::Stage, and is always considered to be connected. + * When the parent of a set of actors is connected to the stage, then all of the children + * will received this callback. + * For the following actor tree, the callback order will be A, B, D, E, C, and finally F. + * + * @code + * + * A (parent) + * / \ + * B C + * / \ \ + * D E F + * + * @endcode + * @param[in] depth The depth in the hierarchy for the actor + */ + public virtual void OnStageConnection(int depth) + { + } + + /** + * @brief Called after the actor has been disconnected from Stage. + * + * If an actor is disconnected it either has no parent, or is parented to a disconnected actor. + * + * @note When the parent of a set of actors is disconnected to the stage, then all of the children + * will received this callback, starting with the leaf actors. + * For the following actor tree, the callback order will be D, E, B, F, C, and finally A. + * + * @code + * + * A (parent) + * / \ + * B C + * / \ \ + * D E F + * + * @endcode + */ + public virtual void OnStageDisconnection() + { + } + + /** + * @brief Called after a child has been added to the owning actor. + * + * @param[in] child The child which has been added + */ + public virtual void OnChildAdd(Actor actor) + { + } + + /** + * @brief Called after the owning actor has attempted to remove a child( regardless of whether it succeeded or not ). + * + * @param[in] child The child being removed + */ + public virtual void OnChildRemove(Actor actor) + { + } + + /** + * @brief Called when the owning actor property is set. + * + * @param[in] index The Property index that was set + * @param[in] propertyValue The value to set + */ + public virtual void OnPropertySet(int index, Tizen.NUI.PropertyValue propertyValue) + { + } + + /** + * @brief Called when the owning actor's size is set e.g. using Actor::SetSize(). + * + * @param[in] targetSize The target size. Note that this target size may not match the size returned via Actor.GetTargetSize. + */ + public virtual void OnSizeSet(Vector3 targetSize) + { + } + + /** + * @brief Called when the owning actor's size is animated e.g. using Animation::AnimateTo( Property( actor, Actor::Property::SIZE ), ... ). + * + * @param[in] animation The object which is animating the owning actor. + * @param[in] targetSize The target size. Note that this target size may not match the size returned via @ref Actor.GetTargetSize. + */ + public virtual void OnSizeAnimation(Animation animation, Vector3 targetSize) + { + } + + /** + * @DEPRECATED_1_1.37 Connect to TouchSignal() instead. + * + * @brief Called after a touch-event is received by the owning actor. + * + * @param[in] touch The touch event + * @return True if the event should be consumed. + * @note CustomViewBehaviour.REQUIRES_TOUCH_EVENTS must be enabled during construction. See CustomView(ViewWrapperImpl.CustomViewBehaviour behaviour). + */ + public virtual bool OnTouch(Touch touch) + { + return false; // Do not consume + } + + /** + * @brief Called after a hover-event is received by the owning actor. + * + * @param[in] hover The hover event + * @return True if the hover event should be consumed. + * @note CustomViewBehaviour.REQUIRES_HOVER_EVENTS must be enabled during construction. See CustomView(ViewWrapperImpl.CustomViewBehaviour behaviour). + */ + public virtual bool OnHover(Hover hover) + { + return false; // Do not consume + } + + /** + * @brief Called after a key-event is received by the actor that has had its focus set. + * + * @param[in] key the Key Event + * @return True if the event should be consumed. + */ + public virtual bool OnKey(Key key) + { + return false; // Do not consume + } + + /** + * @brief Called after a wheel-event is received by the owning actor. + * + * @param[in] wheel The wheel event + * @return True if the event should be consumed. + * @note CustomViewBehaviour.REQUIRES_WHEEL_EVENTS must be enabled during construction. See CustomView(ViewWrapperImpl.CustomViewBehaviour behaviour). + */ + public virtual bool OnWheel(Wheel wheel) + { + return false; // Do not consume + } + + /** + * @brief Called after the size negotiation has been finished for this control. + * + * The control is expected to assign this given size to itself/its children. + * + * Should be overridden by derived classes if they need to layout + * actors differently after certain operations like add or remove + * actors, resize or after changing specific properties. + * + * @param[in] size The allocated size. + * @param[in,out] container The control should add actors to this container that it is not able + * to allocate a size for. + * @note As this function is called from inside the size negotiation algorithm, you cannot + * call RequestRelayout (the call would just be ignored). + */ + public virtual void OnRelayout(Vector2 size, RelayoutContainer container) + { + } + + /** + * @brief Notification for deriving classes + * + * @param[in] policy The policy being set + * @param[in] dimension The dimension the policy is being set for + */ + public virtual void OnSetResizePolicy(ResizePolicyType policy, DimensionType dimension) + { + } + + /** + * @brief Return the natural size of the actor. + * + * @return The actor's natural size + */ + public virtual Size GetNaturalSize() + { + return new Size(0.0f, 0.0f, 0.0f); + } + + /** + * @brief Calculate the size for a child. + * + * @param[in] child The child actor to calculate the size for + * @param[in] dimension The dimension to calculate the size for. E.g. width or height. + * @return Return the calculated size for the given dimension. + */ + public virtual float CalculateChildSize(Actor child, DimensionType dimension) + { + return viewWrapperImpl.CalculateChildSizeBase(child, dimension); + } + + /** + * @brief This method is called during size negotiation when a height is required for a given width. + * + * Derived classes should override this if they wish to customize the height returned. + * + * @param width Width to use. + * @return The height based on the width. + */ + public virtual float GetHeightForWidth(float width) + { + return viewWrapperImpl.GetHeightForWidthBase(width); + } + + /** + * @brief This method is called during size negotiation when a width is required for a given height. + * + * Derived classes should override this if they wish to customize the width returned. + * + * @param height Height to use. + * @return The width based on the width. + */ + public virtual float GetWidthForHeight(float height) + { + return viewWrapperImpl.GetWidthForHeightBase(height); + } + + /** + * @brief Determine if this actor is dependent on it's children for relayout. + * + * @param dimension The dimension(s) to check for + * @return Return if the actor is dependent on it's children. + */ + public virtual bool RelayoutDependentOnChildren(DimensionType dimension) + { + return viewWrapperImpl.RelayoutDependentOnChildrenBase(dimension); + } + + /** + * @brief Determine if this actor is dependent on it's children for relayout from the base class. + * + * @return Return if the actor is dependent on it's children. + */ + public virtual bool RelayoutDependentOnChildren() + { + return viewWrapperImpl.RelayoutDependentOnChildrenBase(); + } + + /** + * @brief Virtual method to notify deriving classes that relayout dependencies have been + * met and the size for this object is about to be calculated for the given dimension + * + * @param dimension The dimension that is about to be calculated + */ + public virtual void OnCalculateRelayoutSize(DimensionType dimension) + { + } + + /** + * @brief Virtual method to notify deriving classes that the size for a dimension + * has just been negotiated + * + * @param[in] size The new size for the given dimension + * @param[in] dimension The dimension that was just negotiated + */ + public virtual void OnLayoutNegotiated(float size, DimensionType dimension) + { + } + + /** + * @brief This method should be overridden by deriving classes requiring notifications when the style changes. + * + * @param[in] styleManager The StyleManager object. + * @param[in] change Information denoting what has changed. + */ + public virtual void OnStyleChange(StyleManager styleManager, StyleChangeType change) + { + } + + /** + * @brief This method is called when the control is accessibility activated. + * + * Derived classes should override this to perform custom accessibility activation. + * @return true if this control can perform accessibility activation. + */ + internal virtual bool OnAccessibilityActivated() + { + return false; + } + + /** + * @brief This method should be overridden by deriving classes when they wish to respond the accessibility + * pan gesture. + * + * @param[in] gesture The pan gesture. + * @return true if the pan gesture has been consumed by this control + */ + internal virtual bool OnAccessibilityPan(PanGesture gestures) + { + return false; + } + + /** + * @brief This method should be overridden by deriving classes when they wish to respond the accessibility + * touch event. + * + * @param[in] touch The touch event. + * @return true if the touch event has been consumed by this control + */ + internal virtual bool OnAccessibilityTouch(Touch touch) + { + return false; + } + + /** + * @brief This method should be overridden by deriving classes when they wish to respond + * the accessibility up and down action (i.e. value change of slider control). + * + * @param[in] isIncrease Whether the value should be increased or decreased + * @return true if the value changed action has been consumed by this control + */ + internal virtual bool OnAccessibilityValueChange(bool isIncrease) + { + return false; + } + + /** + * @brief This method should be overridden by deriving classes when they wish to respond + * the accessibility zoom action. + * + * @return true if the zoom action has been consumed by this control + */ + internal virtual bool OnAccessibilityZoom() + { + return false; + } + + /** + * @brief This method should be overridden by deriving classes when they wish to respond + * the accessibility zoom action. + * + * @return true if the zoom action has been consumed by this control + */ + public virtual void OnFocusGained() + { + } + + /** + * @brief Called when the control loses key input focus. + * + * Should be overridden by derived classes if they need to customize what happens when focus is lost. + */ + public virtual void OnFocusLost() + { + } + + /** + * @brief Gets the next keyboard focusable actor in this control towards the given direction. + * + * A control needs to override this function in order to support two dimensional keyboard navigation. + * @param[in] currentFocusedActor The current focused actor. + * @param[in] direction The direction to move the focus towards. + * @param[in] loopEnabled Whether the focus movement should be looped within the control. + * @return the next keyboard focusable actor in this control or an empty handle if no actor can be focused. + */ + public virtual View GetNextFocusableView(View currentFocusedView, View.FocusDirection direction, bool loopEnabled) + { + return new View(); + } + + /** + * @brief Informs this control that its chosen focusable actor will be focused. + * + * This allows the application to preform any actions if wishes + * before the focus is actually moved to the chosen actor. + * + * @param[in] commitedFocusableActor The commited focusable actor. + */ + public virtual void OnFocusChangeCommitted(View commitedFocusableView) + { + } + + + /** + * @brief This method is called when the control has enter pressed on it. + * + * Derived classes should override this to perform custom actions. + * @return true if this control supported this action. + */ + public virtual bool OnKeyEnter() + { + return false; + } + + + /** + * @brief Called whenever a pinch gesture is detected on this control. + * + * This can be overridden by deriving classes when pinch detection + * is enabled. The default behaviour is to scale the control by the + * pinch scale. + * + * @param[in] pinch The pinch gesture. + * @note If overridden, then the default behaviour will not occur. + * @note Pinch detection should be enabled via EnableGestureDetection(). + * @see EnableGestureDetection + */ + internal virtual void OnPinch(PinchGesture pinch) + { + } + + /** + * @brief Called whenever a pan gesture is detected on this control. + * + * This should be overridden by deriving classes when pan detection + * is enabled. + * + * @param[in] pan The pan gesture. + * @note There is no default behaviour with panning. + * @note Pan detection should be enabled via EnableGestureDetection(). + * @see EnableGestureDetection + */ + internal virtual void OnPan(PanGesture pan) + { + } + + /** + * @brief Called whenever a tap gesture is detected on this control. + * + * This should be overridden by deriving classes when tap detection + * is enabled. + * + * @param[in] tap The tap gesture. + * @note There is no default behaviour with a tap. + * @note Tap detection should be enabled via EnableGestureDetection(). + * @see EnableGestureDetection + */ + internal virtual void OnTap(TapGesture tap) + { + } + + /** + * @brief Called whenever a long press gesture is detected on this control. + * + * This should be overridden by deriving classes when long press + * detection is enabled. + * + * @param[in] longPress The long press gesture. + * @note There is no default behaviour associated with a long press. + * @note Long press detection should be enabled via EnableGestureDetection(). + * @see EnableGestureDetection + */ + internal virtual void OnLongPress(LongPressGesture longPress) + { + } + + private void SignalConnected(SlotObserver slotObserver, SWIGTYPE_p_Dali__CallbackBase callback) + { + } + + private void SignalDisconnected(SlotObserver slotObserver, SWIGTYPE_p_Dali__CallbackBase callback) + { + } + + private void OnControlChildAdd(Actor child) + { + } + + private void OnControlChildRemove(Actor child) + { + } + } + public enum ViewBehaviour + { + ViewBehaviourDefault = 0, + DisableSizeNegotiation = 1 << 0, + RequiresKeyboardNavigationSupport = 1 << 5, + DisableStyleChangeSignals = 1 << 6, + LastViewBehaviourFlag + } + +} diff --git a/Tizen.NUI/src/public/DaliEnumConstants.cs b/Tizen.NUI/src/public/DaliEnumConstants.cs deleted file mode 100755 index e79a89a..0000000 --- a/Tizen.NUI/src/public/DaliEnumConstants.cs +++ /dev/null @@ -1,149 +0,0 @@ -/** Copyright (c) 2016 Samsung Electronics Co., Ltd. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - */ -using System; - -namespace NUI -{ - namespace Constants - { - - public enum TextureType - { - Texture2D = NUI.TextureType.TEXTURE_2D, ///< One 2D image @SINCE_1_1.43 - TextureCube = NUI.TextureType.TEXTURE_CUBE ///< Six 2D images arranged in a cube-shape @SINCE_1_1.43 - } - - public enum ViewMode - { - Mono = NUI.ViewMode.MONO, ///< Monoscopic (single camera). This is the default @SINCE_1_0.0 - StereoHorizontal = NUI.ViewMode.STEREO_HORIZONTAL, ///< Stereoscopic. Frame buffer is split horizontally with the left and right camera views in their respective sides. @SINCE_1_0.0 - StereoVertical = NUI.ViewMode.STEREO_VERTICAL, ///< Stereoscopic. Frame buffer is split vertically with the left camera view at the top and the right camera view at the bottom. @SINCE_1_0.0 - StereoInterlaced = NUI.ViewMode.STEREO_INTERLACED ///< @DEPRECATED_1_1.19 @brief Stereoscopic. Left/Right camera views are rendered into the framebuffer on alternate frames. @SINCE_1_0.0 - } - - public enum MeshVisualShadingModeValue - { - TexturelessWithDiffuseLighting = NUI.MeshVisualShadingModeValue.TEXTURELESS_WITH_DIFFUSE_LIGHTING, ///< *Simplest*. One color that is lit by ambient and diffuse lighting. @SINCE_1_1.45 - TexturedWithSpecularLigting = NUI.MeshVisualShadingModeValue.TEXTURED_WITH_SPECULAR_LIGHTING, ///< Uses only the visual image textures provided with specular lighting in addition to ambient and diffuse lighting. @SINCE_1_1.45 - TexturedWithDetailedSpecularLighting = NUI.MeshVisualShadingModeValue.TEXTURED_WITH_DETAILED_SPECULAR_LIGHTING ///< Uses all textures provided including a gloss, normal and texture map along with specular, ambient and diffuse lighting. @SINCE_1_1.45 - } - - public enum ProjectionMode - { - PerspectiveProjection = NUI.ProjectionMode.PERSPECTIVE_PROJECTION, ///< Distance causes foreshortening; objects further from the camera appear smaller @SINCE_1_0.0 - OrthographicProjection = NUI.ProjectionMode.ORTHOGRAPHIC_PROJECTION ///< Relative distance from the camera does not affect the size of objects @SINCE_1_0.0 - } - - public struct ParentOrigin - { - public static readonly float Top = NDalic.ParentOriginTop; - public static readonly float Bottom = NDalic.ParentOriginBottom; - public static readonly float Left = NDalic.ParentOriginLeft; - public static readonly float Right = NDalic.ParentOriginRight; - public static readonly float Middle = NDalic.ParentOriginMiddle; - public static readonly NUI.Vector3 TopLeft = NDalic.ParentOriginTopLeft; - public static readonly NUI.Vector3 TopCenter = NDalic.ParentOriginTopCenter; - public static readonly NUI.Vector3 TopRight = NDalic.ParentOriginTopRight; - public static readonly NUI.Vector3 CenterLeft = NDalic.ParentOriginCenterLeft; - public static readonly NUI.Vector3 Center = NDalic.ParentOriginCenter; - public static readonly NUI.Vector3 CenterRight = NDalic.ParentOriginCenterRight; - public static readonly NUI.Vector3 BottomLeft = NDalic.ParentOriginBottomLeft; - public static readonly NUI.Vector3 BottomCenter = NDalic.ParentOriginBottomCenter; - public static readonly NUI.Vector3 BottomRight = NDalic.ParentOriginBottomRight; - } - - public struct AnchorPoint - { - public static readonly float Top = NDalic.AnchorPointTop; - public static readonly float Bottom = NDalic.AnchorPointBottom; - public static readonly float Left = NDalic.AnchorPointLeft; - public static readonly float Right = NDalic.AnchorPointRight; - public static readonly float Middle = NDalic.AnchorPointMiddle; - public static readonly NUI.Vector3 TopLeft = NDalic.AnchorPointTopLeft; - public static readonly NUI.Vector3 TopCenter = NDalic.AnchorPointTopCenter; - public static readonly NUI.Vector3 TopRight = NDalic.AnchorPointTopRight; - public static readonly NUI.Vector3 CenterLeft = NDalic.AnchorPointCenterLeft; - public static readonly NUI.Vector3 Center = NDalic.AnchorPointCenter; - public static readonly NUI.Vector3 CenterRight = NDalic.AnchorPointCenterRight; - public static readonly NUI.Vector3 BottomLeft = NDalic.AnchorPointBottomLeft; - public static readonly NUI.Vector3 BottomCenter = NDalic.AnchorPointBottomCenter; - public static readonly NUI.Vector3 BottomRight = NDalic.AnchorPointBottomRight; - } - - public struct Vect3 - { - public static readonly NUI.Vector3 One = NUI.Vector3.ONE; - public static readonly NUI.Vector3 Xaxis = NUI.Vector3.XAXIS; - public static readonly NUI.Vector3 Yaxis = NUI.Vector3.YAXIS; - public static readonly NUI.Vector3 Zaxis = NUI.Vector3.ZAXIS; - public static readonly NUI.Vector3 NegativeXaxis = NUI.Vector3.NEGATIVE_XAXIS; - public static readonly NUI.Vector3 NegativeYaxis = NUI.Vector3.NEGATIVE_YAXIS; - public static readonly NUI.Vector3 NegativeZaxis = NUI.Vector3.NEGATIVE_ZAXIS; - public static readonly NUI.Vector3 Zero = NUI.Vector3.ZERO; - } - - public struct Visual - { - public static readonly int PropertyType = NDalic.VISUAL_PROPERTY_TYPE; - public static readonly int PropertyShader = NDalic.VISUAL_PROPERTY_SHADER; - - public static readonly int VertexShader = NDalic.VERTEX_SHADER; - public static readonly int FragmentShader = NDalic.FRAGMENT_SHADER; - public static readonly int SubdivideGridX = NDalic.SUBDIVIDE_GRID_X; - public static readonly int SubdivideGridY = NDalic.SUBDIVIDE_GRID_Y; - public static readonly int Hints = NDalic.HINTS; - - public static readonly int Color = NDalic.COLOR; - public static readonly int Size = NDalic.SIZE; - public static readonly int AntiAliasing = NDalic.ANTI_ALIASING; - - public static readonly int MixColor = NDalic.MIX_COLOR; - - public static readonly int StartPosition = NDalic.START_POSITION; - public static readonly int EndPosition = NDalic.END_POSITION; - public static readonly int Center = NDalic.CENTER; - public static readonly int Radius = NDalic.RADIUS; - public static readonly int StopOffset = NDalic.STOP_OFFSET; - public static readonly int StopColor = NDalic.STOP_COLOR; - public static readonly int Units = NDalic.UNITS; - public static readonly int SpreadMethod = NDalic.SPREAD_METHOD; - - public static readonly int ImageVisualURL = NDalic.IMAGE_VISUAL_URL; - public static readonly int ImageVisualFittingMode = NDalic.IMAGE_VISUAL_FITTING_MODE; - public static readonly int ImageVisualSamplingMode = NDalic.IMAGE_VISUAL_SAMPLING_MODE; - public static readonly int ImageVisualDesiredWidth = NDalic.IMAGE_VISUAL_DESIRED_WIDTH; - public static readonly int ImageVisualDesiredHeight = NDalic.IMAGE_VISUAL_DESIRED_HEIGHT; - public static readonly int ImageVisualSynchronousLoading = NDalic.IMAGE_VISUAL_SYNCHRONOUS_LOADING; - public static readonly int ImageVisualBorderOnly = NDalic.IMAGE_VISUAL_BORDER_ONLY; - public static readonly int ImageVisualBatchingEnabled = NDalic.IMAGE_VISUAL_BATCHING_ENABLED; - public static readonly int ImageVisualPixelArea = NDalic.IMAGE_VISUAL_PIXEL_AREA; - public static readonly int ImageVisualWrapModeU = NDalic.IMAGE_VISUAL_WRAP_MODE_U; - public static readonly int ImageVisualWrapModeV = NDalic.IMAGE_VISUAL_WRAP_MODE_V; - - public enum Type - { - Border = NUI.VisualType.BORDER, - Color = NUI.VisualType.COLOR, - Gradient = NUI.VisualType.GRADIENT, - Image = NUI.VisualType.IMAGE, - Mesh = NUI.VisualType.MESH, - Primitive = NUI.VisualType.PRIMITIVE, - WireFrame = NUI.VisualType.WIREFRAME - } - } - - } // namespace Constants -} // namesapce Dali diff --git a/Tizen.NUI/src/public/FlexContainer.cs b/Tizen.NUI/src/public/FlexContainer.cs old mode 100644 new mode 100755 index 0d3072c..fa2aead --- a/Tizen.NUI/src/public/FlexContainer.cs +++ b/Tizen.NUI/src/public/FlexContainer.cs @@ -1,289 +1,331 @@ -/** Copyright (c) 2017 Samsung Electronics Co., Ltd. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ -// This File has been auto-generated by SWIG and then modified using DALi Ruby Scripts -//------------------------------------------------------------------------------ -// -// -// This file was automatically generated by SWIG (http://www.swig.org). -// Version 3.0.9 -// -// Do not make changes to this file unless you know what you are doing--modify -// the SWIG interface file instead. -//------------------------------------------------------------------------------ - -namespace NUI { - -public class FlexContainer : View { - private global::System.Runtime.InteropServices.HandleRef swigCPtr; - - internal FlexContainer(global::System.IntPtr cPtr, bool cMemoryOwn) : base(NDalicPINVOKE.FlexContainer_SWIGUpcast(cPtr), cMemoryOwn) { - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); - } - - internal static global::System.Runtime.InteropServices.HandleRef getCPtr(FlexContainer obj) { - return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; - } - - ~FlexContainer() { - DisposeQueue.Instance.Add(this); - } - - public override void Dispose() { - if (!Stage.IsInstalled()) { - DisposeQueue.Instance.Add(this); - return; - } - - lock(this) { - if (swigCPtr.Handle != global::System.IntPtr.Zero) { - if (swigCMemOwn) { - swigCMemOwn = false; - NDalicPINVOKE.delete_FlexContainer(swigCPtr); - } - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); - } - global::System.GC.SuppressFinalize(this); - base.Dispose(); - } - } - - - public class Property : global::System.IDisposable { - private global::System.Runtime.InteropServices.HandleRef swigCPtr; - protected bool swigCMemOwn; - - internal Property(global::System.IntPtr cPtr, bool cMemoryOwn) { - swigCMemOwn = cMemoryOwn; - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); - } - - internal static global::System.Runtime.InteropServices.HandleRef getCPtr(Property obj) { - return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; - } - - ~Property() { - Dispose(); - } - - public virtual void Dispose() { - lock(this) { - if (swigCPtr.Handle != global::System.IntPtr.Zero) { - if (swigCMemOwn) { - swigCMemOwn = false; - NDalicPINVOKE.delete_FlexContainer_Property(swigCPtr); - } - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); - } - global::System.GC.SuppressFinalize(this); - } - } - - public Property() : this(NDalicPINVOKE.new_FlexContainer_Property(), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public static readonly int CONTENT_DIRECTION = NDalicPINVOKE.FlexContainer_Property_CONTENT_DIRECTION_get(); - public static readonly int FLEX_DIRECTION = NDalicPINVOKE.FlexContainer_Property_FLEX_DIRECTION_get(); - public static readonly int FLEX_WRAP = NDalicPINVOKE.FlexContainer_Property_FLEX_WRAP_get(); - public static readonly int JUSTIFY_CONTENT = NDalicPINVOKE.FlexContainer_Property_JUSTIFY_CONTENT_get(); - public static readonly int ALIGN_ITEMS = NDalicPINVOKE.FlexContainer_Property_ALIGN_ITEMS_get(); - public static readonly int ALIGN_CONTENT = NDalicPINVOKE.FlexContainer_Property_ALIGN_CONTENT_get(); - - } - - public class ChildProperty : global::System.IDisposable { - private global::System.Runtime.InteropServices.HandleRef swigCPtr; - protected bool swigCMemOwn; - - internal ChildProperty(global::System.IntPtr cPtr, bool cMemoryOwn) { - swigCMemOwn = cMemoryOwn; - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); - } - - internal static global::System.Runtime.InteropServices.HandleRef getCPtr(ChildProperty obj) { - return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; - } - - ~ChildProperty() { - Dispose(); - } - - public virtual void Dispose() { - lock(this) { - if (swigCPtr.Handle != global::System.IntPtr.Zero) { - if (swigCMemOwn) { - swigCMemOwn = false; - NDalicPINVOKE.delete_FlexContainer_ChildProperty(swigCPtr); - } - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); - } - global::System.GC.SuppressFinalize(this); - } - } - - public ChildProperty() : this(NDalicPINVOKE.new_FlexContainer_ChildProperty(), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public static readonly int FLEX = NDalicPINVOKE.FlexContainer_ChildProperty_FLEX_get(); - public static readonly int ALIGN_SELF = NDalicPINVOKE.FlexContainer_ChildProperty_ALIGN_SELF_get(); - public static readonly int FLEX_MARGIN = NDalicPINVOKE.FlexContainer_ChildProperty_FLEX_MARGIN_get(); - - } - - public FlexContainer () : this (NDalicPINVOKE.FlexContainer_New(), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - - } - public FlexContainer(FlexContainer handle) : this(NDalicPINVOKE.new_FlexContainer__SWIG_1(FlexContainer.getCPtr(handle)), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public FlexContainer Assign(FlexContainer handle) { - FlexContainer ret = new FlexContainer(NDalicPINVOKE.FlexContainer_Assign(swigCPtr, FlexContainer.getCPtr(handle)), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public new static FlexContainer DownCast(BaseHandle handle) { - FlexContainer ret = new FlexContainer(NDalicPINVOKE.FlexContainer_DownCast(BaseHandle.getCPtr(handle)), true); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public enum FlexDirectionType { - COLUMN, - COLUMN_REVERSE, - ROW, - ROW_REVERSE - } - - public enum ContentDirectionType { - INHERIT, - LTR, - RTL - } - - public enum Justification { - JUSTIFY_FLEX_START, - JUSTIFY_CENTER, - JUSTIFY_FLEX_END, - JUSTIFY_SPACE_BETWEEN, - JUSTIFY_SPACE_AROUND - } - - public enum Alignment { - ALIGN_AUTO, - ALIGN_FLEX_START, - ALIGN_CENTER, - ALIGN_FLEX_END, - ALIGN_STRETCH - } - - public enum WrapType { - NO_WRAP, - WRAP - } - - public enum PropertyRange { - PROPERTY_START_INDEX = PropertyRanges.PROPERTY_REGISTRATION_START_INDEX, - PROPERTY_END_INDEX = View.PropertyRange.PROPERTY_START_INDEX+1000, - CHILD_PROPERTY_START_INDEX = PropertyRanges.CHILD_PROPERTY_REGISTRATION_START_INDEX, - CHILD_PROPERTY_END_INDEX = PropertyRanges.CHILD_PROPERTY_REGISTRATION_START_INDEX+1000 - } - - public int ContentDirection - { - get - { - int temp = 0; - GetProperty( FlexContainer.Property.CONTENT_DIRECTION).Get( ref temp ); - return temp; - } - set - { - SetProperty( FlexContainer.Property.CONTENT_DIRECTION, new NUI.Property.Value( value ) ); - } - } - public int FlexDirection - { - get - { - int temp = 0; - GetProperty( FlexContainer.Property.FLEX_DIRECTION).Get( ref temp ); - return temp; - } - set - { - SetProperty( FlexContainer.Property.FLEX_DIRECTION, new NUI.Property.Value( value ) ); - } - } - public int FlexWrap - { - get - { - int temp = 0; - GetProperty( FlexContainer.Property.FLEX_WRAP).Get( ref temp ); - return temp; - } - set - { - SetProperty( FlexContainer.Property.FLEX_WRAP, new NUI.Property.Value( value ) ); - } - } - public int JustifyContent - { - get - { - int temp = 0; - GetProperty( FlexContainer.Property.JUSTIFY_CONTENT).Get( ref temp ); - return temp; - } - set - { - SetProperty( FlexContainer.Property.JUSTIFY_CONTENT, new NUI.Property.Value( value ) ); - } - } - public int AlignItems - { - get - { - int temp = 0; - GetProperty( FlexContainer.Property.ALIGN_ITEMS).Get( ref temp ); - return temp; - } - set - { - SetProperty( FlexContainer.Property.ALIGN_ITEMS, new NUI.Property.Value( value ) ); - } - } - public int AlignContent - { - get - { - int temp = 0; - GetProperty( FlexContainer.Property.ALIGN_CONTENT).Get( ref temp ); - return temp; - } - set - { - SetProperty( FlexContainer.Property.ALIGN_CONTENT, new NUI.Property.Value( value ) ); - } - } - -} - -} +// Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved +// PROPRIETARY/CONFIDENTIAL +// This software is the confidential and proprietary +// information of SAMSUNG ELECTRONICS ("Confidential Information"). You shall +// not disclose such Confidential Information and shall use it only in +// accordance with the terms of the license agreement you entered into with +// SAMSUNG ELECTRONICS. SAMSUNG make no representations or warranties about the +// suitability of the software, either express or implied, including but not +// limited to the implied warranties of merchantability, fitness for a +// particular purpose, or non-infringement. SAMSUNG shall not be liable for any +// damages suffered by licensee as a result of using, modifying or distributing +// this software or its derivatives. + +// Copyright (c) 2017 Samsung Electronics Co., Ltd. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// + +// This File has been auto-generated by SWIG and then modified using DALi Ruby Scripts +// Some have been manually changed + +namespace Tizen.NUI +{ + + public class FlexContainer : View + { + private global::System.Runtime.InteropServices.HandleRef swigCPtr; + + internal FlexContainer(global::System.IntPtr cPtr, bool cMemoryOwn) : base(NDalicPINVOKE.FlexContainer_SWIGUpcast(cPtr), cMemoryOwn) + { + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); + } + + internal static global::System.Runtime.InteropServices.HandleRef getCPtr(FlexContainer obj) + { + return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; + } + + ~FlexContainer() + { + DisposeQueue.Instance.Add(this); + } + + public override void Dispose() + { + if (!Stage.IsInstalled()) + { + DisposeQueue.Instance.Add(this); + return; + } + + lock (this) + { + if (swigCPtr.Handle != global::System.IntPtr.Zero) + { + if (swigCMemOwn) + { + swigCMemOwn = false; + NDalicPINVOKE.delete_FlexContainer(swigCPtr); + } + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); + } + global::System.GC.SuppressFinalize(this); + base.Dispose(); + } + } + + + internal class Property : global::System.IDisposable + { + private global::System.Runtime.InteropServices.HandleRef swigCPtr; + protected bool swigCMemOwn; + + internal Property(global::System.IntPtr cPtr, bool cMemoryOwn) + { + swigCMemOwn = cMemoryOwn; + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); + } + + internal static global::System.Runtime.InteropServices.HandleRef getCPtr(Property obj) + { + return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; + } + + ~Property() + { + Dispose(); + } + + public virtual void Dispose() + { + lock (this) + { + if (swigCPtr.Handle != global::System.IntPtr.Zero) + { + if (swigCMemOwn) + { + swigCMemOwn = false; + NDalicPINVOKE.delete_FlexContainer_Property(swigCPtr); + } + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); + } + global::System.GC.SuppressFinalize(this); + } + } + + internal Property() : this(NDalicPINVOKE.new_FlexContainer_Property(), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + internal static readonly int CONTENT_DIRECTION = NDalicPINVOKE.FlexContainer_Property_CONTENT_DIRECTION_get(); + internal static readonly int FLEX_DIRECTION = NDalicPINVOKE.FlexContainer_Property_FLEX_DIRECTION_get(); + internal static readonly int FLEX_WRAP = NDalicPINVOKE.FlexContainer_Property_FLEX_WRAP_get(); + internal static readonly int JUSTIFY_CONTENT = NDalicPINVOKE.FlexContainer_Property_JUSTIFY_CONTENT_get(); + internal static readonly int ALIGN_ITEMS = NDalicPINVOKE.FlexContainer_Property_ALIGN_ITEMS_get(); + internal static readonly int ALIGN_CONTENT = NDalicPINVOKE.FlexContainer_Property_ALIGN_CONTENT_get(); + + } + + public class ChildProperty : global::System.IDisposable + { + private global::System.Runtime.InteropServices.HandleRef swigCPtr; + protected bool swigCMemOwn; + + internal ChildProperty(global::System.IntPtr cPtr, bool cMemoryOwn) + { + swigCMemOwn = cMemoryOwn; + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); + } + + internal static global::System.Runtime.InteropServices.HandleRef getCPtr(ChildProperty obj) + { + return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; + } + + ~ChildProperty() + { + Dispose(); + } + + public virtual void Dispose() + { + lock (this) + { + if (swigCPtr.Handle != global::System.IntPtr.Zero) + { + if (swigCMemOwn) + { + swigCMemOwn = false; + NDalicPINVOKE.delete_FlexContainer_ChildProperty(swigCPtr); + } + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); + } + global::System.GC.SuppressFinalize(this); + } + } + + internal ChildProperty() : this(NDalicPINVOKE.new_FlexContainer_ChildProperty(), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + internal static readonly int FLEX = NDalicPINVOKE.FlexContainer_ChildProperty_FLEX_get(); + internal static readonly int ALIGN_SELF = NDalicPINVOKE.FlexContainer_ChildProperty_ALIGN_SELF_get(); + internal static readonly int FLEX_MARGIN = NDalicPINVOKE.FlexContainer_ChildProperty_FLEX_MARGIN_get(); + + } + + public FlexContainer() : this(NDalicPINVOKE.FlexContainer_New(), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + + } + internal FlexContainer(FlexContainer handle) : this(NDalicPINVOKE.new_FlexContainer__SWIG_1(FlexContainer.getCPtr(handle)), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + internal FlexContainer Assign(FlexContainer handle) + { + FlexContainer ret = new FlexContainer(NDalicPINVOKE.FlexContainer_Assign(swigCPtr, FlexContainer.getCPtr(handle)), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal new static FlexContainer DownCast(BaseHandle handle) + { + FlexContainer ret = new FlexContainer(NDalicPINVOKE.FlexContainer_DownCast(BaseHandle.getCPtr(handle)), true); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public enum FlexDirectionType + { + Column, + ColumnReverse, + Row, + RowReverse + } + + public enum ContentDirectionType + { + Inherit, + LTR, + RTL + } + + public enum Justification + { + JustifyFlexStart, + JustifyCenter, + JustifyFlexEnd, + JustifySpaceBetween, + JustifySpaceAround + } + + public enum Alignment + { + AlignAuto, + AlignFlexStart, + AlignCenter, + AlignFlexEnd, + AlignStretch + } + public enum WrapType + { + NoWrap, + Wrap + } + + internal enum PropertyRange + { + PROPERTY_START_INDEX = PropertyRanges.PROPERTY_REGISTRATION_START_INDEX, + PROPERTY_END_INDEX = View.PropertyRange.PROPERTY_START_INDEX + 1000, + CHILD_PROPERTY_START_INDEX = PropertyRanges.CHILD_PROPERTY_REGISTRATION_START_INDEX, + CHILD_PROPERTY_END_INDEX = PropertyRanges.CHILD_PROPERTY_REGISTRATION_START_INDEX + 1000 + } + + public int ContentDirection + { + get + { + int temp = 0; + GetProperty(FlexContainer.Property.CONTENT_DIRECTION).Get(ref temp); + return temp; + } + set + { + SetProperty(FlexContainer.Property.CONTENT_DIRECTION, new Tizen.NUI.PropertyValue(value)); + } + } + public int FlexDirection + { + get + { + int temp = 0; + GetProperty(FlexContainer.Property.FLEX_DIRECTION).Get(ref temp); + return temp; + } + set + { + SetProperty(FlexContainer.Property.FLEX_DIRECTION, new Tizen.NUI.PropertyValue(value)); + } + } + public int FlexWrap + { + get + { + int temp = 0; + GetProperty(FlexContainer.Property.FLEX_WRAP).Get(ref temp); + return temp; + } + set + { + SetProperty(FlexContainer.Property.FLEX_WRAP, new Tizen.NUI.PropertyValue(value)); + } + } + public int JustifyContent + { + get + { + int temp = 0; + GetProperty(FlexContainer.Property.JUSTIFY_CONTENT).Get(ref temp); + return temp; + } + set + { + SetProperty(FlexContainer.Property.JUSTIFY_CONTENT, new Tizen.NUI.PropertyValue(value)); + } + } + public int AlignItems + { + get + { + int temp = 0; + GetProperty(FlexContainer.Property.ALIGN_ITEMS).Get(ref temp); + return temp; + } + set + { + SetProperty(FlexContainer.Property.ALIGN_ITEMS, new Tizen.NUI.PropertyValue(value)); + } + } + public int AlignContent + { + get + { + int temp = 0; + GetProperty(FlexContainer.Property.ALIGN_CONTENT).Get(ref temp); + return temp; + } + set + { + SetProperty(FlexContainer.Property.ALIGN_CONTENT, new Tizen.NUI.PropertyValue(value)); + } + } + + } + +} diff --git a/Tizen.NUI/src/public/FocusManager.cs b/Tizen.NUI/src/public/FocusManager.cs index 4de45f8..4124bab 100755 --- a/Tizen.NUI/src/public/FocusManager.cs +++ b/Tizen.NUI/src/public/FocusManager.cs @@ -1,473 +1,535 @@ -/* - * Copyright (c) 2016 Samsung Electronics Co., Ltd. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - */ - -namespace NUI { - -using System; -using System.Runtime.InteropServices; - -public class FocusManager : BaseHandle { - private global::System.Runtime.InteropServices.HandleRef swigCPtr; - - internal FocusManager(global::System.IntPtr cPtr, bool cMemoryOwn) : base(NDalicManualPINVOKE.FocusManager_SWIGUpcast(cPtr), cMemoryOwn) { - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); - } - - internal static global::System.Runtime.InteropServices.HandleRef getCPtr(FocusManager obj) { - return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; - } - - ~FocusManager() { - DisposeQueue.Instance.Add(this); - } - - public override void Dispose() { - if (!Stage.IsInstalled()) { - DisposeQueue.Instance.Add(this); - return; - } - - lock(this) { - if (swigCPtr.Handle != global::System.IntPtr.Zero) { - if (swigCMemOwn) { - swigCMemOwn = false; - NDalicManualPINVOKE.delete_FocusManager(swigCPtr); - } - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); - } - global::System.GC.SuppressFinalize(this); - base.Dispose(); - } - } - - - /** - * @brief Event arguments that passed via PreFocusChange signal - * - */ - public class PreFocusChangeEventArgs : EventArgs - { - private View current; - private View proposed; - private View.KeyboardFocus.Direction direction; - - public View Current - { - get - { - return current; - } - set - { - current = value; - } - } - - public View Proposed - { - get - { - return proposed; - } - set - { - proposed = value; - } - } - - public View.KeyboardFocus.Direction Direction - { - get - { - return direction; - } - set - { - direction = value; - } - } - } - - [UnmanagedFunctionPointer(CallingConvention.StdCall)] - public delegate View PreFocusChangeEventHandler(object source, PreFocusChangeEventArgs e); - internal PreFocusChangeEventHandler FocusManagerPreFocusChangeEventHandler; - [UnmanagedFunctionPointer(CallingConvention.StdCall)] - internal delegate IntPtr PreFocusChangeEventCallback(IntPtr current, IntPtr proposed, View.KeyboardFocus.Direction direction); - internal PreFocusChangeEventCallback FocusManagerPreFocusChangeEventCallback; - - public event PreFocusChangeEventHandler PreFocusChange - { - add - { - FocusManagerPreFocusChangeEventHandler += value; - FocusManagerPreFocusChangeEventCallback = OnPreFocusChange; - this.PreFocusChangeSignal().Connect(FocusManagerPreFocusChangeEventCallback); - } - - remove - { - if (FocusManagerPreFocusChangeEventHandler != null) - { - this.PreFocusChangeSignal().Disconnect(FocusManagerPreFocusChangeEventCallback); - } - FocusManagerPreFocusChangeEventHandler -= value; - } - } - - private IntPtr OnPreFocusChange(IntPtr current, IntPtr proposed, View.KeyboardFocus.Direction direction) - { - View view = null; - PreFocusChangeEventArgs e = new PreFocusChangeEventArgs(); - - e.Current = View.DownCast(Actor.GetActorFromPtr(current)); - e.Proposed = View.DownCast(Actor.GetActorFromPtr(proposed)); - e.Direction = direction; - - if (FocusManagerPreFocusChangeEventHandler != null) - { - view = FocusManagerPreFocusChangeEventHandler(this, e); - } - return view.GetPtrfromView(); - } - - - - -/** - * @brief Event arguments that passed via FocusChanged signal - * - */ -public class FocusChangedEventArgs : EventArgs -{ - private View viewCurrent; - private View viewNext; - - public View ViewCurrent - { - get - { - return viewCurrent; - } - set - { - viewCurrent = value; - } - } - - public View ViewNext - { - get - { - return viewNext; - } - set - { - viewNext = value; - } - } -} - - [UnmanagedFunctionPointer(CallingConvention.StdCall)] - public delegate void FocusChangedEventHandler(object source, FocusChangedEventArgs e); - private FocusChangedEventHandler FocusManagerFocusChangedEventHandler; - [UnmanagedFunctionPointer(CallingConvention.StdCall)] - private delegate void FocusChangedEventCallback(IntPtr viewCurrent, IntPtr viewNext); - private FocusChangedEventCallback FocusManagerFocusChangedEventCallback; - - public event FocusChangedEventHandler FocusChanged - { - add - { - FocusManagerFocusChangedEventHandler += value; - FocusManagerFocusChangedEventCallback = OnFocusChanged; - this.FocusChangedSignal().Connect(FocusManagerFocusChangedEventCallback); - } - - remove - { - if (FocusManagerFocusChangedEventHandler != null) - { - this.FocusChangedSignal().Disconnect(FocusManagerFocusChangedEventCallback); - } - FocusManagerFocusChangedEventHandler -= value; - } - } - - private void OnFocusChanged(IntPtr viewCurrent, IntPtr viewNext) - { - FocusChangedEventArgs e = new FocusChangedEventArgs(); - - e.ViewCurrent = View.DownCast(Actor.GetActorFromPtr(viewCurrent)); - e.ViewNext = View.DownCast(Actor.GetActorFromPtr(viewNext)); - - if (FocusManagerFocusChangedEventHandler != null) - { - FocusManagerFocusChangedEventHandler(this, e); - } - } - - -/** - * @brief Event arguments that passed via FocusGroupChanged signal - * - */ -public class FocusGroupChangedEventArgs : EventArgs -{ - private View currentFocusedView; - private bool forwardDirection; - - public View CurrentFocusedView - { - get - { - return currentFocusedView; - } - set - { - currentFocusedView = value; - } - } - - public bool ForwardDirection - { - get - { - return forwardDirection; - } - set - { - forwardDirection = value; - } - } -} - - [UnmanagedFunctionPointer(CallingConvention.StdCall)] - public delegate void FocusGroupChangedEventHandler(object source, FocusGroupChangedEventArgs e); - private FocusGroupChangedEventHandler FocusManagerFocusGroupChangedEventHandler; - [UnmanagedFunctionPointer(CallingConvention.StdCall)] - private delegate void FocusGroupChangedEventCallback(IntPtr currentFocusedView, bool forwardDirection); - private FocusGroupChangedEventCallback FocusManagerFocusGroupChangedEventCallback; - - public event FocusGroupChangedEventHandler FocusGroupChanged - { - add - { - FocusManagerFocusGroupChangedEventHandler += value; - FocusManagerFocusGroupChangedEventCallback = OnFocusGroupChanged; - this.FocusGroupChangedSignal().Connect(FocusManagerFocusGroupChangedEventCallback); - } - - remove - { - if (FocusManagerFocusGroupChangedEventHandler != null) - { - this.FocusGroupChangedSignal().Disconnect(FocusManagerFocusGroupChangedEventCallback); - } - FocusManagerFocusGroupChangedEventHandler -= value; - } - } - - private void OnFocusGroupChanged(IntPtr currentFocusedView, bool forwardDirection) - { - FocusGroupChangedEventArgs e = new FocusGroupChangedEventArgs(); - - e.CurrentFocusedView = View.DownCast(Actor.GetActorFromPtr(currentFocusedView)); - e.ForwardDirection = forwardDirection; - - if (FocusManagerFocusGroupChangedEventHandler != null) - { - FocusManagerFocusGroupChangedEventHandler(this, e); - } - } - - -/** - * @brief Event arguments that passed via FocusedActorEnterKey signal - * - */ -public class FocusedViewEnterKeyEventArgs : EventArgs -{ - private View view; - - public View View - { - get - { - return view; - } - set - { - view = value; - } - } -} - - - [UnmanagedFunctionPointer(CallingConvention.StdCall)] - public delegate void FocusedViewEnterKeyEventHandler(object source, FocusedViewEnterKeyEventArgs e); - private FocusedViewEnterKeyEventHandler FocusManagerFocusedViewEnterKeyEventHandler; - [UnmanagedFunctionPointer(CallingConvention.StdCall)] - private delegate void FocusedViewEnterKeyEventCallback(IntPtr view); - private FocusedViewEnterKeyEventCallback FocusManagerFocusedViewEnterKeyEventCallback; - - public event FocusedViewEnterKeyEventHandler FocusedViewEnterKeyPressed - { - add - { - FocusManagerFocusedViewEnterKeyEventHandler += value; - FocusManagerFocusedViewEnterKeyEventCallback = OnFocusedViewEnterKey; - this.FocusedActorEnterKeySignal().Connect(FocusManagerFocusedViewEnterKeyEventCallback); - } - - remove - { - if (FocusManagerFocusedViewEnterKeyEventHandler != null) - { - this.FocusedActorEnterKeySignal().Disconnect(FocusManagerFocusedViewEnterKeyEventCallback); - } - FocusManagerFocusedViewEnterKeyEventHandler -= value; - } - } - - private void OnFocusedViewEnterKey(IntPtr view) - { - FocusedViewEnterKeyEventArgs e = new FocusedViewEnterKeyEventArgs(); - - e.View = View.DownCast(Actor.GetActorFromPtr(view)); - - if (FocusManagerFocusedViewEnterKeyEventHandler != null) - { - FocusManagerFocusedViewEnterKeyEventHandler(this, e); - } - } - - - internal FocusManager() : this(NDalicManualPINVOKE.new_FocusManager(), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - internal static FocusManager Get() { - FocusManager ret = new FocusManager(NDalicManualPINVOKE.FocusManager_Get(), true); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public bool SetCurrentFocusView(View view) { - Actor actor = (NUI.Actor)view; - bool ret = NDalicManualPINVOKE.FocusManager_SetCurrentFocusActor(swigCPtr, Actor.getCPtr(actor)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public View GetCurrentFocusView() { - Actor ret = new Actor(NDalicManualPINVOKE.FocusManager_GetCurrentFocusActor(swigCPtr), true); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return View.DownCast(ret); - } - - public bool MoveFocus(View.KeyboardFocus.Direction direction) { - bool ret = NDalicManualPINVOKE.FocusManager_MoveFocus(swigCPtr, (int)direction); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public void ClearFocus() { - NDalicManualPINVOKE.FocusManager_ClearFocus(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public void SetFocusGroupLoop(bool enabled) { - NDalicManualPINVOKE.FocusManager_SetFocusGroupLoop(swigCPtr, enabled); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public bool GetFocusGroupLoop() { - bool ret = NDalicManualPINVOKE.FocusManager_GetFocusGroupLoop(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public void SetAsFocusGroup(View view, bool isFocusGroup) { - Actor actor = (NUI.Actor)view; - NDalicManualPINVOKE.FocusManager_SetAsFocusGroup(swigCPtr, Actor.getCPtr(actor), isFocusGroup); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public bool IsFocusGroup(View view) { - Actor actor = (NUI.Actor)view; - bool ret = NDalicManualPINVOKE.FocusManager_IsFocusGroup(swigCPtr, Actor.getCPtr(actor)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public View GetFocusGroup(View view) { - Actor actor = (NUI.Actor)view; - Actor ret = new Actor(NDalicManualPINVOKE.FocusManager_GetFocusGroup(swigCPtr, Actor.getCPtr(actor)), true); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return View.DownCast(ret); - } - - public void SetFocusIndicatorView(View indicator) { - Actor actor = (NUI.Actor)indicator; - NDalicManualPINVOKE.FocusManager_SetFocusIndicatorActor(swigCPtr, Actor.getCPtr(actor)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public View GetFocusIndicatorView() { - Actor ret = new Actor(NDalicManualPINVOKE.FocusManager_GetFocusIndicatorActor(swigCPtr), true); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return View.DownCast(ret); - } - - internal PreFocusChangeSignal PreFocusChangeSignal() { - PreFocusChangeSignal ret = new PreFocusChangeSignal(NDalicManualPINVOKE.FocusManager_PreFocusChangeSignal(swigCPtr), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - internal FocusChangedSignal FocusChangedSignal() { - FocusChangedSignal ret = new FocusChangedSignal(NDalicManualPINVOKE.FocusManager_FocusChangedSignal(swigCPtr), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - internal FocusGroupChangedSignal FocusGroupChangedSignal() { - FocusGroupChangedSignal ret = new FocusGroupChangedSignal(NDalicManualPINVOKE.FocusManager_FocusGroupChangedSignal(swigCPtr), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - internal ActorSignal FocusedActorEnterKeySignal() { - ActorSignal ret = new ActorSignal(NDalicManualPINVOKE.FocusManager_FocusedActorEnterKeySignal(swigCPtr), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - private static readonly FocusManager instance = FocusManager.Get(); - - public static FocusManager Instance - { - get - { - return instance; - } - } - - -} - -} +// Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved +// PROPRIETARY/CONFIDENTIAL +// This software is the confidential and proprietary +// information of SAMSUNG ELECTRONICS ("Confidential Information"). You shall +// not disclose such Confidential Information and shall use it only in +// accordance with the terms of the license agreement you entered into with +// SAMSUNG ELECTRONICS. SAMSUNG make no representations or warranties about the +// suitability of the software, either express or implied, including but not +// limited to the implied warranties of merchantability, fitness for a +// particular purpose, or non-infringement. SAMSUNG shall not be liable for any +// damages suffered by licensee as a result of using, modifying or distributing +// this software or its derivatives. + +// Copyright (c) 2017 Samsung Electronics Co., Ltd. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// + +// This File has been auto-generated by SWIG and then modified using DALi Ruby Scripts +// Some have been manually changed + + +namespace Tizen.NUI +{ + + using System; + using System.Runtime.InteropServices; + + public class FocusManager : BaseHandle + { + private global::System.Runtime.InteropServices.HandleRef swigCPtr; + + internal FocusManager(global::System.IntPtr cPtr, bool cMemoryOwn) : base(NDalicManualPINVOKE.FocusManager_SWIGUpcast(cPtr), cMemoryOwn) + { + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); + } + + internal static global::System.Runtime.InteropServices.HandleRef getCPtr(FocusManager obj) + { + return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; + } + + ~FocusManager() + { + DisposeQueue.Instance.Add(this); + } + + public override void Dispose() + { + if (!Stage.IsInstalled()) + { + DisposeQueue.Instance.Add(this); + return; + } + + lock (this) + { + if (swigCPtr.Handle != global::System.IntPtr.Zero) + { + if (swigCMemOwn) + { + swigCMemOwn = false; + NDalicManualPINVOKE.delete_FocusManager(swigCPtr); + } + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); + } + global::System.GC.SuppressFinalize(this); + base.Dispose(); + } + } + + + /** + * @brief Event arguments that passed via PreFocusChange signal + * + */ + public class PreFocusChangeEventArgs : EventArgs + { + private View _current; + private View _proposed; + private View.FocusDirection _direction; + + public View CurrentView + { + get + { + return _current; + } + set + { + _current = value; + } + } + + public View ProposedView + { + get + { + return _proposed; + } + set + { + _proposed = value; + } + } + + public View.FocusDirection Direction + { + get + { + return _direction; + } + set + { + _direction = value; + } + } + } + + private EventHandlerWithReturnType _preFocusChangeEventHandler; + [UnmanagedFunctionPointer(CallingConvention.StdCall)] + internal delegate IntPtr PreFocusChangeEventCallback(IntPtr current, IntPtr proposed, View.FocusDirection direction); + private PreFocusChangeEventCallback _preFocusChangeCallback; + + public event EventHandlerWithReturnType PreFocusChange + { + add + { + if (_preFocusChangeEventHandler == null) + { + _preFocusChangeCallback = OnPreFocusChange; + PreFocusChangeSignal().Connect(_preFocusChangeCallback); + } + _preFocusChangeEventHandler += value; + } + remove + { + if (_preFocusChangeEventHandler != null) + { + PreFocusChangeSignal().Disconnect(_preFocusChangeCallback); + } + _preFocusChangeEventHandler -= value; + } + } + + private IntPtr OnPreFocusChange(IntPtr current, IntPtr proposed, View.FocusDirection direction) + { + View view = null; + PreFocusChangeEventArgs e = new PreFocusChangeEventArgs(); + + e.CurrentView = View.DownCast(Actor.GetActorFromPtr(current)); + e.ProposedView = View.DownCast(Actor.GetActorFromPtr(proposed)); + e.Direction = direction; + + if (_preFocusChangeEventHandler != null) + { + view = _preFocusChangeEventHandler(this, e); + } + return view.GetPtrfromView(); + } + + + /** + * @brief Event arguments that passed via FocusChanged signal + * + */ + public class FocusChangedEventArgs : EventArgs + { + private View _current; + private View _next; + + public View CurrentView + { + get + { + return _current; + } + set + { + _current = value; + } + } + + public View NextView + { + get + { + return _next; + } + set + { + _next = value; + } + } + } + + private EventHandler _focusChangedEventHandler; + [UnmanagedFunctionPointer(CallingConvention.StdCall)] + internal delegate void FocusChangedEventCallback(IntPtr current, IntPtr next); + private FocusChangedEventCallback _focusChangedEventCallback; + + public event EventHandler FocusChanged + { + add + { + if (_focusChangedEventCallback == null) + { + _focusChangedEventCallback = OnFocusChanged; + FocusChangedSignal().Connect(_focusChangedEventCallback); + } + _focusChangedEventHandler += value; + } + remove + { + if (_focusChangedEventCallback != null) + { + FocusChangedSignal().Disconnect(_focusChangedEventCallback); + } + _focusChangedEventHandler -= value; + } + } + + private void OnFocusChanged(IntPtr current, IntPtr next) + { + FocusChangedEventArgs e = new FocusChangedEventArgs(); + + e.CurrentView = View.DownCast(Actor.GetActorFromPtr(current)); + e.NextView = View.DownCast(Actor.GetActorFromPtr(next)); + + if (_focusChangedEventHandler != null) + { + _focusChangedEventHandler(this, e); + } + } + + + /** + * @brief Event arguments that passed via FocusGroupChanged signal + * + */ + public class FocusGroupChangedEventArgs : EventArgs + { + private View _current; + private bool _forwardDirection; + + public View CurrentView + { + get + { + return _current; + } + set + { + _current = value; + } + } + + public bool ForwardDirection + { + get + { + return _forwardDirection; + } + set + { + _forwardDirection = value; + } + } + } + + private EventHandler _focusGroupChangedEventHandler; + [UnmanagedFunctionPointer(CallingConvention.StdCall)] + private delegate void FocusGroupChangedEventCallback(IntPtr current, bool forwardDirection); + private FocusGroupChangedEventCallback _focusGroupChangedEventCallback; + + public event EventHandler FocusGroupChanged + { + add + { + if (_focusGroupChangedEventCallback == null) + { + _focusGroupChangedEventCallback = OnFocusGroupChanged; + FocusGroupChangedSignal().Connect(_focusGroupChangedEventCallback); + } + _focusGroupChangedEventHandler += value; + } + remove + { + if (_focusGroupChangedEventCallback != null) + { + FocusGroupChangedSignal().Disconnect(_focusGroupChangedEventCallback); + } + _focusGroupChangedEventHandler -= value; + } + } + + private void OnFocusGroupChanged(IntPtr current, bool forwardDirection) + { + FocusGroupChangedEventArgs e = new FocusGroupChangedEventArgs(); + + e.CurrentView = View.DownCast(Actor.GetActorFromPtr(current)); + e.ForwardDirection = forwardDirection; + + if (_focusGroupChangedEventHandler != null) + { + _focusGroupChangedEventHandler(this, e); + } + } + + + /** + * @brief Event arguments that passed via FocusedActorEnterKey signal + * + */ + public class FocusedViewEnterKeyEventArgs : EventArgs + { + private View _view; + + public View View + { + get + { + return _view; + } + set + { + _view = value; + } + } + } + + private EventHandler _focusedViewEnterKeyEventHandler; + [UnmanagedFunctionPointer(CallingConvention.StdCall)] + private delegate void FocusedViewEnterKeyEventCallback(IntPtr view); + private FocusedViewEnterKeyEventCallback _focusedViewEnterKeyEventCallback; + + public event EventHandler FocusedViewEnterKeyPressed + { + add + { + if (_focusedViewEnterKeyEventCallback == null) + { + _focusedViewEnterKeyEventCallback = OnFocusedViewEnterKey; + FocusedActorEnterKeySignal().Connect(_focusedViewEnterKeyEventCallback); + } + _focusedViewEnterKeyEventHandler += value; + } + remove + { + if (_focusedViewEnterKeyEventCallback != null) + { + FocusedActorEnterKeySignal().Disconnect(_focusedViewEnterKeyEventCallback); + } + _focusedViewEnterKeyEventHandler -= value; + } + } + + private void OnFocusedViewEnterKey(IntPtr view) + { + FocusedViewEnterKeyEventArgs e = new FocusedViewEnterKeyEventArgs(); + + e.View = View.DownCast(Actor.GetActorFromPtr(view)); + + if (_focusedViewEnterKeyEventHandler != null) + { + _focusedViewEnterKeyEventHandler(this, e); + } + } + + + internal FocusManager() : this(NDalicManualPINVOKE.new_FocusManager(), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + internal static FocusManager Get() + { + FocusManager ret = new FocusManager(NDalicManualPINVOKE.FocusManager_Get(), true); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public bool SetCurrentFocusView(View view) + { + Actor actor = (Tizen.NUI.Actor)view; + bool ret = NDalicManualPINVOKE.FocusManager_SetCurrentFocusActor(swigCPtr, Actor.getCPtr(actor)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public View GetCurrentFocusView() + { + Actor ret = new Actor(NDalicManualPINVOKE.FocusManager_GetCurrentFocusActor(swigCPtr), true); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return View.DownCast(ret); + } + + public bool MoveFocus(View.FocusDirection direction) + { + bool ret = NDalicManualPINVOKE.FocusManager_MoveFocus(swigCPtr, (int)direction); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public void ClearFocus() + { + NDalicManualPINVOKE.FocusManager_ClearFocus(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public bool FocusGroupLoop + { + set + { + SetFocusGroupLoop(value); + } + get + { + return GetFocusGroupLoop(); + } + } + + internal void SetFocusGroupLoop(bool enabled) + { + NDalicManualPINVOKE.FocusManager_SetFocusGroupLoop(swigCPtr, enabled); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + internal bool GetFocusGroupLoop() + { + bool ret = NDalicManualPINVOKE.FocusManager_GetFocusGroupLoop(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public void SetAsFocusGroup(View view, bool isFocusGroup) + { + Actor actor = (Tizen.NUI.Actor)view; + NDalicManualPINVOKE.FocusManager_SetAsFocusGroup(swigCPtr, Actor.getCPtr(actor), isFocusGroup); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public bool IsFocusGroup(View view) + { + Actor actor = (Tizen.NUI.Actor)view; + bool ret = NDalicManualPINVOKE.FocusManager_IsFocusGroup(swigCPtr, Actor.getCPtr(actor)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public View GetFocusGroup(View view) + { + Actor actor = (Tizen.NUI.Actor)view; + Actor ret = new Actor(NDalicManualPINVOKE.FocusManager_GetFocusGroup(swigCPtr, Actor.getCPtr(actor)), true); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return View.DownCast(ret); + } + + public View FocusIndicator + { + set + { + SetFocusIndicatorView(value); + } + get + { + return GetFocusIndicatorView(); + } + } + + internal void SetFocusIndicatorView(View indicator) + { + Actor actor = (Tizen.NUI.Actor)indicator; + NDalicManualPINVOKE.FocusManager_SetFocusIndicatorActor(swigCPtr, Actor.getCPtr(actor)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + internal View GetFocusIndicatorView() + { + Actor ret = new Actor(NDalicManualPINVOKE.FocusManager_GetFocusIndicatorActor(swigCPtr), true); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return View.DownCast(ret); + } + + internal PreFocusChangeSignal PreFocusChangeSignal() + { + PreFocusChangeSignal ret = new PreFocusChangeSignal(NDalicManualPINVOKE.FocusManager_PreFocusChangeSignal(swigCPtr), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal FocusChangedSignal FocusChangedSignal() + { + FocusChangedSignal ret = new FocusChangedSignal(NDalicManualPINVOKE.FocusManager_FocusChangedSignal(swigCPtr), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal FocusGroupChangedSignal FocusGroupChangedSignal() + { + FocusGroupChangedSignal ret = new FocusGroupChangedSignal(NDalicManualPINVOKE.FocusManager_FocusGroupChangedSignal(swigCPtr), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal ActorSignal FocusedActorEnterKeySignal() + { + ActorSignal ret = new ActorSignal(NDalicManualPINVOKE.FocusManager_FocusedActorEnterKeySignal(swigCPtr), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + private static readonly FocusManager instance = FocusManager.Get(); + + public static FocusManager Instance + { + get + { + return instance; + } + } + + } + +} diff --git a/Tizen.NUI/src/public/Hover.cs b/Tizen.NUI/src/public/Hover.cs new file mode 100755 index 0000000..a600b31 --- /dev/null +++ b/Tizen.NUI/src/public/Hover.cs @@ -0,0 +1,204 @@ +// Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved +// PROPRIETARY/CONFIDENTIAL +// This software is the confidential and proprietary +// information of SAMSUNG ELECTRONICS ("Confidential Information"). You shall +// not disclose such Confidential Information and shall use it only in +// accordance with the terms of the license agreement you entered into with +// SAMSUNG ELECTRONICS. SAMSUNG make no representations or warranties about the +// suitability of the software, either express or implied, including but not +// limited to the implied warranties of merchantability, fitness for a +// particular purpose, or non-infringement. SAMSUNG shall not be liable for any +// damages suffered by licensee as a result of using, modifying or distributing +// this software or its derivatives. + +// Copyright (c) 2017 Samsung Electronics Co., Ltd. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// + +// This File has been auto-generated by SWIG and then modified using DALi Ruby Scripts +// Some have been manually changed + + +namespace Tizen.NUI +{ + + public class Hover : global::System.IDisposable + { + private global::System.Runtime.InteropServices.HandleRef swigCPtr; + protected bool swigCMemOwn; + + internal Hover(global::System.IntPtr cPtr, bool cMemoryOwn) + { + swigCMemOwn = cMemoryOwn; + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); + } + + internal static global::System.Runtime.InteropServices.HandleRef getCPtr(Hover obj) + { + return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; + } + + ~Hover() + { + DisposeQueue.Instance.Add(this); + } + + public virtual void Dispose() + { + if (!Stage.IsInstalled()) + { + DisposeQueue.Instance.Add(this); + return; + } + + lock (this) + { + if (swigCPtr.Handle != global::System.IntPtr.Zero) + { + if (swigCMemOwn) + { + swigCMemOwn = false; + NDalicPINVOKE.delete_Hover(swigCPtr); + } + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); + } + global::System.GC.SuppressFinalize(this); + } + } + + + internal static Hover GetHoverFromPtr(global::System.IntPtr cPtr) + { + Hover ret = new Hover(cPtr, false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public uint Time + { + get + { + return time; + } + } + + public int GetDeviceId(uint point) + { + if (point < points.Count) + { + return points[(int)point].deviceId; + } + return -1; + } + + public PointStateType GetState(uint point) + { + if (point < points.Count) + { + return (Tizen.NUI.PointStateType)(points[(int)point].state); + } + return PointStateType.Finished; + } + + public Actor GetHitActor(uint point) + { + if (point < points.Count) + { + return points[(int)point].hitActor; + } + else + { + // Return a native empty handle + Actor actor = new Actor(); + actor.Reset(); + return actor; + } + } + + public Vector2 GetLocalPosition(uint point) + { + if (point < points.Count) + { + return points[(int)point].local; + } + return new Vector2(0.0f, 0.0f); + } + + public Vector2 GetScreenPosition(uint point) + { + if (point < points.Count) + { + return points[(int)point].screen; + } + return new Vector2(0.0f, 0.0f); + } + + public Hover() : this(NDalicPINVOKE.new_Hover__SWIG_0(), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public Hover(uint time) : this(NDalicPINVOKE.new_Hover__SWIG_1(time), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + private TouchPointContainer points + { + set + { + NDalicPINVOKE.Hover_points_set(swigCPtr, TouchPointContainer.getCPtr(value)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + get + { + global::System.IntPtr cPtr = NDalicPINVOKE.Hover_points_get(swigCPtr); + TouchPointContainer ret = (cPtr == global::System.IntPtr.Zero) ? null : new TouchPointContainer(cPtr, false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + } + + private uint time + { + set + { + NDalicPINVOKE.Hover_time_set(swigCPtr, value); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + get + { + uint ret = NDalicPINVOKE.Hover_time_get(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + } + + public uint GetPointCount() + { + uint ret = NDalicPINVOKE.Hover_GetPointCount(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal TouchPoint GetPoint(uint point) + { + TouchPoint ret = new TouchPoint(NDalicPINVOKE.Hover_GetPoint(swigCPtr, point), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + } + +} diff --git a/Tizen.NUI/src/public/HoverEvent.cs b/Tizen.NUI/src/public/HoverEvent.cs deleted file mode 100644 index 465f5fa..0000000 --- a/Tizen.NUI/src/public/HoverEvent.cs +++ /dev/null @@ -1,102 +0,0 @@ -//------------------------------------------------------------------------------ -// -// -// This file was automatically generated by SWIG (http://www.swig.org). -// Version 3.0.9 -// -// Do not make changes to this file unless you know what you are doing--modify -// the SWIG interface file instead. -//------------------------------------------------------------------------------ - -namespace NUI { - -public class HoverEvent : global::System.IDisposable { - private global::System.Runtime.InteropServices.HandleRef swigCPtr; - protected bool swigCMemOwn; - - internal HoverEvent(global::System.IntPtr cPtr, bool cMemoryOwn) { - swigCMemOwn = cMemoryOwn; - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); - } - - internal static global::System.Runtime.InteropServices.HandleRef getCPtr(HoverEvent obj) { - return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; - } - - ~HoverEvent() { - DisposeQueue.Instance.Add(this); - } - - public virtual void Dispose() { - if (!Stage.IsInstalled()) { - DisposeQueue.Instance.Add(this); - return; - } - - lock(this) { - if (swigCPtr.Handle != global::System.IntPtr.Zero) { - if (swigCMemOwn) { - swigCMemOwn = false; - NDalicPINVOKE.delete_HoverEvent(swigCPtr); - } - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); - } - global::System.GC.SuppressFinalize(this); - } - } - - - public static HoverEvent GetHoverEventFromPtr(global::System.IntPtr cPtr) { - HoverEvent ret = new HoverEvent(cPtr, false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public HoverEvent() : this(NDalicPINVOKE.new_HoverEvent__SWIG_0(), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public HoverEvent(uint time) : this(NDalicPINVOKE.new_HoverEvent__SWIG_1(time), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public TouchPointContainer points { - set { - NDalicPINVOKE.HoverEvent_points_set(swigCPtr, TouchPointContainer.getCPtr(value)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - get { - global::System.IntPtr cPtr = NDalicPINVOKE.HoverEvent_points_get(swigCPtr); - TouchPointContainer ret = (cPtr == global::System.IntPtr.Zero) ? null : new TouchPointContainer(cPtr, false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - } - - public uint time { - set { - NDalicPINVOKE.HoverEvent_time_set(swigCPtr, value); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - get { - uint ret = NDalicPINVOKE.HoverEvent_time_get(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - } - - public uint GetPointCount() { - uint ret = NDalicPINVOKE.HoverEvent_GetPointCount(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public TouchPoint GetPoint(uint point) { - TouchPoint ret = new TouchPoint(NDalicPINVOKE.HoverEvent_GetPoint(swigCPtr, point), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - -} - -} diff --git a/Tizen.NUI/src/public/ImageView.cs b/Tizen.NUI/src/public/ImageView.cs old mode 100644 new mode 100755 index 8dadbd1..e59a1f7 --- a/Tizen.NUI/src/public/ImageView.cs +++ b/Tizen.NUI/src/public/ImageView.cs @@ -1,220 +1,233 @@ -/** Copyright (c) 2017 Samsung Electronics Co., Ltd. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ -// This File has been auto-generated by SWIG and then modified using DALi Ruby Scripts -//------------------------------------------------------------------------------ -// -// -// This file was automatically generated by SWIG (http://www.swig.org). -// Version 3.0.9 -// -// Do not make changes to this file unless you know what you are doing--modify -// the SWIG interface file instead. -//------------------------------------------------------------------------------ - -namespace NUI { - -public class ImageView : View { - private global::System.Runtime.InteropServices.HandleRef swigCPtr; - - internal ImageView(global::System.IntPtr cPtr, bool cMemoryOwn) : base(NDalicPINVOKE.ImageView_SWIGUpcast(cPtr), cMemoryOwn) { - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); - } - - internal static global::System.Runtime.InteropServices.HandleRef getCPtr(ImageView obj) { - return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; - } - - ~ImageView() { - DisposeQueue.Instance.Add(this); - } - - public override void Dispose() { - if (!Stage.IsInstalled()) { - DisposeQueue.Instance.Add(this); - return; - } - - lock(this) { - if (swigCPtr.Handle != global::System.IntPtr.Zero) { - if (swigCMemOwn) { - swigCMemOwn = false; - NDalicPINVOKE.delete_ImageView(swigCPtr); - } - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); - } - global::System.GC.SuppressFinalize(this); - base.Dispose(); - } - } - - - public class Property : global::System.IDisposable { - private global::System.Runtime.InteropServices.HandleRef swigCPtr; - protected bool swigCMemOwn; - - internal Property(global::System.IntPtr cPtr, bool cMemoryOwn) { - swigCMemOwn = cMemoryOwn; - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); - } - - internal static global::System.Runtime.InteropServices.HandleRef getCPtr(Property obj) { - return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; - } - - ~Property() { - Dispose(); - } - - public virtual void Dispose() { - lock(this) { - if (swigCPtr.Handle != global::System.IntPtr.Zero) { - if (swigCMemOwn) { - swigCMemOwn = false; - NDalicPINVOKE.delete_ImageView_Property(swigCPtr); - } - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); - } - global::System.GC.SuppressFinalize(this); - } - } - - public Property() : this(NDalicPINVOKE.new_ImageView_Property(), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public static readonly int RESOURCE_URL = NDalicPINVOKE.ImageView_Property_RESOURCE_URL_get(); - public static readonly int IMAGE = NDalicPINVOKE.ImageView_Property_IMAGE_get(); - public static readonly int PRE_MULTIPLIED_ALPHA = NDalicPINVOKE.ImageView_Property_PRE_MULTIPLIED_ALPHA_get(); - public static readonly int PIXEL_AREA = NDalicPINVOKE.ImageView_Property_PIXEL_AREA_get(); - - } - - public ImageView () : this (NDalicPINVOKE.ImageView_New__SWIG_0(), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - - } - public ImageView (Image image) : this (NDalicPINVOKE.ImageView_New__SWIG_1(Image.getCPtr(image)), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - - } - public ImageView (string url) : this (NDalicPINVOKE.ImageView_New__SWIG_2(url), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - - } - public ImageView (string url, Uint16Pair size) : this (NDalicPINVOKE.ImageView_New__SWIG_3(url, Uint16Pair.getCPtr(size)), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - - } - public ImageView(ImageView imageView) : this(NDalicPINVOKE.new_ImageView__SWIG_1(ImageView.getCPtr(imageView)), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public ImageView Assign(ImageView imageView) { - ImageView ret = new ImageView(NDalicPINVOKE.ImageView_Assign(swigCPtr, ImageView.getCPtr(imageView)), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public new static ImageView DownCast(BaseHandle handle) { - ImageView ret = new ImageView(NDalicPINVOKE.ImageView_DownCast(BaseHandle.getCPtr(handle)), true); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public void SetImage(Image image) { - NDalicPINVOKE.ImageView_SetImage__SWIG_0(swigCPtr, Image.getCPtr(image)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public void SetImage(string url) { - NDalicPINVOKE.ImageView_SetImage__SWIG_1(swigCPtr, url); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public void SetImage(string url, Uint16Pair size) { - NDalicPINVOKE.ImageView_SetImage__SWIG_2(swigCPtr, url, Uint16Pair.getCPtr(size)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public Image GetImage() { - Image ret = new Image(NDalicPINVOKE.ImageView_GetImage(swigCPtr), true); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public enum PropertyRange { - PROPERTY_START_INDEX = PropertyRanges.PROPERTY_REGISTRATION_START_INDEX, - PROPERTY_END_INDEX = View.PropertyRange.PROPERTY_START_INDEX+1000, - ANIMATABLE_PROPERTY_START_INDEX = PropertyRanges.ANIMATABLE_PROPERTY_REGISTRATION_START_INDEX, - ANIMATABLE_PROPERTY_END_INDEX = PropertyRanges.ANIMATABLE_PROPERTY_REGISTRATION_START_INDEX+1000 - } - - public string ResourceUrl - { - get - { - string temp; - GetProperty( ImageView.Property.RESOURCE_URL).Get( out temp ); - return temp; - } - set - { - SetProperty( ImageView.Property.RESOURCE_URL, new NUI.Property.Value( value ) ); - } - } - public NUI.Property.Map ImageMap - { - get - { - NUI.Property.Map temp = new NUI.Property.Map(); - GetProperty( ImageView.Property.IMAGE).Get( temp ); - return temp; - } - set - { - SetProperty( ImageView.Property.IMAGE, new NUI.Property.Value( value ) ); - } - } - public bool PreMultipliedAlpha - { - get - { - bool temp = false; - GetProperty( ImageView.Property.PRE_MULTIPLIED_ALPHA).Get( ref temp ); - return temp; - } - set - { - SetProperty( ImageView.Property.PRE_MULTIPLIED_ALPHA, new NUI.Property.Value( value ) ); - } - } - public Vector4 PixelArea - { - get - { - Vector4 temp = new Vector4(0.0f,0.0f,0.0f,0.0f); - GetProperty( ImageView.Property.PIXEL_AREA).Get( temp ); - return temp; - } - set - { - SetProperty( ImageView.Property.PIXEL_AREA, new NUI.Property.Value( value ) ); - } - } - -} - -} +// Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved +// PROPRIETARY/CONFIDENTIAL +// This software is the confidential and proprietary +// information of SAMSUNG ELECTRONICS ("Confidential Information"). You shall +// not disclose such Confidential Information and shall use it only in +// accordance with the terms of the license agreement you entered into with +// SAMSUNG ELECTRONICS. SAMSUNG make no representations or warranties about the +// suitability of the software, either express or implied, including but not +// limited to the implied warranties of merchantability, fitness for a +// particular purpose, or non-infringement. SAMSUNG shall not be liable for any +// damages suffered by licensee as a result of using, modifying or distributing +// this software or its derivatives. + +// Copyright (c) 2017 Samsung Electronics Co., Ltd. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// + +// This File has been auto-generated by SWIG and then modified using DALi Ruby Scripts +// Some have been manually changed + +namespace Tizen.NUI +{ + + public class ImageView : View + { + private global::System.Runtime.InteropServices.HandleRef swigCPtr; + + internal ImageView(global::System.IntPtr cPtr, bool cMemoryOwn) : base(NDalicPINVOKE.ImageView_SWIGUpcast(cPtr), cMemoryOwn) + { + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); + } + + internal static global::System.Runtime.InteropServices.HandleRef getCPtr(ImageView obj) + { + return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; + } + + ~ImageView() + { + DisposeQueue.Instance.Add(this); + } + + public override void Dispose() + { + if (!Stage.IsInstalled()) + { + DisposeQueue.Instance.Add(this); + return; + } + + lock (this) + { + if (swigCPtr.Handle != global::System.IntPtr.Zero) + { + if (swigCMemOwn) + { + swigCMemOwn = false; + NDalicPINVOKE.delete_ImageView(swigCPtr); + } + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); + } + global::System.GC.SuppressFinalize(this); + base.Dispose(); + } + } + + + internal class Property : global::System.IDisposable + { + private global::System.Runtime.InteropServices.HandleRef swigCPtr; + protected bool swigCMemOwn; + + internal Property(global::System.IntPtr cPtr, bool cMemoryOwn) + { + swigCMemOwn = cMemoryOwn; + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); + } + + internal static global::System.Runtime.InteropServices.HandleRef getCPtr(Property obj) + { + return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; + } + + ~Property() + { + Dispose(); + } + + public virtual void Dispose() + { + lock (this) + { + if (swigCPtr.Handle != global::System.IntPtr.Zero) + { + if (swigCMemOwn) + { + swigCMemOwn = false; + NDalicPINVOKE.delete_ImageView_Property(swigCPtr); + } + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); + } + global::System.GC.SuppressFinalize(this); + } + } + + internal Property() : this(NDalicPINVOKE.new_ImageView_Property(), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + internal static readonly int RESOURCE_URL = NDalicPINVOKE.ImageView_Property_RESOURCE_URL_get(); + internal static readonly int IMAGE = NDalicPINVOKE.ImageView_Property_IMAGE_get(); + internal static readonly int PRE_MULTIPLIED_ALPHA = NDalicPINVOKE.ImageView_Property_PRE_MULTIPLIED_ALPHA_get(); + internal static readonly int PIXEL_AREA = NDalicPINVOKE.ImageView_Property_PIXEL_AREA_get(); + + } + + public ImageView() : this(NDalicPINVOKE.ImageView_New__SWIG_0(), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + + } + public ImageView(string url) : this(NDalicPINVOKE.ImageView_New__SWIG_2(url), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + + } + internal ImageView(string url, Uint16Pair size) : this(NDalicPINVOKE.ImageView_New__SWIG_3(url, Uint16Pair.getCPtr(size)), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + + } + internal ImageView(ImageView imageView) : this(NDalicPINVOKE.new_ImageView__SWIG_1(ImageView.getCPtr(imageView)), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + internal ImageView Assign(ImageView imageView) + { + ImageView ret = new ImageView(NDalicPINVOKE.ImageView_Assign(swigCPtr, ImageView.getCPtr(imageView)), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + public new static ImageView DownCast(BaseHandle handle) + { + ImageView ret = new ImageView(NDalicPINVOKE.ImageView_DownCast(BaseHandle.getCPtr(handle)), true); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + public void SetImage(string url) + { + NDalicPINVOKE.ImageView_SetImage__SWIG_1(swigCPtr, url); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + internal void SetImage(string url, Uint16Pair size) + { + NDalicPINVOKE.ImageView_SetImage__SWIG_2(swigCPtr, url, Uint16Pair.getCPtr(size)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + internal enum PropertyRange + { + PROPERTY_START_INDEX = PropertyRanges.PROPERTY_REGISTRATION_START_INDEX, + PROPERTY_END_INDEX = View.PropertyRange.PROPERTY_START_INDEX + 1000, + ANIMATABLE_PROPERTY_START_INDEX = PropertyRanges.ANIMATABLE_PROPERTY_REGISTRATION_START_INDEX, + ANIMATABLE_PROPERTY_END_INDEX = PropertyRanges.ANIMATABLE_PROPERTY_REGISTRATION_START_INDEX + 1000 + } + + public string ResourceUrl + { + get + { + string temp; + GetProperty(ImageView.Property.RESOURCE_URL).Get(out temp); + return temp; + } + set + { + SetProperty(ImageView.Property.RESOURCE_URL, new Tizen.NUI.PropertyValue(value)); + } + } + public PropertyMap ImageMap + { + get + { + PropertyMap temp = new PropertyMap(); + GetProperty(ImageView.Property.IMAGE).Get(temp); + return temp; + } + set + { + SetProperty(ImageView.Property.IMAGE, new Tizen.NUI.PropertyValue(value)); + } + } + public bool PreMultipliedAlpha + { + get + { + bool temp = false; + GetProperty(ImageView.Property.PRE_MULTIPLIED_ALPHA).Get(ref temp); + return temp; + } + set + { + SetProperty(ImageView.Property.PRE_MULTIPLIED_ALPHA, new Tizen.NUI.PropertyValue(value)); + } + } + public Vector4 PixelArea + { + get + { + Vector4 temp = new Vector4(0.0f, 0.0f, 0.0f, 0.0f); + GetProperty(ImageView.Property.PIXEL_AREA).Get(temp); + return temp; + } + set + { + SetProperty(ImageView.Property.PIXEL_AREA, new Tizen.NUI.PropertyValue(value)); + } + } + + } + +} diff --git a/Tizen.NUI/src/public/Key.cs b/Tizen.NUI/src/public/Key.cs new file mode 100755 index 0000000..66b05bf --- /dev/null +++ b/Tizen.NUI/src/public/Key.cs @@ -0,0 +1,265 @@ +// Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved +// PROPRIETARY/CONFIDENTIAL +// This software is the confidential and proprietary +// information of SAMSUNG ELECTRONICS ("Confidential Information"). You shall +// not disclose such Confidential Information and shall use it only in +// accordance with the terms of the license agreement you entered into with +// SAMSUNG ELECTRONICS. SAMSUNG make no representations or warranties about the +// suitability of the software, either express or implied, including but not +// limited to the implied warranties of merchantability, fitness for a +// particular purpose, or non-infringement. SAMSUNG shall not be liable for any +// damages suffered by licensee as a result of using, modifying or distributing +// this software or its derivatives. + +// Copyright (c) 2017 Samsung Electronics Co., Ltd. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// + +// This File has been auto-generated by SWIG and then modified using DALi Ruby Scripts +// Some have been manually changed + +namespace Tizen.NUI +{ + + public class Key : global::System.IDisposable + { + private global::System.Runtime.InteropServices.HandleRef swigCPtr; + protected bool swigCMemOwn; + + internal Key(global::System.IntPtr cPtr, bool cMemoryOwn) + { + swigCMemOwn = cMemoryOwn; + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); + } + + internal static global::System.Runtime.InteropServices.HandleRef getCPtr(Key obj) + { + return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; + } + + ~Key() + { + DisposeQueue.Instance.Add(this); + } + + public virtual void Dispose() + { + if (!Stage.IsInstalled()) + { + DisposeQueue.Instance.Add(this); + return; + } + + lock (this) + { + if (swigCPtr.Handle != global::System.IntPtr.Zero) + { + if (swigCMemOwn) + { + swigCMemOwn = false; + NDalicPINVOKE.delete_Key(swigCPtr); + } + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); + } + global::System.GC.SuppressFinalize(this); + } + } + + + internal static Key GetKeyFromPtr(global::System.IntPtr cPtr) + { + Key ret = new Key(cPtr, false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public string KeyPressedName + { + get + { + return keyPressedName; + } + } + + public string KeyPressed + { + get + { + return keyPressed; + } + } + + public int KeyCode + { + get + { + return keyCode; + } + } + + public int KeyModifier + { + get + { + return keyModifier; + } + } + + public uint Time + { + get + { + return time; + } + } + + public Key.StateType State + { + get + { + return state; + } + } + + public Key() : this(NDalicPINVOKE.new_Key__SWIG_0(), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public Key(string keyName, string keyString, int keyCode, int keyModifier, uint timeStamp, Key.StateType keyState) : this(NDalicPINVOKE.new_Key__SWIG_1(keyName, keyString, keyCode, keyModifier, timeStamp, (int)keyState), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public bool IsShiftModifier() + { + bool ret = NDalicPINVOKE.Key_IsShiftModifier(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public bool IsCtrlModifier() + { + bool ret = NDalicPINVOKE.Key_IsCtrlModifier(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public bool IsAltModifier() + { + bool ret = NDalicPINVOKE.Key_IsAltModifier(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + private string keyPressedName + { + set + { + NDalicPINVOKE.Key_keyPressedName_set(swigCPtr, value); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + get + { + string ret = NDalicPINVOKE.Key_keyPressedName_get(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + } + + private string keyPressed + { + set + { + NDalicPINVOKE.Key_keyPressed_set(swigCPtr, value); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + get + { + string ret = NDalicPINVOKE.Key_keyPressed_get(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + } + + private int keyCode + { + set + { + NDalicPINVOKE.Key_keyCode_set(swigCPtr, value); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + get + { + int ret = NDalicPINVOKE.Key_keyCode_get(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + } + + private int keyModifier + { + set + { + NDalicPINVOKE.Key_keyModifier_set(swigCPtr, value); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + get + { + int ret = NDalicPINVOKE.Key_keyModifier_get(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + } + + private uint time + { + set + { + NDalicPINVOKE.Key_time_set(swigCPtr, value); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + get + { + uint ret = NDalicPINVOKE.Key_time_get(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + } + + private Key.StateType state + { + set + { + NDalicPINVOKE.Key_state_set(swigCPtr, (int)value); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + get + { + Key.StateType ret = (Key.StateType)NDalicPINVOKE.Key_state_get(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + } + + public enum StateType + { + Down, + Up, + Last + } + + } + +} diff --git a/Tizen.NUI/src/public/KeyEvent.cs b/Tizen.NUI/src/public/KeyEvent.cs deleted file mode 100644 index c1863a3..0000000 --- a/Tizen.NUI/src/public/KeyEvent.cs +++ /dev/null @@ -1,161 +0,0 @@ -//------------------------------------------------------------------------------ -// -// -// This file was automatically generated by SWIG (http://www.swig.org). -// Version 3.0.9 -// -// Do not make changes to this file unless you know what you are doing--modify -// the SWIG interface file instead. -//------------------------------------------------------------------------------ - -namespace NUI { - -public class KeyEvent : global::System.IDisposable { - private global::System.Runtime.InteropServices.HandleRef swigCPtr; - protected bool swigCMemOwn; - - internal KeyEvent(global::System.IntPtr cPtr, bool cMemoryOwn) { - swigCMemOwn = cMemoryOwn; - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); - } - - internal static global::System.Runtime.InteropServices.HandleRef getCPtr(KeyEvent obj) { - return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; - } - - ~KeyEvent() { - DisposeQueue.Instance.Add(this); - } - - public virtual void Dispose() { - if (!Stage.IsInstalled()) { - DisposeQueue.Instance.Add(this); - return; - } - - lock(this) { - if (swigCPtr.Handle != global::System.IntPtr.Zero) { - if (swigCMemOwn) { - swigCMemOwn = false; - NDalicPINVOKE.delete_KeyEvent(swigCPtr); - } - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); - } - global::System.GC.SuppressFinalize(this); - } - } - - - public static KeyEvent GetKeyEventFromPtr(global::System.IntPtr cPtr) { - KeyEvent ret = new KeyEvent(cPtr, false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public KeyEvent() : this(NDalicPINVOKE.new_KeyEvent__SWIG_0(), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public KeyEvent(string keyName, string keyString, int keyCode, int keyModifier, uint timeStamp, KeyEvent.State keyState) : this(NDalicPINVOKE.new_KeyEvent__SWIG_1(keyName, keyString, keyCode, keyModifier, timeStamp, (int)keyState), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public bool IsShiftModifier() { - bool ret = NDalicPINVOKE.KeyEvent_IsShiftModifier(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public bool IsCtrlModifier() { - bool ret = NDalicPINVOKE.KeyEvent_IsCtrlModifier(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public bool IsAltModifier() { - bool ret = NDalicPINVOKE.KeyEvent_IsAltModifier(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public string keyPressedName { - set { - NDalicPINVOKE.KeyEvent_keyPressedName_set(swigCPtr, value); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - get { - string ret = NDalicPINVOKE.KeyEvent_keyPressedName_get(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - } - - public string keyPressed { - set { - NDalicPINVOKE.KeyEvent_keyPressed_set(swigCPtr, value); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - get { - string ret = NDalicPINVOKE.KeyEvent_keyPressed_get(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - } - - public int keyCode { - set { - NDalicPINVOKE.KeyEvent_keyCode_set(swigCPtr, value); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - get { - int ret = NDalicPINVOKE.KeyEvent_keyCode_get(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - } - - public int keyModifier { - set { - NDalicPINVOKE.KeyEvent_keyModifier_set(swigCPtr, value); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - get { - int ret = NDalicPINVOKE.KeyEvent_keyModifier_get(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - } - - public uint time { - set { - NDalicPINVOKE.KeyEvent_time_set(swigCPtr, value); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - get { - uint ret = NDalicPINVOKE.KeyEvent_time_get(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - } - - public KeyEvent.State state { - set { - NDalicPINVOKE.KeyEvent_state_set(swigCPtr, (int)value); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - get { - KeyEvent.State ret = (KeyEvent.State)NDalicPINVOKE.KeyEvent_state_get(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - } - - public enum State { - Down, - Up, - Last - } - -} - -} diff --git a/Tizen.NUI/src/public/KeyFrames.cs b/Tizen.NUI/src/public/KeyFrames.cs old mode 100644 new mode 100755 index ba81d4a..09ce647 --- a/Tizen.NUI/src/public/KeyFrames.cs +++ b/Tizen.NUI/src/public/KeyFrames.cs @@ -1,116 +1,138 @@ -/** Copyright (c) 2017 Samsung Electronics Co., Ltd. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ -// This File has been auto-generated by SWIG and then modified using DALi Ruby Scripts -//------------------------------------------------------------------------------ -// -// -// This file was automatically generated by SWIG (http://www.swig.org). -// Version 3.0.9 -// -// Do not make changes to this file unless you know what you are doing--modify -// the SWIG interface file instead. -//------------------------------------------------------------------------------ - -namespace NUI { - -public class KeyFrames : BaseHandle { - private global::System.Runtime.InteropServices.HandleRef swigCPtr; - - internal KeyFrames(global::System.IntPtr cPtr, bool cMemoryOwn) : base(NDalicPINVOKE.KeyFrames_SWIGUpcast(cPtr), cMemoryOwn) { - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); - } - - internal static global::System.Runtime.InteropServices.HandleRef getCPtr(KeyFrames obj) { - return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; - } - - ~KeyFrames() { - DisposeQueue.Instance.Add(this); - } - - public override void Dispose() { - if (!Stage.IsInstalled()) { - DisposeQueue.Instance.Add(this); - return; - } - - lock(this) { - if (swigCPtr.Handle != global::System.IntPtr.Zero) { - if (swigCMemOwn) { - swigCMemOwn = false; - NDalicPINVOKE.delete_KeyFrames(swigCPtr); - } - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); - } - global::System.GC.SuppressFinalize(this); - base.Dispose(); - } - } - - - - public void Add(float progress, object value) - { - dynamic obj = value; - Add(progress, new Property.Value(obj)); - } - - public void Add(float progress, object value, AlphaFunction alpha) - { - dynamic obj = value; - Add(progress, new Property.Value(obj), alpha); - } - - - public KeyFrames () : this (NDalicPINVOKE.KeyFrames_New(), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - - } - public static KeyFrames DownCast(BaseHandle handle) { - KeyFrames ret = new KeyFrames(NDalicPINVOKE.KeyFrames_DownCast(BaseHandle.getCPtr(handle)), true); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public KeyFrames(KeyFrames handle) : this(NDalicPINVOKE.new_KeyFrames__SWIG_1(KeyFrames.getCPtr(handle)), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public KeyFrames Assign(KeyFrames rhs) { - KeyFrames ret = new KeyFrames(NDalicPINVOKE.KeyFrames_Assign(swigCPtr, KeyFrames.getCPtr(rhs)), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public Property.Type GetType() { - Property.Type ret = (Property.Type)NDalicPINVOKE.KeyFrames_GetType(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public void Add(float progress, Property.Value value) { - NDalicPINVOKE.KeyFrames_Add__SWIG_0(swigCPtr, progress, Property.Value.getCPtr(value)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public void Add(float progress, Property.Value value, AlphaFunction alpha) { - NDalicPINVOKE.KeyFrames_Add__SWIG_1(swigCPtr, progress, Property.Value.getCPtr(value), AlphaFunction.getCPtr(alpha)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - -} - -} +// Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved +// PROPRIETARY/CONFIDENTIAL +// This software is the confidential and proprietary +// information of SAMSUNG ELECTRONICS ("Confidential Information"). You shall +// not disclose such Confidential Information and shall use it only in +// accordance with the terms of the license agreement you entered into with +// SAMSUNG ELECTRONICS. SAMSUNG make no representations or warranties about the +// suitability of the software, either express or implied, including but not +// limited to the implied warranties of merchantability, fitness for a +// particular purpose, or non-infringement. SAMSUNG shall not be liable for any +// damages suffered by licensee as a result of using, modifying or distributing +// this software or its derivatives. + +// Copyright (c) 2017 Samsung Electronics Co., Ltd. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// + +// This File has been auto-generated by SWIG and then modified using DALi Ruby Scripts +// Some have been manually changed + +namespace Tizen.NUI +{ + + public class KeyFrames : BaseHandle + { + private global::System.Runtime.InteropServices.HandleRef swigCPtr; + + internal KeyFrames(global::System.IntPtr cPtr, bool cMemoryOwn) : base(NDalicPINVOKE.KeyFrames_SWIGUpcast(cPtr), cMemoryOwn) + { + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); + } + + internal static global::System.Runtime.InteropServices.HandleRef getCPtr(KeyFrames obj) + { + return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; + } + + ~KeyFrames() + { + DisposeQueue.Instance.Add(this); + } + + public override void Dispose() + { + if (!Stage.IsInstalled()) + { + DisposeQueue.Instance.Add(this); + return; + } + + lock (this) + { + if (swigCPtr.Handle != global::System.IntPtr.Zero) + { + if (swigCMemOwn) + { + swigCMemOwn = false; + NDalicPINVOKE.delete_KeyFrames(swigCPtr); + } + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); + } + global::System.GC.SuppressFinalize(this); + base.Dispose(); + } + } + + + + public void Add(float progress, object value) + { + dynamic obj = value; + Add(progress, new PropertyValue(obj)); + } + + public void Add(float progress, object value, AlphaFunction alpha) + { + dynamic obj = value; + Add(progress, new PropertyValue(obj), alpha); + } + + + public KeyFrames() : this(NDalicPINVOKE.KeyFrames_New(), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + + } + public static KeyFrames DownCast(BaseHandle handle) + { + KeyFrames ret = new KeyFrames(NDalicPINVOKE.KeyFrames_DownCast(BaseHandle.getCPtr(handle)), true); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal KeyFrames(KeyFrames handle) : this(NDalicPINVOKE.new_KeyFrames__SWIG_1(KeyFrames.getCPtr(handle)), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + internal KeyFrames Assign(KeyFrames rhs) + { + KeyFrames ret = new KeyFrames(NDalicPINVOKE.KeyFrames_Assign(swigCPtr, KeyFrames.getCPtr(rhs)), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public PropertyType GetType() + { + PropertyType ret = (PropertyType)NDalicPINVOKE.KeyFrames_GetType(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public void Add(float progress, PropertyValue value) + { + NDalicPINVOKE.KeyFrames_Add__SWIG_0(swigCPtr, progress, PropertyValue.getCPtr(value)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public void Add(float progress, PropertyValue value, AlphaFunction alpha) + { + NDalicPINVOKE.KeyFrames_Add__SWIG_1(swigCPtr, progress, PropertyValue.getCPtr(value), AlphaFunction.getCPtr(alpha)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + } + +} diff --git a/Tizen.NUI/src/public/Layer.cs b/Tizen.NUI/src/public/Layer.cs old mode 100644 new mode 100755 index 2cdbd8d..5005ced --- a/Tizen.NUI/src/public/Layer.cs +++ b/Tizen.NUI/src/public/Layer.cs @@ -1,296 +1,357 @@ -/** Copyright (c) 2017 Samsung Electronics Co., Ltd. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ -// This File has been auto-generated by SWIG and then modified using DALi Ruby Scripts -//------------------------------------------------------------------------------ -// -// -// This file was automatically generated by SWIG (http://www.swig.org). -// Version 3.0.9 -// -// Do not make changes to this file unless you know what you are doing--modify -// the SWIG interface file instead. -//------------------------------------------------------------------------------ - -namespace NUI { - -public class Layer : Actor { - private global::System.Runtime.InteropServices.HandleRef swigCPtr; - - internal Layer(global::System.IntPtr cPtr, bool cMemoryOwn) : base(NDalicPINVOKE.Layer_SWIGUpcast(cPtr), cMemoryOwn) { - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); - } - - internal static global::System.Runtime.InteropServices.HandleRef getCPtr(Layer obj) { - return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; - } - - ~Layer() { - DisposeQueue.Instance.Add(this); - } - - public override void Dispose() { - if (!Stage.IsInstalled()) { - DisposeQueue.Instance.Add(this); - return; - } - - lock(this) { - if (swigCPtr.Handle != global::System.IntPtr.Zero) { - if (swigCMemOwn) { - swigCMemOwn = false; - NDalicPINVOKE.delete_Layer(swigCPtr); - } - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); - } - global::System.GC.SuppressFinalize(this); - base.Dispose(); - } - } - - - public class Property : global::System.IDisposable { - private global::System.Runtime.InteropServices.HandleRef swigCPtr; - protected bool swigCMemOwn; - - internal Property(global::System.IntPtr cPtr, bool cMemoryOwn) { - swigCMemOwn = cMemoryOwn; - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); - } - - internal static global::System.Runtime.InteropServices.HandleRef getCPtr(Property obj) { - return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; - } - - ~Property() { - Dispose(); - } - - public virtual void Dispose() { - lock(this) { - if (swigCPtr.Handle != global::System.IntPtr.Zero) { - if (swigCMemOwn) { - swigCMemOwn = false; - NDalicPINVOKE.delete_Layer_Property(swigCPtr); - } - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); - } - global::System.GC.SuppressFinalize(this); - } - } - - public Property() : this(NDalicPINVOKE.new_Layer_Property(), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public static readonly int CLIPPING_ENABLE = NDalicPINVOKE.Layer_Property_CLIPPING_ENABLE_get(); - public static readonly int CLIPPING_BOX = NDalicPINVOKE.Layer_Property_CLIPPING_BOX_get(); - public static readonly int BEHAVIOR = NDalicPINVOKE.Layer_Property_BEHAVIOR_get(); - - } - - public Layer () : this (NDalicPINVOKE.Layer_New(), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - - } - public new static Layer DownCast(BaseHandle handle) { - Layer ret = new Layer(NDalicPINVOKE.Layer_DownCast(BaseHandle.getCPtr(handle)), true); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public Layer(Layer copy) : this(NDalicPINVOKE.new_Layer__SWIG_1(Layer.getCPtr(copy)), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public Layer Assign(Layer rhs) { - Layer ret = new Layer(NDalicPINVOKE.Layer_Assign(swigCPtr, Layer.getCPtr(rhs)), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public uint GetDepth() { - uint ret = NDalicPINVOKE.Layer_GetDepth(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public void Raise() { - NDalicPINVOKE.Layer_Raise(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public void Lower() { - NDalicPINVOKE.Layer_Lower(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public void RaiseAbove(Layer target) { - NDalicPINVOKE.Layer_RaiseAbove(swigCPtr, Layer.getCPtr(target)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public void LowerBelow(Layer target) { - NDalicPINVOKE.Layer_LowerBelow(swigCPtr, Layer.getCPtr(target)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public void RaiseToTop() { - NDalicPINVOKE.Layer_RaiseToTop(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public void LowerToBottom() { - NDalicPINVOKE.Layer_LowerToBottom(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public void MoveAbove(Layer target) { - NDalicPINVOKE.Layer_MoveAbove(swigCPtr, Layer.getCPtr(target)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public void MoveBelow(Layer target) { - NDalicPINVOKE.Layer_MoveBelow(swigCPtr, Layer.getCPtr(target)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public void SetBehavior(Layer.LayerBehavior behavior) { - NDalicPINVOKE.Layer_SetBehavior(swigCPtr, (int)behavior); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public Layer.LayerBehavior GetBehavior() { - Layer.LayerBehavior ret = (Layer.LayerBehavior)NDalicPINVOKE.Layer_GetBehavior(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public void SetClipping(bool enabled) { - NDalicPINVOKE.Layer_SetClipping(swigCPtr, enabled); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public bool IsClipping() { - bool ret = NDalicPINVOKE.Layer_IsClipping(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public void SetClippingBox(int x, int y, int width, int height) { - NDalicPINVOKE.Layer_SetClippingBox__SWIG_0(swigCPtr, x, y, width, height); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public void SetClippingBox(RectInteger box) { - NDalicPINVOKE.Layer_SetClippingBox__SWIG_1(swigCPtr, RectInteger.getCPtr(box)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public RectInteger GetClippingBox() { - RectInteger ret = new RectInteger(NDalicPINVOKE.Layer_GetClippingBox(swigCPtr), true); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public void SetDepthTestDisabled(bool disable) { - NDalicPINVOKE.Layer_SetDepthTestDisabled(swigCPtr, disable); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public bool IsDepthTestDisabled() { - bool ret = NDalicPINVOKE.Layer_IsDepthTestDisabled(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public void SetSortFunction(SWIGTYPE_p_f_r_q_const__Dali__Vector3__float function) { - NDalicPINVOKE.Layer_SetSortFunction(swigCPtr, SWIGTYPE_p_f_r_q_const__Dali__Vector3__float.getCPtr(function)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public void SetTouchConsumed(bool consume) { - NDalicPINVOKE.Layer_SetTouchConsumed(swigCPtr, consume); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public bool IsTouchConsumed() { - bool ret = NDalicPINVOKE.Layer_IsTouchConsumed(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public void SetHoverConsumed(bool consume) { - NDalicPINVOKE.Layer_SetHoverConsumed(swigCPtr, consume); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public bool IsHoverConsumed() { - bool ret = NDalicPINVOKE.Layer_IsHoverConsumed(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public enum LayerBehavior { - LAYER_2D, - LAYER_UI = LAYER_2D, - LAYER_3D - } - - public enum TreeDepthMultiplier { - TREE_DEPTH_MULTIPLIER = 10000 - } - - public bool ClippingEnable - { - get - { - bool temp = false; - GetProperty( Layer.Property.CLIPPING_ENABLE).Get( ref temp ); - return temp; - } - set - { - SetProperty( Layer.Property.CLIPPING_ENABLE, new NUI.Property.Value( value ) ); - } - } - public RectInteger ClippingBox - { - get - { - RectInteger temp = new RectInteger(0,0,0,0); - GetProperty( Layer.Property.CLIPPING_BOX).Get( temp ); - return temp; - } - set - { - SetProperty( Layer.Property.CLIPPING_BOX, new NUI.Property.Value( value ) ); - } - } - public Layer.LayerBehavior Behavior - { - get - { - return GetBehavior(); - } - set - { - SetBehavior( value ); - } - } - -} - -} +// Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved +// PROPRIETARY/CONFIDENTIAL +// This software is the confidential and proprietary +// information of SAMSUNG ELECTRONICS ("Confidential Information"). You shall +// not disclose such Confidential Information and shall use it only in +// accordance with the terms of the license agreement you entered into with +// SAMSUNG ELECTRONICS. SAMSUNG make no representations or warranties about the +// suitability of the software, either express or implied, including but not +// limited to the implied warranties of merchantability, fitness for a +// particular purpose, or non-infringement. SAMSUNG shall not be liable for any +// damages suffered by licensee as a result of using, modifying or distributing +// this software or its derivatives. + +// Copyright (c) 2017 Samsung Electronics Co., Ltd. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// + +// This File has been auto-generated by SWIG and then modified using DALi Ruby Scripts +// Some have been manually changed + +namespace Tizen.NUI +{ + + public class Layer : Actor + { + private global::System.Runtime.InteropServices.HandleRef swigCPtr; + + internal Layer(global::System.IntPtr cPtr, bool cMemoryOwn) : base(NDalicPINVOKE.Layer_SWIGUpcast(cPtr), cMemoryOwn) + { + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); + } + + internal static global::System.Runtime.InteropServices.HandleRef getCPtr(Layer obj) + { + return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; + } + + ~Layer() + { + DisposeQueue.Instance.Add(this); + } + + public override void Dispose() + { + if (!Stage.IsInstalled()) + { + DisposeQueue.Instance.Add(this); + return; + } + + lock (this) + { + if (swigCPtr.Handle != global::System.IntPtr.Zero) + { + if (swigCMemOwn) + { + swigCMemOwn = false; + NDalicPINVOKE.delete_Layer(swigCPtr); + } + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); + } + global::System.GC.SuppressFinalize(this); + base.Dispose(); + } + } + + + internal class Property : global::System.IDisposable + { + private global::System.Runtime.InteropServices.HandleRef swigCPtr; + protected bool swigCMemOwn; + + internal Property(global::System.IntPtr cPtr, bool cMemoryOwn) + { + swigCMemOwn = cMemoryOwn; + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); + } + + internal static global::System.Runtime.InteropServices.HandleRef getCPtr(Property obj) + { + return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; + } + + ~Property() + { + Dispose(); + } + + public virtual void Dispose() + { + lock (this) + { + if (swigCPtr.Handle != global::System.IntPtr.Zero) + { + if (swigCMemOwn) + { + swigCMemOwn = false; + NDalicPINVOKE.delete_Layer_Property(swigCPtr); + } + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); + } + global::System.GC.SuppressFinalize(this); + } + } + + internal Property() : this(NDalicPINVOKE.new_Layer_Property(), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + internal static readonly int CLIPPING_ENABLE = NDalicPINVOKE.Layer_Property_CLIPPING_ENABLE_get(); + internal static readonly int CLIPPING_BOX = NDalicPINVOKE.Layer_Property_CLIPPING_BOX_get(); + internal static readonly int BEHAVIOR = NDalicPINVOKE.Layer_Property_BEHAVIOR_get(); + + } + + public Layer() : this(NDalicPINVOKE.Layer_New(), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + + } + public new static Layer DownCast(BaseHandle handle) + { + Layer ret = new Layer(NDalicPINVOKE.Layer_DownCast(BaseHandle.getCPtr(handle)), true); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal Layer(Layer copy) : this(NDalicPINVOKE.new_Layer__SWIG_1(Layer.getCPtr(copy)), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + internal Layer Assign(Layer rhs) + { + Layer ret = new Layer(NDalicPINVOKE.Layer_Assign(swigCPtr, Layer.getCPtr(rhs)), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public uint Depth + { + get + { + return GetDepth(); + } + } + + internal uint GetDepth() + { + uint ret = NDalicPINVOKE.Layer_GetDepth(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public void Raise() + { + NDalicPINVOKE.Layer_Raise(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public void Lower() + { + NDalicPINVOKE.Layer_Lower(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + internal void RaiseAbove(Layer target) + { + NDalicPINVOKE.Layer_RaiseAbove(swigCPtr, Layer.getCPtr(target)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + internal void LowerBelow(Layer target) + { + NDalicPINVOKE.Layer_LowerBelow(swigCPtr, Layer.getCPtr(target)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public void RaiseToTop() + { + NDalicPINVOKE.Layer_RaiseToTop(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public void LowerToBottom() + { + NDalicPINVOKE.Layer_LowerToBottom(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public void MoveAbove(Layer target) + { + NDalicPINVOKE.Layer_MoveAbove(swigCPtr, Layer.getCPtr(target)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public void MoveBelow(Layer target) + { + NDalicPINVOKE.Layer_MoveBelow(swigCPtr, Layer.getCPtr(target)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + internal void SetBehavior(LayerBehavior behavior) + { + NDalicPINVOKE.Layer_SetBehavior(swigCPtr, (int)behavior); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + internal LayerBehavior GetBehavior() + { + Layer.LayerBehavior ret = (Layer.LayerBehavior)NDalicPINVOKE.Layer_GetBehavior(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal void SetClipping(bool enabled) + { + NDalicPINVOKE.Layer_SetClipping(swigCPtr, enabled); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + internal bool IsClipping() + { + bool ret = NDalicPINVOKE.Layer_IsClipping(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal void SetClippingBox(int x, int y, int width, int height) + { + NDalicPINVOKE.Layer_SetClippingBox__SWIG_0(swigCPtr, x, y, width, height); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + internal void SetClippingBox(RectInteger box) + { + NDalicPINVOKE.Layer_SetClippingBox__SWIG_1(swigCPtr, RectInteger.getCPtr(box)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + internal RectInteger GetClippingBox() + { + RectInteger ret = new RectInteger(NDalicPINVOKE.Layer_GetClippingBox(swigCPtr), true); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal void SetDepthTestDisabled(bool disable) + { + NDalicPINVOKE.Layer_SetDepthTestDisabled(swigCPtr, disable); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + internal bool IsDepthTestDisabled() + { + bool ret = NDalicPINVOKE.Layer_IsDepthTestDisabled(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal void SetSortFunction(SWIGTYPE_p_f_r_q_const__Dali__Vector3__float function) + { + NDalicPINVOKE.Layer_SetSortFunction(swigCPtr, SWIGTYPE_p_f_r_q_const__Dali__Vector3__float.getCPtr(function)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + internal void SetTouchConsumed(bool consume) + { + NDalicPINVOKE.Layer_SetTouchConsumed(swigCPtr, consume); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + internal bool IsTouchConsumed() + { + bool ret = NDalicPINVOKE.Layer_IsTouchConsumed(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal void SetHoverConsumed(bool consume) + { + NDalicPINVOKE.Layer_SetHoverConsumed(swigCPtr, consume); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + internal bool IsHoverConsumed() + { + bool ret = NDalicPINVOKE.Layer_IsHoverConsumed(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public enum LayerBehavior + { + Layer2D, + LayerUI = Layer2D, + Layer3D + } + + internal enum TreeDepthMultiplier + { + TREE_DEPTH_MULTIPLIER = 10000 + } + + public bool ClippingEnable + { + get + { + bool temp = false; + GetProperty(Layer.Property.CLIPPING_ENABLE).Get(ref temp); + return temp; + } + set + { + SetProperty(Layer.Property.CLIPPING_ENABLE, new Tizen.NUI.PropertyValue(value)); + } + } + public RectInteger ClippingBox + { + get + { + RectInteger temp = new RectInteger(0, 0, 0, 0); + GetProperty(Layer.Property.CLIPPING_BOX).Get(temp); + return temp; + } + set + { + SetProperty(Layer.Property.CLIPPING_BOX, new Tizen.NUI.PropertyValue(value)); + } + } + public LayerBehavior Behavior + { + get + { + return GetBehavior(); + } + set + { + SetBehavior(value); + } + } + + } + +} diff --git a/Tizen.NUI/src/public/LinearConstrainer.cs b/Tizen.NUI/src/public/LinearConstrainer.cs old mode 100644 new mode 100755 index 0bce820..9f51997 --- a/Tizen.NUI/src/public/LinearConstrainer.cs +++ b/Tizen.NUI/src/public/LinearConstrainer.cs @@ -1,167 +1,198 @@ -/** Copyright (c) 2017 Samsung Electronics Co., Ltd. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ -// This File has been auto-generated by SWIG and then modified using DALi Ruby Scripts -//------------------------------------------------------------------------------ -// -// -// This file was automatically generated by SWIG (http://www.swig.org). -// Version 3.0.9 -// -// Do not make changes to this file unless you know what you are doing--modify -// the SWIG interface file instead. -//------------------------------------------------------------------------------ - -namespace NUI { - -public class LinearConstrainer : Handle { - private global::System.Runtime.InteropServices.HandleRef swigCPtr; - - internal LinearConstrainer(global::System.IntPtr cPtr, bool cMemoryOwn) : base(NDalicPINVOKE.LinearConstrainer_SWIGUpcast(cPtr), cMemoryOwn) { - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); - } - - internal static global::System.Runtime.InteropServices.HandleRef getCPtr(LinearConstrainer obj) { - return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; - } - - ~LinearConstrainer() { - DisposeQueue.Instance.Add(this); - } - - public override void Dispose() { - if (!Stage.IsInstalled()) { - DisposeQueue.Instance.Add(this); - return; - } - - lock(this) { - if (swigCPtr.Handle != global::System.IntPtr.Zero) { - if (swigCMemOwn) { - swigCMemOwn = false; - NDalicPINVOKE.delete_LinearConstrainer(swigCPtr); - } - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); - } - global::System.GC.SuppressFinalize(this); - base.Dispose(); - } - } - - - public class Property : global::System.IDisposable { - private global::System.Runtime.InteropServices.HandleRef swigCPtr; - protected bool swigCMemOwn; - - internal Property(global::System.IntPtr cPtr, bool cMemoryOwn) { - swigCMemOwn = cMemoryOwn; - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); - } - - internal static global::System.Runtime.InteropServices.HandleRef getCPtr(Property obj) { - return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; - } - - ~Property() { - Dispose(); - } - - public virtual void Dispose() { - lock(this) { - if (swigCPtr.Handle != global::System.IntPtr.Zero) { - if (swigCMemOwn) { - swigCMemOwn = false; - NDalicPINVOKE.delete_LinearConstrainer_Property(swigCPtr); - } - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); - } - global::System.GC.SuppressFinalize(this); - } - } - - public Property() : this(NDalicPINVOKE.new_LinearConstrainer_Property(), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public static readonly int VALUE = NDalicPINVOKE.LinearConstrainer_Property_VALUE_get(); - public static readonly int PROGRESS = NDalicPINVOKE.LinearConstrainer_Property_PROGRESS_get(); - - } - - public LinearConstrainer () : this (NDalicPINVOKE.LinearConstrainer_New(), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - - } - public new static LinearConstrainer DownCast(BaseHandle handle) { - LinearConstrainer ret = new LinearConstrainer(NDalicPINVOKE.LinearConstrainer_DownCast(BaseHandle.getCPtr(handle)), true); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public LinearConstrainer(LinearConstrainer handle) : this(NDalicPINVOKE.new_LinearConstrainer__SWIG_1(LinearConstrainer.getCPtr(handle)), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public LinearConstrainer Assign(LinearConstrainer rhs) { - LinearConstrainer ret = new LinearConstrainer(NDalicPINVOKE.LinearConstrainer_Assign(swigCPtr, LinearConstrainer.getCPtr(rhs)), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public void Apply(Property target, Property source, Vector2 range, Vector2 wrap) { - NDalicPINVOKE.LinearConstrainer_Apply__SWIG_0(swigCPtr, Property.getCPtr(target), Property.getCPtr(source), Vector2.getCPtr(range), Vector2.getCPtr(wrap)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public void Apply(Property target, Property source, Vector2 range) { - NDalicPINVOKE.LinearConstrainer_Apply__SWIG_1(swigCPtr, Property.getCPtr(target), Property.getCPtr(source), Vector2.getCPtr(range)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public void Remove(Handle target) { - NDalicPINVOKE.LinearConstrainer_Remove(swigCPtr, Handle.getCPtr(target)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public NUI.Property.Array Value - { - get - { - NUI.Property.Array temp = new NUI.Property.Array(); - GetProperty( LinearConstrainer.Property.VALUE).Get( temp ); - return temp; - } - set - { - SetProperty( LinearConstrainer.Property.VALUE, new NUI.Property.Value( value ) ); - } - } - public NUI.Property.Array Progress - { - get - { - NUI.Property.Array temp = new NUI.Property.Array(); - GetProperty( LinearConstrainer.Property.PROGRESS).Get( temp ); - return temp; - } - set - { - SetProperty( LinearConstrainer.Property.PROGRESS, new NUI.Property.Value( value ) ); - } - } - -} - -} +// Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved +// PROPRIETARY/CONFIDENTIAL +// This software is the confidential and proprietary +// information of SAMSUNG ELECTRONICS ("Confidential Information"). You shall +// not disclose such Confidential Information and shall use it only in +// accordance with the terms of the license agreement you entered into with +// SAMSUNG ELECTRONICS. SAMSUNG make no representations or warranties about the +// suitability of the software, either express or implied, including but not +// limited to the implied warranties of merchantability, fitness for a +// particular purpose, or non-infringement. SAMSUNG shall not be liable for any +// damages suffered by licensee as a result of using, modifying or distributing +// this software or its derivatives. + +// Copyright (c) 2017 Samsung Electronics Co., Ltd. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// + +// This File has been auto-generated by SWIG and then modified using DALi Ruby Scripts +// Some have been manually changed + +namespace Tizen.NUI +{ + + public class LinearConstrainer : Handle + { + private global::System.Runtime.InteropServices.HandleRef swigCPtr; + + internal LinearConstrainer(global::System.IntPtr cPtr, bool cMemoryOwn) : base(NDalicPINVOKE.LinearConstrainer_SWIGUpcast(cPtr), cMemoryOwn) + { + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); + } + + internal static global::System.Runtime.InteropServices.HandleRef getCPtr(LinearConstrainer obj) + { + return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; + } + + ~LinearConstrainer() + { + DisposeQueue.Instance.Add(this); + } + + public override void Dispose() + { + if (!Stage.IsInstalled()) + { + DisposeQueue.Instance.Add(this); + return; + } + + lock (this) + { + if (swigCPtr.Handle != global::System.IntPtr.Zero) + { + if (swigCMemOwn) + { + swigCMemOwn = false; + NDalicPINVOKE.delete_LinearConstrainer(swigCPtr); + } + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); + } + global::System.GC.SuppressFinalize(this); + base.Dispose(); + } + } + + + public class Property : global::System.IDisposable + { + private global::System.Runtime.InteropServices.HandleRef swigCPtr; + protected bool swigCMemOwn; + + internal Property(global::System.IntPtr cPtr, bool cMemoryOwn) + { + swigCMemOwn = cMemoryOwn; + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); + } + + internal static global::System.Runtime.InteropServices.HandleRef getCPtr(Property obj) + { + return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; + } + + ~Property() + { + Dispose(); + } + + public virtual void Dispose() + { + lock (this) + { + if (swigCPtr.Handle != global::System.IntPtr.Zero) + { + if (swigCMemOwn) + { + swigCMemOwn = false; + NDalicPINVOKE.delete_LinearConstrainer_Property(swigCPtr); + } + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); + } + global::System.GC.SuppressFinalize(this); + } + } + + internal Property() : this(NDalicPINVOKE.new_LinearConstrainer_Property(), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + internal static readonly int VALUE = NDalicPINVOKE.LinearConstrainer_Property_VALUE_get(); + internal static readonly int PROGRESS = NDalicPINVOKE.LinearConstrainer_Property_PROGRESS_get(); + + } + + public LinearConstrainer() : this(NDalicPINVOKE.LinearConstrainer_New(), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + + } + public new static LinearConstrainer DownCast(BaseHandle handle) + { + LinearConstrainer ret = new LinearConstrainer(NDalicPINVOKE.LinearConstrainer_DownCast(BaseHandle.getCPtr(handle)), true); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal LinearConstrainer(LinearConstrainer handle) : this(NDalicPINVOKE.new_LinearConstrainer__SWIG_1(LinearConstrainer.getCPtr(handle)), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + internal LinearConstrainer Assign(LinearConstrainer rhs) + { + LinearConstrainer ret = new LinearConstrainer(NDalicPINVOKE.LinearConstrainer_Assign(swigCPtr, LinearConstrainer.getCPtr(rhs)), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public void Apply(Property target, Property source, Vector2 range, Vector2 wrap) + { + NDalicPINVOKE.LinearConstrainer_Apply__SWIG_0(swigCPtr, Property.getCPtr(target), Property.getCPtr(source), Vector2.getCPtr(range), Vector2.getCPtr(wrap)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public void Apply(Property target, Property source, Vector2 range) + { + NDalicPINVOKE.LinearConstrainer_Apply__SWIG_1(swigCPtr, Property.getCPtr(target), Property.getCPtr(source), Vector2.getCPtr(range)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public void Remove(Handle target) + { + NDalicPINVOKE.LinearConstrainer_Remove(swigCPtr, Handle.getCPtr(target)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public PropertyArray Value + { + get + { + Tizen.NUI.PropertyArray temp = new Tizen.NUI.PropertyArray(); + GetProperty(LinearConstrainer.Property.VALUE).Get(temp); + return temp; + } + set + { + SetProperty(LinearConstrainer.Property.VALUE, new Tizen.NUI.PropertyValue(value)); + } + } + public PropertyArray Progress + { + get + { + Tizen.NUI.PropertyArray temp = new Tizen.NUI.PropertyArray(); + GetProperty(LinearConstrainer.Property.PROGRESS).Get(temp); + return temp; + } + set + { + SetProperty(LinearConstrainer.Property.PROGRESS, new Tizen.NUI.PropertyValue(value)); + } + } + + } + +} diff --git a/Tizen.NUI/src/public/Path.cs b/Tizen.NUI/src/public/Path.cs old mode 100644 new mode 100755 index c83c23e..ee3c042 --- a/Tizen.NUI/src/public/Path.cs +++ b/Tizen.NUI/src/public/Path.cs @@ -1,190 +1,225 @@ -/** Copyright (c) 2017 Samsung Electronics Co., Ltd. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ -// This File has been auto-generated by SWIG and then modified using DALi Ruby Scripts -//------------------------------------------------------------------------------ -// -// -// This file was automatically generated by SWIG (http://www.swig.org). -// Version 3.0.9 -// -// Do not make changes to this file unless you know what you are doing--modify -// the SWIG interface file instead. -//------------------------------------------------------------------------------ - -namespace NUI { - -public class Path : Handle { - private global::System.Runtime.InteropServices.HandleRef swigCPtr; - - internal Path(global::System.IntPtr cPtr, bool cMemoryOwn) : base(NDalicPINVOKE.Path_SWIGUpcast(cPtr), cMemoryOwn) { - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); - } - - internal static global::System.Runtime.InteropServices.HandleRef getCPtr(Path obj) { - return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; - } - - ~Path() { - DisposeQueue.Instance.Add(this); - } - - public override void Dispose() { - if (!Stage.IsInstalled()) { - DisposeQueue.Instance.Add(this); - return; - } - - lock(this) { - if (swigCPtr.Handle != global::System.IntPtr.Zero) { - if (swigCMemOwn) { - swigCMemOwn = false; - NDalicPINVOKE.delete_Path(swigCPtr); - } - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); - } - global::System.GC.SuppressFinalize(this); - base.Dispose(); - } - } - - - public class Property : global::System.IDisposable { - private global::System.Runtime.InteropServices.HandleRef swigCPtr; - protected bool swigCMemOwn; - - internal Property(global::System.IntPtr cPtr, bool cMemoryOwn) { - swigCMemOwn = cMemoryOwn; - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); - } - - internal static global::System.Runtime.InteropServices.HandleRef getCPtr(Property obj) { - return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; - } - - ~Property() { - Dispose(); - } - - public virtual void Dispose() { - lock(this) { - if (swigCPtr.Handle != global::System.IntPtr.Zero) { - if (swigCMemOwn) { - swigCMemOwn = false; - NDalicPINVOKE.delete_Path_Property(swigCPtr); - } - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); - } - global::System.GC.SuppressFinalize(this); - } - } - - public Property() : this(NDalicPINVOKE.new_Path_Property(), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public static readonly int POINTS = NDalicPINVOKE.Path_Property_POINTS_get(); - public static readonly int CONTROL_POINTS = NDalicPINVOKE.Path_Property_CONTROL_POINTS_get(); - - } - - public Path () : this (NDalicPINVOKE.Path_New(), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - - } - public new static Path DownCast(BaseHandle handle) { - Path ret = new Path(NDalicPINVOKE.Path_DownCast(BaseHandle.getCPtr(handle)), true); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public Path(Path handle) : this(NDalicPINVOKE.new_Path__SWIG_1(Path.getCPtr(handle)), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public Path Assign(Path rhs) { - Path ret = new Path(NDalicPINVOKE.Path_Assign(swigCPtr, Path.getCPtr(rhs)), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public void AddPoint(Vector3 point) { - NDalicPINVOKE.Path_AddPoint(swigCPtr, Vector3.getCPtr(point)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public void AddControlPoint(Vector3 point) { - NDalicPINVOKE.Path_AddControlPoint(swigCPtr, Vector3.getCPtr(point)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public void GenerateControlPoints(float curvature) { - NDalicPINVOKE.Path_GenerateControlPoints(swigCPtr, curvature); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public void Sample(float progress, Vector3 position, Vector3 tangent) { - NDalicPINVOKE.Path_Sample(swigCPtr, progress, Vector3.getCPtr(position), Vector3.getCPtr(tangent)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public Vector3 GetPoint(uint index) { - Vector3 ret = new Vector3(NDalicPINVOKE.Path_GetPoint(swigCPtr, index), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public Vector3 GetControlPoint(uint index) { - Vector3 ret = new Vector3(NDalicPINVOKE.Path_GetControlPoint(swigCPtr, index), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public uint GetPointCount() { - uint ret = NDalicPINVOKE.Path_GetPointCount(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public NUI.Property.Array Points - { - get - { - NUI.Property.Array temp = new NUI.Property.Array(); - GetProperty( Path.Property.POINTS).Get( temp ); - return temp; - } - set - { - SetProperty( Path.Property.POINTS, new NUI.Property.Value( value ) ); - } - } - public NUI.Property.Array ControlPoints - { - get - { - NUI.Property.Array temp = new NUI.Property.Array(); - GetProperty( Path.Property.CONTROL_POINTS).Get( temp ); - return temp; - } - set - { - SetProperty( Path.Property.CONTROL_POINTS, new NUI.Property.Value( value ) ); - } - } - -} - -} +// Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved +// PROPRIETARY/CONFIDENTIAL +// This software is the confidential and proprietary +// information of SAMSUNG ELECTRONICS ("Confidential Information"). You shall +// not disclose such Confidential Information and shall use it only in +// accordance with the terms of the license agreement you entered into with +// SAMSUNG ELECTRONICS. SAMSUNG make no representations or warranties about the +// suitability of the software, either express or implied, including but not +// limited to the implied warranties of merchantability, fitness for a +// particular purpose, or non-infringement. SAMSUNG shall not be liable for any +// damages suffered by licensee as a result of using, modifying or distributing +// this software or its derivatives. + +// Copyright (c) 2017 Samsung Electronics Co., Ltd. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// + +// This File has been auto-generated by SWIG and then modified using DALi Ruby Scripts +// Some have been manually changed + +namespace Tizen.NUI +{ + + public class Path : Handle + { + private global::System.Runtime.InteropServices.HandleRef swigCPtr; + + internal Path(global::System.IntPtr cPtr, bool cMemoryOwn) : base(NDalicPINVOKE.Path_SWIGUpcast(cPtr), cMemoryOwn) + { + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); + } + + internal static global::System.Runtime.InteropServices.HandleRef getCPtr(Path obj) + { + return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; + } + + ~Path() + { + DisposeQueue.Instance.Add(this); + } + + public override void Dispose() + { + if (!Stage.IsInstalled()) + { + DisposeQueue.Instance.Add(this); + return; + } + + lock (this) + { + if (swigCPtr.Handle != global::System.IntPtr.Zero) + { + if (swigCMemOwn) + { + swigCMemOwn = false; + NDalicPINVOKE.delete_Path(swigCPtr); + } + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); + } + global::System.GC.SuppressFinalize(this); + base.Dispose(); + } + } + + + internal class Property : global::System.IDisposable + { + private global::System.Runtime.InteropServices.HandleRef swigCPtr; + protected bool swigCMemOwn; + + internal Property(global::System.IntPtr cPtr, bool cMemoryOwn) + { + swigCMemOwn = cMemoryOwn; + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); + } + + internal static global::System.Runtime.InteropServices.HandleRef getCPtr(Property obj) + { + return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; + } + + ~Property() + { + Dispose(); + } + + public virtual void Dispose() + { + lock (this) + { + if (swigCPtr.Handle != global::System.IntPtr.Zero) + { + if (swigCMemOwn) + { + swigCMemOwn = false; + NDalicPINVOKE.delete_Path_Property(swigCPtr); + } + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); + } + global::System.GC.SuppressFinalize(this); + } + } + + internal Property() : this(NDalicPINVOKE.new_Path_Property(), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + internal static readonly int POINTS = NDalicPINVOKE.Path_Property_POINTS_get(); + internal static readonly int CONTROL_POINTS = NDalicPINVOKE.Path_Property_CONTROL_POINTS_get(); + + } + + public Path() : this(NDalicPINVOKE.Path_New(), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + + } + public new static Path DownCast(BaseHandle handle) + { + Path ret = new Path(NDalicPINVOKE.Path_DownCast(BaseHandle.getCPtr(handle)), true); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal Path(Path handle) : this(NDalicPINVOKE.new_Path__SWIG_1(Path.getCPtr(handle)), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + internal Path Assign(Path rhs) + { + Path ret = new Path(NDalicPINVOKE.Path_Assign(swigCPtr, Path.getCPtr(rhs)), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public void AddPoint(Position point) + { + NDalicPINVOKE.Path_AddPoint(swigCPtr, Position.getCPtr(point)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public void AddControlPoint(Vector3 point) + { + NDalicPINVOKE.Path_AddControlPoint(swigCPtr, Vector3.getCPtr(point)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public void GenerateControlPoints(float curvature) + { + NDalicPINVOKE.Path_GenerateControlPoints(swigCPtr, curvature); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public void Sample(float progress, Vector3 position, Vector3 tangent) + { + NDalicPINVOKE.Path_Sample(swigCPtr, progress, Vector3.getCPtr(position), Vector3.getCPtr(tangent)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public Vector3 GetPoint(uint index) + { + Vector3 ret = new Vector3(NDalicPINVOKE.Path_GetPoint(swigCPtr, index), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public Vector3 GetControlPoint(uint index) + { + Vector3 ret = new Vector3(NDalicPINVOKE.Path_GetControlPoint(swigCPtr, index), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public uint GetPointCount() + { + uint ret = NDalicPINVOKE.Path_GetPointCount(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public PropertyArray Points + { + get + { + Tizen.NUI.PropertyArray temp = new Tizen.NUI.PropertyArray(); + GetProperty(Path.Property.POINTS).Get(temp); + return temp; + } + set + { + SetProperty(Path.Property.POINTS, new Tizen.NUI.PropertyValue(value)); + } + } + + public PropertyArray ControlPoints + { + get + { + Tizen.NUI.PropertyArray temp = new Tizen.NUI.PropertyArray(); + GetProperty(Path.Property.CONTROL_POINTS).Get(temp); + return temp; + } + set + { + SetProperty(Path.Property.CONTROL_POINTS, new Tizen.NUI.PropertyValue(value)); + } + } + + } +} diff --git a/Tizen.NUI/src/public/PathConstrainer.cs b/Tizen.NUI/src/public/PathConstrainer.cs old mode 100644 new mode 100755 index f4d4699..7856ec7 --- a/Tizen.NUI/src/public/PathConstrainer.cs +++ b/Tizen.NUI/src/public/PathConstrainer.cs @@ -1,181 +1,215 @@ -/** Copyright (c) 2017 Samsung Electronics Co., Ltd. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ -// This File has been auto-generated by SWIG and then modified using DALi Ruby Scripts -//------------------------------------------------------------------------------ -// -// -// This file was automatically generated by SWIG (http://www.swig.org). -// Version 3.0.9 -// -// Do not make changes to this file unless you know what you are doing--modify -// the SWIG interface file instead. -//------------------------------------------------------------------------------ - -namespace NUI { - -public class PathConstrainer : Handle { - private global::System.Runtime.InteropServices.HandleRef swigCPtr; - - internal PathConstrainer(global::System.IntPtr cPtr, bool cMemoryOwn) : base(NDalicPINVOKE.PathConstrainer_SWIGUpcast(cPtr), cMemoryOwn) { - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); - } - - internal static global::System.Runtime.InteropServices.HandleRef getCPtr(PathConstrainer obj) { - return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; - } - - ~PathConstrainer() { - DisposeQueue.Instance.Add(this); - } - - public override void Dispose() { - if (!Stage.IsInstalled()) { - DisposeQueue.Instance.Add(this); - return; - } - - lock(this) { - if (swigCPtr.Handle != global::System.IntPtr.Zero) { - if (swigCMemOwn) { - swigCMemOwn = false; - NDalicPINVOKE.delete_PathConstrainer(swigCPtr); - } - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); - } - global::System.GC.SuppressFinalize(this); - base.Dispose(); - } - } - - - public class Property : global::System.IDisposable { - private global::System.Runtime.InteropServices.HandleRef swigCPtr; - protected bool swigCMemOwn; - - internal Property(global::System.IntPtr cPtr, bool cMemoryOwn) { - swigCMemOwn = cMemoryOwn; - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); - } - - internal static global::System.Runtime.InteropServices.HandleRef getCPtr(Property obj) { - return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; - } - - ~Property() { - Dispose(); - } - - public virtual void Dispose() { - lock(this) { - if (swigCPtr.Handle != global::System.IntPtr.Zero) { - if (swigCMemOwn) { - swigCMemOwn = false; - NDalicPINVOKE.delete_PathConstrainer_Property(swigCPtr); - } - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); - } - global::System.GC.SuppressFinalize(this); - } - } - - public Property() : this(NDalicPINVOKE.new_PathConstrainer_Property(), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public static readonly int FORWARD = NDalicPINVOKE.PathConstrainer_Property_FORWARD_get(); - public static readonly int POINTS = NDalicPINVOKE.PathConstrainer_Property_POINTS_get(); - public static readonly int CONTROL_POINTS = NDalicPINVOKE.PathConstrainer_Property_CONTROL_POINTS_get(); - - } - - public PathConstrainer () : this (NDalicPINVOKE.PathConstrainer_New(), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - - } - public new static PathConstrainer DownCast(BaseHandle handle) { - PathConstrainer ret = new PathConstrainer(NDalicPINVOKE.PathConstrainer_DownCast(BaseHandle.getCPtr(handle)), true); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public PathConstrainer(PathConstrainer handle) : this(NDalicPINVOKE.new_PathConstrainer__SWIG_1(PathConstrainer.getCPtr(handle)), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public PathConstrainer Assign(PathConstrainer rhs) { - PathConstrainer ret = new PathConstrainer(NDalicPINVOKE.PathConstrainer_Assign(swigCPtr, PathConstrainer.getCPtr(rhs)), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public void Apply(Property target, Property source, Vector2 range, Vector2 wrap) { - NDalicPINVOKE.PathConstrainer_Apply__SWIG_0(swigCPtr, Property.getCPtr(target), Property.getCPtr(source), Vector2.getCPtr(range), Vector2.getCPtr(wrap)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public void Apply(Property target, Property source, Vector2 range) { - NDalicPINVOKE.PathConstrainer_Apply__SWIG_1(swigCPtr, Property.getCPtr(target), Property.getCPtr(source), Vector2.getCPtr(range)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public void Remove(Handle target) { - NDalicPINVOKE.PathConstrainer_Remove(swigCPtr, Handle.getCPtr(target)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public Vector3 Forward - { - get - { - Vector3 temp = new Vector3(0.0f,0.0f,0.0f); - GetProperty( PathConstrainer.Property.FORWARD).Get( temp ); - return temp; - } - set - { - SetProperty( PathConstrainer.Property.FORWARD, new NUI.Property.Value( value ) ); - } - } - public NUI.Property.Array Points - { - get - { - NUI.Property.Array temp = new NUI.Property.Array(); - GetProperty( PathConstrainer.Property.POINTS).Get( temp ); - return temp; - } - set - { - SetProperty( PathConstrainer.Property.POINTS, new NUI.Property.Value( value ) ); - } - } - public NUI.Property.Array ControlPoints - { - get - { - NUI.Property.Array temp = new NUI.Property.Array(); - GetProperty( PathConstrainer.Property.CONTROL_POINTS).Get( temp ); - return temp; - } - set - { - SetProperty( PathConstrainer.Property.CONTROL_POINTS, new NUI.Property.Value( value ) ); - } - } - -} - -} +// Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved +// PROPRIETARY/CONFIDENTIAL +// This software is the confidential and proprietary +// information of SAMSUNG ELECTRONICS ("Confidential Information"). You shall +// not disclose such Confidential Information and shall use it only in +// accordance with the terms of the license agreement you entered into with +// SAMSUNG ELECTRONICS. SAMSUNG make no representations or warranties about the +// suitability of the software, either express or implied, including but not +// limited to the implied warranties of merchantability, fitness for a +// particular purpose, or non-infringement. SAMSUNG shall not be liable for any +// damages suffered by licensee as a result of using, modifying or distributing +// this software or its derivatives. + +// Copyright (c) 2017 Samsung Electronics Co., Ltd. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// + +// This File has been auto-generated by SWIG and then modified using DALi Ruby Scripts +// Some have been manually changed + + +namespace Tizen.NUI +{ + + public class PathConstrainer : Handle + { + private global::System.Runtime.InteropServices.HandleRef swigCPtr; + + internal PathConstrainer(global::System.IntPtr cPtr, bool cMemoryOwn) : base(NDalicPINVOKE.PathConstrainer_SWIGUpcast(cPtr), cMemoryOwn) + { + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); + } + + internal static global::System.Runtime.InteropServices.HandleRef getCPtr(PathConstrainer obj) + { + return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; + } + + ~PathConstrainer() + { + DisposeQueue.Instance.Add(this); + } + + public override void Dispose() + { + if (!Stage.IsInstalled()) + { + DisposeQueue.Instance.Add(this); + return; + } + + lock (this) + { + if (swigCPtr.Handle != global::System.IntPtr.Zero) + { + if (swigCMemOwn) + { + swigCMemOwn = false; + NDalicPINVOKE.delete_PathConstrainer(swigCPtr); + } + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); + } + global::System.GC.SuppressFinalize(this); + base.Dispose(); + } + } + + + public class Property : global::System.IDisposable + { + private global::System.Runtime.InteropServices.HandleRef swigCPtr; + protected bool swigCMemOwn; + + internal Property(global::System.IntPtr cPtr, bool cMemoryOwn) + { + swigCMemOwn = cMemoryOwn; + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); + } + + internal static global::System.Runtime.InteropServices.HandleRef getCPtr(Property obj) + { + return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; + } + + ~Property() + { + Dispose(); + } + + public virtual void Dispose() + { + lock (this) + { + if (swigCPtr.Handle != global::System.IntPtr.Zero) + { + if (swigCMemOwn) + { + swigCMemOwn = false; + NDalicPINVOKE.delete_PathConstrainer_Property(swigCPtr); + } + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); + } + global::System.GC.SuppressFinalize(this); + } + } + + public Property() : this(NDalicPINVOKE.new_PathConstrainer_Property(), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + internal static readonly int FORWARD = NDalicPINVOKE.PathConstrainer_Property_FORWARD_get(); + internal static readonly int POINTS = NDalicPINVOKE.PathConstrainer_Property_POINTS_get(); + internal static readonly int CONTROL_POINTS = NDalicPINVOKE.PathConstrainer_Property_CONTROL_POINTS_get(); + + } + + public PathConstrainer() : this(NDalicPINVOKE.PathConstrainer_New(), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + + } + public new static PathConstrainer DownCast(BaseHandle handle) + { + PathConstrainer ret = new PathConstrainer(NDalicPINVOKE.PathConstrainer_DownCast(BaseHandle.getCPtr(handle)), true); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal PathConstrainer(PathConstrainer handle) : this(NDalicPINVOKE.new_PathConstrainer__SWIG_1(PathConstrainer.getCPtr(handle)), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + internal PathConstrainer Assign(PathConstrainer rhs) + { + PathConstrainer ret = new PathConstrainer(NDalicPINVOKE.PathConstrainer_Assign(swigCPtr, PathConstrainer.getCPtr(rhs)), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public void Apply(Property target, Property source, Vector2 range, Vector2 wrap) + { + NDalicPINVOKE.PathConstrainer_Apply__SWIG_0(swigCPtr, Property.getCPtr(target), Property.getCPtr(source), Vector2.getCPtr(range), Vector2.getCPtr(wrap)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public void Apply(Property target, Property source, Vector2 range) + { + NDalicPINVOKE.PathConstrainer_Apply__SWIG_1(swigCPtr, Property.getCPtr(target), Property.getCPtr(source), Vector2.getCPtr(range)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public void Remove(Handle target) + { + NDalicPINVOKE.PathConstrainer_Remove(swigCPtr, Handle.getCPtr(target)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public Vector3 Forward + { + get + { + Vector3 temp = new Vector3(0.0f, 0.0f, 0.0f); + GetProperty(PathConstrainer.Property.FORWARD).Get(temp); + return temp; + } + set + { + SetProperty(PathConstrainer.Property.FORWARD, new Tizen.NUI.PropertyValue(value)); + } + } + + public PropertyArray Points + { + get + { + Tizen.NUI.PropertyArray temp = new Tizen.NUI.PropertyArray(); + GetProperty(PathConstrainer.Property.POINTS).Get(temp); + return temp; + } + set + { + SetProperty(PathConstrainer.Property.POINTS, new Tizen.NUI.PropertyValue(value)); + } + } + + public PropertyArray ControlPoints + { + get + { + Tizen.NUI.PropertyArray temp = new Tizen.NUI.PropertyArray(); + GetProperty(PathConstrainer.Property.CONTROL_POINTS).Get(temp); + return temp; + } + set + { + SetProperty(PathConstrainer.Property.CONTROL_POINTS, new Tizen.NUI.PropertyValue(value)); + } + } + + } + +} diff --git a/Tizen.NUI/src/public/Popup.cs b/Tizen.NUI/src/public/Popup.cs old mode 100644 new mode 100755 index bc95b6b..801fd41 --- a/Tizen.NUI/src/public/Popup.cs +++ b/Tizen.NUI/src/public/Popup.cs @@ -1,785 +1,775 @@ -/** Copyright (c) 2017 Samsung Electronics Co., Ltd. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ -// This File has been auto-generated by SWIG and then modified using DALi Ruby Scripts -//------------------------------------------------------------------------------ -// -// -// This file was automatically generated by SWIG (http://www.swig.org). -// Version 3.0.9 -// -// Do not make changes to this file unless you know what you are doing--modify -// the SWIG interface file instead. -//------------------------------------------------------------------------------ - -namespace NUI { - -using System; -using System.Runtime.InteropServices; - - -public class Popup : View { - private global::System.Runtime.InteropServices.HandleRef swigCPtr; - - internal Popup(global::System.IntPtr cPtr, bool cMemoryOwn) : base(NDalicPINVOKE.Popup_SWIGUpcast(cPtr), cMemoryOwn) { - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); - } - - internal static global::System.Runtime.InteropServices.HandleRef getCPtr(Popup obj) { - return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; - } - - ~Popup() { - DisposeQueue.Instance.Add(this); - } - - public override void Dispose() { - if (!Stage.IsInstalled()) { - DisposeQueue.Instance.Add(this); - return; - } - - lock(this) { - if (swigCPtr.Handle != global::System.IntPtr.Zero) { - if (swigCMemOwn) { - swigCMemOwn = false; - NDalicPINVOKE.delete_Popup(swigCPtr); - } - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); - } - global::System.GC.SuppressFinalize(this); - base.Dispose(); - } - } - - - - public class OutsideTouchedEventArgs : EventArgs - { - } - - public class ShowingEventArgs : EventArgs - { - } - - public class ShownEventArgs : EventArgs - { - } - - public class HidingEventArgs : EventArgs - { - } - - public class HiddenEventArgs : EventArgs - { - } - - [UnmanagedFunctionPointer(CallingConvention.StdCall)] - private delegate void OutsideTouchedEventCallbackDelegate(); - private DaliEventHandler _popUpOutsideTouchedEventHandler; - private OutsideTouchedEventCallbackDelegate _popUpOutsideTouchedEventCallbackDelegate; - - [UnmanagedFunctionPointer(CallingConvention.StdCall)] - private delegate void ShowingEventCallbackDelegate(); - private DaliEventHandler _popUpShowingEventHandler; - private ShowingEventCallbackDelegate _popUpShowingEventCallbackDelegate; - - [UnmanagedFunctionPointer(CallingConvention.StdCall)] - private delegate void ShownEventCallbackDelegate(); - private DaliEventHandler _popUpShownEventHandler; - private ShownEventCallbackDelegate _popUpShownEventCallbackDelegate; - - [UnmanagedFunctionPointer(CallingConvention.StdCall)] - private delegate void HidingEventCallbackDelegate(); - private DaliEventHandler _popUpHidingEventHandler; - private HidingEventCallbackDelegate _popUpHidingEventCallbackDelegate; - - [UnmanagedFunctionPointer(CallingConvention.StdCall)] - private delegate void HiddenEventCallbackDelegate(); - private DaliEventHandler _popUpHiddenEventHandler; - private HiddenEventCallbackDelegate _popUpHiddenEventCallbackDelegate; - - public event DaliEventHandler OutsideTouched - { - add - { - lock(this) - { - // Restricted to only one listener - if (_popUpOutsideTouchedEventHandler == null) - { - _popUpOutsideTouchedEventHandler += value; - - _popUpOutsideTouchedEventCallbackDelegate = new OutsideTouchedEventCallbackDelegate(OnOutsideTouched); - this.OutsideTouchedSignal().Connect(_popUpOutsideTouchedEventCallbackDelegate); - } - } - } - - remove - { - lock(this) - { - if (_popUpOutsideTouchedEventHandler != null) - { - this.OutsideTouchedSignal().Disconnect(_popUpOutsideTouchedEventCallbackDelegate); - } - - _popUpOutsideTouchedEventHandler -= value; - } - } - } - - // Callback for Popup OutsideTouchedSignal - private void OnOutsideTouched() - { - OutsideTouchedEventArgs e = new OutsideTouchedEventArgs(); - - if (_popUpOutsideTouchedEventHandler != null) - { - //here we send all data to user event handlers - _popUpOutsideTouchedEventHandler(this, e); - } - } - - public event DaliEventHandler Showing - { - add - { - lock(this) - { - // Restricted to only one listener - if (_popUpShowingEventHandler == null) - { - _popUpShowingEventHandler += value; - - _popUpShowingEventCallbackDelegate = new ShowingEventCallbackDelegate(OnShowing); - this.ShowingSignal().Connect(_popUpShowingEventCallbackDelegate); - } - } - } - - remove - { - lock(this) - { - if (_popUpShowingEventHandler != null) - { - this.ShowingSignal().Disconnect(_popUpShowingEventCallbackDelegate); - } - - _popUpShowingEventHandler -= value; - } - } - } - - // Callback for ShowingSignal - private void OnShowing() - { - ShowingEventArgs e = new ShowingEventArgs(); - - if (_popUpShowingEventHandler != null) - { - //here we send all data to user event handlers - _popUpShowingEventHandler(this, e); - } - } - - - public event DaliEventHandler Shown - { - add - { - lock(this) - { - // Restricted to only one listener - if (_popUpShownEventHandler == null) - { - _popUpShownEventHandler += value; - - _popUpShownEventCallbackDelegate = new ShownEventCallbackDelegate(OnShown); - this.ShownSignal().Connect(_popUpShownEventCallbackDelegate); - } - } - } - - remove - { - lock(this) - { - if (_popUpShownEventHandler != null) - { - this.ShownSignal().Disconnect(_popUpShownEventCallbackDelegate); - } - - _popUpShownEventHandler -= value; - } - } - } - - // Callback for ShownSignal - private void OnShown() - { - ShownEventArgs e = new ShownEventArgs(); - - if (_popUpShownEventHandler != null) - { - //here we send all data to user event handlers - _popUpShownEventHandler(this, e); - } - } - - public event DaliEventHandler Hiding - { - add - { - lock(this) - { - // Restricted to only one listener - if (_popUpHidingEventHandler == null) - { - _popUpHidingEventHandler += value; - - _popUpHidingEventCallbackDelegate = new HidingEventCallbackDelegate(OnHiding); - this.HidingSignal().Connect(_popUpHidingEventCallbackDelegate); - } - } - } - - remove - { - lock(this) - { - if (_popUpHidingEventHandler != null) - { - this.HidingSignal().Disconnect(_popUpHidingEventCallbackDelegate); - } - - _popUpHidingEventHandler -= value; - } - } - } - - // Callback for HidingSignal - private void OnHiding() - { - HidingEventArgs e = new HidingEventArgs(); - - if (_popUpHidingEventHandler != null) - { - //here we send all data to user event handlers - _popUpHidingEventHandler(this, e); - } - } - - public event DaliEventHandler Hidden - { - add - { - lock(this) - { - // Restricted to only one listener - if (_popUpHiddenEventHandler == null) - { - _popUpHiddenEventHandler += value; - - _popUpHiddenEventCallbackDelegate = new HiddenEventCallbackDelegate(OnHidden); - this.HiddenSignal().Connect(_popUpHiddenEventCallbackDelegate); - } - } - } - - remove - { - lock(this) - { - if (_popUpHiddenEventHandler != null) - { - this.HiddenSignal().Disconnect(_popUpHiddenEventCallbackDelegate); - } - - _popUpHiddenEventHandler -= value; - } - } - } - - // Callback for HiddenSignal - private void OnHidden() - { - HiddenEventArgs e = new HiddenEventArgs(); - - if (_popUpHiddenEventHandler != null) - { - //here we send all data to user event handlers - _popUpHiddenEventHandler(this, e); - } - } - - public class Property : global::System.IDisposable { - private global::System.Runtime.InteropServices.HandleRef swigCPtr; - protected bool swigCMemOwn; - - internal Property(global::System.IntPtr cPtr, bool cMemoryOwn) { - swigCMemOwn = cMemoryOwn; - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); - } - - internal static global::System.Runtime.InteropServices.HandleRef getCPtr(Property obj) { - return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; - } - - ~Property() { - Dispose(); - } - - public virtual void Dispose() { - lock(this) { - if (swigCPtr.Handle != global::System.IntPtr.Zero) { - if (swigCMemOwn) { - swigCMemOwn = false; - NDalicPINVOKE.delete_Popup_Property(swigCPtr); - } - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); - } - global::System.GC.SuppressFinalize(this); - } - } - - public Property() : this(NDalicPINVOKE.new_Popup_Property(), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public static readonly int TITLE = NDalicPINVOKE.Popup_Property_TITLE_get(); - public static readonly int CONTENT = NDalicPINVOKE.Popup_Property_CONTENT_get(); - public static readonly int FOOTER = NDalicPINVOKE.Popup_Property_FOOTER_get(); - public static readonly int DISPLAY_STATE = NDalicPINVOKE.Popup_Property_DISPLAY_STATE_get(); - public static readonly int TOUCH_TRANSPARENT = NDalicPINVOKE.Popup_Property_TOUCH_TRANSPARENT_get(); - public static readonly int TAIL_VISIBILITY = NDalicPINVOKE.Popup_Property_TAIL_VISIBILITY_get(); - public static readonly int TAIL_POSITION = NDalicPINVOKE.Popup_Property_TAIL_POSITION_get(); - public static readonly int CONTEXTUAL_MODE = NDalicPINVOKE.Popup_Property_CONTEXTUAL_MODE_get(); - public static readonly int ANIMATION_DURATION = NDalicPINVOKE.Popup_Property_ANIMATION_DURATION_get(); - public static readonly int ANIMATION_MODE = NDalicPINVOKE.Popup_Property_ANIMATION_MODE_get(); - public static readonly int ENTRY_ANIMATION = NDalicPINVOKE.Popup_Property_ENTRY_ANIMATION_get(); - public static readonly int EXIT_ANIMATION = NDalicPINVOKE.Popup_Property_EXIT_ANIMATION_get(); - public static readonly int AUTO_HIDE_DELAY = NDalicPINVOKE.Popup_Property_AUTO_HIDE_DELAY_get(); - public static readonly int BACKING_ENABLED = NDalicPINVOKE.Popup_Property_BACKING_ENABLED_get(); - public static readonly int BACKING_COLOR = NDalicPINVOKE.Popup_Property_BACKING_COLOR_get(); - public static readonly int POPUP_BACKGROUND_IMAGE = NDalicPINVOKE.Popup_Property_POPUP_BACKGROUND_IMAGE_get(); - public static readonly int POPUP_BACKGROUND_BORDER = NDalicPINVOKE.Popup_Property_POPUP_BACKGROUND_BORDER_get(); - public static readonly int TAIL_UP_IMAGE = NDalicPINVOKE.Popup_Property_TAIL_UP_IMAGE_get(); - public static readonly int TAIL_DOWN_IMAGE = NDalicPINVOKE.Popup_Property_TAIL_DOWN_IMAGE_get(); - public static readonly int TAIL_LEFT_IMAGE = NDalicPINVOKE.Popup_Property_TAIL_LEFT_IMAGE_get(); - public static readonly int TAIL_RIGHT_IMAGE = NDalicPINVOKE.Popup_Property_TAIL_RIGHT_IMAGE_get(); - - } - - public Popup () : this (NDalicPINVOKE.Popup_New(), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - - } - public Popup(Popup handle) : this(NDalicPINVOKE.new_Popup__SWIG_1(Popup.getCPtr(handle)), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public Popup Assign(Popup handle) { - Popup ret = new Popup(NDalicPINVOKE.Popup_Assign(swigCPtr, Popup.getCPtr(handle)), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public new static Popup DownCast(BaseHandle handle) { - Popup ret = new Popup(NDalicPINVOKE.Popup_DownCast(BaseHandle.getCPtr(handle)), true); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public void SetTitle(Actor titleActor) { - NDalicPINVOKE.Popup_SetTitle(swigCPtr, Actor.getCPtr(titleActor)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public Actor GetTitle() { - Actor ret = new Actor(NDalicPINVOKE.Popup_GetTitle(swigCPtr), true); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public void SetContent(Actor content) { - NDalicPINVOKE.Popup_SetContent(swigCPtr, Actor.getCPtr(content)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public Actor GetContent() { - Actor ret = new Actor(NDalicPINVOKE.Popup_GetContent(swigCPtr), true); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public void SetFooter(Actor footer) { - NDalicPINVOKE.Popup_SetFooter(swigCPtr, Actor.getCPtr(footer)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public Actor GetFooter() { - Actor ret = new Actor(NDalicPINVOKE.Popup_GetFooter(swigCPtr), true); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public void SetDisplayState(Popup.DisplayStateType displayState) { - NDalicPINVOKE.Popup_SetDisplayState(swigCPtr, (int)displayState); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public Popup.DisplayStateType GetDisplayState() { - Popup.DisplayStateType ret = (Popup.DisplayStateType)NDalicPINVOKE.Popup_GetDisplayState(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public VoidSignal OutsideTouchedSignal() { - VoidSignal ret = new VoidSignal(NDalicPINVOKE.Popup_OutsideTouchedSignal(swigCPtr), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public VoidSignal ShowingSignal() { - VoidSignal ret = new VoidSignal(NDalicPINVOKE.Popup_ShowingSignal(swigCPtr), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public VoidSignal ShownSignal() { - VoidSignal ret = new VoidSignal(NDalicPINVOKE.Popup_ShownSignal(swigCPtr), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public VoidSignal HidingSignal() { - VoidSignal ret = new VoidSignal(NDalicPINVOKE.Popup_HidingSignal(swigCPtr), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public VoidSignal HiddenSignal() { - VoidSignal ret = new VoidSignal(NDalicPINVOKE.Popup_HiddenSignal(swigCPtr), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public enum PropertyRange { - PROPERTY_START_INDEX = PropertyRanges.PROPERTY_REGISTRATION_START_INDEX, - PROPERTY_END_INDEX = View.PropertyRange.PROPERTY_START_INDEX+1000 - } - - public enum DisplayStateType { - SHOWING, - SHOWN, - HIDING, - HIDDEN - } - - public enum AnimationModeType { - NONE, - ZOOM, - FADE, - CUSTOM - } - - public enum ContextualModeType { - NON_CONTEXTUAL, - ABOVE, - RIGHT, - BELOW, - LEFT - } - - public NUI.Property.Map Title - { - get - { - NUI.Property.Map temp = new NUI.Property.Map(); - GetProperty( Popup.Property.TITLE).Get( temp ); - return temp; - } - set - { - SetProperty( Popup.Property.TITLE, new NUI.Property.Value( value ) ); - } - } - public NUI.Property.Map Content - { - get - { - NUI.Property.Map temp = new NUI.Property.Map(); - GetProperty( Popup.Property.CONTENT).Get( temp ); - return temp; - } - set - { - SetProperty( Popup.Property.CONTENT, new NUI.Property.Value( value ) ); - } - } - public NUI.Property.Map Footer - { - get - { - NUI.Property.Map temp = new NUI.Property.Map(); - GetProperty( Popup.Property.FOOTER).Get( temp ); - return temp; - } - set - { - SetProperty( Popup.Property.FOOTER, new NUI.Property.Value( value ) ); - } - } - public string DisplayState - { - get - { - string temp; - GetProperty( Popup.Property.DISPLAY_STATE).Get( out temp ); - return temp; - } - set - { - SetProperty( Popup.Property.DISPLAY_STATE, new NUI.Property.Value( value ) ); - } - } - public bool TouchTransparent - { - get - { - bool temp = false; - GetProperty( Popup.Property.TOUCH_TRANSPARENT).Get( ref temp ); - return temp; - } - set - { - SetProperty( Popup.Property.TOUCH_TRANSPARENT, new NUI.Property.Value( value ) ); - } - } - public bool TailVisibility - { - get - { - bool temp = false; - GetProperty( Popup.Property.TAIL_VISIBILITY).Get( ref temp ); - return temp; - } - set - { - SetProperty( Popup.Property.TAIL_VISIBILITY, new NUI.Property.Value( value ) ); - } - } - public Vector3 TailPosition - { - get - { - Vector3 temp = new Vector3(0.0f,0.0f,0.0f); - GetProperty( Popup.Property.TAIL_POSITION).Get( temp ); - return temp; - } - set - { - SetProperty( Popup.Property.TAIL_POSITION, new NUI.Property.Value( value ) ); - } - } - public string ContextualMode - { - get - { - string temp; - GetProperty( Popup.Property.CONTEXTUAL_MODE).Get( out temp ); - return temp; - } - set - { - SetProperty( Popup.Property.CONTEXTUAL_MODE, new NUI.Property.Value( value ) ); - } - } - public float AnimationDuration - { - get - { - float temp = 0.0f; - GetProperty( Popup.Property.ANIMATION_DURATION).Get( ref temp ); - return temp; - } - set - { - SetProperty( Popup.Property.ANIMATION_DURATION, new NUI.Property.Value( value ) ); - } - } - public string AnimationMode - { - get - { - string temp; - GetProperty( Popup.Property.ANIMATION_MODE).Get( out temp ); - return temp; - } - set - { - SetProperty( Popup.Property.ANIMATION_MODE, new NUI.Property.Value( value ) ); - } - } - public NUI.Property.Map EntryAnimation - { - get - { - NUI.Property.Map temp = new NUI.Property.Map(); - GetProperty( Popup.Property.ENTRY_ANIMATION).Get( temp ); - return temp; - } - set - { - SetProperty( Popup.Property.ENTRY_ANIMATION, new NUI.Property.Value( value ) ); - } - } - public NUI.Property.Map ExitAnimation - { - get - { - NUI.Property.Map temp = new NUI.Property.Map(); - GetProperty( Popup.Property.EXIT_ANIMATION).Get( temp ); - return temp; - } - set - { - SetProperty( Popup.Property.EXIT_ANIMATION, new NUI.Property.Value( value ) ); - } - } - public int AutoHideDelay - { - get - { - int temp = 0; - GetProperty( Popup.Property.AUTO_HIDE_DELAY).Get( ref temp ); - return temp; - } - set - { - SetProperty( Popup.Property.AUTO_HIDE_DELAY, new NUI.Property.Value( value ) ); - } - } - public bool BackingEnabled - { - get - { - bool temp = false; - GetProperty( Popup.Property.BACKING_ENABLED).Get( ref temp ); - return temp; - } - set - { - SetProperty( Popup.Property.BACKING_ENABLED, new NUI.Property.Value( value ) ); - } - } - public Vector4 BackingColor - { - get - { - Vector4 temp = new Vector4(0.0f,0.0f,0.0f,0.0f); - GetProperty( Popup.Property.BACKING_COLOR).Get( temp ); - return temp; - } - set - { - SetProperty( Popup.Property.BACKING_COLOR, new NUI.Property.Value( value ) ); - } - } - public string PopupBackgroundImage - { - get - { - string temp; - GetProperty( Popup.Property.POPUP_BACKGROUND_IMAGE).Get( out temp ); - return temp; - } - set - { - SetProperty( Popup.Property.POPUP_BACKGROUND_IMAGE, new NUI.Property.Value( value ) ); - } - } - public RectInteger PopupBackgroundBorder - { - get - { - RectInteger temp = new RectInteger(0,0,0,0); - GetProperty( Popup.Property.POPUP_BACKGROUND_BORDER).Get( temp ); - return temp; - } - set - { - SetProperty( Popup.Property.POPUP_BACKGROUND_BORDER, new NUI.Property.Value( value ) ); - } - } - public string TailUpImage - { - get - { - string temp; - GetProperty( Popup.Property.TAIL_UP_IMAGE).Get( out temp ); - return temp; - } - set - { - SetProperty( Popup.Property.TAIL_UP_IMAGE, new NUI.Property.Value( value ) ); - } - } - public string TailDownImage - { - get - { - string temp; - GetProperty( Popup.Property.TAIL_DOWN_IMAGE).Get( out temp ); - return temp; - } - set - { - SetProperty( Popup.Property.TAIL_DOWN_IMAGE, new NUI.Property.Value( value ) ); - } - } - public string TailLeftImage - { - get - { - string temp; - GetProperty( Popup.Property.TAIL_LEFT_IMAGE).Get( out temp ); - return temp; - } - set - { - SetProperty( Popup.Property.TAIL_LEFT_IMAGE, new NUI.Property.Value( value ) ); - } - } - public string TailRightImage - { - get - { - string temp; - GetProperty( Popup.Property.TAIL_RIGHT_IMAGE).Get( out temp ); - return temp; - } - set - { - SetProperty( Popup.Property.TAIL_RIGHT_IMAGE, new NUI.Property.Value( value ) ); - } - } - -} - -} +// Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved +// PROPRIETARY/CONFIDENTIAL +// This software is the confidential and proprietary +// information of SAMSUNG ELECTRONICS ("Confidential Information"). You shall +// not disclose such Confidential Information and shall use it only in +// accordance with the terms of the license agreement you entered into with +// SAMSUNG ELECTRONICS. SAMSUNG make no representations or warranties about the +// suitability of the software, either express or implied, including but not +// limited to the implied warranties of merchantability, fitness for a +// particular purpose, or non-infringement. SAMSUNG shall not be liable for any +// damages suffered by licensee as a result of using, modifying or distributing +// this software or its derivatives. + +// Copyright (c) 2017 Samsung Electronics Co., Ltd. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// + +// This File has been auto-generated by SWIG and then modified using DALi Ruby Scripts +// Some have been manually changed + + +namespace Tizen.NUI +{ + + using System; + using System.Runtime.InteropServices; + + + public class Popup : View + { + private global::System.Runtime.InteropServices.HandleRef swigCPtr; + + internal Popup(global::System.IntPtr cPtr, bool cMemoryOwn) : base(NDalicPINVOKE.Popup_SWIGUpcast(cPtr), cMemoryOwn) + { + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); + } + + internal static global::System.Runtime.InteropServices.HandleRef getCPtr(Popup obj) + { + return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; + } + + ~Popup() + { + DisposeQueue.Instance.Add(this); + } + + public override void Dispose() + { + if (!Stage.IsInstalled()) + { + DisposeQueue.Instance.Add(this); + return; + } + + lock (this) + { + if (swigCPtr.Handle != global::System.IntPtr.Zero) + { + if (swigCMemOwn) + { + swigCMemOwn = false; + NDalicPINVOKE.delete_Popup(swigCPtr); + } + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); + } + global::System.GC.SuppressFinalize(this); + base.Dispose(); + } + } + + + + public class OutsideTouchedEventArgs : EventArgs + { + } + + public class ShowingEventArgs : EventArgs + { + } + + public class ShownEventArgs : EventArgs + { + } + + public class HidingEventArgs : EventArgs + { + } + + public class HiddenEventArgs : EventArgs + { + } + + [UnmanagedFunctionPointer(CallingConvention.StdCall)] + private delegate void OutsideTouchedEventCallback(); + private OutsideTouchedEventCallback _popUpOutsideTouchedEventCallback; + private EventHandler _popUpOutsideTouchedEventHandler; + + [UnmanagedFunctionPointer(CallingConvention.StdCall)] + private delegate void ShowingEventCallback(); + private ShowingEventCallback _popUpShowingEventCallback; + private EventHandler _popUpShowingEventHandler; + + [UnmanagedFunctionPointer(CallingConvention.StdCall)] + private delegate void ShownEventCallback(); + private ShownEventCallback _popUpShownEventCallback; + private EventHandler _popUpShownEventHandler; + + [UnmanagedFunctionPointer(CallingConvention.StdCall)] + private delegate void HidingEventCallback(); + private HidingEventCallback _popUpHidingEventCallback; + private EventHandler _popUpHidingEventHandler; + + [UnmanagedFunctionPointer(CallingConvention.StdCall)] + private delegate void HiddenEventCallback(); + private HiddenEventCallback _popUpHiddenEventCallback; + private EventHandler _popUpHiddenEventHandler; + + public event EventHandler OutsideTouched + { + add + { + if (_popUpOutsideTouchedEventCallback == null) + { + _popUpOutsideTouchedEventCallback = OnOutsideTouched; + OutsideTouchedSignal().Connect(_popUpOutsideTouchedEventCallback); + } + _popUpOutsideTouchedEventHandler += value; + } + remove + { + if (_popUpOutsideTouchedEventCallback != null) + { + OutsideTouchedSignal().Disconnect(_popUpOutsideTouchedEventCallback); + + } + _popUpOutsideTouchedEventHandler -= value; + } + } + + private void OnOutsideTouched() + { + OutsideTouchedEventArgs e = new OutsideTouchedEventArgs(); + + if (_popUpOutsideTouchedEventHandler != null) + { + _popUpOutsideTouchedEventHandler(this, e); + } + } + + public event EventHandler Showing + { + add + { + if (_popUpShowingEventCallback == null) + { + _popUpShowingEventCallback = OnShowing; + ShowingSignal().Connect(_popUpShowingEventCallback); + } + _popUpShowingEventHandler += value; + } + + remove + { + if (_popUpShowingEventCallback != null) + { + ShowingSignal().Disconnect(_popUpShowingEventCallback); + } + _popUpShowingEventHandler -= value; + } + } + + private void OnShowing() + { + ShowingEventArgs e = new ShowingEventArgs(); + + if (_popUpShowingEventHandler != null) + { + _popUpShowingEventHandler(this, e); + } + } + + + public event EventHandler Shown + { + add + { + if (_popUpShownEventCallback != null) + { + _popUpShownEventCallback = OnShown; + ShownSignal().Connect(_popUpShownEventCallback); + } + _popUpShownEventHandler += value; + } + + remove + { + if (_popUpShownEventCallback == null) + { + ShownSignal().Disconnect(_popUpShownEventCallback); + } + _popUpShownEventHandler -= value; + } + } + + private void OnShown() + { + ShownEventArgs e = new ShownEventArgs(); + + if (_popUpShownEventHandler != null) + { + _popUpShownEventHandler(this, e); + } + } + + public event EventHandler Hiding + { + add + { + if (_popUpHidingEventCallback == null) + { + _popUpHidingEventCallback = OnHiding; + HidingSignal().Connect(_popUpHidingEventCallback); + } + _popUpHidingEventHandler += value; + } + + remove + { + if (_popUpHidingEventCallback != null) + { + HidingSignal().Disconnect(_popUpHidingEventCallback); + } + _popUpHidingEventHandler -= value; + } + } + + private void OnHiding() + { + HidingEventArgs e = new HidingEventArgs(); + + if (_popUpHidingEventHandler != null) + { + _popUpHidingEventHandler(this, e); + } + } + + public event EventHandler Hidden + { + add + { + if (_popUpHiddenEventCallback == null) + { + _popUpHiddenEventCallback = OnHidden; + HiddenSignal().Connect(_popUpHiddenEventCallback); + } + _popUpHiddenEventHandler += value; + } + remove + { + if (_popUpHiddenEventCallback != null) + { + HiddenSignal().Disconnect(_popUpHiddenEventCallback); + } + _popUpHiddenEventHandler -= value; + } + } + + private void OnHidden() + { + HiddenEventArgs e = new HiddenEventArgs(); + + if (_popUpHiddenEventHandler != null) + { + _popUpHiddenEventHandler(this, e); + } + } + + internal class Property : global::System.IDisposable + { + private global::System.Runtime.InteropServices.HandleRef swigCPtr; + protected bool swigCMemOwn; + + internal Property(global::System.IntPtr cPtr, bool cMemoryOwn) + { + swigCMemOwn = cMemoryOwn; + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); + } + + internal static global::System.Runtime.InteropServices.HandleRef getCPtr(Property obj) + { + return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; + } + + ~Property() + { + Dispose(); + } + + public virtual void Dispose() + { + lock (this) + { + if (swigCPtr.Handle != global::System.IntPtr.Zero) + { + if (swigCMemOwn) + { + swigCMemOwn = false; + NDalicPINVOKE.delete_Popup_Property(swigCPtr); + } + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); + } + global::System.GC.SuppressFinalize(this); + } + } + + internal Property() : this(NDalicPINVOKE.new_Popup_Property(), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + internal static readonly int TITLE = NDalicPINVOKE.Popup_Property_TITLE_get(); + internal static readonly int CONTENT = NDalicPINVOKE.Popup_Property_CONTENT_get(); + internal static readonly int FOOTER = NDalicPINVOKE.Popup_Property_FOOTER_get(); + internal static readonly int DISPLAY_STATE = NDalicPINVOKE.Popup_Property_DISPLAY_STATE_get(); + internal static readonly int TOUCH_TRANSPARENT = NDalicPINVOKE.Popup_Property_TOUCH_TRANSPARENT_get(); + internal static readonly int TAIL_VISIBILITY = NDalicPINVOKE.Popup_Property_TAIL_VISIBILITY_get(); + internal static readonly int TAIL_POSITION = NDalicPINVOKE.Popup_Property_TAIL_POSITION_get(); + internal static readonly int CONTEXTUAL_MODE = NDalicPINVOKE.Popup_Property_CONTEXTUAL_MODE_get(); + internal static readonly int ANIMATION_DURATION = NDalicPINVOKE.Popup_Property_ANIMATION_DURATION_get(); + internal static readonly int ANIMATION_MODE = NDalicPINVOKE.Popup_Property_ANIMATION_MODE_get(); + internal static readonly int ENTRY_ANIMATION = NDalicPINVOKE.Popup_Property_ENTRY_ANIMATION_get(); + internal static readonly int EXIT_ANIMATION = NDalicPINVOKE.Popup_Property_EXIT_ANIMATION_get(); + internal static readonly int AUTO_HIDE_DELAY = NDalicPINVOKE.Popup_Property_AUTO_HIDE_DELAY_get(); + internal static readonly int BACKING_ENABLED = NDalicPINVOKE.Popup_Property_BACKING_ENABLED_get(); + internal static readonly int BACKING_COLOR = NDalicPINVOKE.Popup_Property_BACKING_COLOR_get(); + internal static readonly int POPUP_BACKGROUND_IMAGE = NDalicPINVOKE.Popup_Property_POPUP_BACKGROUND_IMAGE_get(); + internal static readonly int POPUP_BACKGROUND_BORDER = NDalicPINVOKE.Popup_Property_POPUP_BACKGROUND_BORDER_get(); + internal static readonly int TAIL_UP_IMAGE = NDalicPINVOKE.Popup_Property_TAIL_UP_IMAGE_get(); + internal static readonly int TAIL_DOWN_IMAGE = NDalicPINVOKE.Popup_Property_TAIL_DOWN_IMAGE_get(); + internal static readonly int TAIL_LEFT_IMAGE = NDalicPINVOKE.Popup_Property_TAIL_LEFT_IMAGE_get(); + internal static readonly int TAIL_RIGHT_IMAGE = NDalicPINVOKE.Popup_Property_TAIL_RIGHT_IMAGE_get(); + + } + + public Popup() : this(NDalicPINVOKE.Popup_New(), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + + } + internal Popup(Popup handle) : this(NDalicPINVOKE.new_Popup__SWIG_1(Popup.getCPtr(handle)), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + internal Popup Assign(Popup handle) + { + Popup ret = new Popup(NDalicPINVOKE.Popup_Assign(swigCPtr, Popup.getCPtr(handle)), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public new static Popup DownCast(BaseHandle handle) + { + Popup ret = new Popup(NDalicPINVOKE.Popup_DownCast(BaseHandle.getCPtr(handle)), true); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public void SetTitle(Actor titleActor) + { + NDalicPINVOKE.Popup_SetTitle(swigCPtr, Actor.getCPtr(titleActor)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + internal Actor GetTitle() + { + Actor ret = new Actor(NDalicPINVOKE.Popup_GetTitle(swigCPtr), true); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public void SetContent(Actor content) + { + NDalicPINVOKE.Popup_SetContent(swigCPtr, Actor.getCPtr(content)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + internal Actor GetContent() + { + Actor ret = new Actor(NDalicPINVOKE.Popup_GetContent(swigCPtr), true); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public void SetFooter(Actor footer) + { + NDalicPINVOKE.Popup_SetFooter(swigCPtr, Actor.getCPtr(footer)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + internal Actor GetFooter() + { + Actor ret = new Actor(NDalicPINVOKE.Popup_GetFooter(swigCPtr), true); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public void SetDisplayState(Popup.DisplayStateType displayState) + { + NDalicPINVOKE.Popup_SetDisplayState(swigCPtr, (int)displayState); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + internal Popup.DisplayStateType GetDisplayState() + { + Popup.DisplayStateType ret = (Popup.DisplayStateType)NDalicPINVOKE.Popup_GetDisplayState(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal VoidSignal OutsideTouchedSignal() + { + VoidSignal ret = new VoidSignal(NDalicPINVOKE.Popup_OutsideTouchedSignal(swigCPtr), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal VoidSignal ShowingSignal() + { + VoidSignal ret = new VoidSignal(NDalicPINVOKE.Popup_ShowingSignal(swigCPtr), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal VoidSignal ShownSignal() + { + VoidSignal ret = new VoidSignal(NDalicPINVOKE.Popup_ShownSignal(swigCPtr), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal VoidSignal HidingSignal() + { + VoidSignal ret = new VoidSignal(NDalicPINVOKE.Popup_HidingSignal(swigCPtr), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal VoidSignal HiddenSignal() + { + VoidSignal ret = new VoidSignal(NDalicPINVOKE.Popup_HiddenSignal(swigCPtr), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal enum PropertyRange + { + PROPERTY_START_INDEX = PropertyRanges.PROPERTY_REGISTRATION_START_INDEX, + PROPERTY_END_INDEX = View.PropertyRange.PROPERTY_START_INDEX + 1000 + } + + public enum DisplayStateType + { + Showing, + Shown, + Hiding, + Hidden + } + + public enum AnimationModeType + { + None, + Zoom, + Fade, + Custom + } + + public enum ContextualModeType + { + NonContextual, + Above, + Rright, + Below, + Left + } + + public PropertyMap Title + { + get + { + PropertyMap temp = new PropertyMap(); + GetProperty(Popup.Property.TITLE).Get(temp); + return temp; + } + set + { + SetProperty(Popup.Property.TITLE, new Tizen.NUI.PropertyValue(value)); + } + } + public PropertyMap Content + { + get + { + PropertyMap temp = new PropertyMap(); + GetProperty(Popup.Property.CONTENT).Get(temp); + return temp; + } + set + { + SetProperty(Popup.Property.CONTENT, new Tizen.NUI.PropertyValue(value)); + } + } + public PropertyMap Footer + { + get + { + PropertyMap temp = new PropertyMap(); + GetProperty(Popup.Property.FOOTER).Get(temp); + return temp; + } + set + { + SetProperty(Popup.Property.FOOTER, new Tizen.NUI.PropertyValue(value)); + } + } + public string DisplayState + { + get + { + string temp; + GetProperty(Popup.Property.DISPLAY_STATE).Get(out temp); + return temp; + } + set + { + SetProperty(Popup.Property.DISPLAY_STATE, new Tizen.NUI.PropertyValue(value)); + } + } + public bool TouchTransparent + { + get + { + bool temp = false; + GetProperty(Popup.Property.TOUCH_TRANSPARENT).Get(ref temp); + return temp; + } + set + { + SetProperty(Popup.Property.TOUCH_TRANSPARENT, new Tizen.NUI.PropertyValue(value)); + } + } + public bool TailVisibility + { + get + { + bool temp = false; + GetProperty(Popup.Property.TAIL_VISIBILITY).Get(ref temp); + return temp; + } + set + { + SetProperty(Popup.Property.TAIL_VISIBILITY, new Tizen.NUI.PropertyValue(value)); + } + } + public Vector3 TailPosition + { + get + { + Vector3 temp = new Vector3(0.0f, 0.0f, 0.0f); + GetProperty(Popup.Property.TAIL_POSITION).Get(temp); + return temp; + } + set + { + SetProperty(Popup.Property.TAIL_POSITION, new Tizen.NUI.PropertyValue(value)); + } + } + public string ContextualMode + { + get + { + string temp; + GetProperty(Popup.Property.CONTEXTUAL_MODE).Get(out temp); + return temp; + } + set + { + SetProperty(Popup.Property.CONTEXTUAL_MODE, new Tizen.NUI.PropertyValue(value)); + } + } + public float AnimationDuration + { + get + { + float temp = 0.0f; + GetProperty(Popup.Property.ANIMATION_DURATION).Get(ref temp); + return temp; + } + set + { + SetProperty(Popup.Property.ANIMATION_DURATION, new Tizen.NUI.PropertyValue(value)); + } + } + public string AnimationMode + { + get + { + string temp; + GetProperty(Popup.Property.ANIMATION_MODE).Get(out temp); + return temp; + } + set + { + SetProperty(Popup.Property.ANIMATION_MODE, new Tizen.NUI.PropertyValue(value)); + } + } + public PropertyMap EntryAnimation + { + get + { + PropertyMap temp = new PropertyMap(); + GetProperty(Popup.Property.ENTRY_ANIMATION).Get(temp); + return temp; + } + set + { + SetProperty(Popup.Property.ENTRY_ANIMATION, new Tizen.NUI.PropertyValue(value)); + } + } + public PropertyMap ExitAnimation + { + get + { + PropertyMap temp = new PropertyMap(); + GetProperty(Popup.Property.EXIT_ANIMATION).Get(temp); + return temp; + } + set + { + SetProperty(Popup.Property.EXIT_ANIMATION, new Tizen.NUI.PropertyValue(value)); + } + } + public int AutoHideDelay + { + get + { + int temp = 0; + GetProperty(Popup.Property.AUTO_HIDE_DELAY).Get(ref temp); + return temp; + } + set + { + SetProperty(Popup.Property.AUTO_HIDE_DELAY, new Tizen.NUI.PropertyValue(value)); + } + } + public bool BackingEnabled + { + get + { + bool temp = false; + GetProperty(Popup.Property.BACKING_ENABLED).Get(ref temp); + return temp; + } + set + { + SetProperty(Popup.Property.BACKING_ENABLED, new Tizen.NUI.PropertyValue(value)); + } + } + public Vector4 BackingColor + { + get + { + Vector4 temp = new Vector4(0.0f, 0.0f, 0.0f, 0.0f); + GetProperty(Popup.Property.BACKING_COLOR).Get(temp); + return temp; + } + set + { + SetProperty(Popup.Property.BACKING_COLOR, new Tizen.NUI.PropertyValue(value)); + } + } + public string PopupBackgroundImage + { + get + { + string temp; + GetProperty(Popup.Property.POPUP_BACKGROUND_IMAGE).Get(out temp); + return temp; + } + set + { + SetProperty(Popup.Property.POPUP_BACKGROUND_IMAGE, new Tizen.NUI.PropertyValue(value)); + } + } + public RectInteger PopupBackgroundBorder + { + get + { + RectInteger temp = new RectInteger(0, 0, 0, 0); + GetProperty(Popup.Property.POPUP_BACKGROUND_BORDER).Get(temp); + return temp; + } + set + { + SetProperty(Popup.Property.POPUP_BACKGROUND_BORDER, new Tizen.NUI.PropertyValue(value)); + } + } + public string TailUpImage + { + get + { + string temp; + GetProperty(Popup.Property.TAIL_UP_IMAGE).Get(out temp); + return temp; + } + set + { + SetProperty(Popup.Property.TAIL_UP_IMAGE, new Tizen.NUI.PropertyValue(value)); + } + } + public string TailDownImage + { + get + { + string temp; + GetProperty(Popup.Property.TAIL_DOWN_IMAGE).Get(out temp); + return temp; + } + set + { + SetProperty(Popup.Property.TAIL_DOWN_IMAGE, new Tizen.NUI.PropertyValue(value)); + } + } + public string TailLeftImage + { + get + { + string temp; + GetProperty(Popup.Property.TAIL_LEFT_IMAGE).Get(out temp); + return temp; + } + set + { + SetProperty(Popup.Property.TAIL_LEFT_IMAGE, new Tizen.NUI.PropertyValue(value)); + } + } + public string TailRightImage + { + get + { + string temp; + GetProperty(Popup.Property.TAIL_RIGHT_IMAGE).Get(out temp); + return temp; + } + set + { + SetProperty(Popup.Property.TAIL_RIGHT_IMAGE, new Tizen.NUI.PropertyValue(value)); + } + } + + } + +} diff --git a/Tizen.NUI/src/public/Position.cs b/Tizen.NUI/src/public/Position.cs index 906abbb..3946baa 100755 --- a/Tizen.NUI/src/public/Position.cs +++ b/Tizen.NUI/src/public/Position.cs @@ -1,205 +1,477 @@ -/* - * Copyright (c) 2016 Samsung Electronics Co., Ltd. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - */ - -namespace NUI -{ - using System; - - public class Position - { - - private float x; - private float y; - private float z; - - /** - * @brief constructor - * - * @since 1.0.0 - */ - public Position() - { - x = 0.0f; - y = 0.0f; - z = 0.0f; - } - - /** - * @brief constructor - * - * @since 1.0.0 - * @param [in] a The Position X. - * @param [in] b The Position Y. - * @param [in] c The Position Z. - */ - public Position(float a, float b, float c) - { - x = a; - y = b; - z = c; - } - - /** - * @brief constructor - * - * @since 1.0.0 - * @param [in] o The Vector Position X, Y, Z. - */ - public Position(Vector3 o) - { - x = o.X; - y = o.Y; - z = o.Z; - } - - ///< name "X", type float (Position X value) - //@since 1.0.0 - public float X - { - get { return x; } - set { x = value; } - } - - ///< name "Y", type float (Position Y value) - //@since 1.0.0 - public float Y - { - get { return y; } - set { y = value; } - } - - ///< name "Z", type float (Position Z value) - //@since 1.0.0 - public float Z - { - get { return z; } - set { z = value; } - } - - /** - * @brief operator+ - * - * @since 1.0.0 - * @param [in] l The Position to add. - * @param [in] r The Position to add - * @return A reference to this - */ - public static Position operator +(Position l, Position r) - { - return new Position(l.X + r.X, l.Y + r.Y, l.Z + r.Z); - } - - /** - * @brief operator- - * - * @since 1.0.0 - * @param [in] l The Position to substract. - * @param [in] r The Position to substract - * @return A reference to this - */ - public static Position operator -(Position l, Position r) - { - return new Position(l.X - r.X, l.Y - r.Y, l.Z - r.Z); - } - - /** - * @brief operator* - * - * @since 1.0.0 - * @param [in] a The Position to multiply. - * @param [in] b The constant to multiply of type double. - * @return A reference to this - */ - public static Position operator *(Position a, double b) - { - return new Position((int)(a.X * b), (int)(a.Y * b), (int)(a.Z * b)); - } - - /** - * @brief operator/ - * - * @since 1.0.0 - * @param [in] a The Position to divide. - * @param [in] b The Position to divide - * @return float value of division operation - */ - public static float operator /(Position a, Position b) - { - return (float)System.Math.Sqrt((a.X / b.X) * (a.Y / b.Y) * (a.Z / b.Z)); - } - - /** - * @brief Operator == - * - * @since 1.0.0 - * @param [in] a The Position object to compare. - * @param [in] b The Position object to compare. - * @return bool, whether Position are equal or not - */ - public static bool operator == (Position a, Position b) - { - return a.X == b.X && a.Y == b.Y && a.Z == b.Z; - } - - /** - * @brief Operator != - * - * @since 1.0.0 - * @param [in] a The Position object to compare. - * @param [in] b The Position object to compare. - * @return bool, whether Position are equal or not - */ - public static bool operator != (Position a, Position b) - { - return a.X != b.X || a.Y != b.Y || a.Z == b.Z; - } - - /** - * @brief GetHashCode - * - * @since 1.0.0 - * @return int, hascode of position - */ - public override int GetHashCode() - { - return base.GetHashCode(); - } - - /** - * @brief Clone - * - * @since 1.0.0 - * @return Position object - */ - public Position Clone() - { - Position copy = new Position(X, Y, Z); - return copy; - } - - // User-defined conversion from Position to Vector3 - public static implicit operator Vector3(Position pos) - { - return new Vector3(pos.x, pos.y, pos.z); - } - - public static implicit operator Position(Vector3 vec) - { - return new Position(vec.X, vec.Y, vec.Z); - } - } -} +// Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved +// PROPRIETARY/CONFIDENTIAL +// This software is the confidential and proprietary +// information of SAMSUNG ELECTRONICS ("Confidential Information"). You shall +// not disclose such Confidential Information and shall use it only in +// accordance with the terms of the license agreement you entered into with +// SAMSUNG ELECTRONICS. SAMSUNG make no representations or warranties about the +// suitability of the software, either express or implied, including but not +// limited to the implied warranties of merchantability, fitness for a +// particular purpose, or non-infringement. SAMSUNG shall not be liable for any +// damages suffered by licensee as a result of using, modifying or distributing +// this software or its derivatives. + +// Copyright (c) 2017 Samsung Electronics Co., Ltd. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// + +// This File has been auto-generated by SWIG and then modified using DALi Ruby Scripts +// Some have been manually changed + + +namespace Tizen.NUI +{ + + public class Position : global::System.IDisposable + { + private global::System.Runtime.InteropServices.HandleRef swigCPtr; + protected bool swigCMemOwn; + + internal Position(global::System.IntPtr cPtr, bool cMemoryOwn) + { + swigCMemOwn = cMemoryOwn; + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); + } + + internal static global::System.Runtime.InteropServices.HandleRef getCPtr(Position obj) + { + return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; + } + + ~Position() + { + DisposeQueue.Instance.Add(this); + } + + public virtual void Dispose() + { + if (!Stage.IsInstalled()) + { + DisposeQueue.Instance.Add(this); + return; + } + + lock (this) + { + if (swigCPtr.Handle != global::System.IntPtr.Zero) + { + if (swigCMemOwn) + { + swigCMemOwn = false; + NDalicPINVOKE.delete_Vector3(swigCPtr); + } + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); + } + global::System.GC.SuppressFinalize(this); + } + } + + internal static Position GetVector3FromPtr(global::System.IntPtr cPtr) + { + Position ret = new Position(cPtr, false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public Position() : this(NDalicPINVOKE.new_Vector3__SWIG_0(), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public Position(float x, float y, float z) : this(NDalicPINVOKE.new_Vector3__SWIG_1(x, y, z), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public float X + { + set + { + NDalicPINVOKE.Vector3_X_set(swigCPtr, value); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + get + { + float ret = NDalicPINVOKE.Vector3_X_get(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + } + + public float Y + { + set + { + NDalicPINVOKE.Vector3_Y_set(swigCPtr, value); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + get + { + float ret = NDalicPINVOKE.Vector3_Y_get(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + } + + public float Z + { + set + { + NDalicPINVOKE.Vector3_Z_set(swigCPtr, value); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + get + { + float ret = NDalicPINVOKE.Vector3_Z_get(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + } + + public static float ParentOriginTop + { + get + { + float ret = NDalicPINVOKE.ParentOriginTop_get(); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + } + + public static float ParentOriginBottom + { + get + { + float ret = NDalicPINVOKE.ParentOriginBottom_get(); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + } + + public static float ParentOriginLeft + { + get + { + float ret = NDalicPINVOKE.ParentOriginLeft_get(); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + } + + public static float ParentOriginRight + { + get + { + float ret = NDalicPINVOKE.ParentOriginRight_get(); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + } + + public static float ParentOriginMiddle + { + get + { + float ret = NDalicPINVOKE.ParentOriginMiddle_get(); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + } + + public static Position ParentOriginTopLeft + { + get + { + global::System.IntPtr cPtr = NDalicPINVOKE.ParentOriginTopLeft_get(); + Position ret = (cPtr == global::System.IntPtr.Zero) ? null : new Position(cPtr, false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + } + + public static Position ParentOriginTopCenter + { + get + { + global::System.IntPtr cPtr = NDalicPINVOKE.ParentOriginTopCenter_get(); + Position ret = (cPtr == global::System.IntPtr.Zero) ? null : new Position(cPtr, false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + } + + public static Position ParentOriginTopRight + { + get + { + global::System.IntPtr cPtr = NDalicPINVOKE.ParentOriginTopRight_get(); + Position ret = (cPtr == global::System.IntPtr.Zero) ? null : new Position(cPtr, false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + } + + public static Position ParentOriginCenterLeft + { + get + { + global::System.IntPtr cPtr = NDalicPINVOKE.ParentOriginCenterLeft_get(); + Position ret = (cPtr == global::System.IntPtr.Zero) ? null : new Position(cPtr, false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + } + + public static Position ParentOriginCenter + { + get + { + global::System.IntPtr cPtr = NDalicPINVOKE.ParentOriginCenter_get(); + Position ret = (cPtr == global::System.IntPtr.Zero) ? null : new Position(cPtr, false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + } + + public static Position ParentOriginCenterRight + { + get + { + global::System.IntPtr cPtr = NDalicPINVOKE.ParentOriginCenterRight_get(); + Position ret = (cPtr == global::System.IntPtr.Zero) ? null : new Position(cPtr, false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + } + + public static Position ParentOriginBottomLeft + { + get + { + global::System.IntPtr cPtr = NDalicPINVOKE.ParentOriginBottomLeft_get(); + Position ret = (cPtr == global::System.IntPtr.Zero) ? null : new Position(cPtr, false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + } + + public static Position ParentOriginBottomCenter + { + get + { + global::System.IntPtr cPtr = NDalicPINVOKE.ParentOriginBottomCenter_get(); + Position ret = (cPtr == global::System.IntPtr.Zero) ? null : new Position(cPtr, false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + } + + public static Position ParentOriginBottomRight + { + get + { + global::System.IntPtr cPtr = NDalicPINVOKE.ParentOriginBottomRight_get(); + Position ret = (cPtr == global::System.IntPtr.Zero) ? null : new Position(cPtr, false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + } + + public static float AnchorPointTop + { + get + { + float ret = NDalicPINVOKE.AnchorPointTop_get(); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + } + + public static float AnchorPointBottom + { + get + { + float ret = NDalicPINVOKE.AnchorPointBottom_get(); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + } + + public static float AnchorPointLeft + { + get + { + float ret = NDalicPINVOKE.AnchorPointLeft_get(); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + } + + public static float AnchorPointRight + { + get + { + float ret = NDalicPINVOKE.AnchorPointRight_get(); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + } + + public static float AnchorPointMiddle + { + get + { + float ret = NDalicPINVOKE.AnchorPointMiddle_get(); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + } + + public static Position AnchorPointTopLeft + { + get + { + global::System.IntPtr cPtr = NDalicPINVOKE.AnchorPointTopLeft_get(); + Position ret = (cPtr == global::System.IntPtr.Zero) ? null : new Position(cPtr, false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + } + + public static Position AnchorPointTopCenter + { + get + { + global::System.IntPtr cPtr = NDalicPINVOKE.AnchorPointTopCenter_get(); + Position ret = (cPtr == global::System.IntPtr.Zero) ? null : new Position(cPtr, false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + } + + public static Position AnchorPointTopRight + { + get + { + global::System.IntPtr cPtr = NDalicPINVOKE.AnchorPointTopRight_get(); + Position ret = (cPtr == global::System.IntPtr.Zero) ? null : new Position(cPtr, false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + } + + public static Position AnchorPointCenterLeft + { + get + { + global::System.IntPtr cPtr = NDalicPINVOKE.AnchorPointCenterLeft_get(); + Position ret = (cPtr == global::System.IntPtr.Zero) ? null : new Position(cPtr, false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + } + + public static Position AnchorPointCenter + { + get + { + global::System.IntPtr cPtr = NDalicPINVOKE.AnchorPointCenter_get(); + Position ret = (cPtr == global::System.IntPtr.Zero) ? null : new Position(cPtr, false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + } + + public static Position AnchorPointCenterRight + { + get + { + global::System.IntPtr cPtr = NDalicPINVOKE.AnchorPointCenterRight_get(); + Position ret = (cPtr == global::System.IntPtr.Zero) ? null : new Position(cPtr, false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + } + + public static Position AnchorPointBottomLeft + { + get + { + global::System.IntPtr cPtr = NDalicPINVOKE.AnchorPointBottomLeft_get(); + Position ret = (cPtr == global::System.IntPtr.Zero) ? null : new Position(cPtr, false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + } + + public static Position AnchorPointBottomCenter + { + get + { + global::System.IntPtr cPtr = NDalicPINVOKE.AnchorPointBottomCenter_get(); + Position ret = (cPtr == global::System.IntPtr.Zero) ? null : new Position(cPtr, false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + } + + public static Position AnchorPointBottomRight + { + get + { + global::System.IntPtr cPtr = NDalicPINVOKE.AnchorPointBottomRight_get(); + Position ret = (cPtr == global::System.IntPtr.Zero) ? null : new Position(cPtr, false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + } + + } + + public struct ParentOrigin + { + public static readonly float Top = Position.ParentOriginTop; + public static readonly float Bottom = Position.ParentOriginBottom; + public static readonly float Left = Position.ParentOriginLeft; + public static readonly float Right = Position.ParentOriginRight; + public static readonly float Middle = Position.ParentOriginMiddle; + public static readonly Position TopLeft = Position.ParentOriginTopLeft; + public static readonly Position TopCenter = Position.ParentOriginTopCenter; + public static readonly Position TopRight = Position.ParentOriginTopRight; + public static readonly Position CenterLeft = Position.ParentOriginCenterLeft; + public static readonly Position Center = Position.ParentOriginCenter; + public static readonly Position CenterRight = Position.ParentOriginCenterRight; + public static readonly Position BottomLeft = Position.ParentOriginBottomLeft; + public static readonly Position BottomCenter = Position.ParentOriginBottomCenter; + public static readonly Position BottomRight = Position.ParentOriginBottomRight; + } + public struct AnchorPoint + { + public static readonly float Top = Position.AnchorPointTop; + public static readonly float Bottom = Position.AnchorPointBottom; + public static readonly float Left = Position.AnchorPointLeft; + public static readonly float Right = Position.AnchorPointRight; + public static readonly float Middle = Position.AnchorPointMiddle; + public static readonly Position TopLeft = Position.AnchorPointTopLeft; + public static readonly Position TopCenter = Position.AnchorPointTopCenter; + public static readonly Position TopRight = Position.AnchorPointTopRight; + public static readonly Position CenterLeft = Position.AnchorPointCenterLeft; + public static readonly Position Center = Position.AnchorPointCenter; + public static readonly Position CenterRight = Position.AnchorPointCenterRight; + public static readonly Position BottomLeft = Position.AnchorPointBottomLeft; + public static readonly Position BottomCenter = Position.AnchorPointBottomCenter; + public static readonly Position BottomRight = Position.AnchorPointBottomRight; + } + +} diff --git a/Tizen.NUI/src/public/ProgressBar.cs b/Tizen.NUI/src/public/ProgressBar.cs old mode 100644 new mode 100755 index 0dec485..b3d7977 --- a/Tizen.NUI/src/public/ProgressBar.cs +++ b/Tizen.NUI/src/public/ProgressBar.cs @@ -1,177 +1,292 @@ -/** Copyright (c) 2017 Samsung Electronics Co., Ltd. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ -// This File has been auto-generated by SWIG and then modified using DALi Ruby Scripts -//------------------------------------------------------------------------------ -// -// -// This file was automatically generated by SWIG (http://www.swig.org). -// Version 3.0.9 -// -// Do not make changes to this file unless you know what you are doing--modify -// the SWIG interface file instead. -//------------------------------------------------------------------------------ - -namespace NUI { - -public class ProgressBar : View { - private global::System.Runtime.InteropServices.HandleRef swigCPtr; - - internal ProgressBar(global::System.IntPtr cPtr, bool cMemoryOwn) : base(NDalicPINVOKE.ProgressBar_SWIGUpcast(cPtr), cMemoryOwn) { - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); - } - - internal static global::System.Runtime.InteropServices.HandleRef getCPtr(ProgressBar obj) { - return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; - } - - ~ProgressBar() { - DisposeQueue.Instance.Add(this); - } - - public override void Dispose() { - if (!Stage.IsInstalled()) { - DisposeQueue.Instance.Add(this); - return; - } - - lock(this) { - if (swigCPtr.Handle != global::System.IntPtr.Zero) { - if (swigCMemOwn) { - swigCMemOwn = false; - NDalicPINVOKE.delete_ProgressBar(swigCPtr); - } - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); - } - global::System.GC.SuppressFinalize(this); - base.Dispose(); - } - } - - - public class Property : global::System.IDisposable { - private global::System.Runtime.InteropServices.HandleRef swigCPtr; - protected bool swigCMemOwn; - - internal Property(global::System.IntPtr cPtr, bool cMemoryOwn) { - swigCMemOwn = cMemoryOwn; - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); - } - - internal static global::System.Runtime.InteropServices.HandleRef getCPtr(Property obj) { - return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; - } - - ~Property() { - Dispose(); - } - - public virtual void Dispose() { - lock(this) { - if (swigCPtr.Handle != global::System.IntPtr.Zero) { - if (swigCMemOwn) { - swigCMemOwn = false; - NDalicPINVOKE.delete_ProgressBar_Property(swigCPtr); - } - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); - } - global::System.GC.SuppressFinalize(this); - } - } - - public Property() : this(NDalicPINVOKE.new_ProgressBar_Property(), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public static readonly int PROGRESS_VALUE = NDalicPINVOKE.ProgressBar_Property_PROGRESS_VALUE_get(); - public static readonly int TRACK_VISUAL = NDalicPINVOKE.ProgressBar_Property_TRACK_VISUAL_get(); - public static readonly int PROGRESS_VISUAL = NDalicPINVOKE.ProgressBar_Property_PROGRESS_VISUAL_get(); - - } - - public ProgressBar () : this (NDalicPINVOKE.ProgressBar_New(), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - - } - public ProgressBar(ProgressBar handle) : this(NDalicPINVOKE.new_ProgressBar__SWIG_1(ProgressBar.getCPtr(handle)), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public ProgressBar Assign(ProgressBar handle) { - ProgressBar ret = new ProgressBar(NDalicPINVOKE.ProgressBar_Assign(swigCPtr, ProgressBar.getCPtr(handle)), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public new static ProgressBar DownCast(BaseHandle handle) { - ProgressBar ret = new ProgressBar(NDalicPINVOKE.ProgressBar_DownCast(BaseHandle.getCPtr(handle)), true); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public SWIGTYPE_p_Dali__SignalT_void_fDali__Toolkit__ProgressBar_floatF_t ValueChangedSignal() { - SWIGTYPE_p_Dali__SignalT_void_fDali__Toolkit__ProgressBar_floatF_t ret = new SWIGTYPE_p_Dali__SignalT_void_fDali__Toolkit__ProgressBar_floatF_t(NDalicPINVOKE.ProgressBar_ValueChangedSignal(swigCPtr), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public enum PropertyRange { - PROPERTY_START_INDEX = PropertyRanges.PROPERTY_REGISTRATION_START_INDEX, - PROPERTY_END_INDEX = View.PropertyRange.PROPERTY_START_INDEX+1000 - } - - public float ProgressValue - { - get - { - float temp = 0.0f; - GetProperty( ProgressBar.Property.PROGRESS_VALUE).Get( ref temp ); - return temp; - } - set - { - SetProperty( ProgressBar.Property.PROGRESS_VALUE, new NUI.Property.Value( value ) ); - } - } - public NUI.Property.Map TrackVisual - { - get - { - NUI.Property.Map temp = new NUI.Property.Map(); - GetProperty( ProgressBar.Property.TRACK_VISUAL).Get( temp ); - return temp; - } - set - { - SetProperty( ProgressBar.Property.TRACK_VISUAL, new NUI.Property.Value( value ) ); - } - } - public NUI.Property.Map ProgressVisual - { - get - { - NUI.Property.Map temp = new NUI.Property.Map(); - GetProperty( ProgressBar.Property.PROGRESS_VISUAL).Get( temp ); - return temp; - } - set - { - SetProperty( ProgressBar.Property.PROGRESS_VISUAL, new NUI.Property.Value( value ) ); - } - } - -} - -} +// Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved +// PROPRIETARY/CONFIDENTIAL +// This software is the confidential and proprietary +// information of SAMSUNG ELECTRONICS ("Confidential Information"). You shall +// not disclose such Confidential Information and shall use it only in +// accordance with the terms of the license agreement you entered into with +// SAMSUNG ELECTRONICS. SAMSUNG make no representations or warranties about the +// suitability of the software, either express or implied, including but not +// limited to the implied warranties of merchantability, fitness for a +// particular purpose, or non-infringement. SAMSUNG shall not be liable for any +// damages suffered by licensee as a result of using, modifying or distributing +// this software or its derivatives. + +// Copyright (c) 2017 Samsung Electronics Co., Ltd. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// + +// This File has been auto-generated by SWIG and then modified using DALi Ruby Scripts +// Some have been manually changed + + +namespace Tizen.NUI +{ + + public class ProgressBar : View + { + private global::System.Runtime.InteropServices.HandleRef swigCPtr; + + internal ProgressBar(global::System.IntPtr cPtr, bool cMemoryOwn) : base(NDalicPINVOKE.ProgressBar_SWIGUpcast(cPtr), cMemoryOwn) + { + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); + } + + internal static global::System.Runtime.InteropServices.HandleRef getCPtr(ProgressBar obj) + { + return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; + } + + ~ProgressBar() + { + DisposeQueue.Instance.Add(this); + } + + public override void Dispose() + { + if (!Stage.IsInstalled()) + { + DisposeQueue.Instance.Add(this); + return; + } + + lock (this) + { + if (swigCPtr.Handle != global::System.IntPtr.Zero) + { + if (swigCMemOwn) + { + swigCMemOwn = false; + NDalicPINVOKE.delete_ProgressBar(swigCPtr); + } + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); + } + global::System.GC.SuppressFinalize(this); + base.Dispose(); + } + } + + + internal class Property : global::System.IDisposable + { + private global::System.Runtime.InteropServices.HandleRef swigCPtr; + protected bool swigCMemOwn; + + internal Property(global::System.IntPtr cPtr, bool cMemoryOwn) + { + swigCMemOwn = cMemoryOwn; + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); + } + + internal static global::System.Runtime.InteropServices.HandleRef getCPtr(Property obj) + { + return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; + } + + ~Property() + { + Dispose(); + } + + public virtual void Dispose() + { + lock (this) + { + if (swigCPtr.Handle != global::System.IntPtr.Zero) + { + if (swigCMemOwn) + { + swigCMemOwn = false; + NDalicPINVOKE.delete_ProgressBar_Property(swigCPtr); + } + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); + } + global::System.GC.SuppressFinalize(this); + } + } + + internal Property() : this(NDalicPINVOKE.new_ProgressBar_Property(), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + internal static readonly int PROGRESS_VALUE = NDalicPINVOKE.ProgressBar_Property_PROGRESS_VALUE_get(); + internal static readonly int SECONDARY_PROGRESS_VALUE = NDalicPINVOKE.ProgressBar_Property_SECONDARY_PROGRESS_VALUE_get(); + internal static readonly int INDETERMINATE = NDalicPINVOKE.ProgressBar_Property_INDETERMINATE_get(); + internal static readonly int TRACK_VISUAL = NDalicPINVOKE.ProgressBar_Property_TRACK_VISUAL_get(); + internal static readonly int PROGRESS_VISUAL = NDalicPINVOKE.ProgressBar_Property_PROGRESS_VISUAL_get(); + internal static readonly int SECONDARY_PROGRESS_VISUAL = NDalicPINVOKE.ProgressBar_Property_SECONDARY_PROGRESS_VISUAL_get(); + internal static readonly int INDETERMINATE_VISUAL = NDalicPINVOKE.ProgressBar_Property_INDETERMINATE_VISUAL_get(); + internal static readonly int INDETERMINATE_VISUAL_ANIMATION = NDalicPINVOKE.ProgressBar_Property_INDETERMINATE_VISUAL_ANIMATION_get(); + internal static readonly int LABEL_VISUAL = NDalicPINVOKE.ProgressBar_Property_LABEL_VISUAL_get(); + + } + + public ProgressBar() : this(NDalicPINVOKE.ProgressBar_New(), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + + } + internal ProgressBar(ProgressBar handle) : this(NDalicPINVOKE.new_ProgressBar__SWIG_1(ProgressBar.getCPtr(handle)), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + internal ProgressBar Assign(ProgressBar handle) + { + ProgressBar ret = new ProgressBar(NDalicPINVOKE.ProgressBar_Assign(swigCPtr, ProgressBar.getCPtr(handle)), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public new static ProgressBar DownCast(BaseHandle handle) + { + ProgressBar ret = new ProgressBar(NDalicPINVOKE.ProgressBar_DownCast(BaseHandle.getCPtr(handle)), true); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal SWIGTYPE_p_Dali__SignalT_void_fDali__Toolkit__ProgressBar_float_floatF_t ValueChangedSignal() + { + SWIGTYPE_p_Dali__SignalT_void_fDali__Toolkit__ProgressBar_float_floatF_t ret = new SWIGTYPE_p_Dali__SignalT_void_fDali__Toolkit__ProgressBar_float_floatF_t(NDalicPINVOKE.ProgressBar_ValueChangedSignal(swigCPtr), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal enum PropertyRange + { + PROPERTY_START_INDEX = PropertyRanges.PROPERTY_REGISTRATION_START_INDEX, + PROPERTY_END_INDEX = View.PropertyRange.PROPERTY_START_INDEX + 1000 + } + + public float ProgressValue + { + get + { + float temp = 0.0f; + GetProperty(ProgressBar.Property.PROGRESS_VALUE).Get(ref temp); + return temp; + } + set + { + SetProperty(ProgressBar.Property.PROGRESS_VALUE, new Tizen.NUI.PropertyValue(value)); + } + } + public float SecondaryProgressValue + { + get + { + float temp = 0.0f; + GetProperty(ProgressBar.Property.SECONDARY_PROGRESS_VALUE).Get(ref temp); + return temp; + } + set + { + SetProperty(ProgressBar.Property.SECONDARY_PROGRESS_VALUE, new Tizen.NUI.PropertyValue(value)); + } + } + public bool Indeterminate + { + get + { + bool temp = false; + GetProperty(ProgressBar.Property.INDETERMINATE).Get(ref temp); + return temp; + } + set + { + SetProperty(ProgressBar.Property.INDETERMINATE, new Tizen.NUI.PropertyValue(value)); + } + } + public Tizen.NUI.PropertyMap TrackVisual + { + get + { + Tizen.NUI.PropertyMap temp = new Tizen.NUI.PropertyMap(); + GetProperty(ProgressBar.Property.TRACK_VISUAL).Get(temp); + return temp; + } + set + { + SetProperty(ProgressBar.Property.TRACK_VISUAL, new Tizen.NUI.PropertyValue(value)); + } + } + public Tizen.NUI.PropertyMap ProgressVisual + { + get + { + Tizen.NUI.PropertyMap temp = new Tizen.NUI.PropertyMap(); + GetProperty(ProgressBar.Property.PROGRESS_VISUAL).Get(temp); + return temp; + } + set + { + SetProperty(ProgressBar.Property.PROGRESS_VISUAL, new Tizen.NUI.PropertyValue(value)); + } + } + public Tizen.NUI.PropertyMap SecondaryProgressVisual + { + get + { + Tizen.NUI.PropertyMap temp = new Tizen.NUI.PropertyMap(); + GetProperty(ProgressBar.Property.SECONDARY_PROGRESS_VISUAL).Get(temp); + return temp; + } + set + { + SetProperty(ProgressBar.Property.SECONDARY_PROGRESS_VISUAL, new Tizen.NUI.PropertyValue(value)); + } + } + public Tizen.NUI.PropertyMap IndeterminateVisual + { + get + { + Tizen.NUI.PropertyMap temp = new Tizen.NUI.PropertyMap(); + GetProperty(ProgressBar.Property.INDETERMINATE_VISUAL).Get(temp); + return temp; + } + set + { + SetProperty(ProgressBar.Property.INDETERMINATE_VISUAL, new Tizen.NUI.PropertyValue(value)); + } + } + public Tizen.NUI.PropertyArray IndeterminateVisualAnimation + { + get + { + Tizen.NUI.PropertyArray temp = new Tizen.NUI.PropertyArray(); + GetProperty(ProgressBar.Property.INDETERMINATE_VISUAL_ANIMATION).Get(temp); + return temp; + } + set + { + SetProperty(ProgressBar.Property.INDETERMINATE_VISUAL_ANIMATION, new Tizen.NUI.PropertyValue(value)); + } + } + public Tizen.NUI.PropertyMap LabelVisual + { + get + { + Tizen.NUI.PropertyMap temp = new Tizen.NUI.PropertyMap(); + GetProperty(ProgressBar.Property.LABEL_VISUAL).Get(temp); + return temp; + } + set + { + SetProperty(ProgressBar.Property.LABEL_VISUAL, new Tizen.NUI.PropertyValue(value)); + } + } + + } + +} diff --git a/Tizen.NUI/src/public/Property.cs b/Tizen.NUI/src/public/Property.cs old mode 100644 new mode 100755 index 74e075a..da6d26e --- a/Tizen.NUI/src/public/Property.cs +++ b/Tizen.NUI/src/public/Property.cs @@ -1,771 +1,1063 @@ -//------------------------------------------------------------------------------ -// -// -// This file was automatically generated by SWIG (http://www.swig.org). -// Version 3.0.9 -// -// Do not make changes to this file unless you know what you are doing--modify -// the SWIG interface file instead. -//------------------------------------------------------------------------------ - -namespace NUI { - -public class Property : global::System.IDisposable { - private global::System.Runtime.InteropServices.HandleRef swigCPtr; - protected bool swigCMemOwn; - - internal Property(global::System.IntPtr cPtr, bool cMemoryOwn) { - swigCMemOwn = cMemoryOwn; - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); - } - - internal static global::System.Runtime.InteropServices.HandleRef getCPtr(Property obj) { - return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; - } - - ~Property() { - DisposeQueue.Instance.Add(this); - } - - public virtual void Dispose() { - if (!Stage.IsInstalled()) { - DisposeQueue.Instance.Add(this); - return; - } - - lock(this) { - if (swigCPtr.Handle != global::System.IntPtr.Zero) { - if (swigCMemOwn) { - swigCMemOwn = false; - NDalicPINVOKE.delete_Property(swigCPtr); - } - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); - } - global::System.GC.SuppressFinalize(this); - } - } - - - public static int INVALID_INDEX { - get { - int ret = NDalicPINVOKE.Property_INVALID_INDEX_get(); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - } - - public static int INVALID_KEY { - get { - int ret = NDalicPINVOKE.Property_INVALID_KEY_get(); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - } - - public static int INVALID_COMPONENT_INDEX { - get { - int ret = NDalicPINVOKE.Property_INVALID_COMPONENT_INDEX_get(); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - } - - public Property(Handle arg0, int propertyIndex) : this(NDalicPINVOKE.new_Property__SWIG_0(Handle.getCPtr(arg0), propertyIndex), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public Property(Handle arg0, int propertyIndex, int componentIndex) : this(NDalicPINVOKE.new_Property__SWIG_1(Handle.getCPtr(arg0), propertyIndex, componentIndex), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public Property(Handle arg0, string propertyName) : this(NDalicPINVOKE.new_Property__SWIG_2(Handle.getCPtr(arg0), propertyName), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public Property(Handle arg0, string propertyName, int componentIndex) : this(NDalicPINVOKE.new_Property__SWIG_3(Handle.getCPtr(arg0), propertyName, componentIndex), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public Handle _object { - set { - NDalicPINVOKE.Property__object_set(swigCPtr, Handle.getCPtr(value)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - get { - Handle ret = new Handle(NDalicPINVOKE.Property__object_get(swigCPtr), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - } - - public int propertyIndex { - set { - NDalicPINVOKE.Property_propertyIndex_set(swigCPtr, value); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - get { - int ret = NDalicPINVOKE.Property_propertyIndex_get(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - } - - public int componentIndex { - set { - NDalicPINVOKE.Property_componentIndex_set(swigCPtr, value); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - get { - int ret = NDalicPINVOKE.Property_componentIndex_get(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - } - - public class Array : global::System.IDisposable { - private global::System.Runtime.InteropServices.HandleRef swigCPtr; - protected bool swigCMemOwn; - - internal Array(global::System.IntPtr cPtr, bool cMemoryOwn) { - swigCMemOwn = cMemoryOwn; - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); - } - - internal static global::System.Runtime.InteropServices.HandleRef getCPtr(Array obj) { - return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; - } - - ~Array() { - Dispose(); - } - - public virtual void Dispose() { - lock(this) { - if (swigCPtr.Handle != global::System.IntPtr.Zero) { - if (swigCMemOwn) { - swigCMemOwn = false; - NDalicPINVOKE.delete_Property_Array(swigCPtr); - } - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); - } - global::System.GC.SuppressFinalize(this); - } - } - - public Property.Value this[uint index] - { - get - { - return ValueOfIndex(index); - } - } - - public Array() : this(NDalicPINVOKE.new_Property_Array__SWIG_0(), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public Array(Property.Array other) : this(NDalicPINVOKE.new_Property_Array__SWIG_1(Property.Array.getCPtr(other)), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public uint Size() { - uint ret = NDalicPINVOKE.Property_Array_Size(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public uint Count() { - uint ret = NDalicPINVOKE.Property_Array_Count(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public bool Empty() { - bool ret = NDalicPINVOKE.Property_Array_Empty(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public void Clear() { - NDalicPINVOKE.Property_Array_Clear(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public void Reserve(uint size) { - NDalicPINVOKE.Property_Array_Reserve(swigCPtr, size); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public void Resize(uint size) { - NDalicPINVOKE.Property_Array_Resize(swigCPtr, size); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public uint Capacity() { - uint ret = NDalicPINVOKE.Property_Array_Capacity(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public void PushBack(Property.Value value) { - NDalicPINVOKE.Property_Array_PushBack(swigCPtr, Property.Value.getCPtr(value)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public Property.Array Add(Property.Value value) { - Property.Array ret = new Property.Array(NDalicPINVOKE.Property_Array_Add(swigCPtr, Property.Value.getCPtr(value)), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public Property.Value GetElementAt(uint index) { - Property.Value ret = new Property.Value(NDalicPINVOKE.Property_Array_GetElementAt__SWIG_0(swigCPtr, index), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public Property.Value ValueOfIndex(uint index) { - Property.Value ret = new Property.Value(NDalicPINVOKE.Property_Array_ValueOfIndex__SWIG_0(swigCPtr, index), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public Property.Array Assign(Property.Array other) { - Property.Array ret = new Property.Array(NDalicPINVOKE.Property_Array_Assign(swigCPtr, Property.Array.getCPtr(other)), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - } - - public class Key : global::System.IDisposable { - private global::System.Runtime.InteropServices.HandleRef swigCPtr; - protected bool swigCMemOwn; - - internal Key(global::System.IntPtr cPtr, bool cMemoryOwn) { - swigCMemOwn = cMemoryOwn; - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); - } - - internal static global::System.Runtime.InteropServices.HandleRef getCPtr(Key obj) { - return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; - } - - ~Key() { - Dispose(); - } - - public virtual void Dispose() { - lock(this) { - if (swigCPtr.Handle != global::System.IntPtr.Zero) { - if (swigCMemOwn) { - swigCMemOwn = false; - NDalicPINVOKE.delete_Property_Key(swigCPtr); - } - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); - } - global::System.GC.SuppressFinalize(this); - } - } - - public Property.Key.Type type { - set { - NDalicPINVOKE.Property_Key_type_set(swigCPtr, (int)value); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - get { - Property.Key.Type ret = (Property.Key.Type)NDalicPINVOKE.Property_Key_type_get(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - } - - public int indexKey { - set { - NDalicPINVOKE.Property_Key_indexKey_set(swigCPtr, value); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - get { - int ret = NDalicPINVOKE.Property_Key_indexKey_get(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - } - - public string stringKey { - set { - NDalicPINVOKE.Property_Key_stringKey_set(swigCPtr, value); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - get { - string ret = NDalicPINVOKE.Property_Key_stringKey_get(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - } - - public Key(string key) : this(NDalicPINVOKE.new_Property_Key__SWIG_0(key), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public Key(int key) : this(NDalicPINVOKE.new_Property_Key__SWIG_1(key), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public bool EqualTo(string rhs) { - bool ret = NDalicPINVOKE.Property_Key_EqualTo__SWIG_0(swigCPtr, rhs); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public bool EqualTo(int rhs) { - bool ret = NDalicPINVOKE.Property_Key_EqualTo__SWIG_1(swigCPtr, rhs); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public bool EqualTo(Property.Key rhs) { - bool ret = NDalicPINVOKE.Property_Key_EqualTo__SWIG_2(swigCPtr, Property.Key.getCPtr(rhs)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public bool NotEqualTo(string rhs) { - bool ret = NDalicPINVOKE.Property_Key_NotEqualTo__SWIG_0(swigCPtr, rhs); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public bool NotEqualTo(int rhs) { - bool ret = NDalicPINVOKE.Property_Key_NotEqualTo__SWIG_1(swigCPtr, rhs); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public bool NotEqualTo(Property.Key rhs) { - bool ret = NDalicPINVOKE.Property_Key_NotEqualTo__SWIG_2(swigCPtr, Property.Key.getCPtr(rhs)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public enum Type { - INDEX, - STRING - } - - } - - public class Map : global::System.IDisposable { - private global::System.Runtime.InteropServices.HandleRef swigCPtr; - protected bool swigCMemOwn; - - internal Map(global::System.IntPtr cPtr, bool cMemoryOwn) { - swigCMemOwn = cMemoryOwn; - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); - } - - internal static global::System.Runtime.InteropServices.HandleRef getCPtr(Map obj) { - return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; - } - - ~Map() { - Dispose(); - } - - public virtual void Dispose() { - lock(this) { - if (swigCPtr.Handle != global::System.IntPtr.Zero) { - if (swigCMemOwn) { - swigCMemOwn = false; - NDalicPINVOKE.delete_Property_Map(swigCPtr); - } - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); - } - global::System.GC.SuppressFinalize(this); - } - } - - public Property.Value this[string key] - { - get - { - return ValueOfIndex(key); - } - } - - public Property.Value this[int key] - { - get - { - return ValueOfIndex(key); - } - } - - public Map() : this(NDalicPINVOKE.new_Property_Map__SWIG_0(), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public Map(Property.Map other) : this(NDalicPINVOKE.new_Property_Map__SWIG_1(Property.Map.getCPtr(other)), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public uint Count() { - uint ret = NDalicPINVOKE.Property_Map_Count(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public bool Empty() { - bool ret = NDalicPINVOKE.Property_Map_Empty(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public void Insert(string key, Property.Value value) { - NDalicPINVOKE.Property_Map_Insert__SWIG_0(swigCPtr, key, Property.Value.getCPtr(value)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public void Insert(int key, Property.Value value) { - NDalicPINVOKE.Property_Map_Insert__SWIG_2(swigCPtr, key, Property.Value.getCPtr(value)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public Property.Map Add(string key, Property.Value value) { - Property.Map ret = new Property.Map(NDalicPINVOKE.Property_Map_Add__SWIG_0(swigCPtr, key, Property.Value.getCPtr(value)), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public Property.Map Add(int key, Property.Value value) { - Property.Map ret = new Property.Map(NDalicPINVOKE.Property_Map_Add__SWIG_2(swigCPtr, key, Property.Value.getCPtr(value)), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public Property.Value GetValue(uint position) { - Property.Value ret = new Property.Value(NDalicPINVOKE.Property_Map_GetValue(swigCPtr, position), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public string GetKey(uint position) { - string ret = NDalicPINVOKE.Property_Map_GetKey(swigCPtr, position); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public Property.Key GetKeyAt(uint position) { - Property.Key ret = new Property.Key(NDalicPINVOKE.Property_Map_GetKeyAt(swigCPtr, position), true); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public StringValuePair GetPair(uint position) { - StringValuePair ret = new StringValuePair(NDalicPINVOKE.Property_Map_GetPair(swigCPtr, position), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public Property.Value Find(string key) { - global::System.IntPtr cPtr = NDalicPINVOKE.Property_Map_Find__SWIG_0(swigCPtr, key); - Property.Value ret = (cPtr == global::System.IntPtr.Zero) ? null : new Property.Value(cPtr, false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public Property.Value Find(int key) { - global::System.IntPtr cPtr = NDalicPINVOKE.Property_Map_Find__SWIG_2(swigCPtr, key); - Property.Value ret = (cPtr == global::System.IntPtr.Zero) ? null : new Property.Value(cPtr, false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public Property.Value Find(int indexKey, string stringKey) { - global::System.IntPtr cPtr = NDalicPINVOKE.Property_Map_Find__SWIG_3(swigCPtr, indexKey, stringKey); - Property.Value ret = (cPtr == global::System.IntPtr.Zero) ? null : new Property.Value(cPtr, false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public Property.Value Find(string key, Property.Type type) { - global::System.IntPtr cPtr = NDalicPINVOKE.Property_Map_Find__SWIG_4(swigCPtr, key, (int)type); - Property.Value ret = (cPtr == global::System.IntPtr.Zero) ? null : new Property.Value(cPtr, false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public Property.Value Find(int key, Property.Type type) { - global::System.IntPtr cPtr = NDalicPINVOKE.Property_Map_Find__SWIG_5(swigCPtr, key, (int)type); - Property.Value ret = (cPtr == global::System.IntPtr.Zero) ? null : new Property.Value(cPtr, false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public void Clear() { - NDalicPINVOKE.Property_Map_Clear(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public void Merge(Property.Map from) { - NDalicPINVOKE.Property_Map_Merge(swigCPtr, Property.Map.getCPtr(from)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public Property.Value ValueOfIndex(string key) { - Property.Value ret = new Property.Value(NDalicPINVOKE.Property_Map_ValueOfIndex__SWIG_0(swigCPtr, key), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public Property.Value ValueOfIndex(int key) { - Property.Value ret = new Property.Value(NDalicPINVOKE.Property_Map_ValueOfIndex__SWIG_2(swigCPtr, key), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public Property.Map Assign(Property.Map other) { - Property.Map ret = new Property.Map(NDalicPINVOKE.Property_Map_Assign(swigCPtr, Property.Map.getCPtr(other)), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - } - - public class Value : global::System.IDisposable { - private global::System.Runtime.InteropServices.HandleRef swigCPtr; - protected bool swigCMemOwn; - - internal Value(global::System.IntPtr cPtr, bool cMemoryOwn) { - swigCMemOwn = cMemoryOwn; - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); - } - - internal static global::System.Runtime.InteropServices.HandleRef getCPtr(Value obj) { - return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; - } - - ~Value() { - Dispose(); - } - - public virtual void Dispose() { - lock(this) { - if (swigCPtr.Handle != global::System.IntPtr.Zero) { - if (swigCMemOwn) { - swigCMemOwn = false; - NDalicPINVOKE.delete_Property_Value(swigCPtr); - } - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); - } - global::System.GC.SuppressFinalize(this); - } - } - - public Value() : this(NDalicPINVOKE.new_Property_Value__SWIG_0(), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public Value(bool boolValue) : this(NDalicPINVOKE.new_Property_Value__SWIG_1(boolValue), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public Value(int integerValue) : this(NDalicPINVOKE.new_Property_Value__SWIG_2(integerValue), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public Value(float floatValue) : this(NDalicPINVOKE.new_Property_Value__SWIG_3(floatValue), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public Value(Vector2 vectorValue) : this(NDalicPINVOKE.new_Property_Value__SWIG_4(Vector2.getCPtr(vectorValue)), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public Value(Vector3 vectorValue) : this(NDalicPINVOKE.new_Property_Value__SWIG_5(Vector3.getCPtr(vectorValue)), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public Value(Vector4 vectorValue) : this(NDalicPINVOKE.new_Property_Value__SWIG_6(Vector4.getCPtr(vectorValue)), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public Value(Matrix3 matrixValue) : this(NDalicPINVOKE.new_Property_Value__SWIG_7(Matrix3.getCPtr(matrixValue)), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public Value(Matrix matrixValue) : this(NDalicPINVOKE.new_Property_Value__SWIG_8(Matrix.getCPtr(matrixValue)), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public Value(RectInteger vectorValue) : this(NDalicPINVOKE.new_Property_Value__SWIG_9(RectInteger.getCPtr(vectorValue)), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public Value(AngleAxis angleAxis) : this(NDalicPINVOKE.new_Property_Value__SWIG_10(AngleAxis.getCPtr(angleAxis)), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public Value(Quaternion quaternion) : this(NDalicPINVOKE.new_Property_Value__SWIG_11(Quaternion.getCPtr(quaternion)), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public Value(string stringValue) : this(NDalicPINVOKE.new_Property_Value__SWIG_12(stringValue), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public Value(Property.Array arrayValue) : this(NDalicPINVOKE.new_Property_Value__SWIG_14(Property.Array.getCPtr(arrayValue)), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public Value(Property.Map mapValue) : this(NDalicPINVOKE.new_Property_Value__SWIG_15(Property.Map.getCPtr(mapValue)), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public Value(Property.Type type) : this(NDalicPINVOKE.new_Property_Value__SWIG_16((int)type), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public Value(Property.Value value) : this(NDalicPINVOKE.new_Property_Value__SWIG_17(Property.Value.getCPtr(value)), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public Property.Value Assign(Property.Value value) { - Property.Value ret = new Property.Value(NDalicPINVOKE.Property_Value_Assign(swigCPtr, Property.Value.getCPtr(value)), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public Property.Type GetType() { - Property.Type ret = (Property.Type)NDalicPINVOKE.Property_Value_GetType(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public bool Get(ref bool boolValue) { - bool ret = NDalicPINVOKE.Property_Value_Get__SWIG_1(swigCPtr, ref boolValue); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public bool Get(ref float floatValue) { - bool ret = NDalicPINVOKE.Property_Value_Get__SWIG_2(swigCPtr, ref floatValue); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public bool Get(ref int integerValue) { - bool ret = NDalicPINVOKE.Property_Value_Get__SWIG_3(swigCPtr, ref integerValue); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public bool Get(RectInteger rect) { - bool ret = NDalicPINVOKE.Property_Value_Get__SWIG_4(swigCPtr, RectInteger.getCPtr(rect)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public bool Get(Vector2 vectorValue) { - bool ret = NDalicPINVOKE.Property_Value_Get__SWIG_5(swigCPtr, Vector2.getCPtr(vectorValue)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public bool Get(Vector3 vectorValue) { - bool ret = NDalicPINVOKE.Property_Value_Get__SWIG_6(swigCPtr, Vector3.getCPtr(vectorValue)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public bool Get(Vector4 vectorValue) { - bool ret = NDalicPINVOKE.Property_Value_Get__SWIG_7(swigCPtr, Vector4.getCPtr(vectorValue)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public bool Get(Matrix3 matrixValue) { - bool ret = NDalicPINVOKE.Property_Value_Get__SWIG_8(swigCPtr, Matrix3.getCPtr(matrixValue)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public bool Get(Matrix matrixValue) { - bool ret = NDalicPINVOKE.Property_Value_Get__SWIG_9(swigCPtr, Matrix.getCPtr(matrixValue)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public bool Get(AngleAxis angleAxisValue) { - bool ret = NDalicPINVOKE.Property_Value_Get__SWIG_10(swigCPtr, AngleAxis.getCPtr(angleAxisValue)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public bool Get(Quaternion quaternionValue) { - bool ret = NDalicPINVOKE.Property_Value_Get__SWIG_11(swigCPtr, Quaternion.getCPtr(quaternionValue)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public bool Get(out string stringValue) { - bool ret = NDalicPINVOKE.Property_Value_Get__SWIG_12(swigCPtr, out stringValue); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public bool Get(Property.Array arrayValue) { - bool ret = NDalicPINVOKE.Property_Value_Get__SWIG_13(swigCPtr, Property.Array.getCPtr(arrayValue)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public bool Get(Property.Map mapValue) { - bool ret = NDalicPINVOKE.Property_Value_Get__SWIG_14(swigCPtr, Property.Map.getCPtr(mapValue)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public Property.Array GetArray() { - global::System.IntPtr cPtr = NDalicPINVOKE.Property_Value_GetArray(swigCPtr); - Property.Array ret = (cPtr == global::System.IntPtr.Zero) ? null : new Property.Array(cPtr, false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public Property.Map GetMap() { - global::System.IntPtr cPtr = NDalicPINVOKE.Property_Value_GetMap(swigCPtr); - Property.Map ret = (cPtr == global::System.IntPtr.Zero) ? null : new Property.Map(cPtr, false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - } - - public enum Type { - NONE, - BOOLEAN, - FLOAT, - INTEGER, - VECTOR2, - VECTOR3, - VECTOR4, - MATRIX3, - MATRIX, - RECTANGLE, - ROTATION, - STRING, - ARRAY, - MAP - } - - public enum AccessMode { - READ_ONLY, - READ_WRITE, - ANIMATABLE, - ACCESS_MODE_COUNT - } - -} - -} +// Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved +// PROPRIETARY/CONFIDENTIAL +// This software is the confidential and proprietary +// information of SAMSUNG ELECTRONICS ("Confidential Information"). You shall +// not disclose such Confidential Information and shall use it only in +// accordance with the terms of the license agreement you entered into with +// SAMSUNG ELECTRONICS. SAMSUNG make no representations or warranties about the +// suitability of the software, either express or implied, including but not +// limited to the implied warranties of merchantability, fitness for a +// particular purpose, or non-infringement. SAMSUNG shall not be liable for any +// damages suffered by licensee as a result of using, modifying or distributing +// this software or its derivatives. + +// Copyright (c) 2017 Samsung Electronics Co., Ltd. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// + +// This File has been auto-generated by SWIG and then modified using DALi Ruby Scripts +// Some have been manually changed + + +namespace Tizen.NUI +{ + + internal class Property : global::System.IDisposable + { + private global::System.Runtime.InteropServices.HandleRef swigCPtr; + protected bool swigCMemOwn; + + internal Property(global::System.IntPtr cPtr, bool cMemoryOwn) + { + swigCMemOwn = cMemoryOwn; + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); + } + + internal static global::System.Runtime.InteropServices.HandleRef getCPtr(Property obj) + { + return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; + } + + ~Property() + { + DisposeQueue.Instance.Add(this); + } + + public virtual void Dispose() + { + if (!Stage.IsInstalled()) + { + DisposeQueue.Instance.Add(this); + return; + } + + lock (this) + { + if (swigCPtr.Handle != global::System.IntPtr.Zero) + { + if (swigCMemOwn) + { + swigCMemOwn = false; + NDalicPINVOKE.delete_Property(swigCPtr); + } + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); + } + global::System.GC.SuppressFinalize(this); + } + } + + + internal static int INVALID_INDEX + { + get + { + int ret = NDalicPINVOKE.Property_INVALID_INDEX_get(); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + } + + internal static int INVALID_KEY + { + get + { + int ret = NDalicPINVOKE.Property_INVALID_KEY_get(); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + } + + internal static int INVALID_COMPONENT_INDEX + { + get + { + int ret = NDalicPINVOKE.Property_INVALID_COMPONENT_INDEX_get(); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + } + + public Property(Handle arg0, int propertyIndex) : this(NDalicPINVOKE.new_Property__SWIG_0(Handle.getCPtr(arg0), propertyIndex), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public Property(Handle arg0, int propertyIndex, int componentIndex) : this(NDalicPINVOKE.new_Property__SWIG_1(Handle.getCPtr(arg0), propertyIndex, componentIndex), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public Property(Handle arg0, string propertyName) : this(NDalicPINVOKE.new_Property__SWIG_2(Handle.getCPtr(arg0), propertyName), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public Property(Handle arg0, string propertyName, int componentIndex) : this(NDalicPINVOKE.new_Property__SWIG_3(Handle.getCPtr(arg0), propertyName, componentIndex), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + internal Handle _object + { + set + { + NDalicPINVOKE.Property__object_set(swigCPtr, Handle.getCPtr(value)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + get + { + Handle ret = new Handle(NDalicPINVOKE.Property__object_get(swigCPtr), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + } + + public int propertyIndex + { + set + { + NDalicPINVOKE.Property_propertyIndex_set(swigCPtr, value); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + get + { + int ret = NDalicPINVOKE.Property_propertyIndex_get(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + } + + public int componentIndex + { + set + { + NDalicPINVOKE.Property_componentIndex_set(swigCPtr, value); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + get + { + int ret = NDalicPINVOKE.Property_componentIndex_get(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + } + + } + + public class PropertyArray : global::System.IDisposable + { + private global::System.Runtime.InteropServices.HandleRef swigCPtr; + protected bool swigCMemOwn; + + internal PropertyArray(global::System.IntPtr cPtr, bool cMemoryOwn) + { + swigCMemOwn = cMemoryOwn; + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); + } + + internal static global::System.Runtime.InteropServices.HandleRef getCPtr(PropertyArray obj) + { + return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; + } + + ~PropertyArray() + { + Dispose(); + } + + public virtual void Dispose() + { + lock (this) + { + if (swigCPtr.Handle != global::System.IntPtr.Zero) + { + if (swigCMemOwn) + { + swigCMemOwn = false; + NDalicPINVOKE.delete_Property_Array(swigCPtr); + } + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); + } + global::System.GC.SuppressFinalize(this); + } + } + + public PropertyValue this[uint index] + { + get + { + return ValueOfIndex(index); + } + } + + public PropertyArray() : this(NDalicPINVOKE.new_Property_Array__SWIG_0(), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + internal PropertyArray(PropertyArray other) : this(NDalicPINVOKE.new_Property_Array__SWIG_1(PropertyArray.getCPtr(other)), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public uint Size() + { + uint ret = NDalicPINVOKE.Property_Array_Size(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public uint Count() + { + uint ret = NDalicPINVOKE.Property_Array_Count(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public bool Empty() + { + bool ret = NDalicPINVOKE.Property_Array_Empty(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public void Clear() + { + NDalicPINVOKE.Property_Array_Clear(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public void Reserve(uint size) + { + NDalicPINVOKE.Property_Array_Reserve(swigCPtr, size); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public void Resize(uint size) + { + NDalicPINVOKE.Property_Array_Resize(swigCPtr, size); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public uint Capacity() + { + uint ret = NDalicPINVOKE.Property_Array_Capacity(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public void PushBack(PropertyValue value) + { + NDalicPINVOKE.Property_Array_PushBack(swigCPtr, PropertyValue.getCPtr(value)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public PropertyArray Add(PropertyValue value) + { + PropertyArray ret = new PropertyArray(NDalicPINVOKE.Property_Array_Add(swigCPtr, PropertyValue.getCPtr(value)), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public PropertyValue GetElementAt(uint index) + { + PropertyValue ret = new PropertyValue(NDalicPINVOKE.Property_Array_GetElementAt__SWIG_0(swigCPtr, index), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public PropertyValue ValueOfIndex(uint index) + { + PropertyValue ret = new PropertyValue(NDalicPINVOKE.Property_Array_ValueOfIndex__SWIG_0(swigCPtr, index), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public PropertyArray Assign(PropertyArray other) + { + PropertyArray ret = new PropertyArray(NDalicPINVOKE.Property_Array_Assign(swigCPtr, PropertyArray.getCPtr(other)), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + } + + public class PropertyKey : global::System.IDisposable + { + private global::System.Runtime.InteropServices.HandleRef swigCPtr; + protected bool swigCMemOwn; + + internal PropertyKey(global::System.IntPtr cPtr, bool cMemoryOwn) + { + swigCMemOwn = cMemoryOwn; + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); + } + + internal static global::System.Runtime.InteropServices.HandleRef getCPtr(PropertyKey obj) + { + return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; + } + + ~PropertyKey() + { + Dispose(); + } + + public virtual void Dispose() + { + lock (this) + { + if (swigCPtr.Handle != global::System.IntPtr.Zero) + { + if (swigCMemOwn) + { + swigCMemOwn = false; + NDalicPINVOKE.delete_Property_Key(swigCPtr); + } + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); + } + global::System.GC.SuppressFinalize(this); + } + } + + public PropertyKey.Type type + { + set + { + NDalicPINVOKE.Property_Key_type_set(swigCPtr, (int)value); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + get + { + PropertyKey.Type ret = (PropertyKey.Type)NDalicPINVOKE.Property_Key_type_get(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + } + + public int indexKey + { + set + { + NDalicPINVOKE.Property_Key_indexKey_set(swigCPtr, value); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + get + { + int ret = NDalicPINVOKE.Property_Key_indexKey_get(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + } + + public string stringKey + { + set + { + NDalicPINVOKE.Property_Key_stringKey_set(swigCPtr, value); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + get + { + string ret = NDalicPINVOKE.Property_Key_stringKey_get(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + } + + public PropertyKey(string key) : this(NDalicPINVOKE.new_Property_Key__SWIG_0(key), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public PropertyKey(int key) : this(NDalicPINVOKE.new_Property_Key__SWIG_1(key), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public bool EqualTo(string rhs) + { + bool ret = NDalicPINVOKE.Property_Key_EqualTo__SWIG_0(swigCPtr, rhs); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public bool EqualTo(int rhs) + { + bool ret = NDalicPINVOKE.Property_Key_EqualTo__SWIG_1(swigCPtr, rhs); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public bool EqualTo(PropertyKey rhs) + { + bool ret = NDalicPINVOKE.Property_Key_EqualTo__SWIG_2(swigCPtr, PropertyKey.getCPtr(rhs)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public bool NotEqualTo(string rhs) + { + bool ret = NDalicPINVOKE.Property_Key_NotEqualTo__SWIG_0(swigCPtr, rhs); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public bool NotEqualTo(int rhs) + { + bool ret = NDalicPINVOKE.Property_Key_NotEqualTo__SWIG_1(swigCPtr, rhs); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public bool NotEqualTo(PropertyKey rhs) + { + bool ret = NDalicPINVOKE.Property_Key_NotEqualTo__SWIG_2(swigCPtr, PropertyKey.getCPtr(rhs)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public enum Type + { + Index, + String + } + + } + + public class PropertyMap : global::System.IDisposable + { + private global::System.Runtime.InteropServices.HandleRef swigCPtr; + protected bool swigCMemOwn; + + internal PropertyMap(global::System.IntPtr cPtr, bool cMemoryOwn) + { + swigCMemOwn = cMemoryOwn; + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); + } + + internal static global::System.Runtime.InteropServices.HandleRef getCPtr(PropertyMap obj) + { + return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; + } + + ~PropertyMap() + { + Dispose(); + } + + public virtual void Dispose() + { + lock (this) + { + if (swigCPtr.Handle != global::System.IntPtr.Zero) + { + if (swigCMemOwn) + { + swigCMemOwn = false; + NDalicPINVOKE.delete_Property_Map(swigCPtr); + } + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); + } + global::System.GC.SuppressFinalize(this); + } + } + + public PropertyValue this[string key] + { + get + { + return ValueOfIndex(key); + } + } + + public PropertyValue this[int key] + { + get + { + return ValueOfIndex(key); + } + } + + public PropertyMap() : this(NDalicPINVOKE.new_Property_Map__SWIG_0(), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public PropertyMap(PropertyMap other) : this(NDalicPINVOKE.new_Property_Map__SWIG_1(PropertyMap.getCPtr(other)), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public uint Count() + { + uint ret = NDalicPINVOKE.Property_Map_Count(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public bool Empty() + { + bool ret = NDalicPINVOKE.Property_Map_Empty(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public void Insert(string key, PropertyValue value) + { + NDalicPINVOKE.Property_Map_Insert__SWIG_0(swigCPtr, key, PropertyValue.getCPtr(value)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public void Insert(int key, PropertyValue value) + { + NDalicPINVOKE.Property_Map_Insert__SWIG_2(swigCPtr, key, PropertyValue.getCPtr(value)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public PropertyMap Add(string key, PropertyValue value) + { + PropertyMap ret = new PropertyMap(NDalicPINVOKE.Property_Map_Add__SWIG_0(swigCPtr, key, PropertyValue.getCPtr(value)), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public PropertyMap Add(int key, PropertyValue value) + { + PropertyMap ret = new PropertyMap(NDalicPINVOKE.Property_Map_Add__SWIG_2(swigCPtr, key, PropertyValue.getCPtr(value)), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public PropertyValue GetValue(uint position) + { + PropertyValue ret = new PropertyValue(NDalicPINVOKE.Property_Map_GetValue(swigCPtr, position), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public string GetKey(uint position) + { + string ret = NDalicPINVOKE.Property_Map_GetKey(swigCPtr, position); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public PropertyKey GetKeyAt(uint position) + { + PropertyKey ret = new PropertyKey(NDalicPINVOKE.Property_Map_GetKeyAt(swigCPtr, position), true); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal StringValuePair GetPair(uint position) + { + StringValuePair ret = new StringValuePair(NDalicPINVOKE.Property_Map_GetPair(swigCPtr, position), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public PropertyValue Find(string key) + { + global::System.IntPtr cPtr = NDalicPINVOKE.Property_Map_Find__SWIG_0(swigCPtr, key); + PropertyValue ret = (cPtr == global::System.IntPtr.Zero) ? null : new PropertyValue(cPtr, false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public PropertyValue Find(int key) + { + global::System.IntPtr cPtr = NDalicPINVOKE.Property_Map_Find__SWIG_2(swigCPtr, key); + PropertyValue ret = (cPtr == global::System.IntPtr.Zero) ? null : new PropertyValue(cPtr, false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public PropertyValue Find(int indexKey, string stringKey) + { + global::System.IntPtr cPtr = NDalicPINVOKE.Property_Map_Find__SWIG_3(swigCPtr, indexKey, stringKey); + PropertyValue ret = (cPtr == global::System.IntPtr.Zero) ? null : new PropertyValue(cPtr, false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public PropertyValue Find(string key, PropertyType type) + { + global::System.IntPtr cPtr = NDalicPINVOKE.Property_Map_Find__SWIG_4(swigCPtr, key, (int)type); + PropertyValue ret = (cPtr == global::System.IntPtr.Zero) ? null : new PropertyValue(cPtr, false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public PropertyValue Find(int key, PropertyType type) + { + global::System.IntPtr cPtr = NDalicPINVOKE.Property_Map_Find__SWIG_5(swigCPtr, key, (int)type); + PropertyValue ret = (cPtr == global::System.IntPtr.Zero) ? null : new PropertyValue(cPtr, false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public void Clear() + { + NDalicPINVOKE.Property_Map_Clear(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public void Merge(PropertyMap from) + { + NDalicPINVOKE.Property_Map_Merge(swigCPtr, PropertyMap.getCPtr(from)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public PropertyValue ValueOfIndex(string key) + { + PropertyValue ret = new PropertyValue(NDalicPINVOKE.Property_Map_ValueOfIndex__SWIG_0(swigCPtr, key), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public PropertyValue ValueOfIndex(int key) + { + PropertyValue ret = new PropertyValue(NDalicPINVOKE.Property_Map_ValueOfIndex__SWIG_2(swigCPtr, key), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public PropertyMap Assign(PropertyMap other) + { + PropertyMap ret = new PropertyMap(NDalicPINVOKE.Property_Map_Assign(swigCPtr, PropertyMap.getCPtr(other)), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + } + + public class PropertyValue : global::System.IDisposable + { + private global::System.Runtime.InteropServices.HandleRef swigCPtr; + protected bool swigCMemOwn; + + internal PropertyValue(global::System.IntPtr cPtr, bool cMemoryOwn) + { + swigCMemOwn = cMemoryOwn; + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); + } + + internal static global::System.Runtime.InteropServices.HandleRef getCPtr(PropertyValue obj) + { + return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; + } + + ~PropertyValue() + { + Dispose(); + } + + public virtual void Dispose() + { + lock (this) + { + if (swigCPtr.Handle != global::System.IntPtr.Zero) + { + if (swigCMemOwn) + { + swigCMemOwn = false; + NDalicPINVOKE.delete_Property_Value(swigCPtr); + } + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); + } + global::System.GC.SuppressFinalize(this); + } + } + + + // Extension to property value class that allows us to create a + // PropertyValue from a C# object, e.g. int, float, string + static public PropertyValue CreateFromObject(System.Object obj) + { + System.Type type = obj.GetType(); + + PropertyValue value; + + if (type.Equals(typeof(int))) + { + System.Console.WriteLine(" got an int property value "); + value = new PropertyValue((int)obj); + } + if (type.Equals(typeof(System.Int32))) + { + System.Console.WriteLine(" got an int property value "); + value = new PropertyValue((int)obj); + } + else if (type.Equals(typeof(bool))) + { + System.Console.WriteLine(" got an bool property value "); + value = new PropertyValue((bool)obj); + } + else if (type.Equals(typeof(float))) + { + System.Console.WriteLine(" got an float property value "); + value = new PropertyValue((float)obj); + } + else if (type.Equals(typeof(string))) + { + System.Console.WriteLine(" got a string property value "); + value = new PropertyValue((string)obj); + } + else if (type.Equals(typeof(Vector2))) + { + System.Console.WriteLine(" got an Vector2 property value "); + value = new PropertyValue((Vector2)obj); + } + else if (type.Equals(typeof(Vector3))) + { + System.Console.WriteLine(" got an Vector3 property value "); + value = new PropertyValue((Vector3)obj); + } + else if (type.Equals(typeof(Vector4))) + { + System.Console.WriteLine(" got an Vector4 property value "); + + value = new PropertyValue((Vector4)obj); + } + else if (type.Equals(typeof(Position))) + { + System.Console.WriteLine(" got an Position property value "); + value = new PropertyValue((Position)obj); + } + else if (type.Equals(typeof(Size))) + { + System.Console.WriteLine(" got an Size property value "); + value = new PropertyValue((Size)obj); + } + else if (type.Equals(typeof(Color))) + { + System.Console.WriteLine(" got an Color property value "); + value = new PropertyValue((Color)obj); + } + else + { + throw new global::System.InvalidOperationException("Unimplemented type for Property Value"); + } + return value; + } + + + + public PropertyValue() : this(NDalicPINVOKE.new_Property_Value__SWIG_0(), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public PropertyValue(bool boolValue) : this(NDalicPINVOKE.new_Property_Value__SWIG_1(boolValue), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public PropertyValue(int integerValue) : this(NDalicPINVOKE.new_Property_Value__SWIG_2(integerValue), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public PropertyValue(float floatValue) : this(NDalicPINVOKE.new_Property_Value__SWIG_3(floatValue), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public PropertyValue(Vector2 vectorValue) : this(NDalicPINVOKE.new_Property_Value__SWIG_4(Vector2.getCPtr(vectorValue)), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + public PropertyValue(Size2D vectorValue) : this(NDalicPINVOKE.new_Property_Value__SWIG_4(Size2D.getCPtr(vectorValue)), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public PropertyValue(Vector3 vectorValue) : this(NDalicPINVOKE.new_Property_Value__SWIG_5(Vector3.getCPtr(vectorValue)), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + public PropertyValue(Size vectorValue) : this(NDalicPINVOKE.new_Property_Value__SWIG_5(Size.getCPtr(vectorValue)), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public PropertyValue(Position vectorValue) : this(NDalicPINVOKE.new_Property_Value__SWIG_5(Position.getCPtr(vectorValue)), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public PropertyValue(Vector4 vectorValue) : this(NDalicPINVOKE.new_Property_Value__SWIG_6(Vector4.getCPtr(vectorValue)), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + public PropertyValue(Color vectorValue) : this(NDalicPINVOKE.new_Property_Value__SWIG_6(Color.getCPtr(vectorValue)), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public PropertyValue(Matrix3 matrixValue) : this(NDalicPINVOKE.new_Property_Value__SWIG_7(Matrix3.getCPtr(matrixValue)), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public PropertyValue(Matrix matrixValue) : this(NDalicPINVOKE.new_Property_Value__SWIG_8(Matrix.getCPtr(matrixValue)), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public PropertyValue(RectInteger vectorValue) : this(NDalicPINVOKE.new_Property_Value__SWIG_9(RectInteger.getCPtr(vectorValue)), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public PropertyValue(AngleAxis angleAxis) : this(NDalicPINVOKE.new_Property_Value__SWIG_10(AngleAxis.getCPtr(angleAxis)), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public PropertyValue(Quaternion quaternion) : this(NDalicPINVOKE.new_Property_Value__SWIG_11(Quaternion.getCPtr(quaternion)), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public PropertyValue(string stringValue) : this(NDalicPINVOKE.new_Property_Value__SWIG_12(stringValue), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public PropertyValue(PropertyArray arrayValue) : this(NDalicPINVOKE.new_Property_Value__SWIG_14(PropertyArray.getCPtr(arrayValue)), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public PropertyValue(PropertyMap mapValue) : this(NDalicPINVOKE.new_Property_Value__SWIG_15(PropertyMap.getCPtr(mapValue)), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public PropertyValue(PropertyType type) : this(NDalicPINVOKE.new_Property_Value__SWIG_16((int)type), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public PropertyValue(PropertyValue value) : this(NDalicPINVOKE.new_Property_Value__SWIG_17(PropertyValue.getCPtr(value)), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public PropertyValue Assign(PropertyValue value) + { + PropertyValue ret = new PropertyValue(NDalicPINVOKE.Property_Value_Assign(swigCPtr, PropertyValue.getCPtr(value)), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public PropertyType GetType() + { + PropertyType ret = (PropertyType)NDalicPINVOKE.Property_Value_GetType(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public bool Get(ref bool boolValue) + { + bool ret = NDalicPINVOKE.Property_Value_Get__SWIG_1(swigCPtr, ref boolValue); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public bool Get(ref float floatValue) + { + bool ret = NDalicPINVOKE.Property_Value_Get__SWIG_2(swigCPtr, ref floatValue); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public bool Get(ref int integerValue) + { + bool ret = NDalicPINVOKE.Property_Value_Get__SWIG_3(swigCPtr, ref integerValue); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public bool Get(RectInteger rect) + { + bool ret = NDalicPINVOKE.Property_Value_Get__SWIG_4(swigCPtr, RectInteger.getCPtr(rect)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public bool Get(Vector2 vectorValue) + { + bool ret = NDalicPINVOKE.Property_Value_Get__SWIG_5(swigCPtr, Vector2.getCPtr(vectorValue)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public bool Get(Size2D vectorValue) + { + bool ret = NDalicPINVOKE.Property_Value_Get__SWIG_5(swigCPtr, Size2D.getCPtr(vectorValue)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public bool Get(Vector3 vectorValue) + { + bool ret = NDalicPINVOKE.Property_Value_Get__SWIG_6(swigCPtr, Vector3.getCPtr(vectorValue)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public bool Get(Size vectorValue) + { + bool ret = NDalicPINVOKE.Property_Value_Get__SWIG_6(swigCPtr, Size.getCPtr(vectorValue)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + public bool Get(Position vectorValue) + { + bool ret = NDalicPINVOKE.Property_Value_Get__SWIG_6(swigCPtr, Position.getCPtr(vectorValue)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public bool Get(Vector4 vectorValue) + { + bool ret = NDalicPINVOKE.Property_Value_Get__SWIG_7(swigCPtr, Vector4.getCPtr(vectorValue)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public bool Get(Color colorValue) + { + bool ret = NDalicPINVOKE.Property_Value_Get__SWIG_7(swigCPtr, Color.getCPtr(colorValue)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal bool Get(Matrix3 matrixValue) + { + bool ret = NDalicPINVOKE.Property_Value_Get__SWIG_8(swigCPtr, Matrix3.getCPtr(matrixValue)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal bool Get(Matrix matrixValue) + { + bool ret = NDalicPINVOKE.Property_Value_Get__SWIG_9(swigCPtr, Matrix.getCPtr(matrixValue)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public bool Get(AngleAxis angleAxisValue) + { + bool ret = NDalicPINVOKE.Property_Value_Get__SWIG_10(swigCPtr, AngleAxis.getCPtr(angleAxisValue)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public bool Get(Quaternion quaternionValue) + { + bool ret = NDalicPINVOKE.Property_Value_Get__SWIG_11(swigCPtr, Quaternion.getCPtr(quaternionValue)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public bool Get(out string stringValue) + { + bool ret = NDalicPINVOKE.Property_Value_Get__SWIG_12(swigCPtr, out stringValue); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public bool Get(PropertyArray arrayValue) + { + bool ret = NDalicPINVOKE.Property_Value_Get__SWIG_13(swigCPtr, PropertyArray.getCPtr(arrayValue)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public bool Get(PropertyMap mapValue) + { + bool ret = NDalicPINVOKE.Property_Value_Get__SWIG_14(swigCPtr, PropertyMap.getCPtr(mapValue)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public PropertyArray GetArray() + { + global::System.IntPtr cPtr = NDalicPINVOKE.Property_Value_GetArray(swigCPtr); + PropertyArray ret = (cPtr == global::System.IntPtr.Zero) ? null : new PropertyArray(cPtr, false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public PropertyMap GetMap() + { + global::System.IntPtr cPtr = NDalicPINVOKE.Property_Value_GetMap(swigCPtr); + PropertyMap ret = (cPtr == global::System.IntPtr.Zero) ? null : new PropertyMap(cPtr, false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + } + + public enum PropertyType + { + None, + Boolean, + Float, + Integer, + Vector2, + Vector3, + Vector4, + Matrix3, + Matrix, + Rectangle, + Rotation, + String, + Array, + Map + } + + public enum PropertyAccessMode + { + ReadOnly, + ReadWrite, + Animatable, + AccessModeCount + } + +} diff --git a/Tizen.NUI/src/public/PushButton.cs b/Tizen.NUI/src/public/PushButton.cs old mode 100644 new mode 100755 index a37ee48..afb13a7 --- a/Tizen.NUI/src/public/PushButton.cs +++ b/Tizen.NUI/src/public/PushButton.cs @@ -1,244 +1,283 @@ -/** Copyright (c) 2017 Samsung Electronics Co., Ltd. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ -// This File has been auto-generated by SWIG and then modified using DALi Ruby Scripts -//------------------------------------------------------------------------------ -// -// -// This file was automatically generated by SWIG (http://www.swig.org). -// Version 3.0.9 -// -// Do not make changes to this file unless you know what you are doing--modify -// the SWIG interface file instead. -//------------------------------------------------------------------------------ - -namespace NUI { - -public class PushButton : Button { - private global::System.Runtime.InteropServices.HandleRef swigCPtr; - - internal PushButton(global::System.IntPtr cPtr, bool cMemoryOwn) : base(NDalicPINVOKE.PushButton_SWIGUpcast(cPtr), cMemoryOwn) { - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); - } - - internal static global::System.Runtime.InteropServices.HandleRef getCPtr(PushButton obj) { - return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; - } - - ~PushButton() { - DisposeQueue.Instance.Add(this); - } - - public override void Dispose() { - if (!Stage.IsInstalled()) { - DisposeQueue.Instance.Add(this); - return; - } - - lock(this) { - if (swigCPtr.Handle != global::System.IntPtr.Zero) { - if (swigCMemOwn) { - swigCMemOwn = false; - NDalicPINVOKE.delete_PushButton(swigCPtr); - } - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); - } - global::System.GC.SuppressFinalize(this); - base.Dispose(); - } - } - - - public class Property : global::System.IDisposable { - private global::System.Runtime.InteropServices.HandleRef swigCPtr; - protected bool swigCMemOwn; - - internal Property(global::System.IntPtr cPtr, bool cMemoryOwn) { - swigCMemOwn = cMemoryOwn; - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); - } - - internal static global::System.Runtime.InteropServices.HandleRef getCPtr(Property obj) { - return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; - } - - ~Property() { - Dispose(); - } - - public virtual void Dispose() { - lock(this) { - if (swigCPtr.Handle != global::System.IntPtr.Zero) { - if (swigCMemOwn) { - swigCMemOwn = false; - NDalicPINVOKE.delete_PushButton_Property(swigCPtr); - } - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); - } - global::System.GC.SuppressFinalize(this); - } - } - - public Property() : this(NDalicPINVOKE.new_PushButton_Property(), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public static readonly int UNSELECTED_ICON = NDalicPINVOKE.PushButton_Property_UNSELECTED_ICON_get(); - public static readonly int SELECTED_ICON = NDalicPINVOKE.PushButton_Property_SELECTED_ICON_get(); - public static readonly int ICON_ALIGNMENT = NDalicPINVOKE.PushButton_Property_ICON_ALIGNMENT_get(); - public static readonly int LABEL_PADDING = NDalicPINVOKE.PushButton_Property_LABEL_PADDING_get(); - public static readonly int ICON_PADDING = NDalicPINVOKE.PushButton_Property_ICON_PADDING_get(); - - } - - public PushButton () : this (NDalicPINVOKE.PushButton_New(), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - - } - public PushButton(PushButton pushButton) : this(NDalicPINVOKE.new_PushButton__SWIG_1(PushButton.getCPtr(pushButton)), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public PushButton Assign(PushButton pushButton) { - PushButton ret = new PushButton(NDalicPINVOKE.PushButton_Assign(swigCPtr, PushButton.getCPtr(pushButton)), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public new static PushButton DownCast(BaseHandle handle) { - PushButton ret = new PushButton(NDalicPINVOKE.PushButton_DownCast(BaseHandle.getCPtr(handle)), true); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public new void SetButtonImage(Image image) { - NDalicPINVOKE.PushButton_SetButtonImage__SWIG_0_0(swigCPtr, Image.getCPtr(image)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public void SetButtonImage(Actor image) { - NDalicPINVOKE.PushButton_SetButtonImage__SWIG_1(swigCPtr, Actor.getCPtr(image)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public void SetBackgroundImage(Actor image) { - NDalicPINVOKE.PushButton_SetBackgroundImage(swigCPtr, Actor.getCPtr(image)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public new void SetSelectedImage(Image image) { - NDalicPINVOKE.PushButton_SetSelectedImage__SWIG_0_0(swigCPtr, Image.getCPtr(image)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public void SetSelectedImage(Actor image) { - NDalicPINVOKE.PushButton_SetSelectedImage__SWIG_1(swigCPtr, Actor.getCPtr(image)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public void SetSelectedBackgroundImage(Actor image) { - NDalicPINVOKE.PushButton_SetSelectedBackgroundImage(swigCPtr, Actor.getCPtr(image)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public void SetDisabledBackgroundImage(Actor image) { - NDalicPINVOKE.PushButton_SetDisabledBackgroundImage(swigCPtr, Actor.getCPtr(image)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public void SetDisabledImage(Actor image) { - NDalicPINVOKE.PushButton_SetDisabledImage(swigCPtr, Actor.getCPtr(image)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public void SetDisabledSelectedImage(Actor image) { - NDalicPINVOKE.PushButton_SetDisabledSelectedImage(swigCPtr, Actor.getCPtr(image)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public enum PropertyRange { - PROPERTY_START_INDEX = PropertyRanges.PROPERTY_REGISTRATION_START_INDEX, - PROPERTY_END_INDEX = View.PropertyRange.PROPERTY_START_INDEX+1000 - } - - public string UnselectedIcon - { - get - { - string temp; - GetProperty( PushButton.Property.UNSELECTED_ICON).Get( out temp ); - return temp; - } - set - { - SetProperty( PushButton.Property.UNSELECTED_ICON, new NUI.Property.Value( value ) ); - } - } - public string SelectedIcon - { - get - { - string temp; - GetProperty( PushButton.Property.SELECTED_ICON).Get( out temp ); - return temp; - } - set - { - SetProperty( PushButton.Property.SELECTED_ICON, new NUI.Property.Value( value ) ); - } - } - public string IconAlignment - { - get - { - string temp; - GetProperty( PushButton.Property.ICON_ALIGNMENT).Get( out temp ); - return temp; - } - set - { - SetProperty( PushButton.Property.ICON_ALIGNMENT, new NUI.Property.Value( value ) ); - } - } - public string LabelPadding - { - get - { - string temp; - GetProperty( PushButton.Property.LABEL_PADDING).Get( out temp ); - return temp; - } - set - { - SetProperty( PushButton.Property.LABEL_PADDING, new NUI.Property.Value( value ) ); - } - } - public string IconPadding - { - get - { - string temp; - GetProperty( PushButton.Property.ICON_PADDING).Get( out temp ); - return temp; - } - set - { - SetProperty( PushButton.Property.ICON_PADDING, new NUI.Property.Value( value ) ); - } - } - -} - -} +// Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved +// PROPRIETARY/CONFIDENTIAL +// This software is the confidential and proprietary +// information of SAMSUNG ELECTRONICS ("Confidential Information"). You shall +// not disclose such Confidential Information and shall use it only in +// accordance with the terms of the license agreement you entered into with +// SAMSUNG ELECTRONICS. SAMSUNG make no representations or warranties about the +// suitability of the software, either express or implied, including but not +// limited to the implied warranties of merchantability, fitness for a +// particular purpose, or non-infringement. SAMSUNG shall not be liable for any +// damages suffered by licensee as a result of using, modifying or distributing +// this software or its derivatives. + +// Copyright (c) 2017 Samsung Electronics Co., Ltd. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// + +// This File has been auto-generated by SWIG and then modified using DALi Ruby Scripts +// Some have been manually changed + + +namespace Tizen.NUI +{ + + public class PushButton : Button + { + private global::System.Runtime.InteropServices.HandleRef swigCPtr; + + internal PushButton(global::System.IntPtr cPtr, bool cMemoryOwn) : base(NDalicPINVOKE.PushButton_SWIGUpcast(cPtr), cMemoryOwn) + { + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); + } + + internal static global::System.Runtime.InteropServices.HandleRef getCPtr(PushButton obj) + { + return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; + } + + ~PushButton() + { + DisposeQueue.Instance.Add(this); + } + + public override void Dispose() + { + if (!Stage.IsInstalled()) + { + DisposeQueue.Instance.Add(this); + return; + } + + lock (this) + { + if (swigCPtr.Handle != global::System.IntPtr.Zero) + { + if (swigCMemOwn) + { + swigCMemOwn = false; + NDalicPINVOKE.delete_PushButton(swigCPtr); + } + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); + } + global::System.GC.SuppressFinalize(this); + base.Dispose(); + } + } + + + internal class Property : global::System.IDisposable + { + private global::System.Runtime.InteropServices.HandleRef swigCPtr; + protected bool swigCMemOwn; + + internal Property(global::System.IntPtr cPtr, bool cMemoryOwn) + { + swigCMemOwn = cMemoryOwn; + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); + } + + internal static global::System.Runtime.InteropServices.HandleRef getCPtr(Property obj) + { + return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; + } + + ~Property() + { + Dispose(); + } + + public virtual void Dispose() + { + lock (this) + { + if (swigCPtr.Handle != global::System.IntPtr.Zero) + { + if (swigCMemOwn) + { + swigCMemOwn = false; + NDalicPINVOKE.delete_PushButton_Property(swigCPtr); + } + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); + } + global::System.GC.SuppressFinalize(this); + } + } + + internal Property() : this(NDalicPINVOKE.new_PushButton_Property(), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + internal static readonly int UNSELECTED_ICON = NDalicPINVOKE.PushButton_Property_UNSELECTED_ICON_get(); + internal static readonly int SELECTED_ICON = NDalicPINVOKE.PushButton_Property_SELECTED_ICON_get(); + internal static readonly int ICON_ALIGNMENT = NDalicPINVOKE.PushButton_Property_ICON_ALIGNMENT_get(); + internal static readonly int LABEL_PADDING = NDalicPINVOKE.PushButton_Property_LABEL_PADDING_get(); + internal static readonly int ICON_PADDING = NDalicPINVOKE.PushButton_Property_ICON_PADDING_get(); + + } + + public PushButton() : this(NDalicPINVOKE.PushButton_New(), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + + } + internal PushButton(PushButton pushButton) : this(NDalicPINVOKE.new_PushButton__SWIG_1(PushButton.getCPtr(pushButton)), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + internal PushButton Assign(PushButton pushButton) + { + PushButton ret = new PushButton(NDalicPINVOKE.PushButton_Assign(swigCPtr, PushButton.getCPtr(pushButton)), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public new static PushButton DownCast(BaseHandle handle) + { + PushButton ret = new PushButton(NDalicPINVOKE.PushButton_DownCast(BaseHandle.getCPtr(handle)), true); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal new void SetButtonImage(Image image) + { + NDalicPINVOKE.PushButton_SetButtonImage__SWIG_0_0(swigCPtr, Image.getCPtr(image)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + internal void SetButtonImage(Actor image) + { + NDalicPINVOKE.PushButton_SetButtonImage__SWIG_1(swigCPtr, Actor.getCPtr(image)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + internal void SetBackgroundImage(Actor image) + { + NDalicPINVOKE.PushButton_SetBackgroundImage(swigCPtr, Actor.getCPtr(image)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + internal new void SetSelectedImage(Image image) + { + NDalicPINVOKE.PushButton_SetSelectedImage__SWIG_0_0(swigCPtr, Image.getCPtr(image)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + internal void SetSelectedImage(Actor image) + { + NDalicPINVOKE.PushButton_SetSelectedImage__SWIG_1(swigCPtr, Actor.getCPtr(image)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + internal void SetSelectedBackgroundImage(Actor image) + { + NDalicPINVOKE.PushButton_SetSelectedBackgroundImage(swigCPtr, Actor.getCPtr(image)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + internal void SetDisabledBackgroundImage(Actor image) + { + NDalicPINVOKE.PushButton_SetDisabledBackgroundImage(swigCPtr, Actor.getCPtr(image)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + internal void SetDisabledImage(Actor image) + { + NDalicPINVOKE.PushButton_SetDisabledImage(swigCPtr, Actor.getCPtr(image)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + internal void SetDisabledSelectedImage(Actor image) + { + NDalicPINVOKE.PushButton_SetDisabledSelectedImage(swigCPtr, Actor.getCPtr(image)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + internal enum PropertyRange + { + PROPERTY_START_INDEX = PropertyRanges.PROPERTY_REGISTRATION_START_INDEX, + PROPERTY_END_INDEX = View.PropertyRange.PROPERTY_START_INDEX + 1000 + } + + public string UnselectedIcon + { + get + { + string temp; + GetProperty(PushButton.Property.UNSELECTED_ICON).Get(out temp); + return temp; + } + set + { + SetProperty(PushButton.Property.UNSELECTED_ICON, new Tizen.NUI.PropertyValue(value)); + } + } + public string SelectedIcon + { + get + { + string temp; + GetProperty(PushButton.Property.SELECTED_ICON).Get(out temp); + return temp; + } + set + { + SetProperty(PushButton.Property.SELECTED_ICON, new Tizen.NUI.PropertyValue(value)); + } + } + public string IconAlignment + { + get + { + string temp; + GetProperty(PushButton.Property.ICON_ALIGNMENT).Get(out temp); + return temp; + } + set + { + SetProperty(PushButton.Property.ICON_ALIGNMENT, new Tizen.NUI.PropertyValue(value)); + } + } + public string LabelPadding + { + get + { + string temp; + GetProperty(PushButton.Property.LABEL_PADDING).Get(out temp); + return temp; + } + set + { + SetProperty(PushButton.Property.LABEL_PADDING, new Tizen.NUI.PropertyValue(value)); + } + } + public string IconPadding + { + get + { + string temp; + GetProperty(PushButton.Property.ICON_PADDING).Get(out temp); + return temp; + } + set + { + SetProperty(PushButton.Property.ICON_PADDING, new Tizen.NUI.PropertyValue(value)); + } + } + + } + +} diff --git a/Tizen.NUI/src/public/RadioButton.cs b/Tizen.NUI/src/public/RadioButton.cs old mode 100644 new mode 100755 index 2fe0328..3de4166 --- a/Tizen.NUI/src/public/RadioButton.cs +++ b/Tizen.NUI/src/public/RadioButton.cs @@ -1,90 +1,111 @@ -/** Copyright (c) 2017 Samsung Electronics Co., Ltd. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ -// This File has been auto-generated by SWIG and then modified using DALi Ruby Scripts -//------------------------------------------------------------------------------ -// -// -// This file was automatically generated by SWIG (http://www.swig.org). -// Version 3.0.9 -// -// Do not make changes to this file unless you know what you are doing--modify -// the SWIG interface file instead. -//------------------------------------------------------------------------------ - -namespace NUI { - -public class RadioButton : Button { - private global::System.Runtime.InteropServices.HandleRef swigCPtr; - - internal RadioButton(global::System.IntPtr cPtr, bool cMemoryOwn) : base(NDalicPINVOKE.RadioButton_SWIGUpcast(cPtr), cMemoryOwn) { - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); - } - - internal static global::System.Runtime.InteropServices.HandleRef getCPtr(RadioButton obj) { - return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; - } - - ~RadioButton() { - DisposeQueue.Instance.Add(this); - } - - public override void Dispose() { - if (!Stage.IsInstalled()) { - DisposeQueue.Instance.Add(this); - return; - } - - lock(this) { - if (swigCPtr.Handle != global::System.IntPtr.Zero) { - if (swigCMemOwn) { - swigCMemOwn = false; - NDalicPINVOKE.delete_RadioButton(swigCPtr); - } - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); - } - global::System.GC.SuppressFinalize(this); - base.Dispose(); - } - } - - - public RadioButton () : this (NDalicPINVOKE.RadioButton_New__SWIG_0(), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - - } - public RadioButton (string label) : this (NDalicPINVOKE.RadioButton_New__SWIG_1(label), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - - } - public RadioButton(RadioButton radioButton) : this(NDalicPINVOKE.new_RadioButton__SWIG_1(RadioButton.getCPtr(radioButton)), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public RadioButton Assign(RadioButton radioButton) { - RadioButton ret = new RadioButton(NDalicPINVOKE.RadioButton_Assign(swigCPtr, RadioButton.getCPtr(radioButton)), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public new static RadioButton DownCast(BaseHandle handle) { - RadioButton ret = new RadioButton(NDalicPINVOKE.RadioButton_DownCast(BaseHandle.getCPtr(handle)), true); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - -} - -} +// Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved +// PROPRIETARY/CONFIDENTIAL +// This software is the confidential and proprietary +// information of SAMSUNG ELECTRONICS ("Confidential Information"). You shall +// not disclose such Confidential Information and shall use it only in +// accordance with the terms of the license agreement you entered into with +// SAMSUNG ELECTRONICS. SAMSUNG make no representations or warranties about the +// suitability of the software, either express or implied, including but not +// limited to the implied warranties of merchantability, fitness for a +// particular purpose, or non-infringement. SAMSUNG shall not be liable for any +// damages suffered by licensee as a result of using, modifying or distributing +// this software or its derivatives. + +// Copyright (c) 2017 Samsung Electronics Co., Ltd. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// + +// This File has been auto-generated by SWIG and then modified using DALi Ruby Scripts +// Some have been manually changed + + +namespace Tizen.NUI +{ + + public class RadioButton : Button + { + private global::System.Runtime.InteropServices.HandleRef swigCPtr; + + internal RadioButton(global::System.IntPtr cPtr, bool cMemoryOwn) : base(NDalicPINVOKE.RadioButton_SWIGUpcast(cPtr), cMemoryOwn) + { + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); + } + + internal static global::System.Runtime.InteropServices.HandleRef getCPtr(RadioButton obj) + { + return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; + } + + ~RadioButton() + { + DisposeQueue.Instance.Add(this); + } + + public override void Dispose() + { + if (!Stage.IsInstalled()) + { + DisposeQueue.Instance.Add(this); + return; + } + + lock (this) + { + if (swigCPtr.Handle != global::System.IntPtr.Zero) + { + if (swigCMemOwn) + { + swigCMemOwn = false; + NDalicPINVOKE.delete_RadioButton(swigCPtr); + } + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); + } + global::System.GC.SuppressFinalize(this); + base.Dispose(); + } + } + + + public RadioButton() : this(NDalicPINVOKE.RadioButton_New__SWIG_0(), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + + } + public RadioButton(string label) : this(NDalicPINVOKE.RadioButton_New__SWIG_1(label), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + + } + internal RadioButton(RadioButton radioButton) : this(NDalicPINVOKE.new_RadioButton__SWIG_1(RadioButton.getCPtr(radioButton)), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + internal RadioButton Assign(RadioButton radioButton) + { + RadioButton ret = new RadioButton(NDalicPINVOKE.RadioButton_Assign(swigCPtr, RadioButton.getCPtr(radioButton)), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public new static RadioButton DownCast(BaseHandle handle) + { + RadioButton ret = new RadioButton(NDalicPINVOKE.RadioButton_DownCast(BaseHandle.getCPtr(handle)), true); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + } + +} diff --git a/Tizen.NUI/src/public/RelayoutContainer.cs b/Tizen.NUI/src/public/RelayoutContainer.cs old mode 100644 new mode 100755 index af627ab..5c48373 --- a/Tizen.NUI/src/public/RelayoutContainer.cs +++ b/Tizen.NUI/src/public/RelayoutContainer.cs @@ -1,56 +1,89 @@ -//------------------------------------------------------------------------------ -// -// -// This file was automatically generated by SWIG (http://www.swig.org). -// Version 3.0.9 -// -// Do not make changes to this file unless you know what you are doing--modify -// the SWIG interface file instead. -//------------------------------------------------------------------------------ - -namespace NUI { - -public class RelayoutContainer : global::System.IDisposable { - private global::System.Runtime.InteropServices.HandleRef swigCPtr; - protected bool swigCMemOwn; - - internal RelayoutContainer(global::System.IntPtr cPtr, bool cMemoryOwn) { - swigCMemOwn = cMemoryOwn; - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); - } - - internal static global::System.Runtime.InteropServices.HandleRef getCPtr(RelayoutContainer obj) { - return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; - } - - ~RelayoutContainer() { - DisposeQueue.Instance.Add(this); - } - - public virtual void Dispose() { - if (!Stage.IsInstalled()) { - DisposeQueue.Instance.Add(this); - return; - } - - lock(this) { - if (swigCPtr.Handle != global::System.IntPtr.Zero) { - if (swigCMemOwn) { - swigCMemOwn = false; - NDalicPINVOKE.delete_RelayoutContainer(swigCPtr); - } - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); - } - global::System.GC.SuppressFinalize(this); - } - } - - - public virtual void Add(Actor actor, Vector2 size) { - NDalicPINVOKE.RelayoutContainer_Add(swigCPtr, Actor.getCPtr(actor), Vector2.getCPtr(size)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - -} - -} +// Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved +// PROPRIETARY/CONFIDENTIAL +// This software is the confidential and proprietary +// information of SAMSUNG ELECTRONICS ("Confidential Information"). You shall +// not disclose such Confidential Information and shall use it only in +// accordance with the terms of the license agreement you entered into with +// SAMSUNG ELECTRONICS. SAMSUNG make no representations or warranties about the +// suitability of the software, either express or implied, including but not +// limited to the implied warranties of merchantability, fitness for a +// particular purpose, or non-infringement. SAMSUNG shall not be liable for any +// damages suffered by licensee as a result of using, modifying or distributing +// this software or its derivatives. + +// Copyright (c) 2017 Samsung Electronics Co., Ltd. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// + +// This File has been auto-generated by SWIG and then modified using DALi Ruby Scripts +// Some have been manually changed + + +namespace Tizen.NUI +{ + + public class RelayoutContainer : global::System.IDisposable + { + private global::System.Runtime.InteropServices.HandleRef swigCPtr; + protected bool swigCMemOwn; + + internal RelayoutContainer(global::System.IntPtr cPtr, bool cMemoryOwn) + { + swigCMemOwn = cMemoryOwn; + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); + } + + internal static global::System.Runtime.InteropServices.HandleRef getCPtr(RelayoutContainer obj) + { + return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; + } + + ~RelayoutContainer() + { + DisposeQueue.Instance.Add(this); + } + + public virtual void Dispose() + { + if (!Stage.IsInstalled()) + { + DisposeQueue.Instance.Add(this); + return; + } + + lock (this) + { + if (swigCPtr.Handle != global::System.IntPtr.Zero) + { + if (swigCMemOwn) + { + swigCMemOwn = false; + NDalicPINVOKE.delete_RelayoutContainer(swigCPtr); + } + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); + } + global::System.GC.SuppressFinalize(this); + } + } + + + public virtual void Add(Actor actor, Size2D size) + { + NDalicPINVOKE.RelayoutContainer_Add(swigCPtr, Actor.getCPtr(actor), Size2D.getCPtr(size)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + } + +} diff --git a/Tizen.NUI/src/public/ResizePolicyType.cs b/Tizen.NUI/src/public/ResizePolicyType.cs deleted file mode 100644 index f87ac96..0000000 --- a/Tizen.NUI/src/public/ResizePolicyType.cs +++ /dev/null @@ -1,24 +0,0 @@ -//------------------------------------------------------------------------------ -// -// -// This file was automatically generated by SWIG (http://www.swig.org). -// Version 3.0.9 -// -// Do not make changes to this file unless you know what you are doing--modify -// the SWIG interface file instead. -//------------------------------------------------------------------------------ - -namespace NUI { - -public enum ResizePolicyType { - FIXED, - USE_NATURAL_SIZE, - FILL_TO_PARENT, - SIZE_RELATIVE_TO_PARENT, - SIZE_FIXED_OFFSET_FROM_PARENT, - FIT_TO_CHILDREN, - DIMENSION_DEPENDENCY, - USE_ASSIGNED_SIZE -} - -} diff --git a/Tizen.NUI/src/public/ScrollBar.cs b/Tizen.NUI/src/public/ScrollBar.cs old mode 100644 new mode 100755 index ecf120e..b2d14e1 --- a/Tizen.NUI/src/public/ScrollBar.cs +++ b/Tizen.NUI/src/public/ScrollBar.cs @@ -1,498 +1,526 @@ -/** Copyright (c) 2017 Samsung Electronics Co., Ltd. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ -// This File has been auto-generated by SWIG and then modified using DALi Ruby Scripts -//------------------------------------------------------------------------------ -// -// -// This file was automatically generated by SWIG (http://www.swig.org). -// Version 3.0.9 -// -// Do not make changes to this file unless you know what you are doing--modify -// the SWIG interface file instead. -//------------------------------------------------------------------------------ - -namespace NUI { - -using System; -using System.Runtime.InteropServices; - - -public class ScrollBar : View { - private global::System.Runtime.InteropServices.HandleRef swigCPtr; - - internal ScrollBar(global::System.IntPtr cPtr, bool cMemoryOwn) : base(NDalicPINVOKE.ScrollBar_SWIGUpcast(cPtr), cMemoryOwn) { - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); - } - - internal static global::System.Runtime.InteropServices.HandleRef getCPtr(ScrollBar obj) { - return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; - } - - ~ScrollBar() { - DisposeQueue.Instance.Add(this); - } - - public override void Dispose() { - if (!Stage.IsInstalled()) { - DisposeQueue.Instance.Add(this); - return; - } - - lock(this) { - if (swigCPtr.Handle != global::System.IntPtr.Zero) { - if (swigCMemOwn) { - swigCMemOwn = false; - NDalicPINVOKE.delete_ScrollBar(swigCPtr); - } - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); - } - global::System.GC.SuppressFinalize(this); - base.Dispose(); - } - } - - - - -public class PanFinishedEventArgs : EventArgs -{ -} - -public class ScrollPositionIntervalReachedEventArgs : EventArgs -{ - private float _currentScrollPosition; - - public float CurrentScrollPosition - { - get - { - return _currentScrollPosition; - } - set - { - _currentScrollPosition = value; - } - } -} - - [UnmanagedFunctionPointer(CallingConvention.StdCall)] - private delegate void PanFinishedEventCallbackDelegate(); - private DaliEventHandler _scrollBarPanFinishedEventHandler; - private PanFinishedEventCallbackDelegate _scrollBarPanFinishedEventCallbackDelegate; - - [UnmanagedFunctionPointer(CallingConvention.StdCall)] - private delegate void ScrollPositionIntervalReachedEventCallbackDelegate(); - private DaliEventHandler _scrollBarScrollPositionIntervalReachedEventHandler; - private ScrollPositionIntervalReachedEventCallbackDelegate _scrollBarScrollPositionIntervalReachedEventCallbackDelegate; - - public event DaliEventHandler PanFinished - { - add - { - lock(this) - { - // Restricted to only one listener - if (_scrollBarPanFinishedEventHandler == null) - { - _scrollBarPanFinishedEventHandler += value; - - _scrollBarPanFinishedEventCallbackDelegate = new PanFinishedEventCallbackDelegate(OnScrollBarPanFinished); - this.PanFinishedSignal().Connect(_scrollBarPanFinishedEventCallbackDelegate); - } - } - } - - remove - { - lock(this) - { - if (_scrollBarPanFinishedEventHandler != null) - { - this.PanFinishedSignal().Disconnect(_scrollBarPanFinishedEventCallbackDelegate); - } - - _scrollBarPanFinishedEventHandler -= value; - } - } - } - - // Callback for ScrollBar PanFinishedSignal - private void OnScrollBarPanFinished() - { - PanFinishedEventArgs e = new PanFinishedEventArgs(); - - if (_scrollBarPanFinishedEventHandler != null) - { - //here we send all data to user event handlers - _scrollBarPanFinishedEventHandler(this, e); - } - } - - - public event DaliEventHandler ScrollPositionIntervalReached - { - add - { - lock(this) - { - // Restricted to only one listener - if (_scrollBarScrollPositionIntervalReachedEventHandler == null) - { - _scrollBarScrollPositionIntervalReachedEventHandler += value; - - _scrollBarScrollPositionIntervalReachedEventCallbackDelegate = new ScrollPositionIntervalReachedEventCallbackDelegate(OnScrollBarScrollPositionIntervalReached); - this.ScrollPositionIntervalReachedSignal().Connect(_scrollBarScrollPositionIntervalReachedEventCallbackDelegate); - } - } - } - - remove - { - lock(this) - { - if (_scrollBarScrollPositionIntervalReachedEventHandler != null) - { - this.ScrollPositionIntervalReachedSignal().Disconnect(_scrollBarScrollPositionIntervalReachedEventCallbackDelegate); - } - - _scrollBarScrollPositionIntervalReachedEventHandler -= value; - } - } - } - - // Callback for ScrollBar ScrollPositionIntervalReachedSignal - private void OnScrollBarScrollPositionIntervalReached() - { - ScrollPositionIntervalReachedEventArgs e = new ScrollPositionIntervalReachedEventArgs(); - - if (_scrollBarScrollPositionIntervalReachedEventHandler != null) - { - //here we send all data to user event handlers - _scrollBarScrollPositionIntervalReachedEventHandler(this, e); - } - } - - - public class Property : global::System.IDisposable { - private global::System.Runtime.InteropServices.HandleRef swigCPtr; - protected bool swigCMemOwn; - - internal Property(global::System.IntPtr cPtr, bool cMemoryOwn) { - swigCMemOwn = cMemoryOwn; - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); - } - - internal static global::System.Runtime.InteropServices.HandleRef getCPtr(Property obj) { - return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; - } - - ~Property() { - Dispose(); - } - - public virtual void Dispose() { - lock(this) { - if (swigCPtr.Handle != global::System.IntPtr.Zero) { - if (swigCMemOwn) { - swigCMemOwn = false; - NDalicPINVOKE.delete_ScrollBar_Property(swigCPtr); - } - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); - } - global::System.GC.SuppressFinalize(this); - } - } - - public Property() : this(NDalicPINVOKE.new_ScrollBar_Property(), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public static readonly int SCROLL_DIRECTION = NDalicPINVOKE.ScrollBar_Property_SCROLL_DIRECTION_get(); - public static readonly int INDICATOR_HEIGHT_POLICY = NDalicPINVOKE.ScrollBar_Property_INDICATOR_HEIGHT_POLICY_get(); - public static readonly int INDICATOR_FIXED_HEIGHT = NDalicPINVOKE.ScrollBar_Property_INDICATOR_FIXED_HEIGHT_get(); - public static readonly int INDICATOR_SHOW_DURATION = NDalicPINVOKE.ScrollBar_Property_INDICATOR_SHOW_DURATION_get(); - public static readonly int INDICATOR_HIDE_DURATION = NDalicPINVOKE.ScrollBar_Property_INDICATOR_HIDE_DURATION_get(); - public static readonly int SCROLL_POSITION_INTERVALS = NDalicPINVOKE.ScrollBar_Property_SCROLL_POSITION_INTERVALS_get(); - public static readonly int INDICATOR_MINIMUM_HEIGHT = NDalicPINVOKE.ScrollBar_Property_INDICATOR_MINIMUM_HEIGHT_get(); - public static readonly int INDICATOR_START_PADDING = NDalicPINVOKE.ScrollBar_Property_INDICATOR_START_PADDING_get(); - public static readonly int INDICATOR_END_PADDING = NDalicPINVOKE.ScrollBar_Property_INDICATOR_END_PADDING_get(); - - } - - public ScrollBar (ScrollBar.Direction direction) : this (NDalicPINVOKE.ScrollBar_New__SWIG_0((int)direction), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - - } - public ScrollBar () : this (NDalicPINVOKE.ScrollBar_New__SWIG_1(), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - - } - public ScrollBar(ScrollBar scrollBar) : this(NDalicPINVOKE.new_ScrollBar__SWIG_1(ScrollBar.getCPtr(scrollBar)), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public ScrollBar Assign(ScrollBar scrollBar) { - ScrollBar ret = new ScrollBar(NDalicPINVOKE.ScrollBar_Assign(swigCPtr, ScrollBar.getCPtr(scrollBar)), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public new static ScrollBar DownCast(BaseHandle handle) { - ScrollBar ret = new ScrollBar(NDalicPINVOKE.ScrollBar_DownCast(BaseHandle.getCPtr(handle)), true); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public void SetScrollPropertySource(Handle handle, int propertyScrollPosition, int propertyMinScrollPosition, int propertyMaxScrollPosition, int propertyScrollContentSize) { - NDalicPINVOKE.ScrollBar_SetScrollPropertySource(swigCPtr, Handle.getCPtr(handle), propertyScrollPosition, propertyMinScrollPosition, propertyMaxScrollPosition, propertyScrollContentSize); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public void SetScrollIndicator(Actor indicator) { - NDalicPINVOKE.ScrollBar_SetScrollIndicator(swigCPtr, Actor.getCPtr(indicator)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public Actor GetScrollIndicator() { - Actor ret = new Actor(NDalicPINVOKE.ScrollBar_GetScrollIndicator(swigCPtr), true); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public void SetScrollPositionIntervals(VectorFloat positions) { - NDalicPINVOKE.ScrollBar_SetScrollPositionIntervals(swigCPtr, VectorFloat.getCPtr(positions)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public VectorFloat GetScrollPositionIntervals() { - VectorFloat ret = new VectorFloat(NDalicPINVOKE.ScrollBar_GetScrollPositionIntervals(swigCPtr), true); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public void SetScrollDirection(ScrollBar.Direction direction) { - NDalicPINVOKE.ScrollBar_SetScrollDirection(swigCPtr, (int)direction); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public ScrollBar.Direction GetScrollDirection() { - ScrollBar.Direction ret = (ScrollBar.Direction)NDalicPINVOKE.ScrollBar_GetScrollDirection(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public void SetIndicatorHeightPolicy(ScrollBar.IndicatorHeightPolicyType policy) { - NDalicPINVOKE.ScrollBar_SetIndicatorHeightPolicy(swigCPtr, (int)policy); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public ScrollBar.IndicatorHeightPolicyType GetIndicatorHeightPolicy() { - ScrollBar.IndicatorHeightPolicyType ret = (ScrollBar.IndicatorHeightPolicyType)NDalicPINVOKE.ScrollBar_GetIndicatorHeightPolicy(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public void SetIndicatorFixedHeight(float height) { - NDalicPINVOKE.ScrollBar_SetIndicatorFixedHeight(swigCPtr, height); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public float GetIndicatorFixedHeight() { - float ret = NDalicPINVOKE.ScrollBar_GetIndicatorFixedHeight(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public void SetIndicatorShowDuration(float durationSeconds) { - NDalicPINVOKE.ScrollBar_SetIndicatorShowDuration(swigCPtr, durationSeconds); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public float GetIndicatorShowDuration() { - float ret = NDalicPINVOKE.ScrollBar_GetIndicatorShowDuration(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public void SetIndicatorHideDuration(float durationSeconds) { - NDalicPINVOKE.ScrollBar_SetIndicatorHideDuration(swigCPtr, durationSeconds); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public float GetIndicatorHideDuration() { - float ret = NDalicPINVOKE.ScrollBar_GetIndicatorHideDuration(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public void ShowIndicator() { - NDalicPINVOKE.ScrollBar_ShowIndicator(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public void HideIndicator() { - NDalicPINVOKE.ScrollBar_HideIndicator(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public VoidSignal PanFinishedSignal() { - VoidSignal ret = new VoidSignal(NDalicPINVOKE.ScrollBar_PanFinishedSignal(swigCPtr), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public FloatSignal ScrollPositionIntervalReachedSignal() { - FloatSignal ret = new FloatSignal(NDalicPINVOKE.ScrollBar_ScrollPositionIntervalReachedSignal(swigCPtr), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public enum PropertyRange { - PROPERTY_START_INDEX = PropertyRanges.PROPERTY_REGISTRATION_START_INDEX, - PROPERTY_END_INDEX = View.PropertyRange.PROPERTY_START_INDEX+1000 - } - - public enum Direction { - Vertical = 0, - Horizontal - } - - public enum IndicatorHeightPolicyType { - Variable = 0, - Fixed - } - - public string ScrollDirection - { - get - { - string temp; - GetProperty( ScrollBar.Property.SCROLL_DIRECTION).Get( out temp ); - return temp; - } - set - { - SetProperty( ScrollBar.Property.SCROLL_DIRECTION, new NUI.Property.Value( value ) ); - } - } - public string IndicatorHeightPolicy - { - get - { - string temp; - GetProperty( ScrollBar.Property.INDICATOR_HEIGHT_POLICY).Get( out temp ); - return temp; - } - set - { - SetProperty( ScrollBar.Property.INDICATOR_HEIGHT_POLICY, new NUI.Property.Value( value ) ); - } - } - public float IndicatorFixedHeight - { - get - { - float temp = 0.0f; - GetProperty( ScrollBar.Property.INDICATOR_FIXED_HEIGHT).Get( ref temp ); - return temp; - } - set - { - SetProperty( ScrollBar.Property.INDICATOR_FIXED_HEIGHT, new NUI.Property.Value( value ) ); - } - } - public float IndicatorShowDuration - { - get - { - float temp = 0.0f; - GetProperty( ScrollBar.Property.INDICATOR_SHOW_DURATION).Get( ref temp ); - return temp; - } - set - { - SetProperty( ScrollBar.Property.INDICATOR_SHOW_DURATION, new NUI.Property.Value( value ) ); - } - } - public float IndicatorHideDuration - { - get - { - float temp = 0.0f; - GetProperty( ScrollBar.Property.INDICATOR_HIDE_DURATION).Get( ref temp ); - return temp; - } - set - { - SetProperty( ScrollBar.Property.INDICATOR_HIDE_DURATION, new NUI.Property.Value( value ) ); - } - } - public NUI.Property.Array ScrollPositionIntervals - { - get - { - NUI.Property.Array temp = new NUI.Property.Array(); - GetProperty( ScrollBar.Property.SCROLL_POSITION_INTERVALS).Get( temp ); - return temp; - } - set - { - SetProperty( ScrollBar.Property.SCROLL_POSITION_INTERVALS, new NUI.Property.Value( value ) ); - } - } - public float IndicatorMinimumHeight - { - get - { - float temp = 0.0f; - GetProperty( ScrollBar.Property.INDICATOR_MINIMUM_HEIGHT).Get( ref temp ); - return temp; - } - set - { - SetProperty( ScrollBar.Property.INDICATOR_MINIMUM_HEIGHT, new NUI.Property.Value( value ) ); - } - } - public float IndicatorStartPadding - { - get - { - float temp = 0.0f; - GetProperty( ScrollBar.Property.INDICATOR_START_PADDING).Get( ref temp ); - return temp; - } - set - { - SetProperty( ScrollBar.Property.INDICATOR_START_PADDING, new NUI.Property.Value( value ) ); - } - } - public float IndicatorEndPadding - { - get - { - float temp = 0.0f; - GetProperty( ScrollBar.Property.INDICATOR_END_PADDING).Get( ref temp ); - return temp; - } - set - { - SetProperty( ScrollBar.Property.INDICATOR_END_PADDING, new NUI.Property.Value( value ) ); - } - } - -} - -} +// Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved +// PROPRIETARY/CONFIDENTIAL +// This software is the confidential and proprietary +// information of SAMSUNG ELECTRONICS ("Confidential Information"). You shall +// not disclose such Confidential Information and shall use it only in +// accordance with the terms of the license agreement you entered into with +// SAMSUNG ELECTRONICS. SAMSUNG make no representations or warranties about the +// suitability of the software, either express or implied, including but not +// limited to the implied warranties of merchantability, fitness for a +// particular purpose, or non-infringement. SAMSUNG shall not be liable for any +// damages suffered by licensee as a result of using, modifying or distributing +// this software or its derivatives. + +// Copyright (c) 2017 Samsung Electronics Co., Ltd. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// + +// This File has been auto-generated by SWIG and then modified using DALi Ruby Scripts +// Some have been manually changed + + +namespace Tizen.NUI +{ + + using System; + using System.Runtime.InteropServices; + + + public class ScrollBar : View + { + private global::System.Runtime.InteropServices.HandleRef swigCPtr; + + internal ScrollBar(global::System.IntPtr cPtr, bool cMemoryOwn) : base(NDalicPINVOKE.ScrollBar_SWIGUpcast(cPtr), cMemoryOwn) + { + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); + } + + internal static global::System.Runtime.InteropServices.HandleRef getCPtr(ScrollBar obj) + { + return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; + } + + ~ScrollBar() + { + DisposeQueue.Instance.Add(this); + } + + public override void Dispose() + { + if (!Stage.IsInstalled()) + { + DisposeQueue.Instance.Add(this); + return; + } + + lock (this) + { + if (swigCPtr.Handle != global::System.IntPtr.Zero) + { + if (swigCMemOwn) + { + swigCMemOwn = false; + NDalicPINVOKE.delete_ScrollBar(swigCPtr); + } + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); + } + global::System.GC.SuppressFinalize(this); + base.Dispose(); + } + } + + + + + public class PanFinishedEventArgs : EventArgs + { + } + + public class ScrollPositionIntervalReachedEventArgs : EventArgs + { + private float _currentScrollPosition; + + public float CurrentScrollPosition + { + get + { + return _currentScrollPosition; + } + set + { + _currentScrollPosition = value; + } + } + } + + [UnmanagedFunctionPointer(CallingConvention.StdCall)] + private delegate void PanFinishedEventCallback(); + private PanFinishedEventCallback _scrollBarPanFinishedEventCallback; + private EventHandler _scrollBarPanFinishedEventHandler; + + [UnmanagedFunctionPointer(CallingConvention.StdCall)] + private delegate void ScrollPositionIntervalReachedEventCallback(); + private ScrollPositionIntervalReachedEventCallback _scrollBarScrollPositionIntervalReachedEventCallback; + private EventHandler _scrollBarScrollPositionIntervalReachedEventHandler; + + public event EventHandler PanFinished + { + add + { + if (_scrollBarPanFinishedEventCallback == null) + { + _scrollBarPanFinishedEventCallback = OnScrollBarPanFinished; + PanFinishedSignal().Connect(_scrollBarPanFinishedEventCallback); + } + _scrollBarPanFinishedEventHandler += value; + } + remove + { + if (_scrollBarPanFinishedEventCallback != null) + { + PanFinishedSignal().Disconnect(_scrollBarPanFinishedEventCallback); + } + _scrollBarPanFinishedEventHandler -= value; + } + } + + private void OnScrollBarPanFinished() + { + PanFinishedEventArgs e = new PanFinishedEventArgs(); + + if (_scrollBarPanFinishedEventHandler != null) + { + _scrollBarPanFinishedEventHandler(this, e); + } + } + + + public event EventHandler ScrollPositionIntervalReached + { + add + { + if (_scrollBarScrollPositionIntervalReachedEventHandler == null) + { + _scrollBarScrollPositionIntervalReachedEventCallback = OnScrollBarScrollPositionIntervalReached; + ScrollPositionIntervalReachedSignal().Connect(_scrollBarScrollPositionIntervalReachedEventCallback); + } + _scrollBarScrollPositionIntervalReachedEventHandler += value; + } + remove + { + if (_scrollBarScrollPositionIntervalReachedEventHandler != null) + { + ScrollPositionIntervalReachedSignal().Disconnect(_scrollBarScrollPositionIntervalReachedEventCallback); + } + _scrollBarScrollPositionIntervalReachedEventHandler -= value; + } + } + + private void OnScrollBarScrollPositionIntervalReached() + { + ScrollPositionIntervalReachedEventArgs e = new ScrollPositionIntervalReachedEventArgs(); + + if (_scrollBarScrollPositionIntervalReachedEventHandler != null) + { + _scrollBarScrollPositionIntervalReachedEventHandler(this, e); + } + } + + + internal class Property : global::System.IDisposable + { + private global::System.Runtime.InteropServices.HandleRef swigCPtr; + protected bool swigCMemOwn; + + internal Property(global::System.IntPtr cPtr, bool cMemoryOwn) + { + swigCMemOwn = cMemoryOwn; + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); + } + + internal static global::System.Runtime.InteropServices.HandleRef getCPtr(Property obj) + { + return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; + } + + ~Property() + { + Dispose(); + } + + public virtual void Dispose() + { + lock (this) + { + if (swigCPtr.Handle != global::System.IntPtr.Zero) + { + if (swigCMemOwn) + { + swigCMemOwn = false; + NDalicPINVOKE.delete_ScrollBar_Property(swigCPtr); + } + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); + } + global::System.GC.SuppressFinalize(this); + } + } + + internal Property() : this(NDalicPINVOKE.new_ScrollBar_Property(), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + internal static readonly int SCROLL_DIRECTION = NDalicPINVOKE.ScrollBar_Property_SCROLL_DIRECTION_get(); + internal static readonly int INDICATOR_HEIGHT_POLICY = NDalicPINVOKE.ScrollBar_Property_INDICATOR_HEIGHT_POLICY_get(); + internal static readonly int INDICATOR_FIXED_HEIGHT = NDalicPINVOKE.ScrollBar_Property_INDICATOR_FIXED_HEIGHT_get(); + internal static readonly int INDICATOR_SHOW_DURATION = NDalicPINVOKE.ScrollBar_Property_INDICATOR_SHOW_DURATION_get(); + internal static readonly int INDICATOR_HIDE_DURATION = NDalicPINVOKE.ScrollBar_Property_INDICATOR_HIDE_DURATION_get(); + internal static readonly int SCROLL_POSITION_INTERVALS = NDalicPINVOKE.ScrollBar_Property_SCROLL_POSITION_INTERVALS_get(); + internal static readonly int INDICATOR_MINIMUM_HEIGHT = NDalicPINVOKE.ScrollBar_Property_INDICATOR_MINIMUM_HEIGHT_get(); + internal static readonly int INDICATOR_START_PADDING = NDalicPINVOKE.ScrollBar_Property_INDICATOR_START_PADDING_get(); + internal static readonly int INDICATOR_END_PADDING = NDalicPINVOKE.ScrollBar_Property_INDICATOR_END_PADDING_get(); + + } + + public ScrollBar(ScrollBar.Direction direction) : this(NDalicPINVOKE.ScrollBar_New__SWIG_0((int)direction), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + + } + public ScrollBar() : this(NDalicPINVOKE.ScrollBar_New__SWIG_1(), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + + } + internal ScrollBar(ScrollBar scrollBar) : this(NDalicPINVOKE.new_ScrollBar__SWIG_1(ScrollBar.getCPtr(scrollBar)), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + internal ScrollBar Assign(ScrollBar scrollBar) + { + ScrollBar ret = new ScrollBar(NDalicPINVOKE.ScrollBar_Assign(swigCPtr, ScrollBar.getCPtr(scrollBar)), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public new static ScrollBar DownCast(BaseHandle handle) + { + ScrollBar ret = new ScrollBar(NDalicPINVOKE.ScrollBar_DownCast(BaseHandle.getCPtr(handle)), true); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal void SetScrollPropertySource(Handle handle, int propertyScrollPosition, int propertyMinScrollPosition, int propertyMaxScrollPosition, int propertyScrollContentSize) + { + NDalicPINVOKE.ScrollBar_SetScrollPropertySource(swigCPtr, Handle.getCPtr(handle), propertyScrollPosition, propertyMinScrollPosition, propertyMaxScrollPosition, propertyScrollContentSize); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + internal void SetScrollIndicator(Actor indicator) + { + NDalicPINVOKE.ScrollBar_SetScrollIndicator(swigCPtr, Actor.getCPtr(indicator)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + internal Actor GetScrollIndicator() + { + Actor ret = new Actor(NDalicPINVOKE.ScrollBar_GetScrollIndicator(swigCPtr), true); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal void SetScrollPositionIntervals(VectorFloat positions) + { + NDalicPINVOKE.ScrollBar_SetScrollPositionIntervals(swigCPtr, VectorFloat.getCPtr(positions)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + internal VectorFloat GetScrollPositionIntervals() + { + VectorFloat ret = new VectorFloat(NDalicPINVOKE.ScrollBar_GetScrollPositionIntervals(swigCPtr), true); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal void SetScrollDirection(ScrollBar.Direction direction) + { + NDalicPINVOKE.ScrollBar_SetScrollDirection(swigCPtr, (int)direction); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + internal ScrollBar.Direction GetScrollDirection() + { + ScrollBar.Direction ret = (ScrollBar.Direction)NDalicPINVOKE.ScrollBar_GetScrollDirection(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal void SetIndicatorHeightPolicy(ScrollBar.IndicatorHeightPolicyType policy) + { + NDalicPINVOKE.ScrollBar_SetIndicatorHeightPolicy(swigCPtr, (int)policy); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + internal ScrollBar.IndicatorHeightPolicyType GetIndicatorHeightPolicy() + { + ScrollBar.IndicatorHeightPolicyType ret = (ScrollBar.IndicatorHeightPolicyType)NDalicPINVOKE.ScrollBar_GetIndicatorHeightPolicy(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal void SetIndicatorFixedHeight(float height) + { + NDalicPINVOKE.ScrollBar_SetIndicatorFixedHeight(swigCPtr, height); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + internal float GetIndicatorFixedHeight() + { + float ret = NDalicPINVOKE.ScrollBar_GetIndicatorFixedHeight(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal void SetIndicatorShowDuration(float durationSeconds) + { + NDalicPINVOKE.ScrollBar_SetIndicatorShowDuration(swigCPtr, durationSeconds); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + internal float GetIndicatorShowDuration() + { + float ret = NDalicPINVOKE.ScrollBar_GetIndicatorShowDuration(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal void SetIndicatorHideDuration(float durationSeconds) + { + NDalicPINVOKE.ScrollBar_SetIndicatorHideDuration(swigCPtr, durationSeconds); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + internal float GetIndicatorHideDuration() + { + float ret = NDalicPINVOKE.ScrollBar_GetIndicatorHideDuration(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal void ShowIndicator() + { + NDalicPINVOKE.ScrollBar_ShowIndicator(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + internal void HideIndicator() + { + NDalicPINVOKE.ScrollBar_HideIndicator(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + internal VoidSignal PanFinishedSignal() + { + VoidSignal ret = new VoidSignal(NDalicPINVOKE.ScrollBar_PanFinishedSignal(swigCPtr), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal FloatSignal ScrollPositionIntervalReachedSignal() + { + FloatSignal ret = new FloatSignal(NDalicPINVOKE.ScrollBar_ScrollPositionIntervalReachedSignal(swigCPtr), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal enum PropertyRange + { + PROPERTY_START_INDEX = PropertyRanges.PROPERTY_REGISTRATION_START_INDEX, + PROPERTY_END_INDEX = View.PropertyRange.PROPERTY_START_INDEX + 1000 + } + + public enum Direction + { + Vertical = 0, + Horizontal + } + + public enum IndicatorHeightPolicyType + { + Variable = 0, + Fixed + } + + public string ScrollDirection + { + get + { + string temp; + GetProperty(ScrollBar.Property.SCROLL_DIRECTION).Get(out temp); + return temp; + } + set + { + SetProperty(ScrollBar.Property.SCROLL_DIRECTION, new Tizen.NUI.PropertyValue(value)); + } + } + public string IndicatorHeightPolicy + { + get + { + string temp; + GetProperty(ScrollBar.Property.INDICATOR_HEIGHT_POLICY).Get(out temp); + return temp; + } + set + { + SetProperty(ScrollBar.Property.INDICATOR_HEIGHT_POLICY, new Tizen.NUI.PropertyValue(value)); + } + } + public float IndicatorFixedHeight + { + get + { + float temp = 0.0f; + GetProperty(ScrollBar.Property.INDICATOR_FIXED_HEIGHT).Get(ref temp); + return temp; + } + set + { + SetProperty(ScrollBar.Property.INDICATOR_FIXED_HEIGHT, new Tizen.NUI.PropertyValue(value)); + } + } + public float IndicatorShowDuration + { + get + { + float temp = 0.0f; + GetProperty(ScrollBar.Property.INDICATOR_SHOW_DURATION).Get(ref temp); + return temp; + } + set + { + SetProperty(ScrollBar.Property.INDICATOR_SHOW_DURATION, new Tizen.NUI.PropertyValue(value)); + } + } + public float IndicatorHideDuration + { + get + { + float temp = 0.0f; + GetProperty(ScrollBar.Property.INDICATOR_HIDE_DURATION).Get(ref temp); + return temp; + } + set + { + SetProperty(ScrollBar.Property.INDICATOR_HIDE_DURATION, new Tizen.NUI.PropertyValue(value)); + } + } + public Tizen.NUI.PropertyArray ScrollPositionIntervals + { + get + { + Tizen.NUI.PropertyArray temp = new Tizen.NUI.PropertyArray(); + GetProperty(ScrollBar.Property.SCROLL_POSITION_INTERVALS).Get(temp); + return temp; + } + set + { + SetProperty(ScrollBar.Property.SCROLL_POSITION_INTERVALS, new Tizen.NUI.PropertyValue(value)); + } + } + public float IndicatorMinimumHeight + { + get + { + float temp = 0.0f; + GetProperty(ScrollBar.Property.INDICATOR_MINIMUM_HEIGHT).Get(ref temp); + return temp; + } + set + { + SetProperty(ScrollBar.Property.INDICATOR_MINIMUM_HEIGHT, new Tizen.NUI.PropertyValue(value)); + } + } + public float IndicatorStartPadding + { + get + { + float temp = 0.0f; + GetProperty(ScrollBar.Property.INDICATOR_START_PADDING).Get(ref temp); + return temp; + } + set + { + SetProperty(ScrollBar.Property.INDICATOR_START_PADDING, new Tizen.NUI.PropertyValue(value)); + } + } + public float IndicatorEndPadding + { + get + { + float temp = 0.0f; + GetProperty(ScrollBar.Property.INDICATOR_END_PADDING).Get(ref temp); + return temp; + } + set + { + SetProperty(ScrollBar.Property.INDICATOR_END_PADDING, new Tizen.NUI.PropertyValue(value)); + } + } + + } + +} diff --git a/Tizen.NUI/src/public/Size.cs b/Tizen.NUI/src/public/Size.cs index 85fe256..bfc2115 100755 --- a/Tizen.NUI/src/public/Size.cs +++ b/Tizen.NUI/src/public/Size.cs @@ -1,323 +1,247 @@ -/* - * Copyright (c) 2016 Samsung Electronics Co., Ltd. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - */ - -namespace NUI -{ - using System; - - public class Size - { - private float width; - private float height; - - /** - * @brief constructor - * - * @since 1.0.0 - * @param [in] a Width value . - * @param [in] b Height value. - */ - public Size(float a, float b) - { - width = a; - height = b; - } - /** - * @brief default constructor - * - * @since 1.0.0 - */ - public Size() - { - width = 0.0f; - height = 0.0f; - } - - /** - * @brief constructor with base class object - * - * @since 1.0.0 - * @param [in] o The Vector2 with Width, Height values. - */ - public Size(Vector2 o) - { - width = o.X; - height = o.Y; - } - - /** - * @brief Copy constructor - * - * @since 1.0.0 - * @param [in] o The Size having Width & Y. - */ - public Size(Size a) - { - width = a.width; - height = a.height; - } - - ///< name "W", type float (Size Width value) - //@since 1.0.0 - public float W - { - get { return width; } - set { width = value; } - } - - ///< name "H", type float (Size Height value) - //@since 1.0.0 - public float H - { - get { return height; } - set { height = value; } - } - - public float Width - { - get { return width; } - set { width = value; } - } - - public float Height - { - get { return height; } - set { height = value; } - } - - /** - * @brief operator+ - * - * @since 1.0.0 - * @param [in] l The Size to add. - * @param [in] r The Size to add - * @return A reference to this - */ - public static Size operator +(Size l, Size r) - { - return new Size(l.W + r.W, l.H + r.H); - } - - /** - * @brief operator- - * - * @since 1.0.0 - * @param [in] l The Size to substract. - * @param [in] r The Size to substract - * @return A reference to this - */ - public static Size operator -(Size l, Size r) - { - return new Size(l.W - r.W, l.H - r.H); - } - - /** - * @brief operator* - * - * @since 1.0.0 - * @param [in] a The Size to multiply - * @param [in] b The constant to multiply of type double. - * @return A reference to this - */ - public static Size operator *(Size a, double b) - { - return new Size((float)(a.W * b), (float)(a.H * b)); - } - - /** - * @brief operator/ - * - * @since 1.0.0 - * @param [in] a The Size to divide. - * @param [in] b The Size to divide - * @return float of the size division - */ - public static float operator /(Size a, Size b) - { - return (float)System.Math.Sqrt((a.W / b.W) * (a.H / b.H)); - } - - /** - * @brief Operator == - * - * @since 1.0.0 - * @param [in] a The Size object to compare. - * @param [in] b The Size object to compare. - * @return bool, whether Size are equal or not - */ - public static bool operator == (Size a, Size b) - { - return a.W == b.W && a.H == b.H ; - } - - /** - * @brief Operator != - * - * @since 1.0.0 - * @param [in] a The Size object to compare. - * @param [in] b The Size object to compare. - * @return bool, whether Size are equal or not - */ - public static bool operator != (Size a, Size b) - { - return a.W != b.W || a.H != b.H; - } - - /** - * @brief GetHashCode - * - * @since 1.0.0 - * @return int, hascode of Size - */ - public override int GetHashCode() - { - return (int)(W + H); - } - - /** - * @brief Clone - * - * @since 1.0.0 - * @return returns a copy of Size object - */ - public Size Clone() - { - Size copy = new Size(W, H); - return copy; - } - - // User-defined conversion from Position to Vector2 - public static implicit operator Vector2(Size size) - { - return new Vector2(size.width, size.height); - } - - public static implicit operator Size(Vector2 vec) - { - return new Size(vec.X, vec.Y); - } - } - - public class Size3D - { - private float width; - private float height; - private float depth; - - public Size3D(float a, float b, float c) - { - width = a; - height = b; - depth = c; - } - - public Size3D() - { - width = 0.0f; - height = 0.0f; - depth = 0.0f; - } - - public Size3D(Vector3 o) - { - width = o.X; - height = o.Y; - depth = o.Z; - } - - public Size3D(Vector2 o) - { - width = o.X; - height = o.Y; - depth = 0.0f; - } - - public Size3D(Size3D a) - { - width = a.width; - height = a.height; - depth = a.depth; - } - - public float W - { - get { return width; } - set { width = value; } - } - - public float H - { - get { return height; } - set { height = value; } - } - - public float D - { - get { return depth; } - set { depth = value; } - } - - public float Width - { - get { return width; } - set { width = value; } - } - - public float Height - { - get { return height; } - set { height = value; } - } - - public float Depth - { - get { return depth; } - set { depth = value; } - } - - public float X - { - get { return width; } - set { width = value; } - } - - public float Y - { - get { return height; } - set { height = value; } - } - - public float Z - { - get { return depth; } - set { depth = value; } - } - - // User-defined conversion from Position to Vector3 - public static implicit operator Vector3(Size3D size) - { - return new Vector3(size.width, size.height, size.depth); - } - - public static implicit operator Size3D(Vector3 vec) - { - return new Size3D(vec.X, vec.Y, vec.Z); - } - - } - -} +// Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved +// PROPRIETARY/CONFIDENTIAL +// This software is the confidential and proprietary +// information of SAMSUNG ELECTRONICS ("Confidential Information"). You shall +// not disclose such Confidential Information and shall use it only in +// accordance with the terms of the license agreement you entered into with +// SAMSUNG ELECTRONICS. SAMSUNG make no representations or warranties about the +// suitability of the software, either express or implied, including but not +// limited to the implied warranties of merchantability, fitness for a +// particular purpose, or non-infringement. SAMSUNG shall not be liable for any +// damages suffered by licensee as a result of using, modifying or distributing +// this software or its derivatives. + +// Copyright (c) 2017 Samsung Electronics Co., Ltd. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// + +// This File has been auto-generated by SWIG and then modified using DALi Ruby Scripts +// Some have been manually changed + + +namespace Tizen.NUI +{ + + public class Size : global::System.IDisposable + { + private global::System.Runtime.InteropServices.HandleRef swigCPtr; + protected bool swigCMemOwn; + + internal Size(global::System.IntPtr cPtr, bool cMemoryOwn) + { + swigCMemOwn = cMemoryOwn; + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); + } + + internal static global::System.Runtime.InteropServices.HandleRef getCPtr(Size obj) + { + return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; + } + + ~Size() + { + DisposeQueue.Instance.Add(this); + } + + public virtual void Dispose() + { + if (!Stage.IsInstalled()) + { + DisposeQueue.Instance.Add(this); + return; + } + + lock (this) + { + if (swigCPtr.Handle != global::System.IntPtr.Zero) + { + if (swigCMemOwn) + { + swigCMemOwn = false; + NDalicPINVOKE.delete_Vector3(swigCPtr); + } + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); + } + global::System.GC.SuppressFinalize(this); + } + } + + + internal static Size GetVector3FromPtr(global::System.IntPtr cPtr) + { + Size ret = new Size(cPtr, false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + + public Size() : this(NDalicPINVOKE.new_Vector3__SWIG_0(), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public Size(float x, float y, float z) : this(NDalicPINVOKE.new_Vector3__SWIG_1(x, y, z), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + + + + public float Width + { + set + { + NDalicPINVOKE.Vector3_Width_set(swigCPtr, value); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + get + { + float ret = NDalicPINVOKE.Vector3_Width_get(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + } + + public float Height + { + set + { + NDalicPINVOKE.Vector3_Height_set(swigCPtr, value); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + get + { + float ret = NDalicPINVOKE.Vector3_Height_get(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + } + + public float Depth + { + set + { + NDalicPINVOKE.Vector3_Depth_set(swigCPtr, value); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + get + { + float ret = NDalicPINVOKE.Vector3_Depth_get(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + } + + } + + + public class Size2D : global::System.IDisposable + { + private global::System.Runtime.InteropServices.HandleRef swigCPtr; + protected bool swigCMemOwn; + + internal Size2D(global::System.IntPtr cPtr, bool cMemoryOwn) + { + swigCMemOwn = cMemoryOwn; + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); + } + + internal static global::System.Runtime.InteropServices.HandleRef getCPtr(Size2D obj) + { + return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; + } + + ~Size2D() + { + DisposeQueue.Instance.Add(this); + } + + public virtual void Dispose() + { + if (!Stage.IsInstalled()) + { + DisposeQueue.Instance.Add(this); + return; + } + + lock (this) + { + if (swigCPtr.Handle != global::System.IntPtr.Zero) + { + if (swigCMemOwn) + { + swigCMemOwn = false; + NDalicPINVOKE.delete_Vector2(swigCPtr); + } + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); + } + global::System.GC.SuppressFinalize(this); + } + } + + + internal static Size2D GetVector2FromPtr(global::System.IntPtr cPtr) + { + Size2D ret = new Size2D(cPtr, false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + + public Size2D() : this(NDalicPINVOKE.new_Vector2__SWIG_0(), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public Size2D(float x, float y) : this(NDalicPINVOKE.new_Vector2__SWIG_1(x, y), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public float Width + { + set + { + NDalicPINVOKE.Vector2_Width_set(swigCPtr, value); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + get + { + float ret = NDalicPINVOKE.Vector2_Width_get(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + } + + + public float Height + { + set + { + NDalicPINVOKE.Vector2_Height_set(swigCPtr, value); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + get + { + float ret = NDalicPINVOKE.Vector2_Height_get(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + } + + } + +} + diff --git a/Tizen.NUI/src/public/SizeScalePolicyType.cs b/Tizen.NUI/src/public/SizeScalePolicyType.cs deleted file mode 100644 index 05c7a39..0000000 --- a/Tizen.NUI/src/public/SizeScalePolicyType.cs +++ /dev/null @@ -1,19 +0,0 @@ -//------------------------------------------------------------------------------ -// -// -// This file was automatically generated by SWIG (http://www.swig.org). -// Version 3.0.9 -// -// Do not make changes to this file unless you know what you are doing--modify -// the SWIG interface file instead. -//------------------------------------------------------------------------------ - -namespace NUI { - -public enum SizeScalePolicyType { - USE_SIZE_SET, - FIT_WITH_ASPECT_RATIO, - FILL_WITH_ASPECT_RATIO -} - -} diff --git a/Tizen.NUI/src/public/Slider.cs b/Tizen.NUI/src/public/Slider.cs old mode 100644 new mode 100755 index d552b7a..715c9b1 --- a/Tizen.NUI/src/public/Slider.cs +++ b/Tizen.NUI/src/public/Slider.cs @@ -1,619 +1,653 @@ -/** Copyright (c) 2017 Samsung Electronics Co., Ltd. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ -// This File has been auto-generated by SWIG and then modified using DALi Ruby Scripts -//------------------------------------------------------------------------------ -// -// -// This file was automatically generated by SWIG (http://www.swig.org). -// Version 3.0.9 -// -// Do not make changes to this file unless you know what you are doing--modify -// the SWIG interface file instead. -//------------------------------------------------------------------------------ - -namespace NUI { - -using System; -using System.Runtime.InteropServices; - - -public class Slider : View { - private global::System.Runtime.InteropServices.HandleRef swigCPtr; - - internal Slider(global::System.IntPtr cPtr, bool cMemoryOwn) : base(NDalicPINVOKE.Slider_SWIGUpcast(cPtr), cMemoryOwn) { - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); - } - - internal static global::System.Runtime.InteropServices.HandleRef getCPtr(Slider obj) { - return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; - } - - ~Slider() { - DisposeQueue.Instance.Add(this); - } - - public override void Dispose() { - if (!Stage.IsInstalled()) { - DisposeQueue.Instance.Add(this); - return; - } - - lock(this) { - if (swigCPtr.Handle != global::System.IntPtr.Zero) { - if (swigCMemOwn) { - swigCMemOwn = false; - NDalicPINVOKE.delete_Slider(swigCPtr); - } - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); - } - global::System.GC.SuppressFinalize(this); - base.Dispose(); - } - } - - - -public class ValueChangedEventArgs : EventArgs -{ - private Slider _slider; - private float _slideValue; - - public Slider Slider - { - get - { - return _slider; - } - set - { - _slider = value; - } - } - - public float SlideValue - { - get - { - return _slideValue; - } - set - { - _slideValue = value; - } - } -} - -public class SlidingFinishedEventArgs : EventArgs -{ - private Slider _slider; - private float _slideValue; - - public Slider Slider - { - get - { - return _slider; - } - set - { - _slider = value; - } - } - - public float SlideValue - { - get - { - return _slideValue; - } - set - { - _slideValue = value; - } - } -} - -public class MarkReachedEventArgs : EventArgs -{ - private Slider _slider; - private int _slideValue; - - public Slider Slider - { - get - { - return _slider; - } - set - { - _slider = value; - } - } - - public int SlideValue - { - get - { - return _slideValue; - } - set - { - _slideValue = value; - } - } -} - - - [UnmanagedFunctionPointer(CallingConvention.StdCall)] - private delegate bool ValueChangedCallbackDelegate(IntPtr slider, float slideValue); - private EventHandlerWithReturnType _sliderValueChangedEventHandler; - private ValueChangedCallbackDelegate _sliderValueChangedCallbackDelegate; - - [UnmanagedFunctionPointer(CallingConvention.StdCall)] - private delegate bool SlidingFinishedCallbackDelegate(IntPtr slider, float slideValue); - private EventHandlerWithReturnType _sliderSlidingFinishedEventHandler; - private SlidingFinishedCallbackDelegate _sliderSlidingFinishedCallbackDelegate; - - [UnmanagedFunctionPointer(CallingConvention.StdCall)] - private delegate bool MarkReachedCallbackDelegate(IntPtr slider, int slideValue); - private EventHandlerWithReturnType _sliderMarkReachedEventHandler; - private MarkReachedCallbackDelegate _sliderMarkReachedCallbackDelegate; - - public event EventHandlerWithReturnType ValueChanged - { - add - { - lock(this) - { - // Restricted to only one listener - if (_sliderValueChangedEventHandler == null) - { - _sliderValueChangedEventHandler += value; - - _sliderValueChangedCallbackDelegate = new ValueChangedCallbackDelegate(OnValueChanged); - this.ValueChangedSignal().Connect(_sliderValueChangedCallbackDelegate); - } - } - } - - remove - { - lock(this) - { - if (_sliderValueChangedEventHandler != null) - { - this.ValueChangedSignal().Disconnect(_sliderValueChangedCallbackDelegate); - } - - _sliderValueChangedEventHandler -= value; - } - } - } - - // Callback for Slider ValueChanged signal - private bool OnValueChanged(IntPtr slider, float slideValue) - { - ValueChangedEventArgs e = new ValueChangedEventArgs(); - - // Populate all members of "e" (ValueChangedEventArgs) with real page - e.Slider = Slider.GetSliderFromPtr( slider ); - e.SlideValue = slideValue; - - if (_sliderValueChangedEventHandler != null) - { - //here we send all page to user event handlers - return _sliderValueChangedEventHandler(this, e); - } - return false; - } - - public event EventHandlerWithReturnType SlidingFinished - { - add - { - lock(this) - { - // Restricted to only one listener - if (_sliderSlidingFinishedEventHandler == null) - { - _sliderSlidingFinishedEventHandler += value; - - _sliderSlidingFinishedCallbackDelegate = new SlidingFinishedCallbackDelegate(OnSlidingFinished); - this.SlidingFinishedSignal().Connect(_sliderSlidingFinishedCallbackDelegate); - } - } - } - - remove - { - lock(this) - { - if (_sliderSlidingFinishedEventHandler != null) - { - this.SlidingFinishedSignal().Disconnect(_sliderSlidingFinishedCallbackDelegate); - } - - _sliderSlidingFinishedEventHandler -= value; - } - } - } - - // Callback for Slider SlidingFinished signal - private bool OnSlidingFinished(IntPtr slider, float slideValue) - { - SlidingFinishedEventArgs e = new SlidingFinishedEventArgs(); - - // Populate all members of "e" (SlidingFinishedEventArgs) with real page - e.Slider = Slider.GetSliderFromPtr( slider ); - e.SlideValue = slideValue; - - if (_sliderSlidingFinishedEventHandler != null) - { - //here we send all page to user event handlers - return _sliderSlidingFinishedEventHandler(this, e); - } - return false; - } - - public event EventHandlerWithReturnType MarkReached - { - add - { - lock(this) - { - // Restricted to only one listener - if (_sliderMarkReachedEventHandler == null) - { - _sliderMarkReachedEventHandler += value; - - _sliderMarkReachedCallbackDelegate = new MarkReachedCallbackDelegate(OnMarkReached); - this.MarkReachedSignal().Connect(_sliderMarkReachedCallbackDelegate); - } - } - } - - remove - { - lock(this) - { - if (_sliderMarkReachedEventHandler != null) - { - this.MarkReachedSignal().Disconnect(_sliderMarkReachedCallbackDelegate); - } - - _sliderMarkReachedEventHandler -= value; - } - } - } - - // Callback for Slider MarkReached signal - private bool OnMarkReached(IntPtr slider, int slideValue) - { - MarkReachedEventArgs e = new MarkReachedEventArgs(); - - // Populate all members of "e" (MarkReachedEventArgs) with real page - e.Slider = Slider.GetSliderFromPtr( slider ); - e.SlideValue = slideValue; - - if (_sliderMarkReachedEventHandler != null) - { - //here we send all page to user event handlers - return _sliderMarkReachedEventHandler(this, e); - } - return false; - } - - public static Slider GetSliderFromPtr(global::System.IntPtr cPtr) { - Slider ret = new Slider(cPtr, false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - - public class Property : global::System.IDisposable { - private global::System.Runtime.InteropServices.HandleRef swigCPtr; - protected bool swigCMemOwn; - - internal Property(global::System.IntPtr cPtr, bool cMemoryOwn) { - swigCMemOwn = cMemoryOwn; - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); - } - - internal static global::System.Runtime.InteropServices.HandleRef getCPtr(Property obj) { - return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; - } - - ~Property() { - Dispose(); - } - - public virtual void Dispose() { - lock(this) { - if (swigCPtr.Handle != global::System.IntPtr.Zero) { - if (swigCMemOwn) { - swigCMemOwn = false; - NDalicPINVOKE.delete_Slider_Property(swigCPtr); - } - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); - } - global::System.GC.SuppressFinalize(this); - } - } - - public Property() : this(NDalicPINVOKE.new_Slider_Property(), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public static readonly int LOWER_BOUND = NDalicPINVOKE.Slider_Property_LOWER_BOUND_get(); - public static readonly int UPPER_BOUND = NDalicPINVOKE.Slider_Property_UPPER_BOUND_get(); - public static readonly int VALUE = NDalicPINVOKE.Slider_Property_VALUE_get(); - public static readonly int TRACK_VISUAL = NDalicPINVOKE.Slider_Property_TRACK_VISUAL_get(); - public static readonly int HANDLE_VISUAL = NDalicPINVOKE.Slider_Property_HANDLE_VISUAL_get(); - public static readonly int PROGRESS_VISUAL = NDalicPINVOKE.Slider_Property_PROGRESS_VISUAL_get(); - public static readonly int POPUP_VISUAL = NDalicPINVOKE.Slider_Property_POPUP_VISUAL_get(); - public static readonly int POPUP_ARROW_VISUAL = NDalicPINVOKE.Slider_Property_POPUP_ARROW_VISUAL_get(); - public static readonly int DISABLED_COLOR = NDalicPINVOKE.Slider_Property_DISABLED_COLOR_get(); - public static readonly int VALUE_PRECISION = NDalicPINVOKE.Slider_Property_VALUE_PRECISION_get(); - public static readonly int SHOW_POPUP = NDalicPINVOKE.Slider_Property_SHOW_POPUP_get(); - public static readonly int SHOW_VALUE = NDalicPINVOKE.Slider_Property_SHOW_VALUE_get(); - public static readonly int MARKS = NDalicPINVOKE.Slider_Property_MARKS_get(); - public static readonly int SNAP_TO_MARKS = NDalicPINVOKE.Slider_Property_SNAP_TO_MARKS_get(); - public static readonly int MARK_TOLERANCE = NDalicPINVOKE.Slider_Property_MARK_TOLERANCE_get(); - - } - - public Slider () : this (NDalicPINVOKE.Slider_New(), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - - } - public Slider(Slider handle) : this(NDalicPINVOKE.new_Slider__SWIG_1(Slider.getCPtr(handle)), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public Slider Assign(Slider handle) { - Slider ret = new Slider(NDalicPINVOKE.Slider_Assign(swigCPtr, Slider.getCPtr(handle)), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public new static Slider DownCast(BaseHandle handle) { - Slider ret = new Slider(NDalicPINVOKE.Slider_DownCast(BaseHandle.getCPtr(handle)), true); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public SliderValueChangedSignal ValueChangedSignal() { - SliderValueChangedSignal ret = new SliderValueChangedSignal(NDalicPINVOKE.Slider_ValueChangedSignal(swigCPtr), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public SliderValueChangedSignal SlidingFinishedSignal() { - SliderValueChangedSignal ret = new SliderValueChangedSignal(NDalicPINVOKE.Slider_SlidingFinishedSignal(swigCPtr), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public SliderMarkReachedSignal MarkReachedSignal() { - SliderMarkReachedSignal ret = new SliderMarkReachedSignal(NDalicPINVOKE.Slider_MarkReachedSignal(swigCPtr), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public enum PropertyRange { - PROPERTY_START_INDEX = PropertyRanges.PROPERTY_REGISTRATION_START_INDEX, - PROPERTY_END_INDEX = View.PropertyRange.PROPERTY_START_INDEX+1000 - } - - public float LowerBound - { - get - { - float temp = 0.0f; - GetProperty( Slider.Property.LOWER_BOUND).Get( ref temp ); - return temp; - } - set - { - SetProperty( Slider.Property.LOWER_BOUND, new NUI.Property.Value( value ) ); - } - } - public float UpperBound - { - get - { - float temp = 0.0f; - GetProperty( Slider.Property.UPPER_BOUND).Get( ref temp ); - return temp; - } - set - { - SetProperty( Slider.Property.UPPER_BOUND, new NUI.Property.Value( value ) ); - } - } - public float Value - { - get - { - float temp = 0.0f; - GetProperty( Slider.Property.VALUE).Get( ref temp ); - return temp; - } - set - { - SetProperty( Slider.Property.VALUE, new NUI.Property.Value( value ) ); - } - } - public NUI.Property.Map TrackVisual - { - get - { - NUI.Property.Map temp = new NUI.Property.Map(); - GetProperty( Slider.Property.TRACK_VISUAL).Get( temp ); - return temp; - } - set - { - SetProperty( Slider.Property.TRACK_VISUAL, new NUI.Property.Value( value ) ); - } - } - public NUI.Property.Map HandleVisual - { - get - { - NUI.Property.Map temp = new NUI.Property.Map(); - GetProperty( Slider.Property.HANDLE_VISUAL).Get( temp ); - return temp; - } - set - { - SetProperty( Slider.Property.HANDLE_VISUAL, new NUI.Property.Value( value ) ); - } - } - public NUI.Property.Map ProgressVisual - { - get - { - NUI.Property.Map temp = new NUI.Property.Map(); - GetProperty( Slider.Property.PROGRESS_VISUAL).Get( temp ); - return temp; - } - set - { - SetProperty( Slider.Property.PROGRESS_VISUAL, new NUI.Property.Value( value ) ); - } - } - public NUI.Property.Map PopupVisual - { - get - { - NUI.Property.Map temp = new NUI.Property.Map(); - GetProperty( Slider.Property.POPUP_VISUAL).Get( temp ); - return temp; - } - set - { - SetProperty( Slider.Property.POPUP_VISUAL, new NUI.Property.Value( value ) ); - } - } - public NUI.Property.Map PopupArrowVisual - { - get - { - NUI.Property.Map temp = new NUI.Property.Map(); - GetProperty( Slider.Property.POPUP_ARROW_VISUAL).Get( temp ); - return temp; - } - set - { - SetProperty( Slider.Property.POPUP_ARROW_VISUAL, new NUI.Property.Value( value ) ); - } - } - public Vector4 DisabledColor - { - get - { - Vector4 temp = new Vector4(0.0f,0.0f,0.0f,0.0f); - GetProperty( Slider.Property.DISABLED_COLOR).Get( temp ); - return temp; - } - set - { - SetProperty( Slider.Property.DISABLED_COLOR, new NUI.Property.Value( value ) ); - } - } - public int ValuePrecision - { - get - { - int temp = 0; - GetProperty( Slider.Property.VALUE_PRECISION).Get( ref temp ); - return temp; - } - set - { - SetProperty( Slider.Property.VALUE_PRECISION, new NUI.Property.Value( value ) ); - } - } - public bool ShowPopup - { - get - { - bool temp = false; - GetProperty( Slider.Property.SHOW_POPUP).Get( ref temp ); - return temp; - } - set - { - SetProperty( Slider.Property.SHOW_POPUP, new NUI.Property.Value( value ) ); - } - } - public bool ShowValue - { - get - { - bool temp = false; - GetProperty( Slider.Property.SHOW_VALUE).Get( ref temp ); - return temp; - } - set - { - SetProperty( Slider.Property.SHOW_VALUE, new NUI.Property.Value( value ) ); - } - } - public NUI.Property.Array Marks - { - get - { - NUI.Property.Array temp = new NUI.Property.Array(); - GetProperty( Slider.Property.MARKS).Get( temp ); - return temp; - } - set - { - SetProperty( Slider.Property.MARKS, new NUI.Property.Value( value ) ); - } - } - public bool SnapToMarks - { - get - { - bool temp = false; - GetProperty( Slider.Property.SNAP_TO_MARKS).Get( ref temp ); - return temp; - } - set - { - SetProperty( Slider.Property.SNAP_TO_MARKS, new NUI.Property.Value( value ) ); - } - } - public float MarkTolerance - { - get - { - float temp = 0.0f; - GetProperty( Slider.Property.MARK_TOLERANCE).Get( ref temp ); - return temp; - } - set - { - SetProperty( Slider.Property.MARK_TOLERANCE, new NUI.Property.Value( value ) ); - } - } - -} - -} +// Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved +// PROPRIETARY/CONFIDENTIAL +// This software is the confidential and proprietary +// information of SAMSUNG ELECTRONICS ("Confidential Information"). You shall +// not disclose such Confidential Information and shall use it only in +// accordance with the terms of the license agreement you entered into with +// SAMSUNG ELECTRONICS. SAMSUNG make no representations or warranties about the +// suitability of the software, either express or implied, including but not +// limited to the implied warranties of merchantability, fitness for a +// particular purpose, or non-infringement. SAMSUNG shall not be liable for any +// damages suffered by licensee as a result of using, modifying or distributing +// this software or its derivatives. + +// Copyright (c) 2017 Samsung Electronics Co., Ltd. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// + +// This File has been auto-generated by SWIG and then modified using DALi Ruby Scripts +// Some have been manually changed + + +namespace Tizen.NUI +{ + + using System; + using System.Runtime.InteropServices; + + + public class Slider : View + { + private global::System.Runtime.InteropServices.HandleRef swigCPtr; + + internal Slider(global::System.IntPtr cPtr, bool cMemoryOwn) : base(NDalicPINVOKE.Slider_SWIGUpcast(cPtr), cMemoryOwn) + { + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); + } + + internal static global::System.Runtime.InteropServices.HandleRef getCPtr(Slider obj) + { + return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; + } + + ~Slider() + { + DisposeQueue.Instance.Add(this); + } + + public override void Dispose() + { + if (!Stage.IsInstalled()) + { + DisposeQueue.Instance.Add(this); + return; + } + + lock (this) + { + if (swigCPtr.Handle != global::System.IntPtr.Zero) + { + if (swigCMemOwn) + { + swigCMemOwn = false; + NDalicPINVOKE.delete_Slider(swigCPtr); + } + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); + } + global::System.GC.SuppressFinalize(this); + base.Dispose(); + } + } + + + + public class ValueChangedEventArgs : EventArgs + { + private Slider _slider; + private float _slideValue; + + public Slider Slider + { + get + { + return _slider; + } + set + { + _slider = value; + } + } + + public float SlideValue + { + get + { + return _slideValue; + } + set + { + _slideValue = value; + } + } + } + + public class SlidingFinishedEventArgs : EventArgs + { + private Slider _slider; + private float _slideValue; + + public Slider Slider + { + get + { + return _slider; + } + set + { + _slider = value; + } + } + + public float SlideValue + { + get + { + return _slideValue; + } + set + { + _slideValue = value; + } + } + } + + public class MarkReachedEventArgs : EventArgs + { + private Slider _slider; + private int _slideValue; + + public Slider Slider + { + get + { + return _slider; + } + set + { + _slider = value; + } + } + + public int SlideValue + { + get + { + return _slideValue; + } + set + { + _slideValue = value; + } + } + } + + + [UnmanagedFunctionPointer(CallingConvention.StdCall)] + private delegate bool ValueChangedCallbackDelegate(IntPtr slider, float slideValue); + private EventHandlerWithReturnType _sliderValueChangedEventHandler; + private ValueChangedCallbackDelegate _sliderValueChangedCallbackDelegate; + + [UnmanagedFunctionPointer(CallingConvention.StdCall)] + private delegate bool SlidingFinishedCallbackDelegate(IntPtr slider, float slideValue); + private EventHandlerWithReturnType _sliderSlidingFinishedEventHandler; + private SlidingFinishedCallbackDelegate _sliderSlidingFinishedCallbackDelegate; + + [UnmanagedFunctionPointer(CallingConvention.StdCall)] + private delegate bool MarkReachedCallbackDelegate(IntPtr slider, int slideValue); + private EventHandlerWithReturnType _sliderMarkReachedEventHandler; + private MarkReachedCallbackDelegate _sliderMarkReachedCallbackDelegate; + + public event EventHandlerWithReturnType ValueChanged + { + add + { + lock (this) + { + // Restricted to only one listener + if (_sliderValueChangedEventHandler == null) + { + _sliderValueChangedEventHandler += value; + + _sliderValueChangedCallbackDelegate = new ValueChangedCallbackDelegate(OnValueChanged); + this.ValueChangedSignal().Connect(_sliderValueChangedCallbackDelegate); + } + } + } + + remove + { + lock (this) + { + if (_sliderValueChangedEventHandler != null) + { + this.ValueChangedSignal().Disconnect(_sliderValueChangedCallbackDelegate); + } + + _sliderValueChangedEventHandler -= value; + } + } + } + + // Callback for Slider ValueChanged signal + private bool OnValueChanged(IntPtr slider, float slideValue) + { + ValueChangedEventArgs e = new ValueChangedEventArgs(); + + // Populate all members of "e" (ValueChangedEventArgs) with real page + e.Slider = Slider.GetSliderFromPtr(slider); + e.SlideValue = slideValue; + + if (_sliderValueChangedEventHandler != null) + { + //here we send all page to user event handlers + return _sliderValueChangedEventHandler(this, e); + } + return false; + } + + public event EventHandlerWithReturnType SlidingFinished + { + add + { + lock (this) + { + // Restricted to only one listener + if (_sliderSlidingFinishedEventHandler == null) + { + _sliderSlidingFinishedEventHandler += value; + + _sliderSlidingFinishedCallbackDelegate = new SlidingFinishedCallbackDelegate(OnSlidingFinished); + this.SlidingFinishedSignal().Connect(_sliderSlidingFinishedCallbackDelegate); + } + } + } + + remove + { + lock (this) + { + if (_sliderSlidingFinishedEventHandler != null) + { + this.SlidingFinishedSignal().Disconnect(_sliderSlidingFinishedCallbackDelegate); + } + + _sliderSlidingFinishedEventHandler -= value; + } + } + } + + // Callback for Slider SlidingFinished signal + private bool OnSlidingFinished(IntPtr slider, float slideValue) + { + SlidingFinishedEventArgs e = new SlidingFinishedEventArgs(); + + // Populate all members of "e" (SlidingFinishedEventArgs) with real page + e.Slider = Slider.GetSliderFromPtr(slider); + e.SlideValue = slideValue; + + if (_sliderSlidingFinishedEventHandler != null) + { + //here we send all page to user event handlers + return _sliderSlidingFinishedEventHandler(this, e); + } + return false; + } + + public event EventHandlerWithReturnType MarkReached + { + add + { + lock (this) + { + // Restricted to only one listener + if (_sliderMarkReachedEventHandler == null) + { + _sliderMarkReachedEventHandler += value; + + _sliderMarkReachedCallbackDelegate = new MarkReachedCallbackDelegate(OnMarkReached); + this.MarkReachedSignal().Connect(_sliderMarkReachedCallbackDelegate); + } + } + } + + remove + { + lock (this) + { + if (_sliderMarkReachedEventHandler != null) + { + this.MarkReachedSignal().Disconnect(_sliderMarkReachedCallbackDelegate); + } + + _sliderMarkReachedEventHandler -= value; + } + } + } + + // Callback for Slider MarkReached signal + private bool OnMarkReached(IntPtr slider, int slideValue) + { + MarkReachedEventArgs e = new MarkReachedEventArgs(); + + // Populate all members of "e" (MarkReachedEventArgs) with real page + e.Slider = Slider.GetSliderFromPtr(slider); + e.SlideValue = slideValue; + + if (_sliderMarkReachedEventHandler != null) + { + //here we send all page to user event handlers + return _sliderMarkReachedEventHandler(this, e); + } + return false; + } + + public static Slider GetSliderFromPtr(global::System.IntPtr cPtr) + { + Slider ret = new Slider(cPtr, false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + + internal class Property : global::System.IDisposable + { + private global::System.Runtime.InteropServices.HandleRef swigCPtr; + protected bool swigCMemOwn; + + internal Property(global::System.IntPtr cPtr, bool cMemoryOwn) + { + swigCMemOwn = cMemoryOwn; + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); + } + + internal static global::System.Runtime.InteropServices.HandleRef getCPtr(Property obj) + { + return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; + } + + ~Property() + { + Dispose(); + } + + public virtual void Dispose() + { + lock (this) + { + if (swigCPtr.Handle != global::System.IntPtr.Zero) + { + if (swigCMemOwn) + { + swigCMemOwn = false; + NDalicPINVOKE.delete_Slider_Property(swigCPtr); + } + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); + } + global::System.GC.SuppressFinalize(this); + } + } + + internal Property() : this(NDalicPINVOKE.new_Slider_Property(), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + internal static readonly int LOWER_BOUND = NDalicPINVOKE.Slider_Property_LOWER_BOUND_get(); + internal static readonly int UPPER_BOUND = NDalicPINVOKE.Slider_Property_UPPER_BOUND_get(); + internal static readonly int VALUE = NDalicPINVOKE.Slider_Property_VALUE_get(); + internal static readonly int TRACK_VISUAL = NDalicPINVOKE.Slider_Property_TRACK_VISUAL_get(); + internal static readonly int HANDLE_VISUAL = NDalicPINVOKE.Slider_Property_HANDLE_VISUAL_get(); + internal static readonly int PROGRESS_VISUAL = NDalicPINVOKE.Slider_Property_PROGRESS_VISUAL_get(); + internal static readonly int POPUP_VISUAL = NDalicPINVOKE.Slider_Property_POPUP_VISUAL_get(); + internal static readonly int POPUP_ARROW_VISUAL = NDalicPINVOKE.Slider_Property_POPUP_ARROW_VISUAL_get(); + internal static readonly int DISABLED_COLOR = NDalicPINVOKE.Slider_Property_DISABLED_COLOR_get(); + internal static readonly int VALUE_PRECISION = NDalicPINVOKE.Slider_Property_VALUE_PRECISION_get(); + internal static readonly int SHOW_POPUP = NDalicPINVOKE.Slider_Property_SHOW_POPUP_get(); + internal static readonly int SHOW_VALUE = NDalicPINVOKE.Slider_Property_SHOW_VALUE_get(); + internal static readonly int MARKS = NDalicPINVOKE.Slider_Property_MARKS_get(); + internal static readonly int SNAP_TO_MARKS = NDalicPINVOKE.Slider_Property_SNAP_TO_MARKS_get(); + internal static readonly int MARK_TOLERANCE = NDalicPINVOKE.Slider_Property_MARK_TOLERANCE_get(); + + } + + public Slider() : this(NDalicPINVOKE.Slider_New(), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + + } + internal Slider(Slider handle) : this(NDalicPINVOKE.new_Slider__SWIG_1(Slider.getCPtr(handle)), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + internal Slider Assign(Slider handle) + { + Slider ret = new Slider(NDalicPINVOKE.Slider_Assign(swigCPtr, Slider.getCPtr(handle)), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public new static Slider DownCast(BaseHandle handle) + { + Slider ret = new Slider(NDalicPINVOKE.Slider_DownCast(BaseHandle.getCPtr(handle)), true); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal SliderValueChangedSignal ValueChangedSignal() + { + SliderValueChangedSignal ret = new SliderValueChangedSignal(NDalicPINVOKE.Slider_ValueChangedSignal(swigCPtr), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal SliderValueChangedSignal SlidingFinishedSignal() + { + SliderValueChangedSignal ret = new SliderValueChangedSignal(NDalicPINVOKE.Slider_SlidingFinishedSignal(swigCPtr), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal SliderMarkReachedSignal MarkReachedSignal() + { + SliderMarkReachedSignal ret = new SliderMarkReachedSignal(NDalicPINVOKE.Slider_MarkReachedSignal(swigCPtr), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal enum PropertyRange + { + PROPERTY_START_INDEX = PropertyRanges.PROPERTY_REGISTRATION_START_INDEX, + PROPERTY_END_INDEX = View.PropertyRange.PROPERTY_START_INDEX + 1000 + } + + public float LowerBound + { + get + { + float temp = 0.0f; + GetProperty(Slider.Property.LOWER_BOUND).Get(ref temp); + return temp; + } + set + { + SetProperty(Slider.Property.LOWER_BOUND, new Tizen.NUI.PropertyValue(value)); + } + } + public float UpperBound + { + get + { + float temp = 0.0f; + GetProperty(Slider.Property.UPPER_BOUND).Get(ref temp); + return temp; + } + set + { + SetProperty(Slider.Property.UPPER_BOUND, new Tizen.NUI.PropertyValue(value)); + } + } + public float Value + { + get + { + float temp = 0.0f; + GetProperty(Slider.Property.VALUE).Get(ref temp); + return temp; + } + set + { + SetProperty(Slider.Property.VALUE, new Tizen.NUI.PropertyValue(value)); + } + } + public PropertyMap TrackVisual + { + get + { + PropertyMap temp = new PropertyMap(); + GetProperty(Slider.Property.TRACK_VISUAL).Get(temp); + return temp; + } + set + { + SetProperty(Slider.Property.TRACK_VISUAL, new Tizen.NUI.PropertyValue(value)); + } + } + public PropertyMap HandleVisual + { + get + { + PropertyMap temp = new PropertyMap(); + GetProperty(Slider.Property.HANDLE_VISUAL).Get(temp); + return temp; + } + set + { + SetProperty(Slider.Property.HANDLE_VISUAL, new Tizen.NUI.PropertyValue(value)); + } + } + public PropertyMap ProgressVisual + { + get + { + PropertyMap temp = new PropertyMap(); + GetProperty(Slider.Property.PROGRESS_VISUAL).Get(temp); + return temp; + } + set + { + SetProperty(Slider.Property.PROGRESS_VISUAL, new Tizen.NUI.PropertyValue(value)); + } + } + public PropertyMap PopupVisual + { + get + { + PropertyMap temp = new PropertyMap(); + GetProperty(Slider.Property.POPUP_VISUAL).Get(temp); + return temp; + } + set + { + SetProperty(Slider.Property.POPUP_VISUAL, new Tizen.NUI.PropertyValue(value)); + } + } + public PropertyMap PopupArrowVisual + { + get + { + PropertyMap temp = new PropertyMap(); + GetProperty(Slider.Property.POPUP_ARROW_VISUAL).Get(temp); + return temp; + } + set + { + SetProperty(Slider.Property.POPUP_ARROW_VISUAL, new Tizen.NUI.PropertyValue(value)); + } + } + public Vector4 DisabledColor + { + get + { + Vector4 temp = new Vector4(0.0f, 0.0f, 0.0f, 0.0f); + GetProperty(Slider.Property.DISABLED_COLOR).Get(temp); + return temp; + } + set + { + SetProperty(Slider.Property.DISABLED_COLOR, new Tizen.NUI.PropertyValue(value)); + } + } + public int ValuePrecision + { + get + { + int temp = 0; + GetProperty(Slider.Property.VALUE_PRECISION).Get(ref temp); + return temp; + } + set + { + SetProperty(Slider.Property.VALUE_PRECISION, new Tizen.NUI.PropertyValue(value)); + } + } + public bool ShowPopup + { + get + { + bool temp = false; + GetProperty(Slider.Property.SHOW_POPUP).Get(ref temp); + return temp; + } + set + { + SetProperty(Slider.Property.SHOW_POPUP, new Tizen.NUI.PropertyValue(value)); + } + } + public bool ShowValue + { + get + { + bool temp = false; + GetProperty(Slider.Property.SHOW_VALUE).Get(ref temp); + return temp; + } + set + { + SetProperty(Slider.Property.SHOW_VALUE, new Tizen.NUI.PropertyValue(value)); + } + } + public Tizen.NUI.PropertyArray Marks + { + get + { + Tizen.NUI.PropertyArray temp = new Tizen.NUI.PropertyArray(); + GetProperty(Slider.Property.MARKS).Get(temp); + return temp; + } + set + { + SetProperty(Slider.Property.MARKS, new Tizen.NUI.PropertyValue(value)); + } + } + public bool SnapToMarks + { + get + { + bool temp = false; + GetProperty(Slider.Property.SNAP_TO_MARKS).Get(ref temp); + return temp; + } + set + { + SetProperty(Slider.Property.SNAP_TO_MARKS, new Tizen.NUI.PropertyValue(value)); + } + } + public float MarkTolerance + { + get + { + float temp = 0.0f; + GetProperty(Slider.Property.MARK_TOLERANCE).Get(ref temp); + return temp; + } + set + { + SetProperty(Slider.Property.MARK_TOLERANCE, new Tizen.NUI.PropertyValue(value)); + } + } + + } + +} diff --git a/Tizen.NUI/src/public/Stage.cs b/Tizen.NUI/src/public/Stage.cs old mode 100644 new mode 100755 index 96ca9fd..cdfe67b --- a/Tizen.NUI/src/public/Stage.cs +++ b/Tizen.NUI/src/public/Stage.cs @@ -1,634 +1,710 @@ -//------------------------------------------------------------------------------ -// -// -// This file was automatically generated by SWIG (http://www.swig.org). -// Version 3.0.9 -// -// Do not make changes to this file unless you know what you are doing--modify -// the SWIG interface file instead. -//------------------------------------------------------------------------------ - -namespace NUI { - -using System; -using System.Runtime.InteropServices; - - -public class Stage : BaseHandle { - private global::System.Runtime.InteropServices.HandleRef swigCPtr; - - internal Stage(global::System.IntPtr cPtr, bool cMemoryOwn) : base(NDalicPINVOKE.Stage_SWIGUpcast(cPtr), cMemoryOwn) { - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); - } - - internal static global::System.Runtime.InteropServices.HandleRef getCPtr(Stage obj) { - return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; - } - - ~Stage() { - DisposeQueue.Instance.Add(this); - } - - public override void Dispose() { - if (!Stage.IsInstalled()) { - DisposeQueue.Instance.Add(this); - return; - } - - lock(this) { - if (swigCPtr.Handle != global::System.IntPtr.Zero) { - if (swigCMemOwn) { - swigCMemOwn = false; - NDalicPINVOKE.delete_Stage(swigCPtr); - } - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); - } - global::System.GC.SuppressFinalize(this); - base.Dispose(); - } - } - - - - - /** - * @brief Event arguments that passed via Touch signal - * - */ - public class TouchEventArgs : EventArgs - { - private TouchData touchData; - - public TouchData TouchData - { - get - { - return touchData; - } - set - { - touchData = value; - } - } - } - - private event EventHandler _stageTouchEventHandler; - [UnmanagedFunctionPointer(CallingConvention.StdCall)] - private delegate void StageTouchCallbackType(IntPtr data); - private StageTouchCallbackType _stageTouchCallback; - - /** - * @brief Event for TouchEvent signal which can be used to subscribe/unsubscribe the event handler - * TouchEvent signal is emitted when the screen is touched and when the touch ends - * (i.e. the down & up touch events only). - * - */ - public event EventHandler TouchEvent - { - add - { - if (_stageTouchEventHandler == null) - { - _stageTouchCallback = OnStageTouch; - this.TouchSignal().Connect(_stageTouchCallback); - } - - _stageTouchEventHandler += value; - } - remove - { - if (_stageTouchEventHandler != null) - { - this.TouchSignal().Disconnect(_stageTouchCallback); - } - - _stageTouchEventHandler -= value; - } - } - - private void OnStageTouch(IntPtr data) - { - TouchEventArgs e = new TouchEventArgs(); - - if (data != null) - { - e.TouchData = NUI.TouchData.GetTouchDataFromPtr(data); - } - - if (_stageTouchEventHandler != null) - { - _stageTouchEventHandler(this, e); - } - } - - /** - * @brief WheelEvent arguments that passed via Wheel signal - * - */ - public class WheelEventArgs : EventArgs - { - private WheelEvent wheelEvent; - - public WheelEvent WheelEvent - { - get - { - return wheelEvent; - } - set - { - wheelEvent = value; - } - } - } - - private event EventHandler _stageWheelEventHandler; - [UnmanagedFunctionPointer(CallingConvention.StdCall)] - private delegate void StageWheelCallbackType(IntPtr data); - private StageWheelCallbackType _stageWheelCallback; - - /** - * @brief Event for WheelEvent signal which can be used to subscribe/unsubscribe the event handler - * WheelEvent signal is emitted is emitted when wheel event is received. - * - */ - public event EventHandler WheelEvent - { - add - { - if (_stageWheelEventHandler == null) - { - _stageWheelCallback = OnStageWheel; - this.WheelEventSignal().Connect(_stageWheelCallback); - } - - _stageWheelEventHandler += value; - } - remove - { - if (_stageWheelEventHandler != null) - { - this.WheelEventSignal().Disconnect(_stageWheelCallback); - } - - _stageWheelEventHandler -= value; - } - } - - private void OnStageWheel(IntPtr data) - { - WheelEventArgs e = new WheelEventArgs(); - - if (data != null) - { - e.WheelEvent = NUI.WheelEvent.GetWheelEventFromPtr(data); - } - - if (_stageWheelEventHandler != null) - { - _stageWheelEventHandler(this, e); - } - } - - /** - * @brief Event arguments that passed via KeyEvent signal - * - */ - public class KeyEventArgs : EventArgs - { - private KeyEvent keyEvent; - - public KeyEvent KeyEvent - { - get - { - return keyEvent; - } - set - { - keyEvent = value; - } - } - } - - private event EventHandler _stageKeyEventHandler; - [UnmanagedFunctionPointer(CallingConvention.StdCall)] - private delegate void StageKeyCallbackType(IntPtr data); - private StageKeyCallbackType _stageKeyCallback; - - public event EventHandler KeyEvent - { - add - { - if (_stageKeyEventHandler == null) - { - _stageKeyCallback = OnStageKey; - this.KeyEventSignal().Connect(_stageKeyCallback); - } - - _stageKeyEventHandler += value; - } - remove - { - if (_stageKeyEventHandler != null) - { - this.KeyEventSignal().Disconnect(_stageKeyCallback); - } - - _stageKeyEventHandler -= value; - } - } - - private void OnStageKey(IntPtr data) - { - KeyEventArgs e = new KeyEventArgs(); - - if (data != null) - { - e.KeyEvent = NUI.KeyEvent.GetKeyEventFromPtr(data); - } - - if (_stageKeyEventHandler != null) - { - _stageKeyEventHandler(this, e); - } - } - - private event EventHandler _stageEventProcessingFinishedEventHandler; - [UnmanagedFunctionPointer(CallingConvention.StdCall)] - private delegate void StageEventProcessingFinishedEventCallbackType(); - private StageEventProcessingFinishedEventCallbackType _stageEventProcessingFinishedEventCallback; - - /** - * @brief Event for EventProcessingFinished signal which can be used to subscribe/unsubscribe the event handler - * provided by the user. EventProcessingFinished signal is emitted just after the event processing is finished. - * - */ - public event EventHandler EventProcessingFinished - { - add - { - if (_stageEventProcessingFinishedEventHandler == null) - { - _stageEventProcessingFinishedEventCallback = OnEventProcessingFinished; - this.EventProcessingFinishedSignal().Connect(_stageEventProcessingFinishedEventCallback); - } - - _stageEventProcessingFinishedEventHandler += value; - } - remove - { - if (_stageEventProcessingFinishedEventHandler != null) - { - this.EventProcessingFinishedSignal().Disconnect(_stageEventProcessingFinishedEventCallback); - } - - _stageEventProcessingFinishedEventHandler -= value; - } - } - - private void OnEventProcessingFinished() - { - if (_stageEventProcessingFinishedEventHandler != null) - { - _stageEventProcessingFinishedEventHandler(this, null); - } - } - - private event EventHandler _stageContextLostEventHandler; - [UnmanagedFunctionPointer(CallingConvention.StdCall)] - private delegate void StageContextLostEventCallbackType(); - private StageContextLostEventCallbackType _stageContextLostEventCallback; - - /** - * @brief Event for ContextLost signal which can be used to subscribe/unsubscribe the event handler - * ContextLost signal is emitted when the GL context is lost (Platform specific behaviour). - * - */ - public event EventHandler ContextLost - { - add - { - if (_stageContextLostEventHandler == null) - { - _stageContextLostEventCallback = OnContextLost; - this.ContextLostSignal().Connect(_stageContextLostEventCallback); - } - - _stageContextLostEventHandler += value; - } - remove - { - if (_stageContextLostEventHandler != null) - { - this.ContextLostSignal().Disconnect(_stageContextLostEventCallback); - } - - _stageContextLostEventHandler -= value; - } - } - - private void OnContextLost() - { - if (_stageContextLostEventHandler != null) - { - _stageContextLostEventHandler(this, null); - } - } - - private event EventHandler _stageContextRegainedEventHandler; - [UnmanagedFunctionPointer(CallingConvention.StdCall)] - private delegate void StageContextRegainedEventCallbackType(); - private StageContextRegainedEventCallbackType _stageContextRegainedEventCallback; - - /** - * @brief Event for ContextRegained signal which can be used to subscribe/unsubscribe the event handler - * provided by the user. ContextRegained signal is emitted when the GL context is regained (Platform specific - * behaviour). - * - */ - public event EventHandler ContextRegained - { - add - { - if (_stageContextRegainedEventHandler == null) - { - _stageContextRegainedEventCallback = OnContextRegained; - this.ContextRegainedSignal().Connect(_stageContextRegainedEventCallback); - } - - _stageContextRegainedEventHandler += value; - } - remove - { - if (_stageContextRegainedEventHandler != null) - { - this.ContextRegainedSignal().Disconnect(_stageContextRegainedEventCallback); - } - - _stageContextRegainedEventHandler -= value; - } - } - - private void OnContextRegained() - { - if (_stageContextRegainedEventHandler != null) - { - _stageContextRegainedEventHandler(this, null); - } - } - - private event EventHandler _stageSceneCreatedEventHandler; - [UnmanagedFunctionPointer(CallingConvention.StdCall)] - private delegate void StageSceneCreatedEventCallbackType(); - private StageSceneCreatedEventCallbackType _stageSceneCreatedEventCallback; - - /** - * @brief Event for SceneCreated signal which can be used to subscribe/unsubscribe the event handler - * SceneCreated signal is emitted after the initial scene is created. - * - */ - public event EventHandler SceneCreated - { - add - { - if (_stageSceneCreatedEventHandler == null) - { - _stageSceneCreatedEventCallback = OnSceneCreated; - this.SceneCreatedSignal().Connect(_stageSceneCreatedEventCallback); - } - - _stageSceneCreatedEventHandler += value; - } - remove - { - if (_stageSceneCreatedEventHandler != null) - { - this.SceneCreatedSignal().Disconnect(_stageSceneCreatedEventCallback); - } - - _stageSceneCreatedEventHandler -= value; - } - } - - private void OnSceneCreated() - { - if (_stageSceneCreatedEventHandler != null) - { - _stageSceneCreatedEventHandler(this, null); - } - } - - - public Vector2 Size - { - get - { - Vector2 ret = GetSize(); - return ret; - } - } - - public Vector4 BackgroundColor - { - set - { - SetBackgroundColor(value); - } - get - { - Vector4 ret = GetBackgroundColor(); - return ret; - } - } - - private static readonly Stage instance = Stage.GetCurrent(); - - public static Stage Instance - { - get - { - return instance; - } - } - - public Layer GetDefaultLayer() - { - return this.GetRootLayer(); - } - - public void AddLayer(Layer layer) - { - this.Add( (Actor)layer ); - } - - public void RemoveLayer(Layer layer) - { - this.Remove( (Actor)layer ); - } - - - - public static Vector4 DEFAULT_BACKGROUND_COLOR { - get { - global::System.IntPtr cPtr = NDalicPINVOKE.Stage_DEFAULT_BACKGROUND_COLOR_get(); - Vector4 ret = (cPtr == global::System.IntPtr.Zero) ? null : new Vector4(cPtr, false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - } - - public static Vector4 DEBUG_BACKGROUND_COLOR { - get { - global::System.IntPtr cPtr = NDalicPINVOKE.Stage_DEBUG_BACKGROUND_COLOR_get(); - Vector4 ret = (cPtr == global::System.IntPtr.Zero) ? null : new Vector4(cPtr, false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - } - - public Stage() : this(NDalicPINVOKE.new_Stage__SWIG_0(), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public static Stage GetCurrent() { - Stage ret = new Stage(NDalicPINVOKE.Stage_GetCurrent(), true); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public static bool IsInstalled() { - bool ret = NDalicPINVOKE.Stage_IsInstalled(); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public Stage(Stage handle) : this(NDalicPINVOKE.new_Stage__SWIG_1(Stage.getCPtr(handle)), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public Stage Assign(Stage rhs) { - Stage ret = new Stage(NDalicPINVOKE.Stage_Assign(swigCPtr, Stage.getCPtr(rhs)), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public void Add(Actor actor) { - NDalicPINVOKE.Stage_Add(swigCPtr, Actor.getCPtr(actor)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public void Remove(Actor actor) { - NDalicPINVOKE.Stage_Remove(swigCPtr, Actor.getCPtr(actor)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public Vector2 GetSize() { - Vector2 ret = new Vector2(NDalicPINVOKE.Stage_GetSize(swigCPtr), true); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public RenderTaskList GetRenderTaskList() { - RenderTaskList ret = new RenderTaskList(NDalicPINVOKE.Stage_GetRenderTaskList(swigCPtr), true); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public uint GetLayerCount() { - uint ret = NDalicPINVOKE.Stage_GetLayerCount(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public Layer GetLayer(uint depth) { - Layer ret = new Layer(NDalicPINVOKE.Stage_GetLayer(swigCPtr, depth), true); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public Layer GetRootLayer() { - Layer ret = new Layer(NDalicPINVOKE.Stage_GetRootLayer(swigCPtr), true); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public void SetBackgroundColor(Vector4 color) { - NDalicPINVOKE.Stage_SetBackgroundColor(swigCPtr, Vector4.getCPtr(color)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public Vector4 GetBackgroundColor() { - Vector4 ret = new Vector4(NDalicPINVOKE.Stage_GetBackgroundColor(swigCPtr), true); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public Vector2 GetDpi() { - Vector2 ret = new Vector2(NDalicPINVOKE.Stage_GetDpi(swigCPtr), true); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public ObjectRegistry GetObjectRegistry() { - ObjectRegistry ret = new ObjectRegistry(NDalicPINVOKE.Stage_GetObjectRegistry(swigCPtr), true); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public void KeepRendering(float durationSeconds) { - NDalicPINVOKE.Stage_KeepRendering(swigCPtr, durationSeconds); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public KeyEventSignal KeyEventSignal() { - KeyEventSignal ret = new KeyEventSignal(NDalicPINVOKE.Stage_KeyEventSignal(swigCPtr), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public VoidSignal EventProcessingFinishedSignal() { - VoidSignal ret = new VoidSignal(NDalicPINVOKE.Stage_EventProcessingFinishedSignal(swigCPtr), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public SWIGTYPE_p_Dali__SignalT_void_fDali__TouchEvent_const_RF_t TouchedSignal() { - SWIGTYPE_p_Dali__SignalT_void_fDali__TouchEvent_const_RF_t ret = new SWIGTYPE_p_Dali__SignalT_void_fDali__TouchEvent_const_RF_t(NDalicPINVOKE.Stage_TouchedSignal(swigCPtr), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public TouchSignal TouchSignal() { - TouchSignal ret = new TouchSignal(NDalicPINVOKE.Stage_TouchSignal(swigCPtr), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public StageWheelEventSignal WheelEventSignal() { - StageWheelEventSignal ret = new StageWheelEventSignal(NDalicPINVOKE.Stage_WheelEventSignal(swigCPtr), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public VoidSignal ContextLostSignal() { - VoidSignal ret = new VoidSignal(NDalicPINVOKE.Stage_ContextLostSignal(swigCPtr), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public VoidSignal ContextRegainedSignal() { - VoidSignal ret = new VoidSignal(NDalicPINVOKE.Stage_ContextRegainedSignal(swigCPtr), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public VoidSignal SceneCreatedSignal() { - VoidSignal ret = new VoidSignal(NDalicPINVOKE.Stage_SceneCreatedSignal(swigCPtr), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - -} - -} +// Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved +// PROPRIETARY/CONFIDENTIAL +// This software is the confidential and proprietary +// information of SAMSUNG ELECTRONICS ("Confidential Information"). You shall +// not disclose such Confidential Information and shall use it only in +// accordance with the terms of the license agreement you entered into with +// SAMSUNG ELECTRONICS. SAMSUNG make no representations or warranties about the +// suitability of the software, either express or implied, including but not +// limited to the implied warranties of merchantability, fitness for a +// particular purpose, or non-infringement. SAMSUNG shall not be liable for any +// damages suffered by licensee as a result of using, modifying or distributing +// this software or its derivatives. + +// Copyright (c) 2017 Samsung Electronics Co., Ltd. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// + +// This File has been auto-generated by SWIG and then modified using DALi Ruby Scripts +// Some have been manually changed + + +namespace Tizen.NUI +{ + + using System; + using System.Runtime.InteropServices; + + + public class Stage : BaseHandle + { + private global::System.Runtime.InteropServices.HandleRef swigCPtr; + + internal Stage(global::System.IntPtr cPtr, bool cMemoryOwn) : base(NDalicPINVOKE.Stage_SWIGUpcast(cPtr), cMemoryOwn) + { + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); + } + + internal static global::System.Runtime.InteropServices.HandleRef getCPtr(Stage obj) + { + return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; + } + + ~Stage() + { + DisposeQueue.Instance.Add(this); + } + + public override void Dispose() + { + if (!Stage.IsInstalled()) + { + DisposeQueue.Instance.Add(this); + return; + } + + lock (this) + { + if (swigCPtr.Handle != global::System.IntPtr.Zero) + { + if (swigCMemOwn) + { + swigCMemOwn = false; + NDalicPINVOKE.delete_Stage(swigCPtr); + } + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); + } + global::System.GC.SuppressFinalize(this); + base.Dispose(); + } + } + + + /** + * @brief Event arguments that passed via Touch signal + * + */ + public class TouchEventArgs : EventArgs + { + private Touch _touch; + + /** + * @brief Touch - contains the information of touch points + * + */ + public Touch Touch + { + get + { + return _touch; + } + set + { + _touch = value; + } + } + } + + private event EventHandler _stageTouchEventHandler; + [UnmanagedFunctionPointer(CallingConvention.StdCall)] + private delegate void StageTouchCallbackType(IntPtr data); + private StageTouchCallbackType _stageTouchCallback; + + /** + * @brief Event for TouchEvent signal which can be used to subscribe/unsubscribe the event handler + * TouchEvent signal is emitted when the screen is touched and when the touch ends + * (i.e. the down & up touch events only). + * + */ + public event EventHandler Touch + { + add + { + if (_stageTouchEventHandler == null) + { + _stageTouchCallback = OnStageTouch; + TouchSignal().Connect(_stageTouchCallback); + } + + _stageTouchEventHandler += value; + } + remove + { + if (_stageTouchEventHandler != null) + { + TouchSignal().Disconnect(_stageTouchCallback); + } + + _stageTouchEventHandler -= value; + } + } + + private void OnStageTouch(IntPtr data) + { + TouchEventArgs e = new TouchEventArgs(); + + if (data != null) + { + e.Touch = Tizen.NUI.Touch.GetTouchFromPtr(data); + } + + if (_stageTouchEventHandler != null) + { + _stageTouchEventHandler(this, e); + } + } + + /** + * @brief Wheel arguments that passed via Wheel signal + * + */ + public class WheelEventArgs : EventArgs + { + private Wheel _wheel; + + public Wheel Wheel + { + get + { + return _wheel; + } + set + { + _wheel = value; + } + } + } + + private event EventHandler _stageWheelEventHandler; + [UnmanagedFunctionPointer(CallingConvention.StdCall)] + private delegate void StageWheelCallbackType(IntPtr data); + private StageWheelCallbackType _stageWheelCallback; + + /** + * @brief Event for Wheel signal which can be used to subscribe/unsubscribe the event handler + * Wheel signal is emitted is emitted when wheel event is received. + * + */ + public event EventHandler Wheel + { + add + { + if (_stageWheelEventHandler == null) + { + _stageWheelCallback = OnStageWheel; + WheelEventSignal().Connect(_stageWheelCallback); + } + + _stageWheelEventHandler += value; + } + remove + { + if (_stageWheelEventHandler != null) + { + WheelEventSignal().Disconnect(_stageWheelCallback); + } + + _stageWheelEventHandler -= value; + } + } + + private void OnStageWheel(IntPtr data) + { + WheelEventArgs e = new WheelEventArgs(); + + if (data != null) + { + e.Wheel = Tizen.NUI.Wheel.GetWheelFromPtr(data); + } + + if (_stageWheelEventHandler != null) + { + _stageWheelEventHandler(this, e); + } + } + + /** + * @brief Event arguments that passed via Key signal + * + */ + public class KeyEventArgs : EventArgs + { + private Key _key; + + public Key Key + { + get + { + return _key; + } + set + { + _key = value; + } + } + } + + private event EventHandler _stageKeyEventHandler; + [UnmanagedFunctionPointer(CallingConvention.StdCall)] + private delegate void StageKeyCallbackType(IntPtr data); + private StageKeyCallbackType _stageKeyCallback; + + /** + * @brief Event for Key signal which can be used to subscribe/unsubscribe the event handler + * Key signal is emitted is emitted when key event is received. + * + */ + public event EventHandler Key + { + add + { + if (_stageKeyEventHandler == null) + { + _stageKeyCallback = OnStageKey; + KeyEventSignal().Connect(_stageKeyCallback); + } + + _stageKeyEventHandler += value; + } + remove + { + if (_stageKeyEventHandler != null) + { + KeyEventSignal().Disconnect(_stageKeyCallback); + } + + _stageKeyEventHandler -= value; + } + } + + // Callback for Stage KeyEventsignal + private void OnStageKey(IntPtr data) + { + KeyEventArgs e = new KeyEventArgs(); + + if (data != null) + { + e.Key = Tizen.NUI.Key.GetKeyFromPtr(data); + } + + if (_stageKeyEventHandler != null) + { + _stageKeyEventHandler(this, e); + } + } + + private event EventHandler _stageEventProcessingFinishedEventHandler; + [UnmanagedFunctionPointer(CallingConvention.StdCall)] + private delegate void StageEventProcessingFinishedEventCallbackType(); + private StageEventProcessingFinishedEventCallbackType _stageEventProcessingFinishedEventCallback; + + /** + * @brief Event for EventProcessingFinished signal which can be used to subscribe/unsubscribe the event handler + * provided by the user. EventProcessingFinished signal is emitted just after the event processing is finished. + * + */ + internal event EventHandler EventProcessingFinished + { + add + { + if (_stageEventProcessingFinishedEventHandler == null) + { + _stageEventProcessingFinishedEventCallback = OnEventProcessingFinished; + EventProcessingFinishedSignal().Connect(_stageEventProcessingFinishedEventCallback); + } + + _stageEventProcessingFinishedEventHandler += value; + } + remove + { + if (_stageEventProcessingFinishedEventHandler != null) + { + EventProcessingFinishedSignal().Disconnect(_stageEventProcessingFinishedEventCallback); + } + + _stageEventProcessingFinishedEventHandler -= value; + } + } + + private void OnEventProcessingFinished() + { + if (_stageEventProcessingFinishedEventHandler != null) + { + _stageEventProcessingFinishedEventHandler(this, null); + } + } + + private event EventHandler _stageContextLostEventHandler; + [UnmanagedFunctionPointer(CallingConvention.StdCall)] + private delegate void StageContextLostEventCallbackType(); + private StageContextLostEventCallbackType _stageContextLostEventCallback; + + /** + * @brief Event for ContextLost signal which can be used to subscribe/unsubscribe the event handler + * ContextLost signal is emitted when the GL context is lost (Platform specific behaviour). + * + */ + internal event EventHandler ContextLost + { + add + { + if (_stageContextLostEventHandler == null) + { + _stageContextLostEventCallback = OnContextLost; + ContextLostSignal().Connect(_stageContextLostEventCallback); + } + + _stageContextLostEventHandler += value; + } + remove + { + if (_stageContextLostEventHandler != null) + { + ContextLostSignal().Disconnect(_stageContextLostEventCallback); + } + + _stageContextLostEventHandler -= value; + } + } + + private void OnContextLost() + { + if (_stageContextLostEventHandler != null) + { + _stageContextLostEventHandler(this, null); + } + } + + private event EventHandler _stageContextRegainedEventHandler; + [UnmanagedFunctionPointer(CallingConvention.StdCall)] + private delegate void StageContextRegainedEventCallbackType(); + private StageContextRegainedEventCallbackType _stageContextRegainedEventCallback; + + /** + * @brief Event for ContextRegained signal which can be used to subscribe/unsubscribe the event handler + * provided by the user. ContextRegained signal is emitted when the GL context is regained (Platform specific + * behaviour). + * + */ + internal event EventHandler ContextRegained + { + add + { + if (_stageContextRegainedEventHandler == null) + { + _stageContextRegainedEventCallback = OnContextRegained; + ContextRegainedSignal().Connect(_stageContextRegainedEventCallback); + } + + _stageContextRegainedEventHandler += value; + } + remove + { + if (_stageContextRegainedEventHandler != null) + { + ContextRegainedSignal().Disconnect(_stageContextRegainedEventCallback); + } + + _stageContextRegainedEventHandler -= value; + } + } + + private void OnContextRegained() + { + if (_stageContextRegainedEventHandler != null) + { + _stageContextRegainedEventHandler(this, null); + } + } + + private event EventHandler _stageSceneCreatedEventHandler; + [UnmanagedFunctionPointer(CallingConvention.StdCall)] + private delegate void StageSceneCreatedEventCallbackType(); + private StageSceneCreatedEventCallbackType _stageSceneCreatedEventCallback; + + /** + * @brief Event for SceneCreated signal which can be used to subscribe/unsubscribe the event handler + * SceneCreated signal is emitted after the initial scene is created. + * + */ + internal event EventHandler SceneCreated + { + add + { + if (_stageSceneCreatedEventHandler == null) + { + _stageSceneCreatedEventCallback = OnSceneCreated; + SceneCreatedSignal().Connect(_stageSceneCreatedEventCallback); + } + + _stageSceneCreatedEventHandler += value; + } + remove + { + if (_stageSceneCreatedEventHandler != null) + { + SceneCreatedSignal().Disconnect(_stageSceneCreatedEventCallback); + } + + _stageSceneCreatedEventHandler -= value; + } + } + + private void OnSceneCreated() + { + if (_stageSceneCreatedEventHandler != null) + { + _stageSceneCreatedEventHandler(this, null); + } + } + + + public Size2D Size + { + get + { + Size2D ret = GetSize(); + return ret; + } + } + + public Color BackgroundColor + { + set + { + SetBackgroundColor(value); + } + get + { + Color ret = GetBackgroundColor(); + return ret; + } + } + + public Vector2 Dpi + { + get + { + return GetDpi(); + } + } + + public uint LayerCount + { + get + { + return GetLayerCount(); + } + } + + private static readonly Stage instance = Stage.GetCurrent(); + + public static Stage Instance + { + get + { + return instance; + } + } + + public Layer GetDefaultLayer() + { + return this.GetRootLayer(); + } + + public void AddLayer(Layer layer) + { + this.Add((Actor)layer); + } + + public void RemoveLayer(Layer layer) + { + this.Remove((Actor)layer); + } + + internal static Vector4 DEFAULT_BACKGROUND_COLOR + { + get + { + global::System.IntPtr cPtr = NDalicPINVOKE.Stage_DEFAULT_BACKGROUND_COLOR_get(); + Vector4 ret = (cPtr == global::System.IntPtr.Zero) ? null : new Vector4(cPtr, false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + } + + internal static Vector4 DEBUG_BACKGROUND_COLOR + { + get + { + global::System.IntPtr cPtr = NDalicPINVOKE.Stage_DEBUG_BACKGROUND_COLOR_get(); + Vector4 ret = (cPtr == global::System.IntPtr.Zero) ? null : new Vector4(cPtr, false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + } + + internal Stage() : this(NDalicPINVOKE.new_Stage__SWIG_0(), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + internal static Stage GetCurrent() + { + Stage ret = new Stage(NDalicPINVOKE.Stage_GetCurrent(), true); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal static bool IsInstalled() + { + bool ret = NDalicPINVOKE.Stage_IsInstalled(); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal Stage(Stage handle) : this(NDalicPINVOKE.new_Stage__SWIG_1(Stage.getCPtr(handle)), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + internal Stage Assign(Stage rhs) + { + Stage ret = new Stage(NDalicPINVOKE.Stage_Assign(swigCPtr, Stage.getCPtr(rhs)), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal void Add(Actor actor) + { + NDalicPINVOKE.Stage_Add(swigCPtr, Actor.getCPtr(actor)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + internal void Remove(Actor actor) + { + NDalicPINVOKE.Stage_Remove(swigCPtr, Actor.getCPtr(actor)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + internal Size2D GetSize() + { + Size2D ret = new Size2D(NDalicPINVOKE.Stage_GetSize(swigCPtr), true); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal RenderTaskList GetRenderTaskList() + { + RenderTaskList ret = new RenderTaskList(NDalicPINVOKE.Stage_GetRenderTaskList(swigCPtr), true); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal uint GetLayerCount() + { + uint ret = NDalicPINVOKE.Stage_GetLayerCount(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public Layer GetLayer(uint depth) + { + Layer ret = new Layer(NDalicPINVOKE.Stage_GetLayer(swigCPtr, depth), true); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal Layer GetRootLayer() + { + Layer ret = new Layer(NDalicPINVOKE.Stage_GetRootLayer(swigCPtr), true); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + + internal void SetBackgroundColor(Color color) + { + NDalicPINVOKE.Stage_SetBackgroundColor(swigCPtr, Color.getCPtr(color)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + internal Color GetBackgroundColor() + { + Color ret = new Color(NDalicPINVOKE.Stage_GetBackgroundColor(swigCPtr), true); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + internal Vector2 GetDpi() + { + Vector2 ret = new Vector2(NDalicPINVOKE.Stage_GetDpi(swigCPtr), true); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal ObjectRegistry GetObjectRegistry() + { + ObjectRegistry ret = new ObjectRegistry(NDalicPINVOKE.Stage_GetObjectRegistry(swigCPtr), true); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public void KeepRendering(float durationSeconds) + { + NDalicPINVOKE.Stage_KeepRendering(swigCPtr, durationSeconds); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + internal KeyEventSignal KeyEventSignal() + { + KeyEventSignal ret = new KeyEventSignal(NDalicPINVOKE.Stage_KeyEventSignal(swigCPtr), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal VoidSignal EventProcessingFinishedSignal() + { + VoidSignal ret = new VoidSignal(NDalicPINVOKE.Stage_EventProcessingFinishedSignal(swigCPtr), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal TouchSignal TouchSignal() + { + TouchSignal ret = new TouchSignal(NDalicPINVOKE.Stage_TouchSignal(swigCPtr), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal StageWheelSignal WheelEventSignal() + { + StageWheelSignal ret = new StageWheelSignal(NDalicPINVOKE.Stage_WheelEventSignal(swigCPtr), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal VoidSignal ContextLostSignal() + { + VoidSignal ret = new VoidSignal(NDalicPINVOKE.Stage_ContextLostSignal(swigCPtr), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal VoidSignal ContextRegainedSignal() + { + VoidSignal ret = new VoidSignal(NDalicPINVOKE.Stage_ContextRegainedSignal(swigCPtr), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal VoidSignal SceneCreatedSignal() + { + VoidSignal ret = new VoidSignal(NDalicPINVOKE.Stage_SceneCreatedSignal(swigCPtr), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + } + +} diff --git a/Tizen.NUI/src/public/StyleManager.cs b/Tizen.NUI/src/public/StyleManager.cs old mode 100644 new mode 100755 index d9c7e7d..66b1511 --- a/Tizen.NUI/src/public/StyleManager.cs +++ b/Tizen.NUI/src/public/StyleManager.cs @@ -1,207 +1,226 @@ -//------------------------------------------------------------------------------ -// -// -// This file was automatically generated by SWIG (http://www.swig.org). -// Version 3.0.9 -// -// Do not make changes to this file unless you know what you are doing--modify -// the SWIG interface file instead. -//------------------------------------------------------------------------------ - -namespace NUI { - -using System; -using System.Runtime.InteropServices; - -public class StyleManager : BaseHandle { - private global::System.Runtime.InteropServices.HandleRef swigCPtr; - - internal StyleManager(global::System.IntPtr cPtr, bool cMemoryOwn) : base(NDalicPINVOKE.StyleManager_SWIGUpcast(cPtr), cMemoryOwn) { - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); - } - - internal static global::System.Runtime.InteropServices.HandleRef getCPtr(StyleManager obj) { - return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; - } - - ~StyleManager() { - DisposeQueue.Instance.Add(this); - } - - public override void Dispose() { - if (!Stage.IsInstalled()) { - DisposeQueue.Instance.Add(this); - return; - } - - lock(this) { - if (swigCPtr.Handle != global::System.IntPtr.Zero) { - if (swigCMemOwn) { - swigCMemOwn = false; - NDalicPINVOKE.delete_StyleManager(swigCPtr); - } - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); - } - global::System.GC.SuppressFinalize(this); - base.Dispose(); - } - } - - - - -/** - * @brief Event arguments that passed via StyleChanged signal - * - */ -public class StyleChangedEventArgs : EventArgs -{ - private StyleManager _styleManager; - private NUI.StyleChangeType _styleChange; - - /** - * @brief StyleManager - is the StyleManager that informs applications of system theme change, - * and supports application theme change at runtime. - * - */ - public StyleManager StyleManager - { - get - { - return _styleManager; - } - set - { - _styleManager = value; - } - } - - /** - * @brief StyleChange - contains Style change information (default font changed or - * default font size changed or theme has changed) - * - */ - public NUI.StyleChangeType StyleChange - { - get - { - return _styleChange; - } - set - { - _styleChange = value; - } - } - -} - - [UnmanagedFunctionPointer(CallingConvention.StdCall)] - private delegate void StyleChangedCallbackDelegate(IntPtr styleManager, NUI.StyleChangeType styleChange); - private DaliEventHandler _styleManagerStyleChangedEventHandler; - private StyleChangedCallbackDelegate _styleManagerStyleChangedCallbackDelegate; - - /** - * @brief Event for StyleChanged signal which can be used to subscribe/unsubscribe the - * event handler (in the type of StyleChangedEventHandler-DaliEventHandler) - * provided by the user. StyleChanged signal is is emitted after the style (e.g. theme/font change) has changed - * and the controls have been informed. - */ - public event DaliEventHandler StyleChanged - { - add - { - lock(this) - { - // Restricted to only one listener - if (_styleManagerStyleChangedEventHandler == null) - { - _styleManagerStyleChangedEventHandler += value; - - _styleManagerStyleChangedCallbackDelegate = new StyleChangedCallbackDelegate(OnStyleChanged); - this.StyleChangedSignal().Connect(_styleManagerStyleChangedCallbackDelegate); - } - } - } - - remove - { - lock(this) - { - if (_styleManagerStyleChangedEventHandler != null) - { - this.StyleChangedSignal().Disconnect(_styleManagerStyleChangedCallbackDelegate); - } - - _styleManagerStyleChangedEventHandler -= value; - } - } - } - - // Callback for StyleManager StyleChangedsignal - private void OnStyleChanged(IntPtr styleManager, NUI.StyleChangeType styleChange) - { - StyleChangedEventArgs e = new StyleChangedEventArgs(); - - // Populate all members of "e" (StyleChangedEventArgs) with real data - e.StyleManager = StyleManager.GetStyleManagerFromPtr( styleManager ); - e.StyleChange = styleChange; - - if (_styleManagerStyleChangedEventHandler != null) - { - //here we send all data to user event handlers - _styleManagerStyleChangedEventHandler(this, e); - } - } - - public static StyleManager GetStyleManagerFromPtr(global::System.IntPtr cPtr) { - StyleManager ret = new StyleManager(cPtr, false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - - public StyleManager() : this(NDalicPINVOKE.new_StyleManager(), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public static StyleManager Get() { - StyleManager ret = new StyleManager(NDalicPINVOKE.StyleManager_Get(), true); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public void ApplyTheme(string themeFile) { - NDalicPINVOKE.StyleManager_ApplyTheme(swigCPtr, themeFile); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public void ApplyDefaultTheme() { - NDalicPINVOKE.StyleManager_ApplyDefaultTheme(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public void SetStyleConstant(string key, Property.Value value) { - NDalicPINVOKE.StyleManager_SetStyleConstant(swigCPtr, key, Property.Value.getCPtr(value)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public bool GetStyleConstant(string key, Property.Value valueOut) { - bool ret = NDalicPINVOKE.StyleManager_GetStyleConstant(swigCPtr, key, Property.Value.getCPtr(valueOut)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public void ApplyStyle(View control, string jsonFileName, string styleName) { - NDalicPINVOKE.StyleManager_ApplyStyle(swigCPtr, View.getCPtr(control), jsonFileName, styleName); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public StyleChangedSignal StyleChangedSignal() { - StyleChangedSignal ret = new StyleChangedSignal(NDalicPINVOKE.StyleManager_StyleChangedSignal(swigCPtr), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - -} - -} +// Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved +// PROPRIETARY/CONFIDENTIAL +// This software is the confidential and proprietary +// information of SAMSUNG ELECTRONICS ("Confidential Information"). You shall +// not disclose such Confidential Information and shall use it only in +// accordance with the terms of the license agreement you entered into with +// SAMSUNG ELECTRONICS. SAMSUNG make no representations or warranties about the +// suitability of the software, either express or implied, including but not +// limited to the implied warranties of merchantability, fitness for a +// particular purpose, or non-infringement. SAMSUNG shall not be liable for any +// damages suffered by licensee as a result of using, modifying or distributing +// this software or its derivatives. + +// Copyright (c) 2017 Samsung Electronics Co., Ltd. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// + +// This File has been auto-generated by SWIG and then modified using DALi Ruby Scripts +// Some have been manually changed + + +namespace Tizen.NUI +{ + + using System; + using System.Runtime.InteropServices; + + public class StyleManager : BaseHandle + { + private global::System.Runtime.InteropServices.HandleRef swigCPtr; + + internal StyleManager(global::System.IntPtr cPtr, bool cMemoryOwn) : base(NDalicPINVOKE.StyleManager_SWIGUpcast(cPtr), cMemoryOwn) + { + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); + } + + internal static global::System.Runtime.InteropServices.HandleRef getCPtr(StyleManager obj) + { + return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; + } + + ~StyleManager() + { + DisposeQueue.Instance.Add(this); + } + + public override void Dispose() + { + if (!Stage.IsInstalled()) + { + DisposeQueue.Instance.Add(this); + return; + } + + lock (this) + { + if (swigCPtr.Handle != global::System.IntPtr.Zero) + { + if (swigCMemOwn) + { + swigCMemOwn = false; + NDalicPINVOKE.delete_StyleManager(swigCPtr); + } + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); + } + global::System.GC.SuppressFinalize(this); + base.Dispose(); + } + } + + + public class StyleChangedEventArgs : EventArgs + { + private StyleManager _styleManager; + private StyleChangeType _styleChange; + + public StyleManager StyleManager + { + get + { + return _styleManager; + } + set + { + _styleManager = value; + } + } + + public StyleChangeType StyleChange + { + get + { + return _styleChange; + } + set + { + _styleChange = value; + } + } + + } + + [UnmanagedFunctionPointer(CallingConvention.StdCall)] + private delegate void StyleChangedCallback(IntPtr styleManager, StyleChangeType styleChange); + private StyleChangedCallback _styleManagerStyleChangedCallback; + private EventHandler _styleManagerStyleChangedEventHandler; + + /** + * @brief Event for StyleChanged signal which can be used to subscribe/unsubscribe the + * event handler (in the type of StyleChangedEventHandler-DaliEventHandler) + * provided by the user. StyleChanged signal is is emitted after the style (e.g. theme/font change) has changed + * and the controls have been informed. + */ + public event EventHandler StyleChanged + { + add + { + if (_styleManagerStyleChangedCallback == null) + { + _styleManagerStyleChangedCallback = OnStyleChanged; + StyleChangedSignal().Connect(_styleManagerStyleChangedCallback); + } + _styleManagerStyleChangedEventHandler += value; + } + remove + { + if (_styleManagerStyleChangedCallback != null) + { + StyleChangedSignal().Disconnect(_styleManagerStyleChangedCallback); + } + _styleManagerStyleChangedEventHandler -= value; + } + } + + private void OnStyleChanged(IntPtr styleManager, StyleChangeType styleChange) + { + StyleChangedEventArgs e = new StyleChangedEventArgs(); + + e.StyleManager = StyleManager.GetStyleManagerFromPtr(styleManager); + e.StyleChange = styleChange; + + if (_styleManagerStyleChangedEventHandler != null) + { + _styleManagerStyleChangedEventHandler(this, e); + } + } + + internal static StyleManager GetStyleManagerFromPtr(global::System.IntPtr cPtr) + { + StyleManager ret = new StyleManager(cPtr, false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + + public StyleManager() : this(NDalicPINVOKE.new_StyleManager(), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public static StyleManager Get() + { + StyleManager ret = new StyleManager(NDalicPINVOKE.StyleManager_Get(), true); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public void ApplyTheme(string themeFile) + { + NDalicPINVOKE.StyleManager_ApplyTheme(swigCPtr, themeFile); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public void ApplyDefaultTheme() + { + NDalicPINVOKE.StyleManager_ApplyDefaultTheme(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public void SetStyleConstant(string key, PropertyValue value) + { + NDalicPINVOKE.StyleManager_SetStyleConstant(swigCPtr, key, PropertyValue.getCPtr(value)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public bool GetStyleConstant(string key, PropertyValue valueOut) + { + bool ret = NDalicPINVOKE.StyleManager_GetStyleConstant(swigCPtr, key, PropertyValue.getCPtr(valueOut)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public void ApplyStyle(View control, string jsonFileName, string styleName) + { + NDalicPINVOKE.StyleManager_ApplyStyle(swigCPtr, View.getCPtr(control), jsonFileName, styleName); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + internal StyleChangedSignal StyleChangedSignal() + { + StyleChangedSignal ret = new StyleChangedSignal(NDalicPINVOKE.StyleManager_StyleChangedSignal(swigCPtr), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + } + + public enum StyleChangeType + { + DefaultFontChange, + DefaultFontSizeChange, + ThemeChange + } + +} diff --git a/Tizen.NUI/src/public/TableView.cs b/Tizen.NUI/src/public/TableView.cs old mode 100644 new mode 100755 index 0b09cb3..45b80ac --- a/Tizen.NUI/src/public/TableView.cs +++ b/Tizen.NUI/src/public/TableView.cs @@ -1,508 +1,614 @@ -/** Copyright (c) 2017 Samsung Electronics Co., Ltd. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ -// This File has been auto-generated by SWIG and then modified using DALi Ruby Scripts -//------------------------------------------------------------------------------ -// -// -// This file was automatically generated by SWIG (http://www.swig.org). -// Version 3.0.9 -// -// Do not make changes to this file unless you know what you are doing--modify -// the SWIG interface file instead. -//------------------------------------------------------------------------------ - -namespace NUI { - -public class TableView : View { - private global::System.Runtime.InteropServices.HandleRef swigCPtr; - - internal TableView(global::System.IntPtr cPtr, bool cMemoryOwn) : base(NDalicPINVOKE.TableView_SWIGUpcast(cPtr), cMemoryOwn) { - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); - } - - internal static global::System.Runtime.InteropServices.HandleRef getCPtr(TableView obj) { - return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; - } - - ~TableView() { - DisposeQueue.Instance.Add(this); - } - - public override void Dispose() { - if (!Stage.IsInstalled()) { - DisposeQueue.Instance.Add(this); - return; - } - - lock(this) { - if (swigCPtr.Handle != global::System.IntPtr.Zero) { - if (swigCMemOwn) { - swigCMemOwn = false; - NDalicPINVOKE.delete_TableView(swigCPtr); - } - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); - } - global::System.GC.SuppressFinalize(this); - base.Dispose(); - } - } - - - public class Property : global::System.IDisposable { - private global::System.Runtime.InteropServices.HandleRef swigCPtr; - protected bool swigCMemOwn; - - internal Property(global::System.IntPtr cPtr, bool cMemoryOwn) { - swigCMemOwn = cMemoryOwn; - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); - } - - internal static global::System.Runtime.InteropServices.HandleRef getCPtr(Property obj) { - return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; - } - - ~Property() { - Dispose(); - } - - public virtual void Dispose() { - lock(this) { - if (swigCPtr.Handle != global::System.IntPtr.Zero) { - if (swigCMemOwn) { - swigCMemOwn = false; - NDalicPINVOKE.delete_TableView_Property(swigCPtr); - } - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); - } - global::System.GC.SuppressFinalize(this); - } - } - - public Property() : this(NDalicPINVOKE.new_TableView_Property(), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public static readonly int ROWS = NDalicPINVOKE.TableView_Property_ROWS_get(); - public static readonly int COLUMNS = NDalicPINVOKE.TableView_Property_COLUMNS_get(); - public static readonly int CELL_PADDING = NDalicPINVOKE.TableView_Property_CELL_PADDING_get(); - public static readonly int LAYOUT_ROWS = NDalicPINVOKE.TableView_Property_LAYOUT_ROWS_get(); - public static readonly int LAYOUT_COLUMNS = NDalicPINVOKE.TableView_Property_LAYOUT_COLUMNS_get(); - - } - - public class ChildProperty : global::System.IDisposable { - private global::System.Runtime.InteropServices.HandleRef swigCPtr; - protected bool swigCMemOwn; - - internal ChildProperty(global::System.IntPtr cPtr, bool cMemoryOwn) { - swigCMemOwn = cMemoryOwn; - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); - } - - internal static global::System.Runtime.InteropServices.HandleRef getCPtr(ChildProperty obj) { - return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; - } - - ~ChildProperty() { - Dispose(); - } - - public virtual void Dispose() { - lock(this) { - if (swigCPtr.Handle != global::System.IntPtr.Zero) { - if (swigCMemOwn) { - swigCMemOwn = false; - NDalicPINVOKE.delete_TableView_ChildProperty(swigCPtr); - } - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); - } - global::System.GC.SuppressFinalize(this); - } - } - - public ChildProperty() : this(NDalicPINVOKE.new_TableView_ChildProperty(), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public static readonly int CELL_INDEX = NDalicPINVOKE.TableView_ChildProperty_CELL_INDEX_get(); - public static readonly int ROW_SPAN = NDalicPINVOKE.TableView_ChildProperty_ROW_SPAN_get(); - public static readonly int COLUMN_SPAN = NDalicPINVOKE.TableView_ChildProperty_COLUMN_SPAN_get(); - public static readonly int CELL_HORIZONTAL_ALIGNMENT = NDalicPINVOKE.TableView_ChildProperty_CELL_HORIZONTAL_ALIGNMENT_get(); - public static readonly int CELL_VERTICAL_ALIGNMENT = NDalicPINVOKE.TableView_ChildProperty_CELL_VERTICAL_ALIGNMENT_get(); - - } - - public class CellPosition : global::System.IDisposable { - private global::System.Runtime.InteropServices.HandleRef swigCPtr; - protected bool swigCMemOwn; - - internal CellPosition(global::System.IntPtr cPtr, bool cMemoryOwn) { - swigCMemOwn = cMemoryOwn; - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); - } - - internal static global::System.Runtime.InteropServices.HandleRef getCPtr(CellPosition obj) { - return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; - } - - ~CellPosition() { - Dispose(); - } - - public virtual void Dispose() { - lock(this) { - if (swigCPtr.Handle != global::System.IntPtr.Zero) { - if (swigCMemOwn) { - swigCMemOwn = false; - NDalicPINVOKE.delete_TableView_CellPosition(swigCPtr); - } - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); - } - global::System.GC.SuppressFinalize(this); - } - } - - public CellPosition(uint rowIndex, uint columnIndex, uint rowSpan, uint columnSpan) : this(NDalicPINVOKE.new_TableView_CellPosition__SWIG_0(rowIndex, columnIndex, rowSpan, columnSpan), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public CellPosition(uint rowIndex, uint columnIndex, uint rowSpan) : this(NDalicPINVOKE.new_TableView_CellPosition__SWIG_1(rowIndex, columnIndex, rowSpan), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public CellPosition(uint rowIndex, uint columnIndex) : this(NDalicPINVOKE.new_TableView_CellPosition__SWIG_2(rowIndex, columnIndex), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public CellPosition(uint rowIndex) : this(NDalicPINVOKE.new_TableView_CellPosition__SWIG_3(rowIndex), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public CellPosition() : this(NDalicPINVOKE.new_TableView_CellPosition__SWIG_4(), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public uint rowIndex { - set { - NDalicPINVOKE.TableView_CellPosition_rowIndex_set(swigCPtr, value); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - get { - uint ret = NDalicPINVOKE.TableView_CellPosition_rowIndex_get(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - } - - public uint columnIndex { - set { - NDalicPINVOKE.TableView_CellPosition_columnIndex_set(swigCPtr, value); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - get { - uint ret = NDalicPINVOKE.TableView_CellPosition_columnIndex_get(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - } - - public uint rowSpan { - set { - NDalicPINVOKE.TableView_CellPosition_rowSpan_set(swigCPtr, value); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - get { - uint ret = NDalicPINVOKE.TableView_CellPosition_rowSpan_get(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - } - - public uint columnSpan { - set { - NDalicPINVOKE.TableView_CellPosition_columnSpan_set(swigCPtr, value); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - get { - uint ret = NDalicPINVOKE.TableView_CellPosition_columnSpan_get(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - } - - } - - public TableView (uint initialRows, uint initialColumns) : this (NDalicPINVOKE.TableView_New(initialRows, initialColumns), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - - } - public TableView(TableView handle) : this(NDalicPINVOKE.new_TableView__SWIG_1(TableView.getCPtr(handle)), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public TableView Assign(TableView handle) { - TableView ret = new TableView(NDalicPINVOKE.TableView_Assign(swigCPtr, TableView.getCPtr(handle)), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public new static TableView DownCast(BaseHandle handle) { - TableView ret = new TableView(NDalicPINVOKE.TableView_DownCast(BaseHandle.getCPtr(handle)), true); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public bool AddChild(Actor child, TableView.CellPosition position) { - bool ret = NDalicPINVOKE.TableView_AddChild(swigCPtr, Actor.getCPtr(child), TableView.CellPosition.getCPtr(position)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public Actor GetChildAt(TableView.CellPosition position) { - Actor ret = new Actor(NDalicPINVOKE.TableView_GetChildAt(swigCPtr, TableView.CellPosition.getCPtr(position)), true); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public Actor RemoveChildAt(TableView.CellPosition position) { - Actor ret = new Actor(NDalicPINVOKE.TableView_RemoveChildAt(swigCPtr, TableView.CellPosition.getCPtr(position)), true); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public bool FindChildPosition(Actor child, TableView.CellPosition position) { - bool ret = NDalicPINVOKE.TableView_FindChildPosition(swigCPtr, Actor.getCPtr(child), TableView.CellPosition.getCPtr(position)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public void InsertRow(uint rowIndex) { - NDalicPINVOKE.TableView_InsertRow(swigCPtr, rowIndex); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public void DeleteRow(uint rowIndex) { - NDalicPINVOKE.TableView_DeleteRow__SWIG_0(swigCPtr, rowIndex); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public void DeleteRow(uint rowIndex, ActorContainer removed) { - NDalicPINVOKE.TableView_DeleteRow__SWIG_1(swigCPtr, rowIndex, ActorContainer.getCPtr(removed)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public void InsertColumn(uint columnIndex) { - NDalicPINVOKE.TableView_InsertColumn(swigCPtr, columnIndex); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public void DeleteColumn(uint columnIndex) { - NDalicPINVOKE.TableView_DeleteColumn__SWIG_0(swigCPtr, columnIndex); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public void DeleteColumn(uint columnIndex, ActorContainer removed) { - NDalicPINVOKE.TableView_DeleteColumn__SWIG_1(swigCPtr, columnIndex, ActorContainer.getCPtr(removed)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public void Resize(uint rows, uint columns) { - NDalicPINVOKE.TableView_Resize__SWIG_0(swigCPtr, rows, columns); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public void Resize(uint rows, uint columns, ActorContainer removed) { - NDalicPINVOKE.TableView_Resize__SWIG_1(swigCPtr, rows, columns, ActorContainer.getCPtr(removed)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public void SetCellPadding(Vector2 padding) { - NDalicPINVOKE.TableView_SetCellPadding(swigCPtr, Vector2.getCPtr(padding)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public Vector2 GetCellPadding() { - Vector2 ret = new Vector2(NDalicPINVOKE.TableView_GetCellPadding(swigCPtr), true); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public void SetFitHeight(uint rowIndex) { - NDalicPINVOKE.TableView_SetFitHeight(swigCPtr, rowIndex); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public bool IsFitHeight(uint rowIndex) { - bool ret = NDalicPINVOKE.TableView_IsFitHeight(swigCPtr, rowIndex); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public void SetFitWidth(uint columnIndex) { - NDalicPINVOKE.TableView_SetFitWidth(swigCPtr, columnIndex); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public bool IsFitWidth(uint columnIndex) { - bool ret = NDalicPINVOKE.TableView_IsFitWidth(swigCPtr, columnIndex); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public void SetFixedHeight(uint rowIndex, float height) { - NDalicPINVOKE.TableView_SetFixedHeight(swigCPtr, rowIndex, height); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public float GetFixedHeight(uint rowIndex) { - float ret = NDalicPINVOKE.TableView_GetFixedHeight(swigCPtr, rowIndex); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public void SetRelativeHeight(uint rowIndex, float heightPercentage) { - NDalicPINVOKE.TableView_SetRelativeHeight(swigCPtr, rowIndex, heightPercentage); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public float GetRelativeHeight(uint rowIndex) { - float ret = NDalicPINVOKE.TableView_GetRelativeHeight(swigCPtr, rowIndex); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public void SetFixedWidth(uint columnIndex, float width) { - NDalicPINVOKE.TableView_SetFixedWidth(swigCPtr, columnIndex, width); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public float GetFixedWidth(uint columnIndex) { - float ret = NDalicPINVOKE.TableView_GetFixedWidth(swigCPtr, columnIndex); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public void SetRelativeWidth(uint columnIndex, float widthPercentage) { - NDalicPINVOKE.TableView_SetRelativeWidth(swigCPtr, columnIndex, widthPercentage); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public float GetRelativeWidth(uint columnIndex) { - float ret = NDalicPINVOKE.TableView_GetRelativeWidth(swigCPtr, columnIndex); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public uint GetRows() { - uint ret = NDalicPINVOKE.TableView_GetRows(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public uint GetColumns() { - uint ret = NDalicPINVOKE.TableView_GetColumns(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public void SetCellAlignment(TableView.CellPosition position, HorizontalAlignmentType horizontal, VerticalAlignmentType vertical) { - NDalicPINVOKE.TableView_SetCellAlignment(swigCPtr, TableView.CellPosition.getCPtr(position), (int)horizontal, (int)vertical); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public enum PropertyRange { - PROPERTY_START_INDEX = PropertyRanges.PROPERTY_REGISTRATION_START_INDEX, - PROPERTY_END_INDEX = View.PropertyRange.PROPERTY_START_INDEX+1000, - CHILD_PROPERTY_START_INDEX = PropertyRanges.CHILD_PROPERTY_REGISTRATION_START_INDEX, - CHILD_PROPERTY_END_INDEX = PropertyRanges.CHILD_PROPERTY_REGISTRATION_START_INDEX+1000 - } - - public enum LayoutPolicy { - FIXED, - RELATIVE, - FILL, - FIT - } - - public int Rows - { - get - { - int temp = 0; - GetProperty( TableView.Property.ROWS).Get( ref temp ); - return temp; - } - set - { - SetProperty( TableView.Property.ROWS, new NUI.Property.Value( value ) ); - } - } - public int Columns - { - get - { - int temp = 0; - GetProperty( TableView.Property.COLUMNS).Get( ref temp ); - return temp; - } - set - { - SetProperty( TableView.Property.COLUMNS, new NUI.Property.Value( value ) ); - } - } - public Vector2 CellPadding - { - get - { - Vector2 temp = new Vector2(0.0f,0.0f); - GetProperty( TableView.Property.CELL_PADDING).Get( temp ); - return temp; - } - set - { - SetProperty( TableView.Property.CELL_PADDING, new NUI.Property.Value( value ) ); - } - } - public NUI.Property.Map LayoutRows - { - get - { - NUI.Property.Map temp = new NUI.Property.Map(); - GetProperty( TableView.Property.LAYOUT_ROWS).Get( temp ); - return temp; - } - set - { - SetProperty( TableView.Property.LAYOUT_ROWS, new NUI.Property.Value( value ) ); - } - } - public NUI.Property.Map LayoutColumns - { - get - { - NUI.Property.Map temp = new NUI.Property.Map(); - GetProperty( TableView.Property.LAYOUT_COLUMNS).Get( temp ); - return temp; - } - set - { - SetProperty( TableView.Property.LAYOUT_COLUMNS, new NUI.Property.Value( value ) ); - } - } - -} - -} +// Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved +// PROPRIETARY/CONFIDENTIAL +// This software is the confidential and proprietary +// information of SAMSUNG ELECTRONICS ("Confidential Information"). You shall +// not disclose such Confidential Information and shall use it only in +// accordance with the terms of the license agreement you entered into with +// SAMSUNG ELECTRONICS. SAMSUNG make no representations or warranties about the +// suitability of the software, either express or implied, including but not +// limited to the implied warranties of merchantability, fitness for a +// particular purpose, or non-infringement. SAMSUNG shall not be liable for any +// damages suffered by licensee as a result of using, modifying or distributing +// this software or its derivatives. + +// Copyright (c) 2017 Samsung Electronics Co., Ltd. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// + +// This File has been auto-generated by SWIG and then modified using DALi Ruby Scripts +// Some have been manually changed + + +namespace Tizen.NUI +{ + + public class TableView : View + { + private global::System.Runtime.InteropServices.HandleRef swigCPtr; + + internal TableView(global::System.IntPtr cPtr, bool cMemoryOwn) : base(NDalicPINVOKE.TableView_SWIGUpcast(cPtr), cMemoryOwn) + { + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); + } + + internal static global::System.Runtime.InteropServices.HandleRef getCPtr(TableView obj) + { + return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; + } + + ~TableView() + { + DisposeQueue.Instance.Add(this); + } + + public override void Dispose() + { + if (!Stage.IsInstalled()) + { + DisposeQueue.Instance.Add(this); + return; + } + + lock (this) + { + if (swigCPtr.Handle != global::System.IntPtr.Zero) + { + if (swigCMemOwn) + { + swigCMemOwn = false; + NDalicPINVOKE.delete_TableView(swigCPtr); + } + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); + } + global::System.GC.SuppressFinalize(this); + base.Dispose(); + } + } + + + internal class Property : global::System.IDisposable + { + private global::System.Runtime.InteropServices.HandleRef swigCPtr; + protected bool swigCMemOwn; + + internal Property(global::System.IntPtr cPtr, bool cMemoryOwn) + { + swigCMemOwn = cMemoryOwn; + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); + } + + internal static global::System.Runtime.InteropServices.HandleRef getCPtr(Property obj) + { + return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; + } + + ~Property() + { + Dispose(); + } + + public virtual void Dispose() + { + lock (this) + { + if (swigCPtr.Handle != global::System.IntPtr.Zero) + { + if (swigCMemOwn) + { + swigCMemOwn = false; + NDalicPINVOKE.delete_TableView_Property(swigCPtr); + } + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); + } + global::System.GC.SuppressFinalize(this); + } + } + + public Property() : this(NDalicPINVOKE.new_TableView_Property(), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + internal static readonly int ROWS = NDalicPINVOKE.TableView_Property_ROWS_get(); + internal static readonly int COLUMNS = NDalicPINVOKE.TableView_Property_COLUMNS_get(); + internal static readonly int CELL_PADDING = NDalicPINVOKE.TableView_Property_CELL_PADDING_get(); + internal static readonly int LAYOUT_ROWS = NDalicPINVOKE.TableView_Property_LAYOUT_ROWS_get(); + internal static readonly int LAYOUT_COLUMNS = NDalicPINVOKE.TableView_Property_LAYOUT_COLUMNS_get(); + + } + + internal class ChildProperty : global::System.IDisposable + { + private global::System.Runtime.InteropServices.HandleRef swigCPtr; + protected bool swigCMemOwn; + + internal ChildProperty(global::System.IntPtr cPtr, bool cMemoryOwn) + { + swigCMemOwn = cMemoryOwn; + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); + } + + internal static global::System.Runtime.InteropServices.HandleRef getCPtr(ChildProperty obj) + { + return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; + } + + ~ChildProperty() + { + Dispose(); + } + + public virtual void Dispose() + { + lock (this) + { + if (swigCPtr.Handle != global::System.IntPtr.Zero) + { + if (swigCMemOwn) + { + swigCMemOwn = false; + NDalicPINVOKE.delete_TableView_ChildProperty(swigCPtr); + } + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); + } + global::System.GC.SuppressFinalize(this); + } + } + + public ChildProperty() : this(NDalicPINVOKE.new_TableView_ChildProperty(), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + internal static readonly int CELL_INDEX = NDalicPINVOKE.TableView_ChildProperty_CELL_INDEX_get(); + internal static readonly int ROW_SPAN = NDalicPINVOKE.TableView_ChildProperty_ROW_SPAN_get(); + internal static readonly int COLUMN_SPAN = NDalicPINVOKE.TableView_ChildProperty_COLUMN_SPAN_get(); + internal static readonly int CELL_HORIZONTAL_ALIGNMENT = NDalicPINVOKE.TableView_ChildProperty_CELL_HORIZONTAL_ALIGNMENT_get(); + internal static readonly int CELL_VERTICAL_ALIGNMENT = NDalicPINVOKE.TableView_ChildProperty_CELL_VERTICAL_ALIGNMENT_get(); + + } + + public class CellPosition : global::System.IDisposable + { + private global::System.Runtime.InteropServices.HandleRef swigCPtr; + protected bool swigCMemOwn; + + internal CellPosition(global::System.IntPtr cPtr, bool cMemoryOwn) + { + swigCMemOwn = cMemoryOwn; + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); + } + + internal static global::System.Runtime.InteropServices.HandleRef getCPtr(CellPosition obj) + { + return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; + } + + ~CellPosition() + { + Dispose(); + } + + public virtual void Dispose() + { + lock (this) + { + if (swigCPtr.Handle != global::System.IntPtr.Zero) + { + if (swigCMemOwn) + { + swigCMemOwn = false; + NDalicPINVOKE.delete_TableView_CellPosition(swigCPtr); + } + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); + } + global::System.GC.SuppressFinalize(this); + } + } + + public CellPosition(uint rowIndex, uint columnIndex, uint rowSpan, uint columnSpan) : this(NDalicPINVOKE.new_TableView_CellPosition__SWIG_0(rowIndex, columnIndex, rowSpan, columnSpan), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public CellPosition(uint rowIndex, uint columnIndex, uint rowSpan) : this(NDalicPINVOKE.new_TableView_CellPosition__SWIG_1(rowIndex, columnIndex, rowSpan), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public CellPosition(uint rowIndex, uint columnIndex) : this(NDalicPINVOKE.new_TableView_CellPosition__SWIG_2(rowIndex, columnIndex), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public CellPosition(uint rowIndex) : this(NDalicPINVOKE.new_TableView_CellPosition__SWIG_3(rowIndex), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public CellPosition() : this(NDalicPINVOKE.new_TableView_CellPosition__SWIG_4(), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public uint rowIndex + { + set + { + NDalicPINVOKE.TableView_CellPosition_rowIndex_set(swigCPtr, value); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + get + { + uint ret = NDalicPINVOKE.TableView_CellPosition_rowIndex_get(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + } + + public uint columnIndex + { + set + { + NDalicPINVOKE.TableView_CellPosition_columnIndex_set(swigCPtr, value); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + get + { + uint ret = NDalicPINVOKE.TableView_CellPosition_columnIndex_get(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + } + + public uint rowSpan + { + set + { + NDalicPINVOKE.TableView_CellPosition_rowSpan_set(swigCPtr, value); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + get + { + uint ret = NDalicPINVOKE.TableView_CellPosition_rowSpan_get(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + } + + public uint columnSpan + { + set + { + NDalicPINVOKE.TableView_CellPosition_columnSpan_set(swigCPtr, value); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + get + { + uint ret = NDalicPINVOKE.TableView_CellPosition_columnSpan_get(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + } + + } + + public TableView(uint initialRows, uint initialColumns) : this(NDalicPINVOKE.TableView_New(initialRows, initialColumns), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + + } + public TableView(TableView handle) : this(NDalicPINVOKE.new_TableView__SWIG_1(TableView.getCPtr(handle)), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public TableView Assign(TableView handle) + { + TableView ret = new TableView(NDalicPINVOKE.TableView_Assign(swigCPtr, TableView.getCPtr(handle)), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public new static TableView DownCast(BaseHandle handle) + { + TableView ret = new TableView(NDalicPINVOKE.TableView_DownCast(BaseHandle.getCPtr(handle)), true); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public bool AddChild(Actor child, TableView.CellPosition position) + { + bool ret = NDalicPINVOKE.TableView_AddChild(swigCPtr, Actor.getCPtr(child), TableView.CellPosition.getCPtr(position)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public Actor GetChildAt(TableView.CellPosition position) + { + Actor ret = new Actor(NDalicPINVOKE.TableView_GetChildAt(swigCPtr, TableView.CellPosition.getCPtr(position)), true); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public Actor RemoveChildAt(TableView.CellPosition position) + { + Actor ret = new Actor(NDalicPINVOKE.TableView_RemoveChildAt(swigCPtr, TableView.CellPosition.getCPtr(position)), true); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public bool FindChildPosition(Actor child, TableView.CellPosition position) + { + bool ret = NDalicPINVOKE.TableView_FindChildPosition(swigCPtr, Actor.getCPtr(child), TableView.CellPosition.getCPtr(position)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public void InsertRow(uint rowIndex) + { + NDalicPINVOKE.TableView_InsertRow(swigCPtr, rowIndex); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public void DeleteRow(uint rowIndex) + { + NDalicPINVOKE.TableView_DeleteRow__SWIG_0(swigCPtr, rowIndex); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + internal void DeleteRow(uint rowIndex, ActorContainer removed) + { + NDalicPINVOKE.TableView_DeleteRow__SWIG_1(swigCPtr, rowIndex, ActorContainer.getCPtr(removed)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public void InsertColumn(uint columnIndex) + { + NDalicPINVOKE.TableView_InsertColumn(swigCPtr, columnIndex); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public void DeleteColumn(uint columnIndex) + { + NDalicPINVOKE.TableView_DeleteColumn__SWIG_0(swigCPtr, columnIndex); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + internal void DeleteColumn(uint columnIndex, ActorContainer removed) + { + NDalicPINVOKE.TableView_DeleteColumn__SWIG_1(swigCPtr, columnIndex, ActorContainer.getCPtr(removed)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public void Resize(uint rows, uint columns) + { + NDalicPINVOKE.TableView_Resize__SWIG_0(swigCPtr, rows, columns); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + internal void Resize(uint rows, uint columns, ActorContainer removed) + { + NDalicPINVOKE.TableView_Resize__SWIG_1(swigCPtr, rows, columns, ActorContainer.getCPtr(removed)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public void SetCellPadding(Size2D padding) + { + NDalicPINVOKE.TableView_SetCellPadding(swigCPtr, Size2D.getCPtr(padding)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public Vector2 GetCellPadding() + { + Vector2 ret = new Vector2(NDalicPINVOKE.TableView_GetCellPadding(swigCPtr), true); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public void SetFitHeight(uint rowIndex) + { + NDalicPINVOKE.TableView_SetFitHeight(swigCPtr, rowIndex); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public bool IsFitHeight(uint rowIndex) + { + bool ret = NDalicPINVOKE.TableView_IsFitHeight(swigCPtr, rowIndex); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public void SetFitWidth(uint columnIndex) + { + NDalicPINVOKE.TableView_SetFitWidth(swigCPtr, columnIndex); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public bool IsFitWidth(uint columnIndex) + { + bool ret = NDalicPINVOKE.TableView_IsFitWidth(swigCPtr, columnIndex); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public void SetFixedHeight(uint rowIndex, float height) + { + NDalicPINVOKE.TableView_SetFixedHeight(swigCPtr, rowIndex, height); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public float GetFixedHeight(uint rowIndex) + { + float ret = NDalicPINVOKE.TableView_GetFixedHeight(swigCPtr, rowIndex); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public void SetRelativeHeight(uint rowIndex, float heightPercentage) + { + NDalicPINVOKE.TableView_SetRelativeHeight(swigCPtr, rowIndex, heightPercentage); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public float GetRelativeHeight(uint rowIndex) + { + float ret = NDalicPINVOKE.TableView_GetRelativeHeight(swigCPtr, rowIndex); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public void SetFixedWidth(uint columnIndex, float width) + { + NDalicPINVOKE.TableView_SetFixedWidth(swigCPtr, columnIndex, width); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public float GetFixedWidth(uint columnIndex) + { + float ret = NDalicPINVOKE.TableView_GetFixedWidth(swigCPtr, columnIndex); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public void SetRelativeWidth(uint columnIndex, float widthPercentage) + { + NDalicPINVOKE.TableView_SetRelativeWidth(swigCPtr, columnIndex, widthPercentage); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public float GetRelativeWidth(uint columnIndex) + { + float ret = NDalicPINVOKE.TableView_GetRelativeWidth(swigCPtr, columnIndex); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public uint GetRows() + { + uint ret = NDalicPINVOKE.TableView_GetRows(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public uint GetColumns() + { + uint ret = NDalicPINVOKE.TableView_GetColumns(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public void SetCellAlignment(TableView.CellPosition position, HorizontalAlignmentType horizontal, VerticalAlignmentType vertical) + { + NDalicPINVOKE.TableView_SetCellAlignment(swigCPtr, TableView.CellPosition.getCPtr(position), (int)horizontal, (int)vertical); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + internal enum PropertyRange + { + PROPERTY_START_INDEX = PropertyRanges.PROPERTY_REGISTRATION_START_INDEX, + PROPERTY_END_INDEX = View.PropertyRange.PROPERTY_START_INDEX + 1000, + CHILD_PROPERTY_START_INDEX = PropertyRanges.CHILD_PROPERTY_REGISTRATION_START_INDEX, + CHILD_PROPERTY_END_INDEX = PropertyRanges.CHILD_PROPERTY_REGISTRATION_START_INDEX + 1000 + } + + public enum LayoutPolicy + { + Fixed, + Relative, + Fill, + Fit + } + + public int Rows + { + get + { + int temp = 0; + GetProperty(TableView.Property.ROWS).Get(ref temp); + return temp; + } + set + { + SetProperty(TableView.Property.ROWS, new Tizen.NUI.PropertyValue(value)); + } + } + public int Columns + { + get + { + int temp = 0; + GetProperty(TableView.Property.COLUMNS).Get(ref temp); + return temp; + } + set + { + SetProperty(TableView.Property.COLUMNS, new Tizen.NUI.PropertyValue(value)); + } + } + public Vector2 CellPadding + { + get + { + Vector2 temp = new Vector2(0.0f, 0.0f); + GetProperty(TableView.Property.CELL_PADDING).Get(temp); + return temp; + } + set + { + SetProperty(TableView.Property.CELL_PADDING, new Tizen.NUI.PropertyValue(value)); + } + } + public PropertyMap LayoutRows + { + get + { + PropertyMap temp = new PropertyMap(); + GetProperty(TableView.Property.LAYOUT_ROWS).Get(temp); + return temp; + } + set + { + SetProperty(TableView.Property.LAYOUT_ROWS, new Tizen.NUI.PropertyValue(value)); + } + } + public PropertyMap LayoutColumns + { + get + { + PropertyMap temp = new PropertyMap(); + GetProperty(TableView.Property.LAYOUT_COLUMNS).Get(temp); + return temp; + } + set + { + SetProperty(TableView.Property.LAYOUT_COLUMNS, new Tizen.NUI.PropertyValue(value)); + } + } + + } + public enum HorizontalAlignmentType + { + Left, + Center, + Right + } + public enum VerticalAlignmentType + { + Top, + Center, + Bottom + } + +} diff --git a/Tizen.NUI/src/public/TextEditor.cs b/Tizen.NUI/src/public/TextEditor.cs old mode 100644 new mode 100755 index 60a333f..f44022c --- a/Tizen.NUI/src/public/TextEditor.cs +++ b/Tizen.NUI/src/public/TextEditor.cs @@ -1,842 +1,873 @@ -/** Copyright (c) 2017 Samsung Electronics Co., Ltd. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ -// This File has been auto-generated by SWIG and then modified using DALi Ruby Scripts -//------------------------------------------------------------------------------ -// -// -// This file was automatically generated by SWIG (http://www.swig.org). -// Version 3.0.9 -// -// Do not make changes to this file unless you know what you are doing--modify -// the SWIG interface file instead. -//------------------------------------------------------------------------------ - -namespace NUI { - -using System; -using System.Runtime.InteropServices; - - -public class TextEditor : View { - private global::System.Runtime.InteropServices.HandleRef swigCPtr; - - internal TextEditor(global::System.IntPtr cPtr, bool cMemoryOwn) : base(NDalicPINVOKE.TextEditor_SWIGUpcast(cPtr), cMemoryOwn) { - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); - } - - internal static global::System.Runtime.InteropServices.HandleRef getCPtr(TextEditor obj) { - return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; - } - - ~TextEditor() { - DisposeQueue.Instance.Add(this); - } - - public override void Dispose() { - if (!Stage.IsInstalled()) { - DisposeQueue.Instance.Add(this); - return; - } - - lock(this) { - if (swigCPtr.Handle != global::System.IntPtr.Zero) { - if (swigCMemOwn) { - swigCMemOwn = false; - NDalicPINVOKE.delete_TextEditor(swigCPtr); - } - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); - } - global::System.GC.SuppressFinalize(this); - base.Dispose(); - } - } - - - -/** - * @brief Event arguments that passed via TextChanged signal - * - */ -public class TextChangedEventArgs : EventArgs -{ - private TextEditor _textEditor; - /** - * @brief TextEditor - is the texteditor control which has the text contents changed. - * - */ - public TextEditor TextEditor - { - get - { - return _textEditor; - } - set - { - _textEditor = value; - } - } -} - - [UnmanagedFunctionPointer(CallingConvention.StdCall)] - private delegate void TextChangedCallbackDelegate(IntPtr textEditor); - private DaliEventHandler _textEditorTextChangedEventHandler; - private TextChangedCallbackDelegate _textEditorTextChangedCallbackDelegate; - - /** - * @brief Event for TextChanged signal which can be used to subscribe/unsubscribe the event handler - * (in the type of TextChangedEventHandler-DaliEventHandler) - * provided by the user. TextChanged signal is emitted when the text changes. - */ - public event DaliEventHandler TextChanged - { - add - { - lock(this) - { - // Restricted to only one listener - if (_textEditorTextChangedEventHandler == null) - { - _textEditorTextChangedEventHandler += value; - - _textEditorTextChangedCallbackDelegate = new TextChangedCallbackDelegate(OnTextChanged); - this.TextChangedSignal().Connect(_textEditorTextChangedCallbackDelegate); - } - } - } - - remove - { - lock(this) - { - if (_textEditorTextChangedEventHandler != null) - { - this.TextChangedSignal().Disconnect(_textEditorTextChangedCallbackDelegate); - } - - _textEditorTextChangedEventHandler -= value; - } - } - } - - private void OnTextChanged(IntPtr textEditor) - { - TextChangedEventArgs e = new TextChangedEventArgs(); - - // Populate all members of "e" (TextChangedEventArgs) with real data - e.TextEditor = NUI.TextEditor.GetTextEditorFromPtr(textEditor); - - if (_textEditorTextChangedEventHandler != null) - { - //here we send all data to user event handlers - _textEditorTextChangedEventHandler(this, e); - } - - } - - public static TextEditor GetTextEditorFromPtr(global::System.IntPtr cPtr) { - TextEditor ret = new TextEditor(cPtr, false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - - public class Property : global::System.IDisposable { - private global::System.Runtime.InteropServices.HandleRef swigCPtr; - protected bool swigCMemOwn; - - internal Property(global::System.IntPtr cPtr, bool cMemoryOwn) { - swigCMemOwn = cMemoryOwn; - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); - } - - internal static global::System.Runtime.InteropServices.HandleRef getCPtr(Property obj) { - return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; - } - - ~Property() { - Dispose(); - } - - public virtual void Dispose() { - lock(this) { - if (swigCPtr.Handle != global::System.IntPtr.Zero) { - if (swigCMemOwn) { - swigCMemOwn = false; - NDalicPINVOKE.delete_TextEditor_Property(swigCPtr); - } - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); - } - global::System.GC.SuppressFinalize(this); - } - } - - public Property() : this(NDalicPINVOKE.new_TextEditor_Property(), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public static readonly int RENDERING_BACKEND = NDalicPINVOKE.TextEditor_Property_RENDERING_BACKEND_get(); - public static readonly int TEXT = NDalicPINVOKE.TextEditor_Property_TEXT_get(); - public static readonly int TEXT_COLOR = NDalicPINVOKE.TextEditor_Property_TEXT_COLOR_get(); - public static readonly int FONT_FAMILY = NDalicPINVOKE.TextEditor_Property_FONT_FAMILY_get(); - public static readonly int FONT_STYLE = NDalicPINVOKE.TextEditor_Property_FONT_STYLE_get(); - public static readonly int POINT_SIZE = NDalicPINVOKE.TextEditor_Property_POINT_SIZE_get(); - public static readonly int HORIZONTAL_ALIGNMENT = NDalicPINVOKE.TextEditor_Property_HORIZONTAL_ALIGNMENT_get(); - public static readonly int SCROLL_THRESHOLD = NDalicPINVOKE.TextEditor_Property_SCROLL_THRESHOLD_get(); - public static readonly int SCROLL_SPEED = NDalicPINVOKE.TextEditor_Property_SCROLL_SPEED_get(); - public static readonly int PRIMARY_CURSOR_COLOR = NDalicPINVOKE.TextEditor_Property_PRIMARY_CURSOR_COLOR_get(); - public static readonly int SECONDARY_CURSOR_COLOR = NDalicPINVOKE.TextEditor_Property_SECONDARY_CURSOR_COLOR_get(); - public static readonly int ENABLE_CURSOR_BLINK = NDalicPINVOKE.TextEditor_Property_ENABLE_CURSOR_BLINK_get(); - public static readonly int CURSOR_BLINK_INTERVAL = NDalicPINVOKE.TextEditor_Property_CURSOR_BLINK_INTERVAL_get(); - public static readonly int CURSOR_BLINK_DURATION = NDalicPINVOKE.TextEditor_Property_CURSOR_BLINK_DURATION_get(); - public static readonly int CURSOR_WIDTH = NDalicPINVOKE.TextEditor_Property_CURSOR_WIDTH_get(); - public static readonly int GRAB_HANDLE_IMAGE = NDalicPINVOKE.TextEditor_Property_GRAB_HANDLE_IMAGE_get(); - public static readonly int GRAB_HANDLE_PRESSED_IMAGE = NDalicPINVOKE.TextEditor_Property_GRAB_HANDLE_PRESSED_IMAGE_get(); - public static readonly int SELECTION_HANDLE_IMAGE_LEFT = NDalicPINVOKE.TextEditor_Property_SELECTION_HANDLE_IMAGE_LEFT_get(); - public static readonly int SELECTION_HANDLE_IMAGE_RIGHT = NDalicPINVOKE.TextEditor_Property_SELECTION_HANDLE_IMAGE_RIGHT_get(); - public static readonly int SELECTION_HANDLE_PRESSED_IMAGE_LEFT = NDalicPINVOKE.TextEditor_Property_SELECTION_HANDLE_PRESSED_IMAGE_LEFT_get(); - public static readonly int SELECTION_HANDLE_PRESSED_IMAGE_RIGHT = NDalicPINVOKE.TextEditor_Property_SELECTION_HANDLE_PRESSED_IMAGE_RIGHT_get(); - public static readonly int SELECTION_HANDLE_MARKER_IMAGE_LEFT = NDalicPINVOKE.TextEditor_Property_SELECTION_HANDLE_MARKER_IMAGE_LEFT_get(); - public static readonly int SELECTION_HANDLE_MARKER_IMAGE_RIGHT = NDalicPINVOKE.TextEditor_Property_SELECTION_HANDLE_MARKER_IMAGE_RIGHT_get(); - public static readonly int SELECTION_HIGHLIGHT_COLOR = NDalicPINVOKE.TextEditor_Property_SELECTION_HIGHLIGHT_COLOR_get(); - public static readonly int DECORATION_BOUNDING_BOX = NDalicPINVOKE.TextEditor_Property_DECORATION_BOUNDING_BOX_get(); - public static readonly int ENABLE_MARKUP = NDalicPINVOKE.TextEditor_Property_ENABLE_MARKUP_get(); - public static readonly int INPUT_COLOR = NDalicPINVOKE.TextEditor_Property_INPUT_COLOR_get(); - public static readonly int INPUT_FONT_FAMILY = NDalicPINVOKE.TextEditor_Property_INPUT_FONT_FAMILY_get(); - public static readonly int INPUT_FONT_STYLE = NDalicPINVOKE.TextEditor_Property_INPUT_FONT_STYLE_get(); - public static readonly int INPUT_POINT_SIZE = NDalicPINVOKE.TextEditor_Property_INPUT_POINT_SIZE_get(); - public static readonly int LINE_SPACING = NDalicPINVOKE.TextEditor_Property_LINE_SPACING_get(); - public static readonly int INPUT_LINE_SPACING = NDalicPINVOKE.TextEditor_Property_INPUT_LINE_SPACING_get(); - public static readonly int UNDERLINE = NDalicPINVOKE.TextEditor_Property_UNDERLINE_get(); - public static readonly int INPUT_UNDERLINE = NDalicPINVOKE.TextEditor_Property_INPUT_UNDERLINE_get(); - public static readonly int SHADOW = NDalicPINVOKE.TextEditor_Property_SHADOW_get(); - public static readonly int INPUT_SHADOW = NDalicPINVOKE.TextEditor_Property_INPUT_SHADOW_get(); - public static readonly int EMBOSS = NDalicPINVOKE.TextEditor_Property_EMBOSS_get(); - public static readonly int INPUT_EMBOSS = NDalicPINVOKE.TextEditor_Property_INPUT_EMBOSS_get(); - public static readonly int OUTLINE = NDalicPINVOKE.TextEditor_Property_OUTLINE_get(); - public static readonly int INPUT_OUTLINE = NDalicPINVOKE.TextEditor_Property_INPUT_OUTLINE_get(); - - } - - public class InputStyle : global::System.IDisposable { - private global::System.Runtime.InteropServices.HandleRef swigCPtr; - protected bool swigCMemOwn; - - internal InputStyle(global::System.IntPtr cPtr, bool cMemoryOwn) { - swigCMemOwn = cMemoryOwn; - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); - } - - internal static global::System.Runtime.InteropServices.HandleRef getCPtr(InputStyle obj) { - return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; - } - - ~InputStyle() { - Dispose(); - } - - public virtual void Dispose() { - lock(this) { - if (swigCPtr.Handle != global::System.IntPtr.Zero) { - if (swigCMemOwn) { - swigCMemOwn = false; - NDalicPINVOKE.delete_TextEditor_InputStyle(swigCPtr); - } - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); - } - global::System.GC.SuppressFinalize(this); - } - } - - public InputStyle() : this(NDalicPINVOKE.new_TextEditor_InputStyle(), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public enum Mask { - NONE = 0x0000, - COLOR = 0x0001, - FONT_FAMILY = 0x0002, - POINT_SIZE = 0x0004, - FONT_STYLE = 0x0008, - LINE_SPACING = 0x0010, - UNDERLINE = 0x0020, - SHADOW = 0x0040, - EMBOSS = 0x0080, - OUTLINE = 0x0100 - } - - } - - public TextEditor () : this (NDalicPINVOKE.TextEditor_New(), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - - } - public TextEditor(TextEditor handle) : this(NDalicPINVOKE.new_TextEditor__SWIG_1(TextEditor.getCPtr(handle)), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public TextEditor Assign(TextEditor handle) { - TextEditor ret = new TextEditor(NDalicPINVOKE.TextEditor_Assign(swigCPtr, TextEditor.getCPtr(handle)), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public new static TextEditor DownCast(BaseHandle handle) { - TextEditor ret = new TextEditor(NDalicPINVOKE.TextEditor_DownCast(BaseHandle.getCPtr(handle)), true); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public TextEditorSignal TextChangedSignal() { - TextEditorSignal ret = new TextEditorSignal(NDalicPINVOKE.TextEditor_TextChangedSignal(swigCPtr), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public SWIGTYPE_p_Dali__SignalT_void_fDali__Toolkit__TextEditor_Dali__Toolkit__TextEditor__InputStyle__MaskF_t InputStyleChangedSignal() { - 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); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public enum PropertyRange { - PROPERTY_START_INDEX = PropertyRanges.PROPERTY_REGISTRATION_START_INDEX, - PROPERTY_END_INDEX = View.PropertyRange.PROPERTY_START_INDEX+1000 - } - - public int RenderingBackend - { - get - { - int temp = 0; - GetProperty( TextEditor.Property.RENDERING_BACKEND).Get( ref temp ); - return temp; - } - set - { - SetProperty( TextEditor.Property.RENDERING_BACKEND, new NUI.Property.Value( value ) ); - } - } - public string Text - { - get - { - string temp; - GetProperty( TextEditor.Property.TEXT).Get( out temp ); - return temp; - } - set - { - SetProperty( TextEditor.Property.TEXT, new NUI.Property.Value( value ) ); - } - } - public Vector4 TextColor - { - get - { - Vector4 temp = new Vector4(0.0f,0.0f,0.0f,0.0f); - GetProperty( TextEditor.Property.TEXT_COLOR).Get( temp ); - return temp; - } - set - { - SetProperty( TextEditor.Property.TEXT_COLOR, new NUI.Property.Value( value ) ); - } - } - public string FontFamily - { - get - { - string temp; - GetProperty( TextEditor.Property.FONT_FAMILY).Get( out temp ); - return temp; - } - set - { - SetProperty( TextEditor.Property.FONT_FAMILY, new NUI.Property.Value( value ) ); - } - } - public NUI.Property.Map FontStyle - { - get - { - NUI.Property.Map temp = new NUI.Property.Map(); - GetProperty( TextEditor.Property.FONT_STYLE).Get( temp ); - return temp; - } - set - { - SetProperty( TextEditor.Property.FONT_STYLE, new NUI.Property.Value( value ) ); - } - } - public float PointSize - { - get - { - float temp = 0.0f; - GetProperty( TextEditor.Property.POINT_SIZE).Get( ref temp ); - return temp; - } - set - { - SetProperty( TextEditor.Property.POINT_SIZE, new NUI.Property.Value( value ) ); - } - } - public string HorizontalAlignment - { - get - { - string temp; - GetProperty( TextEditor.Property.HORIZONTAL_ALIGNMENT).Get( out temp ); - return temp; - } - set - { - SetProperty( TextEditor.Property.HORIZONTAL_ALIGNMENT, new NUI.Property.Value( value ) ); - } - } - public float ScrollThreshold - { - get - { - float temp = 0.0f; - GetProperty( TextEditor.Property.SCROLL_THRESHOLD).Get( ref temp ); - return temp; - } - set - { - SetProperty( TextEditor.Property.SCROLL_THRESHOLD, new NUI.Property.Value( value ) ); - } - } - public float ScrollSpeed - { - get - { - float temp = 0.0f; - GetProperty( TextEditor.Property.SCROLL_SPEED).Get( ref temp ); - return temp; - } - set - { - SetProperty( TextEditor.Property.SCROLL_SPEED, new NUI.Property.Value( value ) ); - } - } - public Vector4 PrimaryCursorColor - { - get - { - Vector4 temp = new Vector4(0.0f,0.0f,0.0f,0.0f); - GetProperty( TextEditor.Property.PRIMARY_CURSOR_COLOR).Get( temp ); - return temp; - } - set - { - SetProperty( TextEditor.Property.PRIMARY_CURSOR_COLOR, new NUI.Property.Value( value ) ); - } - } - public Vector4 SecondaryCursorColor - { - get - { - Vector4 temp = new Vector4(0.0f,0.0f,0.0f,0.0f); - GetProperty( TextEditor.Property.SECONDARY_CURSOR_COLOR).Get( temp ); - return temp; - } - set - { - SetProperty( TextEditor.Property.SECONDARY_CURSOR_COLOR, new NUI.Property.Value( value ) ); - } - } - public bool EnableCursorBlink - { - get - { - bool temp = false; - GetProperty( TextEditor.Property.ENABLE_CURSOR_BLINK).Get( ref temp ); - return temp; - } - set - { - SetProperty( TextEditor.Property.ENABLE_CURSOR_BLINK, new NUI.Property.Value( value ) ); - } - } - public float CursorBlinkInterval - { - get - { - float temp = 0.0f; - GetProperty( TextEditor.Property.CURSOR_BLINK_INTERVAL).Get( ref temp ); - return temp; - } - set - { - SetProperty( TextEditor.Property.CURSOR_BLINK_INTERVAL, new NUI.Property.Value( value ) ); - } - } - public float CursorBlinkDuration - { - get - { - float temp = 0.0f; - GetProperty( TextEditor.Property.CURSOR_BLINK_DURATION).Get( ref temp ); - return temp; - } - set - { - SetProperty( TextEditor.Property.CURSOR_BLINK_DURATION, new NUI.Property.Value( value ) ); - } - } - public int CursorWidth - { - get - { - int temp = 0; - GetProperty( TextEditor.Property.CURSOR_WIDTH).Get( ref temp ); - return temp; - } - set - { - SetProperty( TextEditor.Property.CURSOR_WIDTH, new NUI.Property.Value( value ) ); - } - } - public string GrabHandleImage - { - get - { - string temp; - GetProperty( TextEditor.Property.GRAB_HANDLE_IMAGE).Get( out temp ); - return temp; - } - set - { - SetProperty( TextEditor.Property.GRAB_HANDLE_IMAGE, new NUI.Property.Value( value ) ); - } - } - public string GrabHandlePressedImage - { - get - { - string temp; - GetProperty( TextEditor.Property.GRAB_HANDLE_PRESSED_IMAGE).Get( out temp ); - return temp; - } - set - { - SetProperty( TextEditor.Property.GRAB_HANDLE_PRESSED_IMAGE, new NUI.Property.Value( value ) ); - } - } - public NUI.Property.Map SelectionHandleImageLeft - { - get - { - NUI.Property.Map temp = new NUI.Property.Map(); - GetProperty( TextEditor.Property.SELECTION_HANDLE_IMAGE_LEFT).Get( temp ); - return temp; - } - set - { - SetProperty( TextEditor.Property.SELECTION_HANDLE_IMAGE_LEFT, new NUI.Property.Value( value ) ); - } - } - public NUI.Property.Map SelectionHandleImageRight - { - get - { - NUI.Property.Map temp = new NUI.Property.Map(); - GetProperty( TextEditor.Property.SELECTION_HANDLE_IMAGE_RIGHT).Get( temp ); - return temp; - } - set - { - SetProperty( TextEditor.Property.SELECTION_HANDLE_IMAGE_RIGHT, new NUI.Property.Value( value ) ); - } - } - public NUI.Property.Map SelectionHandlePressedImageLeft - { - get - { - NUI.Property.Map temp = new NUI.Property.Map(); - GetProperty( TextEditor.Property.SELECTION_HANDLE_PRESSED_IMAGE_LEFT).Get( temp ); - return temp; - } - set - { - SetProperty( TextEditor.Property.SELECTION_HANDLE_PRESSED_IMAGE_LEFT, new NUI.Property.Value( value ) ); - } - } - public NUI.Property.Map SelectionHandlePressedImageRight - { - get - { - NUI.Property.Map temp = new NUI.Property.Map(); - GetProperty( TextEditor.Property.SELECTION_HANDLE_PRESSED_IMAGE_RIGHT).Get( temp ); - return temp; - } - set - { - SetProperty( TextEditor.Property.SELECTION_HANDLE_PRESSED_IMAGE_RIGHT, new NUI.Property.Value( value ) ); - } - } - public NUI.Property.Map SelectionHandleMarkerImageLeft - { - get - { - NUI.Property.Map temp = new NUI.Property.Map(); - GetProperty( TextEditor.Property.SELECTION_HANDLE_MARKER_IMAGE_LEFT).Get( temp ); - return temp; - } - set - { - SetProperty( TextEditor.Property.SELECTION_HANDLE_MARKER_IMAGE_LEFT, new NUI.Property.Value( value ) ); - } - } - public NUI.Property.Map SelectionHandleMarkerImageRight - { - get - { - NUI.Property.Map temp = new NUI.Property.Map(); - GetProperty( TextEditor.Property.SELECTION_HANDLE_MARKER_IMAGE_RIGHT).Get( temp ); - return temp; - } - set - { - SetProperty( TextEditor.Property.SELECTION_HANDLE_MARKER_IMAGE_RIGHT, new NUI.Property.Value( value ) ); - } - } - public Vector4 SelectionHighlightColor - { - get - { - Vector4 temp = new Vector4(0.0f,0.0f,0.0f,0.0f); - GetProperty( TextEditor.Property.SELECTION_HIGHLIGHT_COLOR).Get( temp ); - return temp; - } - set - { - SetProperty( TextEditor.Property.SELECTION_HIGHLIGHT_COLOR, new NUI.Property.Value( value ) ); - } - } - public RectInteger DecorationBoundingBox - { - get - { - RectInteger temp = new RectInteger(0,0,0,0); - GetProperty( TextEditor.Property.DECORATION_BOUNDING_BOX).Get( temp ); - return temp; - } - set - { - SetProperty( TextEditor.Property.DECORATION_BOUNDING_BOX, new NUI.Property.Value( value ) ); - } - } - public bool EnableMarkup - { - get - { - bool temp = false; - GetProperty( TextEditor.Property.ENABLE_MARKUP).Get( ref temp ); - return temp; - } - set - { - SetProperty( TextEditor.Property.ENABLE_MARKUP, new NUI.Property.Value( value ) ); - } - } - public Vector4 InputColor - { - get - { - Vector4 temp = new Vector4(0.0f,0.0f,0.0f,0.0f); - GetProperty( TextEditor.Property.INPUT_COLOR).Get( temp ); - return temp; - } - set - { - SetProperty( TextEditor.Property.INPUT_COLOR, new NUI.Property.Value( value ) ); - } - } - public string InputFontFamily - { - get - { - string temp; - GetProperty( TextEditor.Property.INPUT_FONT_FAMILY).Get( out temp ); - return temp; - } - set - { - SetProperty( TextEditor.Property.INPUT_FONT_FAMILY, new NUI.Property.Value( value ) ); - } - } - public NUI.Property.Map InputFontStyle - { - get - { - NUI.Property.Map temp = new NUI.Property.Map(); - GetProperty( TextEditor.Property.INPUT_FONT_STYLE).Get( temp ); - return temp; - } - set - { - SetProperty( TextEditor.Property.INPUT_FONT_STYLE, new NUI.Property.Value( value ) ); - } - } - public float InputPointSize - { - get - { - float temp = 0.0f; - GetProperty( TextEditor.Property.INPUT_POINT_SIZE).Get( ref temp ); - return temp; - } - set - { - SetProperty( TextEditor.Property.INPUT_POINT_SIZE, new NUI.Property.Value( value ) ); - } - } - public float LineSpacing - { - get - { - float temp = 0.0f; - GetProperty( TextEditor.Property.LINE_SPACING).Get( ref temp ); - return temp; - } - set - { - SetProperty( TextEditor.Property.LINE_SPACING, new NUI.Property.Value( value ) ); - } - } - public float InputLineSpacing - { - get - { - float temp = 0.0f; - GetProperty( TextEditor.Property.INPUT_LINE_SPACING).Get( ref temp ); - return temp; - } - set - { - SetProperty( TextEditor.Property.INPUT_LINE_SPACING, new NUI.Property.Value( value ) ); - } - } - public NUI.Property.Map Underline - { - get - { - NUI.Property.Map temp = new NUI.Property.Map(); - GetProperty( TextEditor.Property.UNDERLINE).Get( temp ); - return temp; - } - set - { - SetProperty( TextEditor.Property.UNDERLINE, new NUI.Property.Value( value ) ); - } - } - public NUI.Property.Map InputUnderline - { - get - { - NUI.Property.Map temp = new NUI.Property.Map(); - GetProperty( TextEditor.Property.INPUT_UNDERLINE).Get( temp ); - return temp; - } - set - { - SetProperty( TextEditor.Property.INPUT_UNDERLINE, new NUI.Property.Value( value ) ); - } - } - public NUI.Property.Map Shadow - { - get - { - NUI.Property.Map temp = new NUI.Property.Map(); - GetProperty( TextEditor.Property.SHADOW).Get( temp ); - return temp; - } - set - { - SetProperty( TextEditor.Property.SHADOW, new NUI.Property.Value( value ) ); - } - } - public NUI.Property.Map InputShadow - { - get - { - NUI.Property.Map temp = new NUI.Property.Map(); - GetProperty( TextEditor.Property.INPUT_SHADOW).Get( temp ); - return temp; - } - set - { - SetProperty( TextEditor.Property.INPUT_SHADOW, new NUI.Property.Value( value ) ); - } - } - public NUI.Property.Map Emboss - { - get - { - NUI.Property.Map temp = new NUI.Property.Map(); - GetProperty( TextEditor.Property.EMBOSS).Get( temp ); - return temp; - } - set - { - SetProperty( TextEditor.Property.EMBOSS, new NUI.Property.Value( value ) ); - } - } - public NUI.Property.Map InputEmboss - { - get - { - NUI.Property.Map temp = new NUI.Property.Map(); - GetProperty( TextEditor.Property.INPUT_EMBOSS).Get( temp ); - return temp; - } - set - { - SetProperty( TextEditor.Property.INPUT_EMBOSS, new NUI.Property.Value( value ) ); - } - } - public NUI.Property.Map Outline - { - get - { - NUI.Property.Map temp = new NUI.Property.Map(); - GetProperty( TextEditor.Property.OUTLINE).Get( temp ); - return temp; - } - set - { - SetProperty( TextEditor.Property.OUTLINE, new NUI.Property.Value( value ) ); - } - } - public NUI.Property.Map InputOutline - { - get - { - NUI.Property.Map temp = new NUI.Property.Map(); - GetProperty( TextEditor.Property.INPUT_OUTLINE).Get( temp ); - return temp; - } - set - { - SetProperty( TextEditor.Property.INPUT_OUTLINE, new NUI.Property.Value( value ) ); - } - } - -} - -} +// Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved +// PROPRIETARY/CONFIDENTIAL +// This software is the confidential and proprietary +// information of SAMSUNG ELECTRONICS ("Confidential Information"). You shall +// not disclose such Confidential Information and shall use it only in +// accordance with the terms of the license agreement you entered into with +// SAMSUNG ELECTRONICS. SAMSUNG make no representations or warranties about the +// suitability of the software, either express or implied, including but not +// limited to the implied warranties of merchantability, fitness for a +// particular purpose, or non-infringement. SAMSUNG shall not be liable for any +// damages suffered by licensee as a result of using, modifying or distributing +// this software or its derivatives. + +// Copyright (c) 2017 Samsung Electronics Co., Ltd. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// + +// This File has been auto-generated by SWIG and then modified using DALi Ruby Scripts +// Some have been manually changed + + +namespace Tizen.NUI +{ + + using System; + using System.Runtime.InteropServices; + + + public class TextEditor : View + { + private global::System.Runtime.InteropServices.HandleRef swigCPtr; + + internal TextEditor(global::System.IntPtr cPtr, bool cMemoryOwn) : base(NDalicPINVOKE.TextEditor_SWIGUpcast(cPtr), cMemoryOwn) + { + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); + } + + internal static global::System.Runtime.InteropServices.HandleRef getCPtr(TextEditor obj) + { + return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; + } + + ~TextEditor() + { + DisposeQueue.Instance.Add(this); + } + + public override void Dispose() + { + if (!Stage.IsInstalled()) + { + DisposeQueue.Instance.Add(this); + return; + } + + lock (this) + { + if (swigCPtr.Handle != global::System.IntPtr.Zero) + { + if (swigCMemOwn) + { + swigCMemOwn = false; + NDalicPINVOKE.delete_TextEditor(swigCPtr); + } + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); + } + global::System.GC.SuppressFinalize(this); + base.Dispose(); + } + } + + + + /** + * @brief Event arguments that passed via TextChanged signal + * + */ + public class TextChangedEventArgs : EventArgs + { + private TextEditor _textEditor; + /** + * @brief TextEditor - is the texteditor control which has the text contents changed. + * + */ + public TextEditor TextEditor + { + get + { + return _textEditor; + } + set + { + _textEditor = value; + } + } + } + + [UnmanagedFunctionPointer(CallingConvention.StdCall)] + private delegate void TextChangedCallback(IntPtr textEditor); + private TextChangedCallback _textEditorTextChangedCallback; + private EventHandler _textEditorTextChangedEventHandler; + + /** + * @brief Event for TextChanged signal which can be used to subscribe/unsubscribe the event handler + * (in the type of TextChangedEventHandler-DaliEventHandler) + * provided by the user. TextChanged signal is emitted when the text changes. + */ + public event EventHandler TextChanged + { + add + { + if (_textEditorTextChangedCallback == null) + { + _textEditorTextChangedCallback = OnTextChanged; + TextChangedSignal().Connect(_textEditorTextChangedCallback); + } + _textEditorTextChangedEventHandler += value; + } + remove + { + if (_textEditorTextChangedCallback != null) + { + TextChangedSignal().Disconnect(_textEditorTextChangedCallback); + } + _textEditorTextChangedEventHandler -= value; + } + } + + private void OnTextChanged(IntPtr textEditor) + { + TextChangedEventArgs e = new TextChangedEventArgs(); + + e.TextEditor = TextEditor.GetTextEditorFromPtr(textEditor); + + if (_textEditorTextChangedEventHandler != null) + { + _textEditorTextChangedEventHandler(this, e); + } + + } + + internal static TextEditor GetTextEditorFromPtr(global::System.IntPtr cPtr) + { + TextEditor ret = new TextEditor(cPtr, false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + + internal class Property : global::System.IDisposable + { + private global::System.Runtime.InteropServices.HandleRef swigCPtr; + protected bool swigCMemOwn; + + internal Property(global::System.IntPtr cPtr, bool cMemoryOwn) + { + swigCMemOwn = cMemoryOwn; + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); + } + + internal static global::System.Runtime.InteropServices.HandleRef getCPtr(Property obj) + { + return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; + } + + ~Property() + { + Dispose(); + } + + public virtual void Dispose() + { + lock (this) + { + if (swigCPtr.Handle != global::System.IntPtr.Zero) + { + if (swigCMemOwn) + { + swigCMemOwn = false; + NDalicPINVOKE.delete_TextEditor_Property(swigCPtr); + } + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); + } + global::System.GC.SuppressFinalize(this); + } + } + + internal Property() : this(NDalicPINVOKE.new_TextEditor_Property(), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + internal static readonly int RENDERING_BACKEND = NDalicPINVOKE.TextEditor_Property_RENDERING_BACKEND_get(); + internal static readonly int TEXT = NDalicPINVOKE.TextEditor_Property_TEXT_get(); + internal static readonly int TEXT_COLOR = NDalicPINVOKE.TextEditor_Property_TEXT_COLOR_get(); + internal static readonly int FONT_FAMILY = NDalicPINVOKE.TextEditor_Property_FONT_FAMILY_get(); + internal static readonly int FONT_STYLE = NDalicPINVOKE.TextEditor_Property_FONT_STYLE_get(); + internal static readonly int POINT_SIZE = NDalicPINVOKE.TextEditor_Property_POINT_SIZE_get(); + internal static readonly int HORIZONTAL_ALIGNMENT = NDalicPINVOKE.TextEditor_Property_HORIZONTAL_ALIGNMENT_get(); + internal static readonly int SCROLL_THRESHOLD = NDalicPINVOKE.TextEditor_Property_SCROLL_THRESHOLD_get(); + internal static readonly int SCROLL_SPEED = NDalicPINVOKE.TextEditor_Property_SCROLL_SPEED_get(); + internal static readonly int PRIMARY_CURSOR_COLOR = NDalicPINVOKE.TextEditor_Property_PRIMARY_CURSOR_COLOR_get(); + internal static readonly int SECONDARY_CURSOR_COLOR = NDalicPINVOKE.TextEditor_Property_SECONDARY_CURSOR_COLOR_get(); + internal static readonly int ENABLE_CURSOR_BLINK = NDalicPINVOKE.TextEditor_Property_ENABLE_CURSOR_BLINK_get(); + internal static readonly int CURSOR_BLINK_INTERVAL = NDalicPINVOKE.TextEditor_Property_CURSOR_BLINK_INTERVAL_get(); + internal static readonly int CURSOR_BLINK_DURATION = NDalicPINVOKE.TextEditor_Property_CURSOR_BLINK_DURATION_get(); + internal static readonly int CURSOR_WIDTH = NDalicPINVOKE.TextEditor_Property_CURSOR_WIDTH_get(); + internal static readonly int GRAB_HANDLE_IMAGE = NDalicPINVOKE.TextEditor_Property_GRAB_HANDLE_IMAGE_get(); + internal static readonly int GRAB_HANDLE_PRESSED_IMAGE = NDalicPINVOKE.TextEditor_Property_GRAB_HANDLE_PRESSED_IMAGE_get(); + internal static readonly int SELECTION_HANDLE_IMAGE_LEFT = NDalicPINVOKE.TextEditor_Property_SELECTION_HANDLE_IMAGE_LEFT_get(); + internal static readonly int SELECTION_HANDLE_IMAGE_RIGHT = NDalicPINVOKE.TextEditor_Property_SELECTION_HANDLE_IMAGE_RIGHT_get(); + internal static readonly int SELECTION_HANDLE_PRESSED_IMAGE_LEFT = NDalicPINVOKE.TextEditor_Property_SELECTION_HANDLE_PRESSED_IMAGE_LEFT_get(); + internal static readonly int SELECTION_HANDLE_PRESSED_IMAGE_RIGHT = NDalicPINVOKE.TextEditor_Property_SELECTION_HANDLE_PRESSED_IMAGE_RIGHT_get(); + internal static readonly int SELECTION_HANDLE_MARKER_IMAGE_LEFT = NDalicPINVOKE.TextEditor_Property_SELECTION_HANDLE_MARKER_IMAGE_LEFT_get(); + internal static readonly int SELECTION_HANDLE_MARKER_IMAGE_RIGHT = NDalicPINVOKE.TextEditor_Property_SELECTION_HANDLE_MARKER_IMAGE_RIGHT_get(); + internal static readonly int SELECTION_HIGHLIGHT_COLOR = NDalicPINVOKE.TextEditor_Property_SELECTION_HIGHLIGHT_COLOR_get(); + internal static readonly int DECORATION_BOUNDING_BOX = NDalicPINVOKE.TextEditor_Property_DECORATION_BOUNDING_BOX_get(); + internal static readonly int ENABLE_MARKUP = NDalicPINVOKE.TextEditor_Property_ENABLE_MARKUP_get(); + internal static readonly int INPUT_COLOR = NDalicPINVOKE.TextEditor_Property_INPUT_COLOR_get(); + internal static readonly int INPUT_FONT_FAMILY = NDalicPINVOKE.TextEditor_Property_INPUT_FONT_FAMILY_get(); + internal static readonly int INPUT_FONT_STYLE = NDalicPINVOKE.TextEditor_Property_INPUT_FONT_STYLE_get(); + internal static readonly int INPUT_POINT_SIZE = NDalicPINVOKE.TextEditor_Property_INPUT_POINT_SIZE_get(); + internal static readonly int LINE_SPACING = NDalicPINVOKE.TextEditor_Property_LINE_SPACING_get(); + internal static readonly int INPUT_LINE_SPACING = NDalicPINVOKE.TextEditor_Property_INPUT_LINE_SPACING_get(); + internal static readonly int UNDERLINE = NDalicPINVOKE.TextEditor_Property_UNDERLINE_get(); + internal static readonly int INPUT_UNDERLINE = NDalicPINVOKE.TextEditor_Property_INPUT_UNDERLINE_get(); + internal static readonly int SHADOW = NDalicPINVOKE.TextEditor_Property_SHADOW_get(); + internal static readonly int INPUT_SHADOW = NDalicPINVOKE.TextEditor_Property_INPUT_SHADOW_get(); + internal static readonly int EMBOSS = NDalicPINVOKE.TextEditor_Property_EMBOSS_get(); + internal static readonly int INPUT_EMBOSS = NDalicPINVOKE.TextEditor_Property_INPUT_EMBOSS_get(); + internal static readonly int OUTLINE = NDalicPINVOKE.TextEditor_Property_OUTLINE_get(); + internal static readonly int INPUT_OUTLINE = NDalicPINVOKE.TextEditor_Property_INPUT_OUTLINE_get(); + + } + + internal class InputStyle : global::System.IDisposable + { + private global::System.Runtime.InteropServices.HandleRef swigCPtr; + protected bool swigCMemOwn; + + internal InputStyle(global::System.IntPtr cPtr, bool cMemoryOwn) + { + swigCMemOwn = cMemoryOwn; + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); + } + + internal static global::System.Runtime.InteropServices.HandleRef getCPtr(InputStyle obj) + { + return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; + } + + ~InputStyle() + { + Dispose(); + } + + public virtual void Dispose() + { + lock (this) + { + if (swigCPtr.Handle != global::System.IntPtr.Zero) + { + if (swigCMemOwn) + { + swigCMemOwn = false; + NDalicPINVOKE.delete_TextEditor_InputStyle(swigCPtr); + } + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); + } + global::System.GC.SuppressFinalize(this); + } + } + + internal InputStyle() : this(NDalicPINVOKE.new_TextEditor_InputStyle(), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + internal enum Mask + { + None = 0x0000, + Color = 0x0001, + FontFamily = 0x0002, + PointSize = 0x0004, + FontStyle = 0x0008, + LineSpacing = 0x0010, + Underline = 0x0020, + Shadow = 0x0040, + Emboss = 0x0080, + Outline = 0x0100 + } + + } + + public TextEditor() : this(NDalicPINVOKE.TextEditor_New(), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + + } + internal TextEditor(TextEditor handle) : this(NDalicPINVOKE.new_TextEditor__SWIG_1(TextEditor.getCPtr(handle)), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + internal TextEditor Assign(TextEditor handle) + { + TextEditor ret = new TextEditor(NDalicPINVOKE.TextEditor_Assign(swigCPtr, TextEditor.getCPtr(handle)), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public new static TextEditor DownCast(BaseHandle handle) + { + TextEditor ret = new TextEditor(NDalicPINVOKE.TextEditor_DownCast(BaseHandle.getCPtr(handle)), true); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal TextEditorSignal TextChangedSignal() + { + TextEditorSignal ret = new TextEditorSignal(NDalicPINVOKE.TextEditor_TextChangedSignal(swigCPtr), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal SWIGTYPE_p_Dali__SignalT_void_fDali__Toolkit__TextEditor_Dali__Toolkit__TextEditor__InputStyle__MaskF_t InputStyleChangedSignal() + { + 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); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal enum PropertyRange + { + PROPERTY_START_INDEX = PropertyRanges.PROPERTY_REGISTRATION_START_INDEX, + PROPERTY_END_INDEX = View.PropertyRange.PROPERTY_START_INDEX + 1000 + } + + public int RenderingBackend + { + get + { + int temp = 0; + GetProperty(TextEditor.Property.RENDERING_BACKEND).Get(ref temp); + return temp; + } + set + { + SetProperty(TextEditor.Property.RENDERING_BACKEND, new Tizen.NUI.PropertyValue(value)); + } + } + public string Text + { + get + { + string temp; + GetProperty(TextEditor.Property.TEXT).Get(out temp); + return temp; + } + set + { + SetProperty(TextEditor.Property.TEXT, new Tizen.NUI.PropertyValue(value)); + } + } + public Vector4 TextColor + { + get + { + Vector4 temp = new Vector4(0.0f, 0.0f, 0.0f, 0.0f); + GetProperty(TextEditor.Property.TEXT_COLOR).Get(temp); + return temp; + } + set + { + SetProperty(TextEditor.Property.TEXT_COLOR, new Tizen.NUI.PropertyValue(value)); + } + } + public string FontFamily + { + get + { + string temp; + GetProperty(TextEditor.Property.FONT_FAMILY).Get(out temp); + return temp; + } + set + { + SetProperty(TextEditor.Property.FONT_FAMILY, new Tizen.NUI.PropertyValue(value)); + } + } + public PropertyMap FontStyle + { + get + { + PropertyMap temp = new PropertyMap(); + GetProperty(TextEditor.Property.FONT_STYLE).Get(temp); + return temp; + } + set + { + SetProperty(TextEditor.Property.FONT_STYLE, new Tizen.NUI.PropertyValue(value)); + } + } + public float PointSize + { + get + { + float temp = 0.0f; + GetProperty(TextEditor.Property.POINT_SIZE).Get(ref temp); + return temp; + } + set + { + SetProperty(TextEditor.Property.POINT_SIZE, new Tizen.NUI.PropertyValue(value)); + } + } + public string HorizontalAlignment + { + get + { + string temp; + GetProperty(TextEditor.Property.HORIZONTAL_ALIGNMENT).Get(out temp); + return temp; + } + set + { + SetProperty(TextEditor.Property.HORIZONTAL_ALIGNMENT, new Tizen.NUI.PropertyValue(value)); + } + } + public float ScrollThreshold + { + get + { + float temp = 0.0f; + GetProperty(TextEditor.Property.SCROLL_THRESHOLD).Get(ref temp); + return temp; + } + set + { + SetProperty(TextEditor.Property.SCROLL_THRESHOLD, new Tizen.NUI.PropertyValue(value)); + } + } + public float ScrollSpeed + { + get + { + float temp = 0.0f; + GetProperty(TextEditor.Property.SCROLL_SPEED).Get(ref temp); + return temp; + } + set + { + SetProperty(TextEditor.Property.SCROLL_SPEED, new Tizen.NUI.PropertyValue(value)); + } + } + public Vector4 PrimaryCursorColor + { + get + { + Vector4 temp = new Vector4(0.0f, 0.0f, 0.0f, 0.0f); + GetProperty(TextEditor.Property.PRIMARY_CURSOR_COLOR).Get(temp); + return temp; + } + set + { + SetProperty(TextEditor.Property.PRIMARY_CURSOR_COLOR, new Tizen.NUI.PropertyValue(value)); + } + } + public Vector4 SecondaryCursorColor + { + get + { + Vector4 temp = new Vector4(0.0f, 0.0f, 0.0f, 0.0f); + GetProperty(TextEditor.Property.SECONDARY_CURSOR_COLOR).Get(temp); + return temp; + } + set + { + SetProperty(TextEditor.Property.SECONDARY_CURSOR_COLOR, new Tizen.NUI.PropertyValue(value)); + } + } + public bool EnableCursorBlink + { + get + { + bool temp = false; + GetProperty(TextEditor.Property.ENABLE_CURSOR_BLINK).Get(ref temp); + return temp; + } + set + { + SetProperty(TextEditor.Property.ENABLE_CURSOR_BLINK, new Tizen.NUI.PropertyValue(value)); + } + } + public float CursorBlinkInterval + { + get + { + float temp = 0.0f; + GetProperty(TextEditor.Property.CURSOR_BLINK_INTERVAL).Get(ref temp); + return temp; + } + set + { + SetProperty(TextEditor.Property.CURSOR_BLINK_INTERVAL, new Tizen.NUI.PropertyValue(value)); + } + } + public float CursorBlinkDuration + { + get + { + float temp = 0.0f; + GetProperty(TextEditor.Property.CURSOR_BLINK_DURATION).Get(ref temp); + return temp; + } + set + { + SetProperty(TextEditor.Property.CURSOR_BLINK_DURATION, new Tizen.NUI.PropertyValue(value)); + } + } + public int CursorWidth + { + get + { + int temp = 0; + GetProperty(TextEditor.Property.CURSOR_WIDTH).Get(ref temp); + return temp; + } + set + { + SetProperty(TextEditor.Property.CURSOR_WIDTH, new Tizen.NUI.PropertyValue(value)); + } + } + public string GrabHandleImage + { + get + { + string temp; + GetProperty(TextEditor.Property.GRAB_HANDLE_IMAGE).Get(out temp); + return temp; + } + set + { + SetProperty(TextEditor.Property.GRAB_HANDLE_IMAGE, new Tizen.NUI.PropertyValue(value)); + } + } + public string GrabHandlePressedImage + { + get + { + string temp; + GetProperty(TextEditor.Property.GRAB_HANDLE_PRESSED_IMAGE).Get(out temp); + return temp; + } + set + { + SetProperty(TextEditor.Property.GRAB_HANDLE_PRESSED_IMAGE, new Tizen.NUI.PropertyValue(value)); + } + } + public PropertyMap SelectionHandleImageLeft + { + get + { + PropertyMap temp = new PropertyMap(); + GetProperty(TextEditor.Property.SELECTION_HANDLE_IMAGE_LEFT).Get(temp); + return temp; + } + set + { + SetProperty(TextEditor.Property.SELECTION_HANDLE_IMAGE_LEFT, new Tizen.NUI.PropertyValue(value)); + } + } + public PropertyMap SelectionHandleImageRight + { + get + { + PropertyMap temp = new PropertyMap(); + GetProperty(TextEditor.Property.SELECTION_HANDLE_IMAGE_RIGHT).Get(temp); + return temp; + } + set + { + SetProperty(TextEditor.Property.SELECTION_HANDLE_IMAGE_RIGHT, new Tizen.NUI.PropertyValue(value)); + } + } + public PropertyMap SelectionHandlePressedImageLeft + { + get + { + PropertyMap temp = new PropertyMap(); + GetProperty(TextEditor.Property.SELECTION_HANDLE_PRESSED_IMAGE_LEFT).Get(temp); + return temp; + } + set + { + SetProperty(TextEditor.Property.SELECTION_HANDLE_PRESSED_IMAGE_LEFT, new Tizen.NUI.PropertyValue(value)); + } + } + public PropertyMap SelectionHandlePressedImageRight + { + get + { + PropertyMap temp = new PropertyMap(); + GetProperty(TextEditor.Property.SELECTION_HANDLE_PRESSED_IMAGE_RIGHT).Get(temp); + return temp; + } + set + { + SetProperty(TextEditor.Property.SELECTION_HANDLE_PRESSED_IMAGE_RIGHT, new Tizen.NUI.PropertyValue(value)); + } + } + public PropertyMap SelectionHandleMarkerImageLeft + { + get + { + PropertyMap temp = new PropertyMap(); + GetProperty(TextEditor.Property.SELECTION_HANDLE_MARKER_IMAGE_LEFT).Get(temp); + return temp; + } + set + { + SetProperty(TextEditor.Property.SELECTION_HANDLE_MARKER_IMAGE_LEFT, new Tizen.NUI.PropertyValue(value)); + } + } + public PropertyMap SelectionHandleMarkerImageRight + { + get + { + PropertyMap temp = new PropertyMap(); + GetProperty(TextEditor.Property.SELECTION_HANDLE_MARKER_IMAGE_RIGHT).Get(temp); + return temp; + } + set + { + SetProperty(TextEditor.Property.SELECTION_HANDLE_MARKER_IMAGE_RIGHT, new Tizen.NUI.PropertyValue(value)); + } + } + public Vector4 SelectionHighlightColor + { + get + { + Vector4 temp = new Vector4(0.0f, 0.0f, 0.0f, 0.0f); + GetProperty(TextEditor.Property.SELECTION_HIGHLIGHT_COLOR).Get(temp); + return temp; + } + set + { + SetProperty(TextEditor.Property.SELECTION_HIGHLIGHT_COLOR, new Tizen.NUI.PropertyValue(value)); + } + } + public RectInteger DecorationBoundingBox + { + get + { + RectInteger temp = new RectInteger(0, 0, 0, 0); + GetProperty(TextEditor.Property.DECORATION_BOUNDING_BOX).Get(temp); + return temp; + } + set + { + SetProperty(TextEditor.Property.DECORATION_BOUNDING_BOX, new Tizen.NUI.PropertyValue(value)); + } + } + public bool EnableMarkup + { + get + { + bool temp = false; + GetProperty(TextEditor.Property.ENABLE_MARKUP).Get(ref temp); + return temp; + } + set + { + SetProperty(TextEditor.Property.ENABLE_MARKUP, new Tizen.NUI.PropertyValue(value)); + } + } + public Vector4 InputColor + { + get + { + Vector4 temp = new Vector4(0.0f, 0.0f, 0.0f, 0.0f); + GetProperty(TextEditor.Property.INPUT_COLOR).Get(temp); + return temp; + } + set + { + SetProperty(TextEditor.Property.INPUT_COLOR, new Tizen.NUI.PropertyValue(value)); + } + } + public string InputFontFamily + { + get + { + string temp; + GetProperty(TextEditor.Property.INPUT_FONT_FAMILY).Get(out temp); + return temp; + } + set + { + SetProperty(TextEditor.Property.INPUT_FONT_FAMILY, new Tizen.NUI.PropertyValue(value)); + } + } + public PropertyMap InputFontStyle + { + get + { + PropertyMap temp = new PropertyMap(); + GetProperty(TextEditor.Property.INPUT_FONT_STYLE).Get(temp); + return temp; + } + set + { + SetProperty(TextEditor.Property.INPUT_FONT_STYLE, new Tizen.NUI.PropertyValue(value)); + } + } + public float InputPointSize + { + get + { + float temp = 0.0f; + GetProperty(TextEditor.Property.INPUT_POINT_SIZE).Get(ref temp); + return temp; + } + set + { + SetProperty(TextEditor.Property.INPUT_POINT_SIZE, new Tizen.NUI.PropertyValue(value)); + } + } + public float LineSpacing + { + get + { + float temp = 0.0f; + GetProperty(TextEditor.Property.LINE_SPACING).Get(ref temp); + return temp; + } + set + { + SetProperty(TextEditor.Property.LINE_SPACING, new Tizen.NUI.PropertyValue(value)); + } + } + public float InputLineSpacing + { + get + { + float temp = 0.0f; + GetProperty(TextEditor.Property.INPUT_LINE_SPACING).Get(ref temp); + return temp; + } + set + { + SetProperty(TextEditor.Property.INPUT_LINE_SPACING, new Tizen.NUI.PropertyValue(value)); + } + } + public PropertyMap Underline + { + get + { + PropertyMap temp = new PropertyMap(); + GetProperty(TextEditor.Property.UNDERLINE).Get(temp); + return temp; + } + set + { + SetProperty(TextEditor.Property.UNDERLINE, new Tizen.NUI.PropertyValue(value)); + } + } + public PropertyMap InputUnderline + { + get + { + PropertyMap temp = new PropertyMap(); + GetProperty(TextEditor.Property.INPUT_UNDERLINE).Get(temp); + return temp; + } + set + { + SetProperty(TextEditor.Property.INPUT_UNDERLINE, new Tizen.NUI.PropertyValue(value)); + } + } + public PropertyMap Shadow + { + get + { + PropertyMap temp = new PropertyMap(); + GetProperty(TextEditor.Property.SHADOW).Get(temp); + return temp; + } + set + { + SetProperty(TextEditor.Property.SHADOW, new Tizen.NUI.PropertyValue(value)); + } + } + public PropertyMap InputShadow + { + get + { + PropertyMap temp = new PropertyMap(); + GetProperty(TextEditor.Property.INPUT_SHADOW).Get(temp); + return temp; + } + set + { + SetProperty(TextEditor.Property.INPUT_SHADOW, new Tizen.NUI.PropertyValue(value)); + } + } + public PropertyMap Emboss + { + get + { + PropertyMap temp = new PropertyMap(); + GetProperty(TextEditor.Property.EMBOSS).Get(temp); + return temp; + } + set + { + SetProperty(TextEditor.Property.EMBOSS, new Tizen.NUI.PropertyValue(value)); + } + } + public PropertyMap InputEmboss + { + get + { + PropertyMap temp = new PropertyMap(); + GetProperty(TextEditor.Property.INPUT_EMBOSS).Get(temp); + return temp; + } + set + { + SetProperty(TextEditor.Property.INPUT_EMBOSS, new Tizen.NUI.PropertyValue(value)); + } + } + public PropertyMap Outline + { + get + { + PropertyMap temp = new PropertyMap(); + GetProperty(TextEditor.Property.OUTLINE).Get(temp); + return temp; + } + set + { + SetProperty(TextEditor.Property.OUTLINE, new Tizen.NUI.PropertyValue(value)); + } + } + public PropertyMap InputOutline + { + get + { + PropertyMap temp = new PropertyMap(); + GetProperty(TextEditor.Property.INPUT_OUTLINE).Get(temp); + return temp; + } + set + { + SetProperty(TextEditor.Property.INPUT_OUTLINE, new Tizen.NUI.PropertyValue(value)); + } + } + + } + +} diff --git a/Tizen.NUI/src/public/TextField.cs b/Tizen.NUI/src/public/TextField.cs old mode 100644 new mode 100755 index c360326..94350eb --- a/Tizen.NUI/src/public/TextField.cs +++ b/Tizen.NUI/src/public/TextField.cs @@ -1,1007 +1,1028 @@ -/** Copyright (c) 2017 Samsung Electronics Co., Ltd. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ -// This File has been auto-generated by SWIG and then modified using DALi Ruby Scripts -//------------------------------------------------------------------------------ -// -// -// This file was automatically generated by SWIG (http://www.swig.org). -// Version 3.0.9 -// -// Do not make changes to this file unless you know what you are doing--modify -// the SWIG interface file instead. -//------------------------------------------------------------------------------ - -namespace NUI { - -using System; -using System.Runtime.InteropServices; - - -public class TextField : View { - private global::System.Runtime.InteropServices.HandleRef swigCPtr; - - internal TextField(global::System.IntPtr cPtr, bool cMemoryOwn) : base(NDalicPINVOKE.TextField_SWIGUpcast(cPtr), cMemoryOwn) { - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); - } - - internal static global::System.Runtime.InteropServices.HandleRef getCPtr(TextField obj) { - return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; - } - - ~TextField() { - DisposeQueue.Instance.Add(this); - } - - public override void Dispose() { - if (!Stage.IsInstalled()) { - DisposeQueue.Instance.Add(this); - return; - } - - lock(this) { - if (swigCPtr.Handle != global::System.IntPtr.Zero) { - if (swigCMemOwn) { - swigCMemOwn = false; - NDalicPINVOKE.delete_TextField(swigCPtr); - } - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); - } - global::System.GC.SuppressFinalize(this); - base.Dispose(); - } - } - - - -public class TextChangedEventArgs : EventArgs -{ - private TextField _textField; - - public TextField TextField - { - get - { - return _textField; - } - set - { - _textField = value; - } - } -} - -public class MaxLengthReachedEventArgs : EventArgs -{ - private TextField _textField; - - public TextField TextField - { - get - { - return _textField; - } - set - { - _textField = value; - } - } -} - - - [UnmanagedFunctionPointer(CallingConvention.StdCall)] - private delegate void TextChangedCallbackDelegate(IntPtr textField); - private DaliEventHandler _textFieldTextChangedEventHandler; - private TextChangedCallbackDelegate _textFieldTextChangedCallbackDelegate; - - [UnmanagedFunctionPointer(CallingConvention.StdCall)] - private delegate void MaxLengthReachedCallbackDelegate(IntPtr textField); - private DaliEventHandler _textFieldMaxLengthReachedEventHandler; - private MaxLengthReachedCallbackDelegate _textFieldMaxLengthReachedCallbackDelegate; - - public event DaliEventHandler TextChanged - { - add - { - lock(this) - { - // Restricted to only one listener - if (_textFieldTextChangedEventHandler == null) - { - _textFieldTextChangedEventHandler += value; - - _textFieldTextChangedCallbackDelegate = new TextChangedCallbackDelegate(OnTextChanged); - this.TextChangedSignal().Connect(_textFieldTextChangedCallbackDelegate); - } - } - } - - remove - { - lock(this) - { - if (_textFieldTextChangedEventHandler != null) - { - this.TextChangedSignal().Disconnect(_textFieldTextChangedCallbackDelegate); - } - - _textFieldTextChangedEventHandler -= value; - } - } - } - - private void OnTextChanged(IntPtr textField) - { - TextChangedEventArgs e = new TextChangedEventArgs(); - - // Populate all members of "e" (TextChangedEventArgs) with real data - e.TextField = NUI.TextField.GetTextFieldFromPtr(textField); - - if (_textFieldTextChangedEventHandler != null) - { - //here we send all data to user event handlers - _textFieldTextChangedEventHandler(this, e); - } - - } - - public event DaliEventHandler MaxLengthReached - { - add - { - lock(this) - { - // Restricted to only one listener - if (_textFieldMaxLengthReachedEventHandler == null) - { - _textFieldMaxLengthReachedEventHandler += value; - - _textFieldMaxLengthReachedCallbackDelegate = new MaxLengthReachedCallbackDelegate(OnMaxLengthReached); - this.MaxLengthReachedSignal().Connect(_textFieldMaxLengthReachedCallbackDelegate); - } - } - } - - remove - { - lock(this) - { - if (_textFieldMaxLengthReachedEventHandler != null) - { - this.MaxLengthReachedSignal().Disconnect(_textFieldMaxLengthReachedCallbackDelegate); - } - - _textFieldMaxLengthReachedEventHandler -= value; - } - } - } - - private void OnMaxLengthReached(IntPtr textField) - { - MaxLengthReachedEventArgs e = new MaxLengthReachedEventArgs(); - - // Populate all members of "e" (MaxLengthReachedEventArgs) with real data - e.TextField = NUI.TextField.GetTextFieldFromPtr(textField); - - if (_textFieldMaxLengthReachedEventHandler != null) - { - //here we send all data to user event handlers - _textFieldMaxLengthReachedEventHandler(this, e); - } - - } - - public static TextField GetTextFieldFromPtr(global::System.IntPtr cPtr) { - TextField ret = new TextField(cPtr, false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - - public class Property : global::System.IDisposable { - private global::System.Runtime.InteropServices.HandleRef swigCPtr; - protected bool swigCMemOwn; - - internal Property(global::System.IntPtr cPtr, bool cMemoryOwn) { - swigCMemOwn = cMemoryOwn; - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); - } - - internal static global::System.Runtime.InteropServices.HandleRef getCPtr(Property obj) { - return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; - } - - ~Property() { - Dispose(); - } - - public virtual void Dispose() { - lock(this) { - if (swigCPtr.Handle != global::System.IntPtr.Zero) { - if (swigCMemOwn) { - swigCMemOwn = false; - NDalicPINVOKE.delete_TextField_Property(swigCPtr); - } - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); - } - global::System.GC.SuppressFinalize(this); - } - } - - public Property() : this(NDalicPINVOKE.new_TextField_Property(), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public static readonly int RENDERING_BACKEND = NDalicPINVOKE.TextField_Property_RENDERING_BACKEND_get(); - public static readonly int TEXT = NDalicPINVOKE.TextField_Property_TEXT_get(); - public static readonly int PLACEHOLDER_TEXT = NDalicPINVOKE.TextField_Property_PLACEHOLDER_TEXT_get(); - public static readonly int PLACEHOLDER_TEXT_FOCUSED = NDalicPINVOKE.TextField_Property_PLACEHOLDER_TEXT_FOCUSED_get(); - public static readonly int FONT_FAMILY = NDalicPINVOKE.TextField_Property_FONT_FAMILY_get(); - public static readonly int FONT_STYLE = NDalicPINVOKE.TextField_Property_FONT_STYLE_get(); - public static readonly int POINT_SIZE = NDalicPINVOKE.TextField_Property_POINT_SIZE_get(); - public static readonly int MAX_LENGTH = NDalicPINVOKE.TextField_Property_MAX_LENGTH_get(); - public static readonly int EXCEED_POLICY = NDalicPINVOKE.TextField_Property_EXCEED_POLICY_get(); - public static readonly int HORIZONTAL_ALIGNMENT = NDalicPINVOKE.TextField_Property_HORIZONTAL_ALIGNMENT_get(); - public static readonly int VERTICAL_ALIGNMENT = NDalicPINVOKE.TextField_Property_VERTICAL_ALIGNMENT_get(); - public static readonly int TEXT_COLOR = NDalicPINVOKE.TextField_Property_TEXT_COLOR_get(); - public static readonly int PLACEHOLDER_TEXT_COLOR = NDalicPINVOKE.TextField_Property_PLACEHOLDER_TEXT_COLOR_get(); - public static readonly int SHADOW_OFFSET = NDalicPINVOKE.TextField_Property_SHADOW_OFFSET_get(); - public static readonly int SHADOW_COLOR = NDalicPINVOKE.TextField_Property_SHADOW_COLOR_get(); - public static readonly int PRIMARY_CURSOR_COLOR = NDalicPINVOKE.TextField_Property_PRIMARY_CURSOR_COLOR_get(); - public static readonly int SECONDARY_CURSOR_COLOR = NDalicPINVOKE.TextField_Property_SECONDARY_CURSOR_COLOR_get(); - public static readonly int ENABLE_CURSOR_BLINK = NDalicPINVOKE.TextField_Property_ENABLE_CURSOR_BLINK_get(); - public static readonly int CURSOR_BLINK_INTERVAL = NDalicPINVOKE.TextField_Property_CURSOR_BLINK_INTERVAL_get(); - public static readonly int CURSOR_BLINK_DURATION = NDalicPINVOKE.TextField_Property_CURSOR_BLINK_DURATION_get(); - public static readonly int CURSOR_WIDTH = NDalicPINVOKE.TextField_Property_CURSOR_WIDTH_get(); - public static readonly int GRAB_HANDLE_IMAGE = NDalicPINVOKE.TextField_Property_GRAB_HANDLE_IMAGE_get(); - public static readonly int GRAB_HANDLE_PRESSED_IMAGE = NDalicPINVOKE.TextField_Property_GRAB_HANDLE_PRESSED_IMAGE_get(); - public static readonly int SCROLL_THRESHOLD = NDalicPINVOKE.TextField_Property_SCROLL_THRESHOLD_get(); - public static readonly int SCROLL_SPEED = NDalicPINVOKE.TextField_Property_SCROLL_SPEED_get(); - public static readonly int SELECTION_HANDLE_IMAGE_LEFT = NDalicPINVOKE.TextField_Property_SELECTION_HANDLE_IMAGE_LEFT_get(); - public static readonly int SELECTION_HANDLE_IMAGE_RIGHT = NDalicPINVOKE.TextField_Property_SELECTION_HANDLE_IMAGE_RIGHT_get(); - public static readonly int SELECTION_HANDLE_PRESSED_IMAGE_LEFT = NDalicPINVOKE.TextField_Property_SELECTION_HANDLE_PRESSED_IMAGE_LEFT_get(); - public static readonly int SELECTION_HANDLE_PRESSED_IMAGE_RIGHT = NDalicPINVOKE.TextField_Property_SELECTION_HANDLE_PRESSED_IMAGE_RIGHT_get(); - public static readonly int SELECTION_HANDLE_MARKER_IMAGE_LEFT = NDalicPINVOKE.TextField_Property_SELECTION_HANDLE_MARKER_IMAGE_LEFT_get(); - public static readonly int SELECTION_HANDLE_MARKER_IMAGE_RIGHT = NDalicPINVOKE.TextField_Property_SELECTION_HANDLE_MARKER_IMAGE_RIGHT_get(); - public static readonly int SELECTION_HIGHLIGHT_COLOR = NDalicPINVOKE.TextField_Property_SELECTION_HIGHLIGHT_COLOR_get(); - public static readonly int DECORATION_BOUNDING_BOX = NDalicPINVOKE.TextField_Property_DECORATION_BOUNDING_BOX_get(); - public static readonly int INPUT_METHOD_SETTINGS = NDalicPINVOKE.TextField_Property_INPUT_METHOD_SETTINGS_get(); - public static readonly int INPUT_COLOR = NDalicPINVOKE.TextField_Property_INPUT_COLOR_get(); - public static readonly int ENABLE_MARKUP = NDalicPINVOKE.TextField_Property_ENABLE_MARKUP_get(); - public static readonly int INPUT_FONT_FAMILY = NDalicPINVOKE.TextField_Property_INPUT_FONT_FAMILY_get(); - public static readonly int INPUT_FONT_STYLE = NDalicPINVOKE.TextField_Property_INPUT_FONT_STYLE_get(); - public static readonly int INPUT_POINT_SIZE = NDalicPINVOKE.TextField_Property_INPUT_POINT_SIZE_get(); - public static readonly int UNDERLINE = NDalicPINVOKE.TextField_Property_UNDERLINE_get(); - public static readonly int INPUT_UNDERLINE = NDalicPINVOKE.TextField_Property_INPUT_UNDERLINE_get(); - public static readonly int SHADOW = NDalicPINVOKE.TextField_Property_SHADOW_get(); - public static readonly int INPUT_SHADOW = NDalicPINVOKE.TextField_Property_INPUT_SHADOW_get(); - public static readonly int EMBOSS = NDalicPINVOKE.TextField_Property_EMBOSS_get(); - public static readonly int INPUT_EMBOSS = NDalicPINVOKE.TextField_Property_INPUT_EMBOSS_get(); - public static readonly int OUTLINE = NDalicPINVOKE.TextField_Property_OUTLINE_get(); - public static readonly int INPUT_OUTLINE = NDalicPINVOKE.TextField_Property_INPUT_OUTLINE_get(); - - } - - public class InputStyle : global::System.IDisposable { - private global::System.Runtime.InteropServices.HandleRef swigCPtr; - protected bool swigCMemOwn; - - internal InputStyle(global::System.IntPtr cPtr, bool cMemoryOwn) { - swigCMemOwn = cMemoryOwn; - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); - } - - internal static global::System.Runtime.InteropServices.HandleRef getCPtr(InputStyle obj) { - return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; - } - - ~InputStyle() { - Dispose(); - } - - public virtual void Dispose() { - lock(this) { - if (swigCPtr.Handle != global::System.IntPtr.Zero) { - if (swigCMemOwn) { - swigCMemOwn = false; - NDalicPINVOKE.delete_TextField_InputStyle(swigCPtr); - } - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); - } - global::System.GC.SuppressFinalize(this); - } - } - - public InputStyle() : this(NDalicPINVOKE.new_TextField_InputStyle(), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public enum Mask { - NONE = 0x0000, - COLOR = 0x0001, - FONT_FAMILY = 0x0002, - POINT_SIZE = 0x0004, - FONT_STYLE = 0x0008, - UNDERLINE = 0x0010, - SHADOW = 0x0020, - EMBOSS = 0x0040, - OUTLINE = 0x0080 - } - - } - - public TextField () : this (NDalicPINVOKE.TextField_New(), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - - } - public TextField(TextField handle) : this(NDalicPINVOKE.new_TextField__SWIG_1(TextField.getCPtr(handle)), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public TextField Assign(TextField handle) { - TextField ret = new TextField(NDalicPINVOKE.TextField_Assign(swigCPtr, TextField.getCPtr(handle)), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public new static TextField DownCast(BaseHandle handle) { - TextField ret = new TextField(NDalicPINVOKE.TextField_DownCast(BaseHandle.getCPtr(handle)), true); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public TextFieldSignal TextChangedSignal() { - TextFieldSignal ret = new TextFieldSignal(NDalicPINVOKE.TextField_TextChangedSignal(swigCPtr), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public TextFieldSignal MaxLengthReachedSignal() { - TextFieldSignal ret = new TextFieldSignal(NDalicPINVOKE.TextField_MaxLengthReachedSignal(swigCPtr), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public SWIGTYPE_p_Dali__SignalT_void_fDali__Toolkit__TextField_Dali__Toolkit__TextField__InputStyle__MaskF_t InputStyleChangedSignal() { - 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); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public enum PropertyRange { - PROPERTY_START_INDEX = PropertyRanges.PROPERTY_REGISTRATION_START_INDEX, - PROPERTY_END_INDEX = View.PropertyRange.PROPERTY_START_INDEX+1000 - } - - public enum ExceedPolicyType { - EXCEED_POLICY_ORIGINAL, - EXCEED_POLICY_CLIP - } - - public int RenderingBackend - { - get - { - int temp = 0; - GetProperty( TextField.Property.RENDERING_BACKEND).Get( ref temp ); - return temp; - } - set - { - SetProperty( TextField.Property.RENDERING_BACKEND, new NUI.Property.Value( value ) ); - } - } - public string Text - { - get - { - string temp; - GetProperty( TextField.Property.TEXT).Get( out temp ); - return temp; - } - set - { - SetProperty( TextField.Property.TEXT, new NUI.Property.Value( value ) ); - } - } - public string PlaceholderText - { - get - { - string temp; - GetProperty( TextField.Property.PLACEHOLDER_TEXT).Get( out temp ); - return temp; - } - set - { - SetProperty( TextField.Property.PLACEHOLDER_TEXT, new NUI.Property.Value( value ) ); - } - } - public string PlaceholderTextFocused - { - get - { - string temp; - GetProperty( TextField.Property.PLACEHOLDER_TEXT_FOCUSED).Get( out temp ); - return temp; - } - set - { - SetProperty( TextField.Property.PLACEHOLDER_TEXT_FOCUSED, new NUI.Property.Value( value ) ); - } - } - public string FontFamily - { - get - { - string temp; - GetProperty( TextField.Property.FONT_FAMILY).Get( out temp ); - return temp; - } - set - { - SetProperty( TextField.Property.FONT_FAMILY, new NUI.Property.Value( value ) ); - } - } - public NUI.Property.Map FontStyle - { - get - { - NUI.Property.Map temp = new NUI.Property.Map(); - GetProperty( TextField.Property.FONT_STYLE).Get( temp ); - return temp; - } - set - { - SetProperty( TextField.Property.FONT_STYLE, new NUI.Property.Value( value ) ); - } - } - public float PointSize - { - get - { - float temp = 0.0f; - GetProperty( TextField.Property.POINT_SIZE).Get( ref temp ); - return temp; - } - set - { - SetProperty( TextField.Property.POINT_SIZE, new NUI.Property.Value( value ) ); - } - } - public int MaxLength - { - get - { - int temp = 0; - GetProperty( TextField.Property.MAX_LENGTH).Get( ref temp ); - return temp; - } - set - { - SetProperty( TextField.Property.MAX_LENGTH, new NUI.Property.Value( value ) ); - } - } - public int ExceedPolicy - { - get - { - int temp = 0; - GetProperty( TextField.Property.EXCEED_POLICY).Get( ref temp ); - return temp; - } - set - { - SetProperty( TextField.Property.EXCEED_POLICY, new NUI.Property.Value( value ) ); - } - } - public string HorizontalAlignment - { - get - { - string temp; - GetProperty( TextField.Property.HORIZONTAL_ALIGNMENT).Get( out temp ); - return temp; - } - set - { - SetProperty( TextField.Property.HORIZONTAL_ALIGNMENT, new NUI.Property.Value( value ) ); - } - } - public string VerticalAlignment - { - get - { - string temp; - GetProperty( TextField.Property.VERTICAL_ALIGNMENT).Get( out temp ); - return temp; - } - set - { - SetProperty( TextField.Property.VERTICAL_ALIGNMENT, new NUI.Property.Value( value ) ); - } - } - public Vector4 TextColor - { - get - { - Vector4 temp = new Vector4(0.0f,0.0f,0.0f,0.0f); - GetProperty( TextField.Property.TEXT_COLOR).Get( temp ); - return temp; - } - set - { - SetProperty( TextField.Property.TEXT_COLOR, new NUI.Property.Value( value ) ); - } - } - public Vector4 PlaceholderTextColor - { - get - { - Vector4 temp = new Vector4(0.0f,0.0f,0.0f,0.0f); - GetProperty( TextField.Property.PLACEHOLDER_TEXT_COLOR).Get( temp ); - return temp; - } - set - { - SetProperty( TextField.Property.PLACEHOLDER_TEXT_COLOR, new NUI.Property.Value( value ) ); - } - } - public Vector2 ShadowOffset - { - get - { - Vector2 temp = new Vector2(0.0f,0.0f); - GetProperty( TextField.Property.SHADOW_OFFSET).Get( temp ); - return temp; - } - set - { - SetProperty( TextField.Property.SHADOW_OFFSET, new NUI.Property.Value( value ) ); - } - } - public Vector4 ShadowColor - { - get - { - Vector4 temp = new Vector4(0.0f,0.0f,0.0f,0.0f); - GetProperty( TextField.Property.SHADOW_COLOR).Get( temp ); - return temp; - } - set - { - SetProperty( TextField.Property.SHADOW_COLOR, new NUI.Property.Value( value ) ); - } - } - public Vector4 PrimaryCursorColor - { - get - { - Vector4 temp = new Vector4(0.0f,0.0f,0.0f,0.0f); - GetProperty( TextField.Property.PRIMARY_CURSOR_COLOR).Get( temp ); - return temp; - } - set - { - SetProperty( TextField.Property.PRIMARY_CURSOR_COLOR, new NUI.Property.Value( value ) ); - } - } - public Vector4 SecondaryCursorColor - { - get - { - Vector4 temp = new Vector4(0.0f,0.0f,0.0f,0.0f); - GetProperty( TextField.Property.SECONDARY_CURSOR_COLOR).Get( temp ); - return temp; - } - set - { - SetProperty( TextField.Property.SECONDARY_CURSOR_COLOR, new NUI.Property.Value( value ) ); - } - } - public bool EnableCursorBlink - { - get - { - bool temp = false; - GetProperty( TextField.Property.ENABLE_CURSOR_BLINK).Get( ref temp ); - return temp; - } - set - { - SetProperty( TextField.Property.ENABLE_CURSOR_BLINK, new NUI.Property.Value( value ) ); - } - } - public float CursorBlinkInterval - { - get - { - float temp = 0.0f; - GetProperty( TextField.Property.CURSOR_BLINK_INTERVAL).Get( ref temp ); - return temp; - } - set - { - SetProperty( TextField.Property.CURSOR_BLINK_INTERVAL, new NUI.Property.Value( value ) ); - } - } - public float CursorBlinkDuration - { - get - { - float temp = 0.0f; - GetProperty( TextField.Property.CURSOR_BLINK_DURATION).Get( ref temp ); - return temp; - } - set - { - SetProperty( TextField.Property.CURSOR_BLINK_DURATION, new NUI.Property.Value( value ) ); - } - } - public int CursorWidth - { - get - { - int temp = 0; - GetProperty( TextField.Property.CURSOR_WIDTH).Get( ref temp ); - return temp; - } - set - { - SetProperty( TextField.Property.CURSOR_WIDTH, new NUI.Property.Value( value ) ); - } - } - public string GrabHandleImage - { - get - { - string temp; - GetProperty( TextField.Property.GRAB_HANDLE_IMAGE).Get( out temp ); - return temp; - } - set - { - SetProperty( TextField.Property.GRAB_HANDLE_IMAGE, new NUI.Property.Value( value ) ); - } - } - public string GrabHandlePressedImage - { - get - { - string temp; - GetProperty( TextField.Property.GRAB_HANDLE_PRESSED_IMAGE).Get( out temp ); - return temp; - } - set - { - SetProperty( TextField.Property.GRAB_HANDLE_PRESSED_IMAGE, new NUI.Property.Value( value ) ); - } - } - public float ScrollThreshold - { - get - { - float temp = 0.0f; - GetProperty( TextField.Property.SCROLL_THRESHOLD).Get( ref temp ); - return temp; - } - set - { - SetProperty( TextField.Property.SCROLL_THRESHOLD, new NUI.Property.Value( value ) ); - } - } - public float ScrollSpeed - { - get - { - float temp = 0.0f; - GetProperty( TextField.Property.SCROLL_SPEED).Get( ref temp ); - return temp; - } - set - { - SetProperty( TextField.Property.SCROLL_SPEED, new NUI.Property.Value( value ) ); - } - } - public NUI.Property.Map SelectionHandleImageLeft - { - get - { - NUI.Property.Map temp = new NUI.Property.Map(); - GetProperty( TextField.Property.SELECTION_HANDLE_IMAGE_LEFT).Get( temp ); - return temp; - } - set - { - SetProperty( TextField.Property.SELECTION_HANDLE_IMAGE_LEFT, new NUI.Property.Value( value ) ); - } - } - public NUI.Property.Map SelectionHandleImageRight - { - get - { - NUI.Property.Map temp = new NUI.Property.Map(); - GetProperty( TextField.Property.SELECTION_HANDLE_IMAGE_RIGHT).Get( temp ); - return temp; - } - set - { - SetProperty( TextField.Property.SELECTION_HANDLE_IMAGE_RIGHT, new NUI.Property.Value( value ) ); - } - } - public NUI.Property.Map SelectionHandlePressedImageLeft - { - get - { - NUI.Property.Map temp = new NUI.Property.Map(); - GetProperty( TextField.Property.SELECTION_HANDLE_PRESSED_IMAGE_LEFT).Get( temp ); - return temp; - } - set - { - SetProperty( TextField.Property.SELECTION_HANDLE_PRESSED_IMAGE_LEFT, new NUI.Property.Value( value ) ); - } - } - public NUI.Property.Map SelectionHandlePressedImageRight - { - get - { - NUI.Property.Map temp = new NUI.Property.Map(); - GetProperty( TextField.Property.SELECTION_HANDLE_PRESSED_IMAGE_RIGHT).Get( temp ); - return temp; - } - set - { - SetProperty( TextField.Property.SELECTION_HANDLE_PRESSED_IMAGE_RIGHT, new NUI.Property.Value( value ) ); - } - } - public NUI.Property.Map SelectionHandleMarkerImageLeft - { - get - { - NUI.Property.Map temp = new NUI.Property.Map(); - GetProperty( TextField.Property.SELECTION_HANDLE_MARKER_IMAGE_LEFT).Get( temp ); - return temp; - } - set - { - SetProperty( TextField.Property.SELECTION_HANDLE_MARKER_IMAGE_LEFT, new NUI.Property.Value( value ) ); - } - } - public NUI.Property.Map SelectionHandleMarkerImageRight - { - get - { - NUI.Property.Map temp = new NUI.Property.Map(); - GetProperty( TextField.Property.SELECTION_HANDLE_MARKER_IMAGE_RIGHT).Get( temp ); - return temp; - } - set - { - SetProperty( TextField.Property.SELECTION_HANDLE_MARKER_IMAGE_RIGHT, new NUI.Property.Value( value ) ); - } - } - public Vector4 SelectionHighlightColor - { - get - { - Vector4 temp = new Vector4(0.0f,0.0f,0.0f,0.0f); - GetProperty( TextField.Property.SELECTION_HIGHLIGHT_COLOR).Get( temp ); - return temp; - } - set - { - SetProperty( TextField.Property.SELECTION_HIGHLIGHT_COLOR, new NUI.Property.Value( value ) ); - } - } - public RectInteger DecorationBoundingBox - { - get - { - RectInteger temp = new RectInteger(0,0,0,0); - GetProperty( TextField.Property.DECORATION_BOUNDING_BOX).Get( temp ); - return temp; - } - set - { - SetProperty( TextField.Property.DECORATION_BOUNDING_BOX, new NUI.Property.Value( value ) ); - } - } - public NUI.Property.Map InputMethodSettings - { - get - { - NUI.Property.Map temp = new NUI.Property.Map(); - GetProperty( TextField.Property.INPUT_METHOD_SETTINGS).Get( temp ); - return temp; - } - set - { - SetProperty( TextField.Property.INPUT_METHOD_SETTINGS, new NUI.Property.Value( value ) ); - } - } - public Vector4 InputColor - { - get - { - Vector4 temp = new Vector4(0.0f,0.0f,0.0f,0.0f); - GetProperty( TextField.Property.INPUT_COLOR).Get( temp ); - return temp; - } - set - { - SetProperty( TextField.Property.INPUT_COLOR, new NUI.Property.Value( value ) ); - } - } - public bool EnableMarkup - { - get - { - bool temp = false; - GetProperty( TextField.Property.ENABLE_MARKUP).Get( ref temp ); - return temp; - } - set - { - SetProperty( TextField.Property.ENABLE_MARKUP, new NUI.Property.Value( value ) ); - } - } - public string InputFontFamily - { - get - { - string temp; - GetProperty( TextField.Property.INPUT_FONT_FAMILY).Get( out temp ); - return temp; - } - set - { - SetProperty( TextField.Property.INPUT_FONT_FAMILY, new NUI.Property.Value( value ) ); - } - } - public NUI.Property.Map InputFontStyle - { - get - { - NUI.Property.Map temp = new NUI.Property.Map(); - GetProperty( TextField.Property.INPUT_FONT_STYLE).Get( temp ); - return temp; - } - set - { - SetProperty( TextField.Property.INPUT_FONT_STYLE, new NUI.Property.Value( value ) ); - } - } - public float InputPointSize - { - get - { - float temp = 0.0f; - GetProperty( TextField.Property.INPUT_POINT_SIZE).Get( ref temp ); - return temp; - } - set - { - SetProperty( TextField.Property.INPUT_POINT_SIZE, new NUI.Property.Value( value ) ); - } - } - public NUI.Property.Map Underline - { - get - { - NUI.Property.Map temp = new NUI.Property.Map(); - GetProperty( TextField.Property.UNDERLINE).Get( temp ); - return temp; - } - set - { - SetProperty( TextField.Property.UNDERLINE, new NUI.Property.Value( value ) ); - } - } - public NUI.Property.Map InputUnderline - { - get - { - NUI.Property.Map temp = new NUI.Property.Map(); - GetProperty( TextField.Property.INPUT_UNDERLINE).Get( temp ); - return temp; - } - set - { - SetProperty( TextField.Property.INPUT_UNDERLINE, new NUI.Property.Value( value ) ); - } - } - public NUI.Property.Map Shadow - { - get - { - NUI.Property.Map temp = new NUI.Property.Map(); - GetProperty( TextField.Property.SHADOW).Get( temp ); - return temp; - } - set - { - SetProperty( TextField.Property.SHADOW, new NUI.Property.Value( value ) ); - } - } - public NUI.Property.Map InputShadow - { - get - { - NUI.Property.Map temp = new NUI.Property.Map(); - GetProperty( TextField.Property.INPUT_SHADOW).Get( temp ); - return temp; - } - set - { - SetProperty( TextField.Property.INPUT_SHADOW, new NUI.Property.Value( value ) ); - } - } - public NUI.Property.Map Emboss - { - get - { - NUI.Property.Map temp = new NUI.Property.Map(); - GetProperty( TextField.Property.EMBOSS).Get( temp ); - return temp; - } - set - { - SetProperty( TextField.Property.EMBOSS, new NUI.Property.Value( value ) ); - } - } - public NUI.Property.Map InputEmboss - { - get - { - NUI.Property.Map temp = new NUI.Property.Map(); - GetProperty( TextField.Property.INPUT_EMBOSS).Get( temp ); - return temp; - } - set - { - SetProperty( TextField.Property.INPUT_EMBOSS, new NUI.Property.Value( value ) ); - } - } - public NUI.Property.Map Outline - { - get - { - NUI.Property.Map temp = new NUI.Property.Map(); - GetProperty( TextField.Property.OUTLINE).Get( temp ); - return temp; - } - set - { - SetProperty( TextField.Property.OUTLINE, new NUI.Property.Value( value ) ); - } - } - public NUI.Property.Map InputOutline - { - get - { - NUI.Property.Map temp = new NUI.Property.Map(); - GetProperty( TextField.Property.INPUT_OUTLINE).Get( temp ); - return temp; - } - set - { - SetProperty( TextField.Property.INPUT_OUTLINE, new NUI.Property.Value( value ) ); - } - } - -} - -} +// Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved +// PROPRIETARY/CONFIDENTIAL +// This software is the confidential and proprietary +// information of SAMSUNG ELECTRONICS ("Confidential Information"). You shall +// not disclose such Confidential Information and shall use it only in +// accordance with the terms of the license agreement you entered into with +// SAMSUNG ELECTRONICS. SAMSUNG make no representations or warranties about the +// suitability of the software, either express or implied, including but not +// limited to the implied warranties of merchantability, fitness for a +// particular purpose, or non-infringement. SAMSUNG shall not be liable for any +// damages suffered by licensee as a result of using, modifying or distributing +// this software or its derivatives. + +// Copyright (c) 2017 Samsung Electronics Co., Ltd. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// + +// This File has been auto-generated by SWIG and then modified using DALi Ruby Scripts +// Some have been manually changed + + +namespace Tizen.NUI +{ + + using System; + using System.Runtime.InteropServices; + + + public class TextField : View + { + private global::System.Runtime.InteropServices.HandleRef swigCPtr; + + internal TextField(global::System.IntPtr cPtr, bool cMemoryOwn) : base(NDalicPINVOKE.TextField_SWIGUpcast(cPtr), cMemoryOwn) + { + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); + } + + internal static global::System.Runtime.InteropServices.HandleRef getCPtr(TextField obj) + { + return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; + } + + ~TextField() + { + DisposeQueue.Instance.Add(this); + } + + public override void Dispose() + { + if (!Stage.IsInstalled()) + { + DisposeQueue.Instance.Add(this); + return; + } + + lock (this) + { + if (swigCPtr.Handle != global::System.IntPtr.Zero) + { + if (swigCMemOwn) + { + swigCMemOwn = false; + NDalicPINVOKE.delete_TextField(swigCPtr); + } + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); + } + global::System.GC.SuppressFinalize(this); + base.Dispose(); + } + } + + + + public class TextChangedEventArgs : EventArgs + { + private TextField _textField; + + public TextField TextField + { + get + { + return _textField; + } + set + { + _textField = value; + } + } + } + + public class MaxLengthReachedEventArgs : EventArgs + { + private TextField _textField; + + public TextField TextField + { + get + { + return _textField; + } + set + { + _textField = value; + } + } + } + + + [UnmanagedFunctionPointer(CallingConvention.StdCall)] + private delegate void TextChangedCallback(IntPtr textField); + private TextChangedCallback _textFieldTextChangedCallback; + private EventHandler _textFieldTextChangedEventHandler; + + [UnmanagedFunctionPointer(CallingConvention.StdCall)] + private delegate void MaxLengthReachedCallback(IntPtr textField); + private EventHandler _textFieldMaxLengthReachedEventHandler; + private MaxLengthReachedCallback _textFieldMaxLengthReachedCallback; + + public event EventHandler TextChanged + { + add + { + if (_textFieldTextChangedCallback == null) + { + _textFieldTextChangedCallback = OnTextChanged; + TextChangedSignal().Connect(_textFieldTextChangedCallback); + } + _textFieldTextChangedEventHandler += value; + } + remove + { + if (_textFieldTextChangedCallback != null) + { + TextChangedSignal().Disconnect(_textFieldTextChangedCallback); + } + _textFieldTextChangedEventHandler -= value; + } + } + + private void OnTextChanged(IntPtr textField) + { + TextChangedEventArgs e = new TextChangedEventArgs(); + + e.TextField = TextField.GetTextFieldFromPtr(textField); + + if (_textFieldTextChangedEventHandler != null) + { + _textFieldTextChangedEventHandler(this, e); + } + + } + + public event EventHandler MaxLengthReached + { + add + { + if (_textFieldMaxLengthReachedCallback == null) + { + _textFieldMaxLengthReachedCallback = OnMaxLengthReached; + MaxLengthReachedSignal().Connect(_textFieldMaxLengthReachedCallback); + } + _textFieldMaxLengthReachedEventHandler += value; + } + remove + { + if (_textFieldMaxLengthReachedCallback != null) + { + MaxLengthReachedSignal().Disconnect(_textFieldMaxLengthReachedCallback); + } + _textFieldMaxLengthReachedEventHandler -= value; + } + } + + private void OnMaxLengthReached(IntPtr textField) + { + MaxLengthReachedEventArgs e = new MaxLengthReachedEventArgs(); + + e.TextField = TextField.GetTextFieldFromPtr(textField); + + if (_textFieldMaxLengthReachedEventHandler != null) + { + _textFieldMaxLengthReachedEventHandler(this, e); + } + + } + + internal static TextField GetTextFieldFromPtr(global::System.IntPtr cPtr) + { + TextField ret = new TextField(cPtr, false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + + internal class Property : global::System.IDisposable + { + private global::System.Runtime.InteropServices.HandleRef swigCPtr; + protected bool swigCMemOwn; + + internal Property(global::System.IntPtr cPtr, bool cMemoryOwn) + { + swigCMemOwn = cMemoryOwn; + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); + } + + internal static global::System.Runtime.InteropServices.HandleRef getCPtr(Property obj) + { + return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; + } + + ~Property() + { + Dispose(); + } + + public virtual void Dispose() + { + lock (this) + { + if (swigCPtr.Handle != global::System.IntPtr.Zero) + { + if (swigCMemOwn) + { + swigCMemOwn = false; + NDalicPINVOKE.delete_TextField_Property(swigCPtr); + } + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); + } + global::System.GC.SuppressFinalize(this); + } + } + + internal Property() : this(NDalicPINVOKE.new_TextField_Property(), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + internal static readonly int RENDERING_BACKEND = NDalicPINVOKE.TextField_Property_RENDERING_BACKEND_get(); + internal static readonly int TEXT = NDalicPINVOKE.TextField_Property_TEXT_get(); + internal static readonly int PLACEHOLDER_TEXT = NDalicPINVOKE.TextField_Property_PLACEHOLDER_TEXT_get(); + internal static readonly int PLACEHOLDER_TEXT_FOCUSED = NDalicPINVOKE.TextField_Property_PLACEHOLDER_TEXT_FOCUSED_get(); + internal static readonly int FONT_FAMILY = NDalicPINVOKE.TextField_Property_FONT_FAMILY_get(); + internal static readonly int FONT_STYLE = NDalicPINVOKE.TextField_Property_FONT_STYLE_get(); + internal static readonly int POINT_SIZE = NDalicPINVOKE.TextField_Property_POINT_SIZE_get(); + internal static readonly int MAX_LENGTH = NDalicPINVOKE.TextField_Property_MAX_LENGTH_get(); + internal static readonly int EXCEED_POLICY = NDalicPINVOKE.TextField_Property_EXCEED_POLICY_get(); + internal static readonly int HORIZONTAL_ALIGNMENT = NDalicPINVOKE.TextField_Property_HORIZONTAL_ALIGNMENT_get(); + internal static readonly int VERTICAL_ALIGNMENT = NDalicPINVOKE.TextField_Property_VERTICAL_ALIGNMENT_get(); + internal static readonly int TEXT_COLOR = NDalicPINVOKE.TextField_Property_TEXT_COLOR_get(); + internal static readonly int PLACEHOLDER_TEXT_COLOR = NDalicPINVOKE.TextField_Property_PLACEHOLDER_TEXT_COLOR_get(); + internal static readonly int SHADOW_OFFSET = NDalicPINVOKE.TextField_Property_SHADOW_OFFSET_get(); + internal static readonly int SHADOW_COLOR = NDalicPINVOKE.TextField_Property_SHADOW_COLOR_get(); + internal static readonly int PRIMARY_CURSOR_COLOR = NDalicPINVOKE.TextField_Property_PRIMARY_CURSOR_COLOR_get(); + internal static readonly int SECONDARY_CURSOR_COLOR = NDalicPINVOKE.TextField_Property_SECONDARY_CURSOR_COLOR_get(); + internal static readonly int ENABLE_CURSOR_BLINK = NDalicPINVOKE.TextField_Property_ENABLE_CURSOR_BLINK_get(); + internal static readonly int CURSOR_BLINK_INTERVAL = NDalicPINVOKE.TextField_Property_CURSOR_BLINK_INTERVAL_get(); + internal static readonly int CURSOR_BLINK_DURATION = NDalicPINVOKE.TextField_Property_CURSOR_BLINK_DURATION_get(); + internal static readonly int CURSOR_WIDTH = NDalicPINVOKE.TextField_Property_CURSOR_WIDTH_get(); + internal static readonly int GRAB_HANDLE_IMAGE = NDalicPINVOKE.TextField_Property_GRAB_HANDLE_IMAGE_get(); + internal static readonly int GRAB_HANDLE_PRESSED_IMAGE = NDalicPINVOKE.TextField_Property_GRAB_HANDLE_PRESSED_IMAGE_get(); + internal static readonly int SCROLL_THRESHOLD = NDalicPINVOKE.TextField_Property_SCROLL_THRESHOLD_get(); + internal static readonly int SCROLL_SPEED = NDalicPINVOKE.TextField_Property_SCROLL_SPEED_get(); + internal static readonly int SELECTION_HANDLE_IMAGE_LEFT = NDalicPINVOKE.TextField_Property_SELECTION_HANDLE_IMAGE_LEFT_get(); + internal static readonly int SELECTION_HANDLE_IMAGE_RIGHT = NDalicPINVOKE.TextField_Property_SELECTION_HANDLE_IMAGE_RIGHT_get(); + internal static readonly int SELECTION_HANDLE_PRESSED_IMAGE_LEFT = NDalicPINVOKE.TextField_Property_SELECTION_HANDLE_PRESSED_IMAGE_LEFT_get(); + internal static readonly int SELECTION_HANDLE_PRESSED_IMAGE_RIGHT = NDalicPINVOKE.TextField_Property_SELECTION_HANDLE_PRESSED_IMAGE_RIGHT_get(); + internal static readonly int SELECTION_HANDLE_MARKER_IMAGE_LEFT = NDalicPINVOKE.TextField_Property_SELECTION_HANDLE_MARKER_IMAGE_LEFT_get(); + internal static readonly int SELECTION_HANDLE_MARKER_IMAGE_RIGHT = NDalicPINVOKE.TextField_Property_SELECTION_HANDLE_MARKER_IMAGE_RIGHT_get(); + internal static readonly int SELECTION_HIGHLIGHT_COLOR = NDalicPINVOKE.TextField_Property_SELECTION_HIGHLIGHT_COLOR_get(); + internal static readonly int DECORATION_BOUNDING_BOX = NDalicPINVOKE.TextField_Property_DECORATION_BOUNDING_BOX_get(); + internal static readonly int INPUT_METHOD_SETTINGS = NDalicPINVOKE.TextField_Property_INPUT_METHOD_SETTINGS_get(); + internal static readonly int INPUT_COLOR = NDalicPINVOKE.TextField_Property_INPUT_COLOR_get(); + internal static readonly int ENABLE_MARKUP = NDalicPINVOKE.TextField_Property_ENABLE_MARKUP_get(); + internal static readonly int INPUT_FONT_FAMILY = NDalicPINVOKE.TextField_Property_INPUT_FONT_FAMILY_get(); + internal static readonly int INPUT_FONT_STYLE = NDalicPINVOKE.TextField_Property_INPUT_FONT_STYLE_get(); + internal static readonly int INPUT_POINT_SIZE = NDalicPINVOKE.TextField_Property_INPUT_POINT_SIZE_get(); + internal static readonly int UNDERLINE = NDalicPINVOKE.TextField_Property_UNDERLINE_get(); + internal static readonly int INPUT_UNDERLINE = NDalicPINVOKE.TextField_Property_INPUT_UNDERLINE_get(); + internal static readonly int SHADOW = NDalicPINVOKE.TextField_Property_SHADOW_get(); + internal static readonly int INPUT_SHADOW = NDalicPINVOKE.TextField_Property_INPUT_SHADOW_get(); + internal static readonly int EMBOSS = NDalicPINVOKE.TextField_Property_EMBOSS_get(); + internal static readonly int INPUT_EMBOSS = NDalicPINVOKE.TextField_Property_INPUT_EMBOSS_get(); + internal static readonly int OUTLINE = NDalicPINVOKE.TextField_Property_OUTLINE_get(); + internal static readonly int INPUT_OUTLINE = NDalicPINVOKE.TextField_Property_INPUT_OUTLINE_get(); + + } + + internal class InputStyle : global::System.IDisposable + { + private global::System.Runtime.InteropServices.HandleRef swigCPtr; + protected bool swigCMemOwn; + + internal InputStyle(global::System.IntPtr cPtr, bool cMemoryOwn) + { + swigCMemOwn = cMemoryOwn; + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); + } + + internal static global::System.Runtime.InteropServices.HandleRef getCPtr(InputStyle obj) + { + return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; + } + + ~InputStyle() + { + Dispose(); + } + + public virtual void Dispose() + { + lock (this) + { + if (swigCPtr.Handle != global::System.IntPtr.Zero) + { + if (swigCMemOwn) + { + swigCMemOwn = false; + NDalicPINVOKE.delete_TextField_InputStyle(swigCPtr); + } + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); + } + global::System.GC.SuppressFinalize(this); + } + } + + internal InputStyle() : this(NDalicPINVOKE.new_TextField_InputStyle(), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + internal enum Mask + { + None = 0x0000, + Color = 0x0001, + FontFamily = 0x0002, + PointSize = 0x0004, + FontStyle = 0x0008, + Underline = 0x0010, + Shadow = 0x0020, + Emboss = 0x0040, + Outline = 0x0080 + } + + } + + public TextField() : this(NDalicPINVOKE.TextField_New(), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + + } + internal TextField(TextField handle) : this(NDalicPINVOKE.new_TextField__SWIG_1(TextField.getCPtr(handle)), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + internal TextField Assign(TextField handle) + { + TextField ret = new TextField(NDalicPINVOKE.TextField_Assign(swigCPtr, TextField.getCPtr(handle)), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public new static TextField DownCast(BaseHandle handle) + { + TextField ret = new TextField(NDalicPINVOKE.TextField_DownCast(BaseHandle.getCPtr(handle)), true); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal TextFieldSignal TextChangedSignal() + { + TextFieldSignal ret = new TextFieldSignal(NDalicPINVOKE.TextField_TextChangedSignal(swigCPtr), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal TextFieldSignal MaxLengthReachedSignal() + { + TextFieldSignal ret = new TextFieldSignal(NDalicPINVOKE.TextField_MaxLengthReachedSignal(swigCPtr), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal SWIGTYPE_p_Dali__SignalT_void_fDali__Toolkit__TextField_Dali__Toolkit__TextField__InputStyle__MaskF_t InputStyleChangedSignal() + { + 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); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal enum PropertyRange + { + PROPERTY_START_INDEX = PropertyRanges.PROPERTY_REGISTRATION_START_INDEX, + PROPERTY_END_INDEX = View.PropertyRange.PROPERTY_START_INDEX + 1000 + } + + internal enum ExceedPolicyType + { + ExceedPolicyOriginal, + ExceedPolicyClip + } + + public int RenderingBackend + { + get + { + int temp = 0; + GetProperty(TextField.Property.RENDERING_BACKEND).Get(ref temp); + return temp; + } + set + { + SetProperty(TextField.Property.RENDERING_BACKEND, new Tizen.NUI.PropertyValue(value)); + } + } + public string Text + { + get + { + string temp; + GetProperty(TextField.Property.TEXT).Get(out temp); + return temp; + } + set + { + SetProperty(TextField.Property.TEXT, new Tizen.NUI.PropertyValue(value)); + } + } + public string PlaceholderText + { + get + { + string temp; + GetProperty(TextField.Property.PLACEHOLDER_TEXT).Get(out temp); + return temp; + } + set + { + SetProperty(TextField.Property.PLACEHOLDER_TEXT, new Tizen.NUI.PropertyValue(value)); + } + } + public string PlaceholderTextFocused + { + get + { + string temp; + GetProperty(TextField.Property.PLACEHOLDER_TEXT_FOCUSED).Get(out temp); + return temp; + } + set + { + SetProperty(TextField.Property.PLACEHOLDER_TEXT_FOCUSED, new Tizen.NUI.PropertyValue(value)); + } + } + public string FontFamily + { + get + { + string temp; + GetProperty(TextField.Property.FONT_FAMILY).Get(out temp); + return temp; + } + set + { + SetProperty(TextField.Property.FONT_FAMILY, new Tizen.NUI.PropertyValue(value)); + } + } + public PropertyMap FontStyle + { + get + { + PropertyMap temp = new PropertyMap(); + GetProperty(TextField.Property.FONT_STYLE).Get(temp); + return temp; + } + set + { + SetProperty(TextField.Property.FONT_STYLE, new Tizen.NUI.PropertyValue(value)); + } + } + public float PointSize + { + get + { + float temp = 0.0f; + GetProperty(TextField.Property.POINT_SIZE).Get(ref temp); + return temp; + } + set + { + SetProperty(TextField.Property.POINT_SIZE, new Tizen.NUI.PropertyValue(value)); + } + } + public int MaxLength + { + get + { + int temp = 0; + GetProperty(TextField.Property.MAX_LENGTH).Get(ref temp); + return temp; + } + set + { + SetProperty(TextField.Property.MAX_LENGTH, new Tizen.NUI.PropertyValue(value)); + } + } + public int ExceedPolicy + { + get + { + int temp = 0; + GetProperty(TextField.Property.EXCEED_POLICY).Get(ref temp); + return temp; + } + set + { + SetProperty(TextField.Property.EXCEED_POLICY, new Tizen.NUI.PropertyValue(value)); + } + } + public string HorizontalAlignment + { + get + { + string temp; + GetProperty(TextField.Property.HORIZONTAL_ALIGNMENT).Get(out temp); + return temp; + } + set + { + SetProperty(TextField.Property.HORIZONTAL_ALIGNMENT, new Tizen.NUI.PropertyValue(value)); + } + } + public string VerticalAlignment + { + get + { + string temp; + GetProperty(TextField.Property.VERTICAL_ALIGNMENT).Get(out temp); + return temp; + } + set + { + SetProperty(TextField.Property.VERTICAL_ALIGNMENT, new Tizen.NUI.PropertyValue(value)); + } + } + public Color TextColor + { + get + { + Color temp = new Color(0.0f, 0.0f, 0.0f, 0.0f); + GetProperty(TextField.Property.TEXT_COLOR).Get(temp); + return temp; + } + set + { + SetProperty(TextField.Property.TEXT_COLOR, new Tizen.NUI.PropertyValue(value)); + } + } + public Vector4 PlaceholderTextColor + { + get + { + Vector4 temp = new Vector4(0.0f, 0.0f, 0.0f, 0.0f); + GetProperty(TextField.Property.PLACEHOLDER_TEXT_COLOR).Get(temp); + return temp; + } + set + { + SetProperty(TextField.Property.PLACEHOLDER_TEXT_COLOR, new Tizen.NUI.PropertyValue(value)); + } + } + public Vector2 ShadowOffset + { + get + { + Vector2 temp = new Vector2(0.0f, 0.0f); + GetProperty(TextField.Property.SHADOW_OFFSET).Get(temp); + return temp; + } + set + { + SetProperty(TextField.Property.SHADOW_OFFSET, new Tizen.NUI.PropertyValue(value)); + } + } + public Vector4 ShadowColor + { + get + { + Vector4 temp = new Vector4(0.0f, 0.0f, 0.0f, 0.0f); + GetProperty(TextField.Property.SHADOW_COLOR).Get(temp); + return temp; + } + set + { + SetProperty(TextField.Property.SHADOW_COLOR, new Tizen.NUI.PropertyValue(value)); + } + } + public Vector4 PrimaryCursorColor + { + get + { + Vector4 temp = new Vector4(0.0f, 0.0f, 0.0f, 0.0f); + GetProperty(TextField.Property.PRIMARY_CURSOR_COLOR).Get(temp); + return temp; + } + set + { + SetProperty(TextField.Property.PRIMARY_CURSOR_COLOR, new Tizen.NUI.PropertyValue(value)); + } + } + public Vector4 SecondaryCursorColor + { + get + { + Vector4 temp = new Vector4(0.0f, 0.0f, 0.0f, 0.0f); + GetProperty(TextField.Property.SECONDARY_CURSOR_COLOR).Get(temp); + return temp; + } + set + { + SetProperty(TextField.Property.SECONDARY_CURSOR_COLOR, new Tizen.NUI.PropertyValue(value)); + } + } + public bool EnableCursorBlink + { + get + { + bool temp = false; + GetProperty(TextField.Property.ENABLE_CURSOR_BLINK).Get(ref temp); + return temp; + } + set + { + SetProperty(TextField.Property.ENABLE_CURSOR_BLINK, new Tizen.NUI.PropertyValue(value)); + } + } + public float CursorBlinkInterval + { + get + { + float temp = 0.0f; + GetProperty(TextField.Property.CURSOR_BLINK_INTERVAL).Get(ref temp); + return temp; + } + set + { + SetProperty(TextField.Property.CURSOR_BLINK_INTERVAL, new Tizen.NUI.PropertyValue(value)); + } + } + public float CursorBlinkDuration + { + get + { + float temp = 0.0f; + GetProperty(TextField.Property.CURSOR_BLINK_DURATION).Get(ref temp); + return temp; + } + set + { + SetProperty(TextField.Property.CURSOR_BLINK_DURATION, new Tizen.NUI.PropertyValue(value)); + } + } + public int CursorWidth + { + get + { + int temp = 0; + GetProperty(TextField.Property.CURSOR_WIDTH).Get(ref temp); + return temp; + } + set + { + SetProperty(TextField.Property.CURSOR_WIDTH, new Tizen.NUI.PropertyValue(value)); + } + } + public string GrabHandleImage + { + get + { + string temp; + GetProperty(TextField.Property.GRAB_HANDLE_IMAGE).Get(out temp); + return temp; + } + set + { + SetProperty(TextField.Property.GRAB_HANDLE_IMAGE, new Tizen.NUI.PropertyValue(value)); + } + } + public string GrabHandlePressedImage + { + get + { + string temp; + GetProperty(TextField.Property.GRAB_HANDLE_PRESSED_IMAGE).Get(out temp); + return temp; + } + set + { + SetProperty(TextField.Property.GRAB_HANDLE_PRESSED_IMAGE, new Tizen.NUI.PropertyValue(value)); + } + } + public float ScrollThreshold + { + get + { + float temp = 0.0f; + GetProperty(TextField.Property.SCROLL_THRESHOLD).Get(ref temp); + return temp; + } + set + { + SetProperty(TextField.Property.SCROLL_THRESHOLD, new Tizen.NUI.PropertyValue(value)); + } + } + public float ScrollSpeed + { + get + { + float temp = 0.0f; + GetProperty(TextField.Property.SCROLL_SPEED).Get(ref temp); + return temp; + } + set + { + SetProperty(TextField.Property.SCROLL_SPEED, new Tizen.NUI.PropertyValue(value)); + } + } + public PropertyMap SelectionHandleImageLeft + { + get + { + PropertyMap temp = new PropertyMap(); + GetProperty(TextField.Property.SELECTION_HANDLE_IMAGE_LEFT).Get(temp); + return temp; + } + set + { + SetProperty(TextField.Property.SELECTION_HANDLE_IMAGE_LEFT, new Tizen.NUI.PropertyValue(value)); + } + } + public PropertyMap SelectionHandleImageRight + { + get + { + PropertyMap temp = new PropertyMap(); + GetProperty(TextField.Property.SELECTION_HANDLE_IMAGE_RIGHT).Get(temp); + return temp; + } + set + { + SetProperty(TextField.Property.SELECTION_HANDLE_IMAGE_RIGHT, new Tizen.NUI.PropertyValue(value)); + } + } + public PropertyMap SelectionHandlePressedImageLeft + { + get + { + PropertyMap temp = new PropertyMap(); + GetProperty(TextField.Property.SELECTION_HANDLE_PRESSED_IMAGE_LEFT).Get(temp); + return temp; + } + set + { + SetProperty(TextField.Property.SELECTION_HANDLE_PRESSED_IMAGE_LEFT, new Tizen.NUI.PropertyValue(value)); + } + } + public PropertyMap SelectionHandlePressedImageRight + { + get + { + PropertyMap temp = new PropertyMap(); + GetProperty(TextField.Property.SELECTION_HANDLE_PRESSED_IMAGE_RIGHT).Get(temp); + return temp; + } + set + { + SetProperty(TextField.Property.SELECTION_HANDLE_PRESSED_IMAGE_RIGHT, new Tizen.NUI.PropertyValue(value)); + } + } + public PropertyMap SelectionHandleMarkerImageLeft + { + get + { + PropertyMap temp = new PropertyMap(); + GetProperty(TextField.Property.SELECTION_HANDLE_MARKER_IMAGE_LEFT).Get(temp); + return temp; + } + set + { + SetProperty(TextField.Property.SELECTION_HANDLE_MARKER_IMAGE_LEFT, new Tizen.NUI.PropertyValue(value)); + } + } + public PropertyMap SelectionHandleMarkerImageRight + { + get + { + PropertyMap temp = new PropertyMap(); + GetProperty(TextField.Property.SELECTION_HANDLE_MARKER_IMAGE_RIGHT).Get(temp); + return temp; + } + set + { + SetProperty(TextField.Property.SELECTION_HANDLE_MARKER_IMAGE_RIGHT, new Tizen.NUI.PropertyValue(value)); + } + } + public Vector4 SelectionHighlightColor + { + get + { + Vector4 temp = new Vector4(0.0f, 0.0f, 0.0f, 0.0f); + GetProperty(TextField.Property.SELECTION_HIGHLIGHT_COLOR).Get(temp); + return temp; + } + set + { + SetProperty(TextField.Property.SELECTION_HIGHLIGHT_COLOR, new Tizen.NUI.PropertyValue(value)); + } + } + public RectInteger DecorationBoundingBox + { + get + { + RectInteger temp = new RectInteger(0, 0, 0, 0); + GetProperty(TextField.Property.DECORATION_BOUNDING_BOX).Get(temp); + return temp; + } + set + { + SetProperty(TextField.Property.DECORATION_BOUNDING_BOX, new Tizen.NUI.PropertyValue(value)); + } + } + public PropertyMap InputMethodSettings + { + get + { + PropertyMap temp = new PropertyMap(); + GetProperty(TextField.Property.INPUT_METHOD_SETTINGS).Get(temp); + return temp; + } + set + { + SetProperty(TextField.Property.INPUT_METHOD_SETTINGS, new Tizen.NUI.PropertyValue(value)); + } + } + public Vector4 InputColor + { + get + { + Vector4 temp = new Vector4(0.0f, 0.0f, 0.0f, 0.0f); + GetProperty(TextField.Property.INPUT_COLOR).Get(temp); + return temp; + } + set + { + SetProperty(TextField.Property.INPUT_COLOR, new Tizen.NUI.PropertyValue(value)); + } + } + public bool EnableMarkup + { + get + { + bool temp = false; + GetProperty(TextField.Property.ENABLE_MARKUP).Get(ref temp); + return temp; + } + set + { + SetProperty(TextField.Property.ENABLE_MARKUP, new Tizen.NUI.PropertyValue(value)); + } + } + public string InputFontFamily + { + get + { + string temp; + GetProperty(TextField.Property.INPUT_FONT_FAMILY).Get(out temp); + return temp; + } + set + { + SetProperty(TextField.Property.INPUT_FONT_FAMILY, new Tizen.NUI.PropertyValue(value)); + } + } + public PropertyMap InputFontStyle + { + get + { + PropertyMap temp = new PropertyMap(); + GetProperty(TextField.Property.INPUT_FONT_STYLE).Get(temp); + return temp; + } + set + { + SetProperty(TextField.Property.INPUT_FONT_STYLE, new Tizen.NUI.PropertyValue(value)); + } + } + public float InputPointSize + { + get + { + float temp = 0.0f; + GetProperty(TextField.Property.INPUT_POINT_SIZE).Get(ref temp); + return temp; + } + set + { + SetProperty(TextField.Property.INPUT_POINT_SIZE, new Tizen.NUI.PropertyValue(value)); + } + } + public PropertyMap Underline + { + get + { + PropertyMap temp = new PropertyMap(); + GetProperty(TextField.Property.UNDERLINE).Get(temp); + return temp; + } + set + { + SetProperty(TextField.Property.UNDERLINE, new Tizen.NUI.PropertyValue(value)); + } + } + public PropertyMap InputUnderline + { + get + { + PropertyMap temp = new PropertyMap(); + GetProperty(TextField.Property.INPUT_UNDERLINE).Get(temp); + return temp; + } + set + { + SetProperty(TextField.Property.INPUT_UNDERLINE, new Tizen.NUI.PropertyValue(value)); + } + } + public PropertyMap Shadow + { + get + { + PropertyMap temp = new PropertyMap(); + GetProperty(TextField.Property.SHADOW).Get(temp); + return temp; + } + set + { + SetProperty(TextField.Property.SHADOW, new Tizen.NUI.PropertyValue(value)); + } + } + public PropertyMap InputShadow + { + get + { + PropertyMap temp = new PropertyMap(); + GetProperty(TextField.Property.INPUT_SHADOW).Get(temp); + return temp; + } + set + { + SetProperty(TextField.Property.INPUT_SHADOW, new Tizen.NUI.PropertyValue(value)); + } + } + public PropertyMap Emboss + { + get + { + PropertyMap temp = new PropertyMap(); + GetProperty(TextField.Property.EMBOSS).Get(temp); + return temp; + } + set + { + SetProperty(TextField.Property.EMBOSS, new Tizen.NUI.PropertyValue(value)); + } + } + public PropertyMap InputEmboss + { + get + { + PropertyMap temp = new PropertyMap(); + GetProperty(TextField.Property.INPUT_EMBOSS).Get(temp); + return temp; + } + set + { + SetProperty(TextField.Property.INPUT_EMBOSS, new Tizen.NUI.PropertyValue(value)); + } + } + public PropertyMap Outline + { + get + { + PropertyMap temp = new PropertyMap(); + GetProperty(TextField.Property.OUTLINE).Get(temp); + return temp; + } + set + { + SetProperty(TextField.Property.OUTLINE, new Tizen.NUI.PropertyValue(value)); + } + } + public PropertyMap InputOutline + { + get + { + PropertyMap temp = new PropertyMap(); + GetProperty(TextField.Property.INPUT_OUTLINE).Get(temp); + return temp; + } + set + { + SetProperty(TextField.Property.INPUT_OUTLINE, new Tizen.NUI.PropertyValue(value)); + } + } + + } + +} diff --git a/Tizen.NUI/src/public/TextLabel.cs b/Tizen.NUI/src/public/TextLabel.cs old mode 100644 new mode 100755 index 1fbb3df..dd965db --- a/Tizen.NUI/src/public/TextLabel.cs +++ b/Tizen.NUI/src/public/TextLabel.cs @@ -1,469 +1,500 @@ -/** Copyright (c) 2017 Samsung Electronics Co., Ltd. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ -// This File has been auto-generated by SWIG and then modified using DALi Ruby Scripts -//------------------------------------------------------------------------------ -// -// -// This file was automatically generated by SWIG (http://www.swig.org). -// Version 3.0.9 -// -// Do not make changes to this file unless you know what you are doing--modify -// the SWIG interface file instead. -//------------------------------------------------------------------------------ - -namespace NUI { - -public class TextLabel : View { - private global::System.Runtime.InteropServices.HandleRef swigCPtr; - - internal TextLabel(global::System.IntPtr cPtr, bool cMemoryOwn) : base(NDalicPINVOKE.TextLabel_SWIGUpcast(cPtr), cMemoryOwn) { - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); - } - - internal static global::System.Runtime.InteropServices.HandleRef getCPtr(TextLabel obj) { - return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; - } - - ~TextLabel() { - DisposeQueue.Instance.Add(this); - } - - public override void Dispose() { - if (!Stage.IsInstalled()) { - DisposeQueue.Instance.Add(this); - return; - } - - lock(this) { - if (swigCPtr.Handle != global::System.IntPtr.Zero) { - if (swigCMemOwn) { - swigCMemOwn = false; - NDalicPINVOKE.delete_TextLabel(swigCPtr); - } - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); - } - global::System.GC.SuppressFinalize(this); - base.Dispose(); - } - } - - - public class Property : global::System.IDisposable { - private global::System.Runtime.InteropServices.HandleRef swigCPtr; - protected bool swigCMemOwn; - - internal Property(global::System.IntPtr cPtr, bool cMemoryOwn) { - swigCMemOwn = cMemoryOwn; - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); - } - - internal static global::System.Runtime.InteropServices.HandleRef getCPtr(Property obj) { - return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; - } - - ~Property() { - Dispose(); - } - - public virtual void Dispose() { - lock(this) { - if (swigCPtr.Handle != global::System.IntPtr.Zero) { - if (swigCMemOwn) { - swigCMemOwn = false; - NDalicPINVOKE.delete_TextLabel_Property(swigCPtr); - } - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); - } - global::System.GC.SuppressFinalize(this); - } - } - - public Property() : this(NDalicPINVOKE.new_TextLabel_Property(), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public static readonly int RENDERING_BACKEND = NDalicPINVOKE.TextLabel_Property_RENDERING_BACKEND_get(); - public static readonly int TEXT = NDalicPINVOKE.TextLabel_Property_TEXT_get(); - public static readonly int FONT_FAMILY = NDalicPINVOKE.TextLabel_Property_FONT_FAMILY_get(); - public static readonly int FONT_STYLE = NDalicPINVOKE.TextLabel_Property_FONT_STYLE_get(); - public static readonly int POINT_SIZE = NDalicPINVOKE.TextLabel_Property_POINT_SIZE_get(); - public static readonly int MULTI_LINE = NDalicPINVOKE.TextLabel_Property_MULTI_LINE_get(); - public static readonly int HORIZONTAL_ALIGNMENT = NDalicPINVOKE.TextLabel_Property_HORIZONTAL_ALIGNMENT_get(); - public static readonly int VERTICAL_ALIGNMENT = NDalicPINVOKE.TextLabel_Property_VERTICAL_ALIGNMENT_get(); - public static readonly int TEXT_COLOR = NDalicPINVOKE.TextLabel_Property_TEXT_COLOR_get(); - public static readonly int SHADOW_OFFSET = NDalicPINVOKE.TextLabel_Property_SHADOW_OFFSET_get(); - public static readonly int SHADOW_COLOR = NDalicPINVOKE.TextLabel_Property_SHADOW_COLOR_get(); - public static readonly int UNDERLINE_ENABLED = NDalicPINVOKE.TextLabel_Property_UNDERLINE_ENABLED_get(); - public static readonly int UNDERLINE_COLOR = NDalicPINVOKE.TextLabel_Property_UNDERLINE_COLOR_get(); - public static readonly int UNDERLINE_HEIGHT = NDalicPINVOKE.TextLabel_Property_UNDERLINE_HEIGHT_get(); - public static readonly int ENABLE_MARKUP = NDalicPINVOKE.TextLabel_Property_ENABLE_MARKUP_get(); - public static readonly int ENABLE_AUTO_SCROLL = NDalicPINVOKE.TextLabel_Property_ENABLE_AUTO_SCROLL_get(); - public static readonly int AUTO_SCROLL_SPEED = NDalicPINVOKE.TextLabel_Property_AUTO_SCROLL_SPEED_get(); - public static readonly int AUTO_SCROLL_LOOP_COUNT = NDalicPINVOKE.TextLabel_Property_AUTO_SCROLL_LOOP_COUNT_get(); - public static readonly int AUTO_SCROLL_GAP = NDalicPINVOKE.TextLabel_Property_AUTO_SCROLL_GAP_get(); - public static readonly int LINE_SPACING = NDalicPINVOKE.TextLabel_Property_LINE_SPACING_get(); - public static readonly int UNDERLINE = NDalicPINVOKE.TextLabel_Property_UNDERLINE_get(); - public static readonly int SHADOW = NDalicPINVOKE.TextLabel_Property_SHADOW_get(); - public static readonly int EMBOSS = NDalicPINVOKE.TextLabel_Property_EMBOSS_get(); - public static readonly int OUTLINE = NDalicPINVOKE.TextLabel_Property_OUTLINE_get(); - - } - - public TextLabel () : this (NDalicPINVOKE.TextLabel_New__SWIG_0(), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - - } - public TextLabel (string text) : this (NDalicPINVOKE.TextLabel_New__SWIG_1(text), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - - } - public TextLabel(TextLabel handle) : this(NDalicPINVOKE.new_TextLabel__SWIG_1(TextLabel.getCPtr(handle)), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public TextLabel Assign(TextLabel handle) { - TextLabel ret = new TextLabel(NDalicPINVOKE.TextLabel_Assign(swigCPtr, TextLabel.getCPtr(handle)), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public new static TextLabel DownCast(BaseHandle handle) { - TextLabel ret = new TextLabel(NDalicPINVOKE.TextLabel_DownCast(BaseHandle.getCPtr(handle)), true); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public enum PropertyRange { - PROPERTY_START_INDEX = PropertyRanges.PROPERTY_REGISTRATION_START_INDEX, - PROPERTY_END_INDEX = View.PropertyRange.PROPERTY_START_INDEX+1000 - } - - public int RenderingBackend - { - get - { - int temp = 0; - GetProperty( TextLabel.Property.RENDERING_BACKEND).Get( ref temp ); - return temp; - } - set - { - SetProperty( TextLabel.Property.RENDERING_BACKEND, new NUI.Property.Value( value ) ); - } - } - public string Text - { - get - { - string temp; - GetProperty( TextLabel.Property.TEXT).Get( out temp ); - return temp; - } - set - { - SetProperty( TextLabel.Property.TEXT, new NUI.Property.Value( value ) ); - } - } - public string FontFamily - { - get - { - string temp; - GetProperty( TextLabel.Property.FONT_FAMILY).Get( out temp ); - return temp; - } - set - { - SetProperty( TextLabel.Property.FONT_FAMILY, new NUI.Property.Value( value ) ); - } - } - public NUI.Property.Map FontStyle - { - get - { - NUI.Property.Map temp = new NUI.Property.Map(); - GetProperty( TextLabel.Property.FONT_STYLE).Get( temp ); - return temp; - } - set - { - SetProperty( TextLabel.Property.FONT_STYLE, new NUI.Property.Value( value ) ); - } - } - public float PointSize - { - get - { - float temp = 0.0f; - GetProperty( TextLabel.Property.POINT_SIZE).Get( ref temp ); - return temp; - } - set - { - SetProperty( TextLabel.Property.POINT_SIZE, new NUI.Property.Value( value ) ); - } - } - public bool MultiLine - { - get - { - bool temp = false; - GetProperty( TextLabel.Property.MULTI_LINE).Get( ref temp ); - return temp; - } - set - { - SetProperty( TextLabel.Property.MULTI_LINE, new NUI.Property.Value( value ) ); - } - } - public string HorizontalAlignment - { - get - { - string temp; - GetProperty( TextLabel.Property.HORIZONTAL_ALIGNMENT).Get( out temp ); - return temp; - } - set - { - SetProperty( TextLabel.Property.HORIZONTAL_ALIGNMENT, new NUI.Property.Value( value ) ); - } - } - public string VerticalAlignment - { - get - { - string temp; - GetProperty( TextLabel.Property.VERTICAL_ALIGNMENT).Get( out temp ); - return temp; - } - set - { - SetProperty( TextLabel.Property.VERTICAL_ALIGNMENT, new NUI.Property.Value( value ) ); - } - } - public Vector4 TextColor - { - get - { - Vector4 temp = new Vector4(0.0f,0.0f,0.0f,0.0f); - GetProperty( TextLabel.Property.TEXT_COLOR).Get( temp ); - return temp; - } - set - { - SetProperty( TextLabel.Property.TEXT_COLOR, new NUI.Property.Value( value ) ); - } - } - public Vector2 ShadowOffset - { - get - { - Vector2 temp = new Vector2(0.0f,0.0f); - GetProperty( TextLabel.Property.SHADOW_OFFSET).Get( temp ); - return temp; - } - set - { - SetProperty( TextLabel.Property.SHADOW_OFFSET, new NUI.Property.Value( value ) ); - } - } - public Vector4 ShadowColor - { - get - { - Vector4 temp = new Vector4(0.0f,0.0f,0.0f,0.0f); - GetProperty( TextLabel.Property.SHADOW_COLOR).Get( temp ); - return temp; - } - set - { - SetProperty( TextLabel.Property.SHADOW_COLOR, new NUI.Property.Value( value ) ); - } - } - public bool UnderlineEnabled - { - get - { - bool temp = false; - GetProperty( TextLabel.Property.UNDERLINE_ENABLED).Get( ref temp ); - return temp; - } - set - { - SetProperty( TextLabel.Property.UNDERLINE_ENABLED, new NUI.Property.Value( value ) ); - } - } - public Vector4 UnderlineColor - { - get - { - Vector4 temp = new Vector4(0.0f,0.0f,0.0f,0.0f); - GetProperty( TextLabel.Property.UNDERLINE_COLOR).Get( temp ); - return temp; - } - set - { - SetProperty( TextLabel.Property.UNDERLINE_COLOR, new NUI.Property.Value( value ) ); - } - } - public float UnderlineHeight - { - get - { - float temp = 0.0f; - GetProperty( TextLabel.Property.UNDERLINE_HEIGHT).Get( ref temp ); - return temp; - } - set - { - SetProperty( TextLabel.Property.UNDERLINE_HEIGHT, new NUI.Property.Value( value ) ); - } - } - public bool EnableMarkup - { - get - { - bool temp = false; - GetProperty( TextLabel.Property.ENABLE_MARKUP).Get( ref temp ); - return temp; - } - set - { - SetProperty( TextLabel.Property.ENABLE_MARKUP, new NUI.Property.Value( value ) ); - } - } - public bool EnableAutoScroll - { - get - { - bool temp = false; - GetProperty( TextLabel.Property.ENABLE_AUTO_SCROLL).Get( ref temp ); - return temp; - } - set - { - SetProperty( TextLabel.Property.ENABLE_AUTO_SCROLL, new NUI.Property.Value( value ) ); - } - } - public int AutoScrollSpeed - { - get - { - int temp = 0; - GetProperty( TextLabel.Property.AUTO_SCROLL_SPEED).Get( ref temp ); - return temp; - } - set - { - SetProperty( TextLabel.Property.AUTO_SCROLL_SPEED, new NUI.Property.Value( value ) ); - } - } - public int AutoScrollLoopCount - { - get - { - int temp = 0; - GetProperty( TextLabel.Property.AUTO_SCROLL_LOOP_COUNT).Get( ref temp ); - return temp; - } - set - { - SetProperty( TextLabel.Property.AUTO_SCROLL_LOOP_COUNT, new NUI.Property.Value( value ) ); - } - } - public float AutoScrollGap - { - get - { - float temp = 0.0f; - GetProperty( TextLabel.Property.AUTO_SCROLL_GAP).Get( ref temp ); - return temp; - } - set - { - SetProperty( TextLabel.Property.AUTO_SCROLL_GAP, new NUI.Property.Value( value ) ); - } - } - public float LineSpacing - { - get - { - float temp = 0.0f; - GetProperty( TextLabel.Property.LINE_SPACING).Get( ref temp ); - return temp; - } - set - { - SetProperty( TextLabel.Property.LINE_SPACING, new NUI.Property.Value( value ) ); - } - } - public NUI.Property.Map Underline - { - get - { - NUI.Property.Map temp = new NUI.Property.Map(); - GetProperty( TextLabel.Property.UNDERLINE).Get( temp ); - return temp; - } - set - { - SetProperty( TextLabel.Property.UNDERLINE, new NUI.Property.Value( value ) ); - } - } - public NUI.Property.Map Shadow - { - get - { - NUI.Property.Map temp = new NUI.Property.Map(); - GetProperty( TextLabel.Property.SHADOW).Get( temp ); - return temp; - } - set - { - SetProperty( TextLabel.Property.SHADOW, new NUI.Property.Value( value ) ); - } - } - public NUI.Property.Map Emboss - { - get - { - NUI.Property.Map temp = new NUI.Property.Map(); - GetProperty( TextLabel.Property.EMBOSS).Get( temp ); - return temp; - } - set - { - SetProperty( TextLabel.Property.EMBOSS, new NUI.Property.Value( value ) ); - } - } - public NUI.Property.Map Outline - { - get - { - NUI.Property.Map temp = new NUI.Property.Map(); - GetProperty( TextLabel.Property.OUTLINE).Get( temp ); - return temp; - } - set - { - SetProperty( TextLabel.Property.OUTLINE, new NUI.Property.Value( value ) ); - } - } - -} - -} +// Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved +// PROPRIETARY/CONFIDENTIAL +// This software is the confidential and proprietary +// information of SAMSUNG ELECTRONICS ("Confidential Information"). You shall +// not disclose such Confidential Information and shall use it only in +// accordance with the terms of the license agreement you entered into with +// SAMSUNG ELECTRONICS. SAMSUNG make no representations or warranties about the +// suitability of the software, either express or implied, including but not +// limited to the implied warranties of merchantability, fitness for a +// particular purpose, or non-infringement. SAMSUNG shall not be liable for any +// damages suffered by licensee as a result of using, modifying or distributing +// this software or its derivatives. + +// Copyright (c) 2017 Samsung Electronics Co., Ltd. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// + +// This File has been auto-generated by SWIG and then modified using DALi Ruby Scripts +// Some have been manually changed + + +namespace Tizen.NUI +{ + + public class TextLabel : View + { + private global::System.Runtime.InteropServices.HandleRef swigCPtr; + + internal TextLabel(global::System.IntPtr cPtr, bool cMemoryOwn) : base(NDalicPINVOKE.TextLabel_SWIGUpcast(cPtr), cMemoryOwn) + { + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); + } + + internal static global::System.Runtime.InteropServices.HandleRef getCPtr(TextLabel obj) + { + return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; + } + + ~TextLabel() + { + DisposeQueue.Instance.Add(this); + } + + public override void Dispose() + { + if (!Stage.IsInstalled()) + { + DisposeQueue.Instance.Add(this); + return; + } + + lock (this) + { + if (swigCPtr.Handle != global::System.IntPtr.Zero) + { + if (swigCMemOwn) + { + swigCMemOwn = false; + NDalicPINVOKE.delete_TextLabel(swigCPtr); + } + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); + } + global::System.GC.SuppressFinalize(this); + base.Dispose(); + } + } + + + internal class Property : global::System.IDisposable + { + private global::System.Runtime.InteropServices.HandleRef swigCPtr; + protected bool swigCMemOwn; + + internal Property(global::System.IntPtr cPtr, bool cMemoryOwn) + { + swigCMemOwn = cMemoryOwn; + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); + } + + internal static global::System.Runtime.InteropServices.HandleRef getCPtr(Property obj) + { + return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; + } + + ~Property() + { + Dispose(); + } + + public virtual void Dispose() + { + lock (this) + { + if (swigCPtr.Handle != global::System.IntPtr.Zero) + { + if (swigCMemOwn) + { + swigCMemOwn = false; + NDalicPINVOKE.delete_TextLabel_Property(swigCPtr); + } + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); + } + global::System.GC.SuppressFinalize(this); + } + } + + internal Property() : this(NDalicPINVOKE.new_TextLabel_Property(), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + internal static readonly int RENDERING_BACKEND = NDalicPINVOKE.TextLabel_Property_RENDERING_BACKEND_get(); + internal static readonly int TEXT = NDalicPINVOKE.TextLabel_Property_TEXT_get(); + internal static readonly int FONT_FAMILY = NDalicPINVOKE.TextLabel_Property_FONT_FAMILY_get(); + internal static readonly int FONT_STYLE = NDalicPINVOKE.TextLabel_Property_FONT_STYLE_get(); + internal static readonly int POINT_SIZE = NDalicPINVOKE.TextLabel_Property_POINT_SIZE_get(); + internal static readonly int MULTI_LINE = NDalicPINVOKE.TextLabel_Property_MULTI_LINE_get(); + internal static readonly int HORIZONTAL_ALIGNMENT = NDalicPINVOKE.TextLabel_Property_HORIZONTAL_ALIGNMENT_get(); + internal static readonly int VERTICAL_ALIGNMENT = NDalicPINVOKE.TextLabel_Property_VERTICAL_ALIGNMENT_get(); + internal static readonly int TEXT_COLOR = NDalicPINVOKE.TextLabel_Property_TEXT_COLOR_get(); + internal static readonly int SHADOW_OFFSET = NDalicPINVOKE.TextLabel_Property_SHADOW_OFFSET_get(); + internal static readonly int SHADOW_COLOR = NDalicPINVOKE.TextLabel_Property_SHADOW_COLOR_get(); + internal static readonly int UNDERLINE_ENABLED = NDalicPINVOKE.TextLabel_Property_UNDERLINE_ENABLED_get(); + internal static readonly int UNDERLINE_COLOR = NDalicPINVOKE.TextLabel_Property_UNDERLINE_COLOR_get(); + internal static readonly int UNDERLINE_HEIGHT = NDalicPINVOKE.TextLabel_Property_UNDERLINE_HEIGHT_get(); + internal static readonly int ENABLE_MARKUP = NDalicPINVOKE.TextLabel_Property_ENABLE_MARKUP_get(); + internal static readonly int ENABLE_AUTO_SCROLL = NDalicPINVOKE.TextLabel_Property_ENABLE_AUTO_SCROLL_get(); + internal static readonly int AUTO_SCROLL_SPEED = NDalicPINVOKE.TextLabel_Property_AUTO_SCROLL_SPEED_get(); + internal static readonly int AUTO_SCROLL_LOOP_COUNT = NDalicPINVOKE.TextLabel_Property_AUTO_SCROLL_LOOP_COUNT_get(); + internal static readonly int AUTO_SCROLL_GAP = NDalicPINVOKE.TextLabel_Property_AUTO_SCROLL_GAP_get(); + internal static readonly int LINE_SPACING = NDalicPINVOKE.TextLabel_Property_LINE_SPACING_get(); + internal static readonly int UNDERLINE = NDalicPINVOKE.TextLabel_Property_UNDERLINE_get(); + internal static readonly int SHADOW = NDalicPINVOKE.TextLabel_Property_SHADOW_get(); + internal static readonly int EMBOSS = NDalicPINVOKE.TextLabel_Property_EMBOSS_get(); + internal static readonly int OUTLINE = NDalicPINVOKE.TextLabel_Property_OUTLINE_get(); + + } + + public TextLabel() : this(NDalicPINVOKE.TextLabel_New__SWIG_0(), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + + } + public TextLabel(string text) : this(NDalicPINVOKE.TextLabel_New__SWIG_1(text), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + + } + internal TextLabel(TextLabel handle) : this(NDalicPINVOKE.new_TextLabel__SWIG_1(TextLabel.getCPtr(handle)), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + internal TextLabel Assign(TextLabel handle) + { + TextLabel ret = new TextLabel(NDalicPINVOKE.TextLabel_Assign(swigCPtr, TextLabel.getCPtr(handle)), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public new static TextLabel DownCast(BaseHandle handle) + { + TextLabel ret = new TextLabel(NDalicPINVOKE.TextLabel_DownCast(BaseHandle.getCPtr(handle)), true); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal enum PropertyRange + { + PROPERTY_START_INDEX = PropertyRanges.PROPERTY_REGISTRATION_START_INDEX, + PROPERTY_END_INDEX = View.PropertyRange.PROPERTY_START_INDEX + 1000 + } + + public int RenderingBackend + { + get + { + int temp = 0; + GetProperty(TextLabel.Property.RENDERING_BACKEND).Get(ref temp); + return temp; + } + set + { + SetProperty(TextLabel.Property.RENDERING_BACKEND, new Tizen.NUI.PropertyValue(value)); + } + } + public string Text + { + get + { + string temp; + GetProperty(TextLabel.Property.TEXT).Get(out temp); + return temp; + } + set + { + SetProperty(TextLabel.Property.TEXT, new Tizen.NUI.PropertyValue(value)); + } + } + public string FontFamily + { + get + { + string temp; + GetProperty(TextLabel.Property.FONT_FAMILY).Get(out temp); + return temp; + } + set + { + SetProperty(TextLabel.Property.FONT_FAMILY, new Tizen.NUI.PropertyValue(value)); + } + } + public PropertyMap FontStyle + { + get + { + PropertyMap temp = new PropertyMap(); + GetProperty(TextLabel.Property.FONT_STYLE).Get(temp); + return temp; + } + set + { + SetProperty(TextLabel.Property.FONT_STYLE, new Tizen.NUI.PropertyValue(value)); + } + } + public float PointSize + { + get + { + float temp = 0.0f; + GetProperty(TextLabel.Property.POINT_SIZE).Get(ref temp); + return temp; + } + set + { + SetProperty(TextLabel.Property.POINT_SIZE, new Tizen.NUI.PropertyValue(value)); + } + } + public bool MultiLine + { + get + { + bool temp = false; + GetProperty(TextLabel.Property.MULTI_LINE).Get(ref temp); + return temp; + } + set + { + SetProperty(TextLabel.Property.MULTI_LINE, new Tizen.NUI.PropertyValue(value)); + } + } + public string HorizontalAlignment + { + get + { + string temp; + GetProperty(TextLabel.Property.HORIZONTAL_ALIGNMENT).Get(out temp); + return temp; + } + set + { + SetProperty(TextLabel.Property.HORIZONTAL_ALIGNMENT, new Tizen.NUI.PropertyValue(value)); + } + } + public string VerticalAlignment + { + get + { + string temp; + GetProperty(TextLabel.Property.VERTICAL_ALIGNMENT).Get(out temp); + return temp; + } + set + { + SetProperty(TextLabel.Property.VERTICAL_ALIGNMENT, new Tizen.NUI.PropertyValue(value)); + } + } + public Color TextColor + { + get + { + Color temp = new Color(0.0f, 0.0f, 0.0f, 0.0f); + GetProperty(TextLabel.Property.TEXT_COLOR).Get(temp); + return temp; + } + set + { + SetProperty(TextLabel.Property.TEXT_COLOR, new Tizen.NUI.PropertyValue(value)); + } + } + public Vector2 ShadowOffset + { + get + { + Vector2 temp = new Vector2(0.0f, 0.0f); + GetProperty(TextLabel.Property.SHADOW_OFFSET).Get(temp); + return temp; + } + set + { + SetProperty(TextLabel.Property.SHADOW_OFFSET, new Tizen.NUI.PropertyValue(value)); + } + } + public Vector4 ShadowColor + { + get + { + Vector4 temp = new Vector4(0.0f, 0.0f, 0.0f, 0.0f); + GetProperty(TextLabel.Property.SHADOW_COLOR).Get(temp); + return temp; + } + set + { + SetProperty(TextLabel.Property.SHADOW_COLOR, new Tizen.NUI.PropertyValue(value)); + } + } + public bool UnderlineEnabled + { + get + { + bool temp = false; + GetProperty(TextLabel.Property.UNDERLINE_ENABLED).Get(ref temp); + return temp; + } + set + { + SetProperty(TextLabel.Property.UNDERLINE_ENABLED, new Tizen.NUI.PropertyValue(value)); + } + } + public Vector4 UnderlineColor + { + get + { + Vector4 temp = new Vector4(0.0f, 0.0f, 0.0f, 0.0f); + GetProperty(TextLabel.Property.UNDERLINE_COLOR).Get(temp); + return temp; + } + set + { + SetProperty(TextLabel.Property.UNDERLINE_COLOR, new Tizen.NUI.PropertyValue(value)); + } + } + public float UnderlineHeight + { + get + { + float temp = 0.0f; + GetProperty(TextLabel.Property.UNDERLINE_HEIGHT).Get(ref temp); + return temp; + } + set + { + SetProperty(TextLabel.Property.UNDERLINE_HEIGHT, new Tizen.NUI.PropertyValue(value)); + } + } + public bool EnableMarkup + { + get + { + bool temp = false; + GetProperty(TextLabel.Property.ENABLE_MARKUP).Get(ref temp); + return temp; + } + set + { + SetProperty(TextLabel.Property.ENABLE_MARKUP, new Tizen.NUI.PropertyValue(value)); + } + } + public bool EnableAutoScroll + { + get + { + bool temp = false; + GetProperty(TextLabel.Property.ENABLE_AUTO_SCROLL).Get(ref temp); + return temp; + } + set + { + SetProperty(TextLabel.Property.ENABLE_AUTO_SCROLL, new Tizen.NUI.PropertyValue(value)); + } + } + public int AutoScrollSpeed + { + get + { + int temp = 0; + GetProperty(TextLabel.Property.AUTO_SCROLL_SPEED).Get(ref temp); + return temp; + } + set + { + SetProperty(TextLabel.Property.AUTO_SCROLL_SPEED, new Tizen.NUI.PropertyValue(value)); + } + } + public int AutoScrollLoopCount + { + get + { + int temp = 0; + GetProperty(TextLabel.Property.AUTO_SCROLL_LOOP_COUNT).Get(ref temp); + return temp; + } + set + { + SetProperty(TextLabel.Property.AUTO_SCROLL_LOOP_COUNT, new Tizen.NUI.PropertyValue(value)); + } + } + public float AutoScrollGap + { + get + { + float temp = 0.0f; + GetProperty(TextLabel.Property.AUTO_SCROLL_GAP).Get(ref temp); + return temp; + } + set + { + SetProperty(TextLabel.Property.AUTO_SCROLL_GAP, new Tizen.NUI.PropertyValue(value)); + } + } + public float LineSpacing + { + get + { + float temp = 0.0f; + GetProperty(TextLabel.Property.LINE_SPACING).Get(ref temp); + return temp; + } + set + { + SetProperty(TextLabel.Property.LINE_SPACING, new Tizen.NUI.PropertyValue(value)); + } + } + public PropertyMap Underline + { + get + { + PropertyMap temp = new PropertyMap(); + GetProperty(TextLabel.Property.UNDERLINE).Get(temp); + return temp; + } + set + { + SetProperty(TextLabel.Property.UNDERLINE, new Tizen.NUI.PropertyValue(value)); + } + } + public PropertyMap Shadow + { + get + { + PropertyMap temp = new PropertyMap(); + GetProperty(TextLabel.Property.SHADOW).Get(temp); + return temp; + } + set + { + SetProperty(TextLabel.Property.SHADOW, new Tizen.NUI.PropertyValue(value)); + } + } + public PropertyMap Emboss + { + get + { + PropertyMap temp = new PropertyMap(); + GetProperty(TextLabel.Property.EMBOSS).Get(temp); + return temp; + } + set + { + SetProperty(TextLabel.Property.EMBOSS, new Tizen.NUI.PropertyValue(value)); + } + } + public PropertyMap Outline + { + get + { + PropertyMap temp = new PropertyMap(); + GetProperty(TextLabel.Property.OUTLINE).Get(temp); + return temp; + } + set + { + SetProperty(TextLabel.Property.OUTLINE, new Tizen.NUI.PropertyValue(value)); + } + } + + } + +} diff --git a/Tizen.NUI/src/public/Timer.cs b/Tizen.NUI/src/public/Timer.cs old mode 100644 new mode 100755 index 072df3c..9caf62e --- a/Tizen.NUI/src/public/Timer.cs +++ b/Tizen.NUI/src/public/Timer.cs @@ -1,119 +1,159 @@ -/** Copyright (c) 2017 Samsung Electronics Co., Ltd. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ -// This File has been auto-generated by SWIG and then modified using DALi Ruby Scripts -//------------------------------------------------------------------------------ -// -// -// This file was automatically generated by SWIG (http://www.swig.org). -// Version 3.0.9 -// -// Do not make changes to this file unless you know what you are doing--modify -// the SWIG interface file instead. -//------------------------------------------------------------------------------ - -namespace NUI { - -public class Timer : BaseHandle { - private global::System.Runtime.InteropServices.HandleRef swigCPtr; - - internal Timer(global::System.IntPtr cPtr, bool cMemoryOwn) : base(NDalicPINVOKE.Timer_SWIGUpcast(cPtr), cMemoryOwn) { - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); - } - - internal static global::System.Runtime.InteropServices.HandleRef getCPtr(Timer obj) { - return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; - } - - ~Timer() { - DisposeQueue.Instance.Add(this); - } - - public override void Dispose() { - if (!Stage.IsInstalled()) { - DisposeQueue.Instance.Add(this); - return; - } - - lock(this) { - if (swigCPtr.Handle != global::System.IntPtr.Zero) { - if (swigCMemOwn) { - swigCMemOwn = false; - NDalicPINVOKE.delete_Timer(swigCPtr); - } - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); - } - global::System.GC.SuppressFinalize(this); - base.Dispose(); - } - } - - - public Timer (uint milliSec) : this (NDalicPINVOKE.Timer_New(milliSec), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - - } - public Timer(Timer timer) : this(NDalicPINVOKE.new_Timer__SWIG_1(Timer.getCPtr(timer)), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public Timer Assign(Timer timer) { - Timer ret = new Timer(NDalicPINVOKE.Timer_Assign(swigCPtr, Timer.getCPtr(timer)), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public static Timer DownCast(BaseHandle handle) { - Timer ret = new Timer(NDalicPINVOKE.Timer_DownCast(BaseHandle.getCPtr(handle)), true); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public void Start() { - NDalicPINVOKE.Timer_Start(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public void Stop() { - NDalicPINVOKE.Timer_Stop(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public void SetInterval(uint milliSec) { - NDalicPINVOKE.Timer_SetInterval(swigCPtr, milliSec); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public uint GetInterval() { - uint ret = NDalicPINVOKE.Timer_GetInterval(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public bool IsRunning() { - bool ret = NDalicPINVOKE.Timer_IsRunning(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public BoolSignal TickSignal() { - BoolSignal ret = new BoolSignal(NDalicPINVOKE.Timer_TickSignal(swigCPtr), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - -} - -} +/** Copyright (c) 2017 Samsung Electronics Co., Ltd. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +* +*/ +// This File has been auto-generated by SWIG and then modified using DALi Ruby Scripts +//------------------------------------------------------------------------------ +// +// +// This file was automatically generated by SWIG (http://www.swig.org). +// Version 3.0.9 +// +// Do not make changes to this file unless you know what you are doing--modify +// the SWIG interface file instead. +//------------------------------------------------------------------------------ + +namespace Tizen.NUI +{ + + public class Timer : BaseHandle + { + private global::System.Runtime.InteropServices.HandleRef swigCPtr; + + internal Timer(global::System.IntPtr cPtr, bool cMemoryOwn) : base(NDalicPINVOKE.Timer_SWIGUpcast(cPtr), cMemoryOwn) + { + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); + } + + internal static global::System.Runtime.InteropServices.HandleRef getCPtr(Timer obj) + { + return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; + } + + ~Timer() + { + DisposeQueue.Instance.Add(this); + } + + public override void Dispose() + { + if (!Stage.IsInstalled()) + { + DisposeQueue.Instance.Add(this); + return; + } + + lock (this) + { + if (swigCPtr.Handle != global::System.IntPtr.Zero) + { + if (swigCMemOwn) + { + swigCMemOwn = false; + NDalicPINVOKE.delete_Timer(swigCPtr); + } + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); + } + global::System.GC.SuppressFinalize(this); + base.Dispose(); + } + } + + + public Timer(uint milliSec) : this(NDalicPINVOKE.Timer_New(milliSec), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + + } + internal Timer(Timer timer) : this(NDalicPINVOKE.new_Timer__SWIG_1(Timer.getCPtr(timer)), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + internal Timer Assign(Timer timer) + { + Timer ret = new Timer(NDalicPINVOKE.Timer_Assign(swigCPtr, Timer.getCPtr(timer)), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public static Timer DownCast(BaseHandle handle) + { + Timer ret = new Timer(NDalicPINVOKE.Timer_DownCast(BaseHandle.getCPtr(handle)), true); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public void Start() + { + NDalicPINVOKE.Timer_Start(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public void Stop() + { + NDalicPINVOKE.Timer_Stop(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public uint Interval + { + set + { + SetInterval(value); + } + get + { + return GetInterval(); + } + } + + internal void SetInterval(uint milliSec) + { + NDalicPINVOKE.Timer_SetInterval(swigCPtr, milliSec); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + internal uint GetInterval() + { + uint ret = NDalicPINVOKE.Timer_GetInterval(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public bool Running + { + get + { + return IsRunning(); + } + } + + internal bool IsRunning() + { + bool ret = NDalicPINVOKE.Timer_IsRunning(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal BoolSignal TickSignal() + { + BoolSignal ret = new BoolSignal(NDalicPINVOKE.Timer_TickSignal(swigCPtr), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + } + +} diff --git a/Tizen.NUI/src/public/Touch.cs b/Tizen.NUI/src/public/Touch.cs new file mode 100755 index 0000000..59ea8c0 --- /dev/null +++ b/Tizen.NUI/src/public/Touch.cs @@ -0,0 +1,173 @@ +//------------------------------------------------------------------------------ +// +// +// This file was automatically generated by SWIG (http://www.swig.org). +// Version 3.0.9 +// +// Do not make changes to this file unless you know what you are doing--modify +// the SWIG interface file instead. +//------------------------------------------------------------------------------ + +namespace Tizen.NUI +{ + + public class Touch : BaseHandle + { + private global::System.Runtime.InteropServices.HandleRef swigCPtr; + + internal Touch(global::System.IntPtr cPtr, bool cMemoryOwn) : base(NDalicPINVOKE.Touch_SWIGUpcast(cPtr), cMemoryOwn) + { + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); + } + + internal static global::System.Runtime.InteropServices.HandleRef getCPtr(Touch obj) + { + return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; + } + + ~Touch() + { + DisposeQueue.Instance.Add(this); + } + + public override void Dispose() + { + if (!Stage.IsInstalled()) + { + DisposeQueue.Instance.Add(this); + return; + } + + lock (this) + { + if (swigCPtr.Handle != global::System.IntPtr.Zero) + { + if (swigCMemOwn) + { + swigCMemOwn = false; + NDalicPINVOKE.delete_Touch(swigCPtr); + } + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); + } + global::System.GC.SuppressFinalize(this); + base.Dispose(); + } + } + + + internal static Touch GetTouchFromPtr(global::System.IntPtr cPtr) + { + Touch ret = new Touch(cPtr, false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public Touch() : this(NDalicPINVOKE.new_Touch__SWIG_0(), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + internal Touch(Touch other) : this(NDalicPINVOKE.new_Touch__SWIG_1(Touch.getCPtr(other)), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + internal Touch Assign(Touch other) + { + Touch ret = new Touch(NDalicPINVOKE.Touch_Assign(swigCPtr, Touch.getCPtr(other)), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public uint GetTime() + { + uint ret = NDalicPINVOKE.Touch_GetTime(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public uint GetPointCount() + { + uint ret = NDalicPINVOKE.Touch_GetPointCount(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public int GetDeviceId(uint point) + { + int ret = NDalicPINVOKE.Touch_GetDeviceId(swigCPtr, point); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public PointStateType GetState(uint point) + { + PointStateType ret = (PointStateType)NDalicPINVOKE.Touch_GetState(swigCPtr, point); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public Actor GetHitActor(uint point) + { + Actor ret = new Actor(NDalicPINVOKE.Touch_GetHitActor(swigCPtr, point), true); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public Vector2 GetLocalPosition(uint point) + { + Vector2 ret = new Vector2(NDalicPINVOKE.Touch_GetLocalPosition(swigCPtr, point), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public Vector2 GetScreenPosition(uint point) + { + Vector2 ret = new Vector2(NDalicPINVOKE.Touch_GetScreenPosition(swigCPtr, point), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public float GetRadius(uint point) + { + float ret = NDalicPINVOKE.Touch_GetRadius(swigCPtr, point); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public Vector2 GetEllipseRadius(uint point) + { + Vector2 ret = new Vector2(NDalicPINVOKE.Touch_GetEllipseRadius(swigCPtr, point), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public float GetPressure(uint point) + { + float ret = NDalicPINVOKE.Touch_GetPressure(swigCPtr, point); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal Degree GetAngle(uint point) + { + Degree ret = new Degree(NDalicPINVOKE.Touch_GetAngle(swigCPtr, point), true); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + } + + public enum PointStateType + { + Started, + Finished, + Down = Started, + Up = Finished, + Motion, + Leave, + Stationary, + Interrupted + } + +} diff --git a/Tizen.NUI/src/public/TouchData.cs b/Tizen.NUI/src/public/TouchData.cs deleted file mode 100644 index c737fbe..0000000 --- a/Tizen.NUI/src/public/TouchData.cs +++ /dev/null @@ -1,136 +0,0 @@ -//------------------------------------------------------------------------------ -// -// -// This file was automatically generated by SWIG (http://www.swig.org). -// Version 3.0.9 -// -// Do not make changes to this file unless you know what you are doing--modify -// the SWIG interface file instead. -//------------------------------------------------------------------------------ - -namespace NUI { - -public class TouchData : BaseHandle { - private global::System.Runtime.InteropServices.HandleRef swigCPtr; - - internal TouchData(global::System.IntPtr cPtr, bool cMemoryOwn) : base(NDalicPINVOKE.TouchData_SWIGUpcast(cPtr), cMemoryOwn) { - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); - } - - internal static global::System.Runtime.InteropServices.HandleRef getCPtr(TouchData obj) { - return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; - } - - ~TouchData() { - DisposeQueue.Instance.Add(this); - } - - public override void Dispose() { - if (!Stage.IsInstalled()) { - DisposeQueue.Instance.Add(this); - return; - } - - lock(this) { - if (swigCPtr.Handle != global::System.IntPtr.Zero) { - if (swigCMemOwn) { - swigCMemOwn = false; - NDalicPINVOKE.delete_TouchData(swigCPtr); - } - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); - } - global::System.GC.SuppressFinalize(this); - base.Dispose(); - } - } - - - public static TouchData GetTouchDataFromPtr(global::System.IntPtr cPtr) { - TouchData ret = new TouchData(cPtr, false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public TouchData() : this(NDalicPINVOKE.new_TouchData__SWIG_0(), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public TouchData(TouchData other) : this(NDalicPINVOKE.new_TouchData__SWIG_1(TouchData.getCPtr(other)), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public TouchData Assign(TouchData other) { - TouchData ret = new TouchData(NDalicPINVOKE.TouchData_Assign(swigCPtr, TouchData.getCPtr(other)), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public uint GetTime() { - uint ret = NDalicPINVOKE.TouchData_GetTime(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public uint GetPointCount() { - uint ret = NDalicPINVOKE.TouchData_GetPointCount(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public int GetDeviceId(uint point) { - int ret = NDalicPINVOKE.TouchData_GetDeviceId(swigCPtr, point); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public PointStateType GetState(uint point) { - PointStateType ret = (PointStateType)NDalicPINVOKE.TouchData_GetState(swigCPtr, point); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public Actor GetHitActor(uint point) { - Actor ret = new Actor(NDalicPINVOKE.TouchData_GetHitActor(swigCPtr, point), true); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public Vector2 GetLocalPosition(uint point) { - Vector2 ret = new Vector2(NDalicPINVOKE.TouchData_GetLocalPosition(swigCPtr, point), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public Vector2 GetScreenPosition(uint point) { - Vector2 ret = new Vector2(NDalicPINVOKE.TouchData_GetScreenPosition(swigCPtr, point), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public float GetRadius(uint point) { - float ret = NDalicPINVOKE.TouchData_GetRadius(swigCPtr, point); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public Vector2 GetEllipseRadius(uint point) { - Vector2 ret = new Vector2(NDalicPINVOKE.TouchData_GetEllipseRadius(swigCPtr, point), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public float GetPressure(uint point) { - float ret = NDalicPINVOKE.TouchData_GetPressure(swigCPtr, point); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public Degree GetAngle(uint point) { - Degree ret = new Degree(NDalicPINVOKE.TouchData_GetAngle(swigCPtr, point), true); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - -} - -} diff --git a/Tizen.NUI/src/public/Vector2.cs b/Tizen.NUI/src/public/Vector2.cs old mode 100644 new mode 100755 index 3f90c0d..891f4ae --- a/Tizen.NUI/src/public/Vector2.cs +++ b/Tizen.NUI/src/public/Vector2.cs @@ -1,359 +1,452 @@ -//------------------------------------------------------------------------------ -// -// -// This file was automatically generated by SWIG (http://www.swig.org). -// Version 3.0.9 -// -// Do not make changes to this file unless you know what you are doing--modify -// the SWIG interface file instead. -//------------------------------------------------------------------------------ - -namespace NUI { - -public class Vector2 : global::System.IDisposable { - private global::System.Runtime.InteropServices.HandleRef swigCPtr; - protected bool swigCMemOwn; - - internal Vector2(global::System.IntPtr cPtr, bool cMemoryOwn) { - swigCMemOwn = cMemoryOwn; - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); - } - - internal static global::System.Runtime.InteropServices.HandleRef getCPtr(Vector2 obj) { - return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; - } - - ~Vector2() { - DisposeQueue.Instance.Add(this); - } - - public virtual void Dispose() { - if (!Stage.IsInstalled()) { - DisposeQueue.Instance.Add(this); - return; - } - - lock(this) { - if (swigCPtr.Handle != global::System.IntPtr.Zero) { - if (swigCMemOwn) { - swigCMemOwn = false; - NDalicPINVOKE.delete_Vector2(swigCPtr); - } - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); - } - global::System.GC.SuppressFinalize(this); - } - } - - - public static Vector2 operator+(Vector2 arg1, Vector2 arg2) { - return arg1.Add(arg2); - } - - public static Vector2 operator-(Vector2 arg1, Vector2 arg2) { - return arg1.Subtract(arg2); - } - - public static Vector2 operator-(Vector2 arg1) { - return arg1.Subtract(); - } - - public static Vector2 operator*(Vector2 arg1, Vector2 arg2) { - return arg1.Multiply(arg2); - } - - public static Vector2 operator*(Vector2 arg1, float arg2) { - return arg1.Multiply(arg2); - } - - public static Vector2 operator/(Vector2 arg1, Vector2 arg2) { - return arg1.Divide(arg2); - } - - public static Vector2 operator/(Vector2 arg1, float arg2) { - return arg1.Divide(arg2); - } - - public float this[uint index] - { - get - { - return ValueOfIndex(index); - } - } - - public static Vector2 GetVector2FromPtr(global::System.IntPtr cPtr) { - Vector2 ret = new Vector2(cPtr, false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - - public Vector2() : this(NDalicPINVOKE.new_Vector2__SWIG_0(), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public Vector2(float x, float y) : this(NDalicPINVOKE.new_Vector2__SWIG_1(x, y), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public Vector2(float[] array) : this(NDalicPINVOKE.new_Vector2__SWIG_2(array), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public Vector2(Vector3 vec3) : this(NDalicPINVOKE.new_Vector2__SWIG_3(Vector3.getCPtr(vec3)), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public Vector2(Vector4 vec4) : this(NDalicPINVOKE.new_Vector2__SWIG_4(Vector4.getCPtr(vec4)), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public static Vector2 ONE { - get { - global::System.IntPtr cPtr = NDalicPINVOKE.Vector2_ONE_get(); - Vector2 ret = (cPtr == global::System.IntPtr.Zero) ? null : new Vector2(cPtr, false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - } - - public static Vector2 XAXIS { - get { - global::System.IntPtr cPtr = NDalicPINVOKE.Vector2_XAXIS_get(); - Vector2 ret = (cPtr == global::System.IntPtr.Zero) ? null : new Vector2(cPtr, false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - } - - public static Vector2 YAXIS { - get { - global::System.IntPtr cPtr = NDalicPINVOKE.Vector2_YAXIS_get(); - Vector2 ret = (cPtr == global::System.IntPtr.Zero) ? null : new Vector2(cPtr, false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - } - - public static Vector2 NEGATIVE_XAXIS { - get { - global::System.IntPtr cPtr = NDalicPINVOKE.Vector2_NEGATIVE_XAXIS_get(); - Vector2 ret = (cPtr == global::System.IntPtr.Zero) ? null : new Vector2(cPtr, false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - } - - public static Vector2 NEGATIVE_YAXIS { - get { - global::System.IntPtr cPtr = NDalicPINVOKE.Vector2_NEGATIVE_YAXIS_get(); - Vector2 ret = (cPtr == global::System.IntPtr.Zero) ? null : new Vector2(cPtr, false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - } - - public static Vector2 ZERO { - get { - global::System.IntPtr cPtr = NDalicPINVOKE.Vector2_ZERO_get(); - Vector2 ret = (cPtr == global::System.IntPtr.Zero) ? null : new Vector2(cPtr, false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - } - - public Vector2 Assign(float[] array) { - Vector2 ret = new Vector2(NDalicPINVOKE.Vector2_Assign__SWIG_0(swigCPtr, array), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public Vector2 Assign(Vector3 rhs) { - Vector2 ret = new Vector2(NDalicPINVOKE.Vector2_Assign__SWIG_1(swigCPtr, Vector3.getCPtr(rhs)), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public Vector2 Assign(Vector4 rhs) { - Vector2 ret = new Vector2(NDalicPINVOKE.Vector2_Assign__SWIG_2(swigCPtr, Vector4.getCPtr(rhs)), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public Vector2 Add(Vector2 rhs) { - Vector2 ret = new Vector2(NDalicPINVOKE.Vector2_Add(swigCPtr, Vector2.getCPtr(rhs)), true); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public Vector2 AddAssign(Vector2 rhs) { - Vector2 ret = new Vector2(NDalicPINVOKE.Vector2_AddAssign(swigCPtr, Vector2.getCPtr(rhs)), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public Vector2 Subtract(Vector2 rhs) { - Vector2 ret = new Vector2(NDalicPINVOKE.Vector2_Subtract__SWIG_0(swigCPtr, Vector2.getCPtr(rhs)), true); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public Vector2 SubtractAssign(Vector2 rhs) { - Vector2 ret = new Vector2(NDalicPINVOKE.Vector2_SubtractAssign(swigCPtr, Vector2.getCPtr(rhs)), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public Vector2 Multiply(Vector2 rhs) { - Vector2 ret = new Vector2(NDalicPINVOKE.Vector2_Multiply__SWIG_0(swigCPtr, Vector2.getCPtr(rhs)), true); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public Vector2 Multiply(float rhs) { - Vector2 ret = new Vector2(NDalicPINVOKE.Vector2_Multiply__SWIG_1(swigCPtr, rhs), true); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public Vector2 MultiplyAssign(Vector2 rhs) { - Vector2 ret = new Vector2(NDalicPINVOKE.Vector2_MultiplyAssign__SWIG_0(swigCPtr, Vector2.getCPtr(rhs)), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public Vector2 MultiplyAssign(float rhs) { - Vector2 ret = new Vector2(NDalicPINVOKE.Vector2_MultiplyAssign__SWIG_1(swigCPtr, rhs), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public Vector2 Divide(Vector2 rhs) { - Vector2 ret = new Vector2(NDalicPINVOKE.Vector2_Divide__SWIG_0(swigCPtr, Vector2.getCPtr(rhs)), true); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public Vector2 Divide(float rhs) { - Vector2 ret = new Vector2(NDalicPINVOKE.Vector2_Divide__SWIG_1(swigCPtr, rhs), true); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public Vector2 DivideAssign(Vector2 rhs) { - Vector2 ret = new Vector2(NDalicPINVOKE.Vector2_DivideAssign__SWIG_0(swigCPtr, Vector2.getCPtr(rhs)), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public Vector2 DivideAssign(float rhs) { - Vector2 ret = new Vector2(NDalicPINVOKE.Vector2_DivideAssign__SWIG_1(swigCPtr, rhs), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public Vector2 Subtract() { - Vector2 ret = new Vector2(NDalicPINVOKE.Vector2_Subtract__SWIG_1(swigCPtr), true); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public bool EqualTo(Vector2 rhs) { - bool ret = NDalicPINVOKE.Vector2_EqualTo(swigCPtr, Vector2.getCPtr(rhs)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public bool NotEqualTo(Vector2 rhs) { - bool ret = NDalicPINVOKE.Vector2_NotEqualTo(swigCPtr, Vector2.getCPtr(rhs)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public float ValueOfIndex(uint index) { - float ret = NDalicPINVOKE.Vector2_ValueOfIndex__SWIG_0(swigCPtr, index); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public float Length() { - float ret = NDalicPINVOKE.Vector2_Length(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public float LengthSquared() { - float ret = NDalicPINVOKE.Vector2_LengthSquared(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public void Normalize() { - NDalicPINVOKE.Vector2_Normalize(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public void Clamp(Vector2 min, Vector2 max) { - NDalicPINVOKE.Vector2_Clamp(swigCPtr, Vector2.getCPtr(min), Vector2.getCPtr(max)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public SWIGTYPE_p_float AsFloat() { - global::System.IntPtr cPtr = NDalicPINVOKE.Vector2_AsFloat__SWIG_0(swigCPtr); - SWIGTYPE_p_float ret = (cPtr == global::System.IntPtr.Zero) ? null : new SWIGTYPE_p_float(cPtr, false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public float X { - set { - NDalicPINVOKE.Vector2_X_set(swigCPtr, value); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - get { - float ret = NDalicPINVOKE.Vector2_X_get(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - } - - public float Width { - set { - NDalicPINVOKE.Vector2_Width_set(swigCPtr, value); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - get { - float ret = NDalicPINVOKE.Vector2_Width_get(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - } - - public float Y { - set { - NDalicPINVOKE.Vector2_Y_set(swigCPtr, value); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - get { - float ret = NDalicPINVOKE.Vector2_Y_get(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - } - - public float Height { - set { - NDalicPINVOKE.Vector2_Height_set(swigCPtr, value); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - get { - float ret = NDalicPINVOKE.Vector2_Height_get(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - } - -} - -} +// Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved +// PROPRIETARY/CONFIDENTIAL +// This software is the confidential and proprietary +// information of SAMSUNG ELECTRONICS ("Confidential Information"). You shall +// not disclose such Confidential Information and shall use it only in +// accordance with the terms of the license agreement you entered into with +// SAMSUNG ELECTRONICS. SAMSUNG make no representations or warranties about the +// suitability of the software, either express or implied, including but not +// limited to the implied warranties of merchantability, fitness for a +// particular purpose, or non-infringement. SAMSUNG shall not be liable for any +// damages suffered by licensee as a result of using, modifying or distributing +// this software or its derivatives. + +// Copyright (c) 2017 Samsung Electronics Co., Ltd. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// + +// This File has been auto-generated by SWIG and then modified using DALi Ruby Scripts +// Some have been manually changed + + +namespace Tizen.NUI +{ + + public class Vector2 : global::System.IDisposable + { + private global::System.Runtime.InteropServices.HandleRef swigCPtr; + protected bool swigCMemOwn; + + internal Vector2(global::System.IntPtr cPtr, bool cMemoryOwn) + { + swigCMemOwn = cMemoryOwn; + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); + } + + internal static global::System.Runtime.InteropServices.HandleRef getCPtr(Vector2 obj) + { + return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; + } + + ~Vector2() + { + DisposeQueue.Instance.Add(this); + } + + public virtual void Dispose() + { + if (!Stage.IsInstalled()) + { + DisposeQueue.Instance.Add(this); + return; + } + + lock (this) + { + if (swigCPtr.Handle != global::System.IntPtr.Zero) + { + if (swigCMemOwn) + { + swigCMemOwn = false; + NDalicPINVOKE.delete_Vector2(swigCPtr); + } + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); + } + global::System.GC.SuppressFinalize(this); + } + } + + + public static Vector2 operator +(Vector2 arg1, Vector2 arg2) + { + return arg1.Add(arg2); + } + + public static Vector2 operator -(Vector2 arg1, Vector2 arg2) + { + return arg1.Subtract(arg2); + } + + public static Vector2 operator -(Vector2 arg1) + { + return arg1.Subtract(); + } + + public static Vector2 operator *(Vector2 arg1, Vector2 arg2) + { + return arg1.Multiply(arg2); + } + + public static Vector2 operator *(Vector2 arg1, float arg2) + { + return arg1.Multiply(arg2); + } + + public static Vector2 operator /(Vector2 arg1, Vector2 arg2) + { + return arg1.Divide(arg2); + } + + public static Vector2 operator /(Vector2 arg1, float arg2) + { + return arg1.Divide(arg2); + } + + public float this[uint index] + { + get + { + return ValueOfIndex(index); + } + } + + internal static Vector2 GetVector2FromPtr(global::System.IntPtr cPtr) + { + Vector2 ret = new Vector2(cPtr, false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + + public Vector2() : this(NDalicPINVOKE.new_Vector2__SWIG_0(), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public Vector2(float x, float y) : this(NDalicPINVOKE.new_Vector2__SWIG_1(x, y), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public Vector2(float[] array) : this(NDalicPINVOKE.new_Vector2__SWIG_2(array), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public Vector2(Vector3 vec3) : this(NDalicPINVOKE.new_Vector2__SWIG_3(Vector3.getCPtr(vec3)), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public Vector2(Vector4 vec4) : this(NDalicPINVOKE.new_Vector2__SWIG_4(Vector4.getCPtr(vec4)), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public static Vector2 One + { + get + { + global::System.IntPtr cPtr = NDalicPINVOKE.Vector2_ONE_get(); + Vector2 ret = (cPtr == global::System.IntPtr.Zero) ? null : new Vector2(cPtr, false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + } + + public static Vector2 XAxis + { + get + { + global::System.IntPtr cPtr = NDalicPINVOKE.Vector2_XAXIS_get(); + Vector2 ret = (cPtr == global::System.IntPtr.Zero) ? null : new Vector2(cPtr, false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + } + + public static Vector2 YAxis + { + get + { + global::System.IntPtr cPtr = NDalicPINVOKE.Vector2_YAXIS_get(); + Vector2 ret = (cPtr == global::System.IntPtr.Zero) ? null : new Vector2(cPtr, false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + } + + public static Vector2 NegativeXAxis + { + get + { + global::System.IntPtr cPtr = NDalicPINVOKE.Vector2_NEGATIVE_XAXIS_get(); + Vector2 ret = (cPtr == global::System.IntPtr.Zero) ? null : new Vector2(cPtr, false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + } + + public static Vector2 NegativeYAxis + { + get + { + global::System.IntPtr cPtr = NDalicPINVOKE.Vector2_NEGATIVE_YAXIS_get(); + Vector2 ret = (cPtr == global::System.IntPtr.Zero) ? null : new Vector2(cPtr, false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + } + + public static Vector2 Zero + { + get + { + global::System.IntPtr cPtr = NDalicPINVOKE.Vector2_ZERO_get(); + Vector2 ret = (cPtr == global::System.IntPtr.Zero) ? null : new Vector2(cPtr, false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + } + + internal Vector2 Assign(float[] array) + { + Vector2 ret = new Vector2(NDalicPINVOKE.Vector2_Assign__SWIG_0(swigCPtr, array), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal Vector2 Assign(Vector3 rhs) + { + Vector2 ret = new Vector2(NDalicPINVOKE.Vector2_Assign__SWIG_1(swigCPtr, Vector3.getCPtr(rhs)), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal Vector2 Assign(Vector4 rhs) + { + Vector2 ret = new Vector2(NDalicPINVOKE.Vector2_Assign__SWIG_2(swigCPtr, Vector4.getCPtr(rhs)), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal Vector2 Add(Vector2 rhs) + { + Vector2 ret = new Vector2(NDalicPINVOKE.Vector2_Add(swigCPtr, Vector2.getCPtr(rhs)), true); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal Vector2 AddAssign(Vector2 rhs) + { + Vector2 ret = new Vector2(NDalicPINVOKE.Vector2_AddAssign(swigCPtr, Vector2.getCPtr(rhs)), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal Vector2 Subtract(Vector2 rhs) + { + Vector2 ret = new Vector2(NDalicPINVOKE.Vector2_Subtract__SWIG_0(swigCPtr, Vector2.getCPtr(rhs)), true); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal Vector2 SubtractAssign(Vector2 rhs) + { + Vector2 ret = new Vector2(NDalicPINVOKE.Vector2_SubtractAssign(swigCPtr, Vector2.getCPtr(rhs)), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal Vector2 Multiply(Vector2 rhs) + { + Vector2 ret = new Vector2(NDalicPINVOKE.Vector2_Multiply__SWIG_0(swigCPtr, Vector2.getCPtr(rhs)), true); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal Vector2 Multiply(float rhs) + { + Vector2 ret = new Vector2(NDalicPINVOKE.Vector2_Multiply__SWIG_1(swigCPtr, rhs), true); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal Vector2 MultiplyAssign(Vector2 rhs) + { + Vector2 ret = new Vector2(NDalicPINVOKE.Vector2_MultiplyAssign__SWIG_0(swigCPtr, Vector2.getCPtr(rhs)), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal Vector2 MultiplyAssign(float rhs) + { + Vector2 ret = new Vector2(NDalicPINVOKE.Vector2_MultiplyAssign__SWIG_1(swigCPtr, rhs), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal Vector2 Divide(Vector2 rhs) + { + Vector2 ret = new Vector2(NDalicPINVOKE.Vector2_Divide__SWIG_0(swigCPtr, Vector2.getCPtr(rhs)), true); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal Vector2 Divide(float rhs) + { + Vector2 ret = new Vector2(NDalicPINVOKE.Vector2_Divide__SWIG_1(swigCPtr, rhs), true); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal Vector2 DivideAssign(Vector2 rhs) + { + Vector2 ret = new Vector2(NDalicPINVOKE.Vector2_DivideAssign__SWIG_0(swigCPtr, Vector2.getCPtr(rhs)), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal Vector2 DivideAssign(float rhs) + { + Vector2 ret = new Vector2(NDalicPINVOKE.Vector2_DivideAssign__SWIG_1(swigCPtr, rhs), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal Vector2 Subtract() + { + Vector2 ret = new Vector2(NDalicPINVOKE.Vector2_Subtract__SWIG_1(swigCPtr), true); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal bool EqualTo(Vector2 rhs) + { + bool ret = NDalicPINVOKE.Vector2_EqualTo(swigCPtr, Vector2.getCPtr(rhs)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal bool NotEqualTo(Vector2 rhs) + { + bool ret = NDalicPINVOKE.Vector2_NotEqualTo(swigCPtr, Vector2.getCPtr(rhs)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal float ValueOfIndex(uint index) + { + float ret = NDalicPINVOKE.Vector2_ValueOfIndex__SWIG_0(swigCPtr, index); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public float Length() + { + float ret = NDalicPINVOKE.Vector2_Length(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public float LengthSquared() + { + float ret = NDalicPINVOKE.Vector2_LengthSquared(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public void Normalize() + { + NDalicPINVOKE.Vector2_Normalize(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public void Clamp(Vector2 min, Vector2 max) + { + NDalicPINVOKE.Vector2_Clamp(swigCPtr, Vector2.getCPtr(min), Vector2.getCPtr(max)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + internal SWIGTYPE_p_float AsFloat() + { + global::System.IntPtr cPtr = NDalicPINVOKE.Vector2_AsFloat__SWIG_0(swigCPtr); + SWIGTYPE_p_float ret = (cPtr == global::System.IntPtr.Zero) ? null : new SWIGTYPE_p_float(cPtr, false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public float X + { + set + { + NDalicPINVOKE.Vector2_X_set(swigCPtr, value); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + get + { + float ret = NDalicPINVOKE.Vector2_X_get(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + } + + public float Width + { + set + { + NDalicPINVOKE.Vector2_Width_set(swigCPtr, value); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + get + { + float ret = NDalicPINVOKE.Vector2_Width_get(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + } + + public float Y + { + set + { + NDalicPINVOKE.Vector2_Y_set(swigCPtr, value); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + get + { + float ret = NDalicPINVOKE.Vector2_Y_get(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + } + + public float Height + { + set + { + NDalicPINVOKE.Vector2_Height_set(swigCPtr, value); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + get + { + float ret = NDalicPINVOKE.Vector2_Height_get(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + } + + } + +} diff --git a/Tizen.NUI/src/public/Vector3.cs b/Tizen.NUI/src/public/Vector3.cs old mode 100644 new mode 100755 index 0433894..ec03a6a --- a/Tizen.NUI/src/public/Vector3.cs +++ b/Tizen.NUI/src/public/Vector3.cs @@ -1,467 +1,584 @@ -//------------------------------------------------------------------------------ -// +// Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved +// PROPRIETARY/CONFIDENTIAL +// This software is the confidential and proprietary +// information of SAMSUNG ELECTRONICS ("Confidential Information"). You shall +// not disclose such Confidential Information and shall use it only in +// accordance with the terms of the license agreement you entered into with +// SAMSUNG ELECTRONICS. SAMSUNG make no representations or warranties about the +// suitability of the software, either express or implied, including but not +// limited to the implied warranties of merchantability, fitness for a +// particular purpose, or non-infringement. SAMSUNG shall not be liable for any +// damages suffered by licensee as a result of using, modifying or distributing +// this software or its derivatives. + +// Copyright (c) 2017 Samsung Electronics Co., Ltd. // -// This file was automatically generated by SWIG (http://www.swig.org). -// Version 3.0.9 +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. // -// Do not make changes to this file unless you know what you are doing--modify -// the SWIG interface file instead. -//------------------------------------------------------------------------------ - -namespace NUI { - -public class Vector3 : global::System.IDisposable { - private global::System.Runtime.InteropServices.HandleRef swigCPtr; - protected bool swigCMemOwn; - - internal Vector3(global::System.IntPtr cPtr, bool cMemoryOwn) { - swigCMemOwn = cMemoryOwn; - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); - } - - internal static global::System.Runtime.InteropServices.HandleRef getCPtr(Vector3 obj) { - return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; - } - - ~Vector3() { - DisposeQueue.Instance.Add(this); - } - - public virtual void Dispose() { - if (!Stage.IsInstalled()) { - DisposeQueue.Instance.Add(this); - return; - } - - lock(this) { - if (swigCPtr.Handle != global::System.IntPtr.Zero) { - if (swigCMemOwn) { - swigCMemOwn = false; - NDalicPINVOKE.delete_Vector3(swigCPtr); - } - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); - } - global::System.GC.SuppressFinalize(this); - } - } - - - public static Vector3 operator+(Vector3 arg1, Vector3 arg2) { - return arg1.Add(arg2); - } - - public static Vector3 operator-(Vector3 arg1, Vector3 arg2) { - return arg1.Subtract(arg2); - } - - public static Vector3 operator-(Vector3 arg1) { - return arg1.Subtract(); - } - - public static Vector3 operator*(Vector3 arg1, Vector3 arg2) { - return arg1.Multiply(arg2); - } - - public static Vector3 operator*(Vector3 arg1, float arg2) { - return arg1.Multiply(arg2); - } - - public static Vector3 operator/(Vector3 arg1, Vector3 arg2) { - return arg1.Divide(arg2); - } - - public static Vector3 operator/(Vector3 arg1, float arg2) { - return arg1.Divide(arg2); - } - public float this[uint index] - { - get - { - return ValueOfIndex(index); +// This File has been auto-generated by SWIG and then modified using DALi Ruby Scripts +// Some have been manually changed + + +namespace Tizen.NUI +{ + + public class Vector3 : global::System.IDisposable + { + private global::System.Runtime.InteropServices.HandleRef swigCPtr; + protected bool swigCMemOwn; + + internal Vector3(global::System.IntPtr cPtr, bool cMemoryOwn) + { + swigCMemOwn = cMemoryOwn; + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); + } + + internal static global::System.Runtime.InteropServices.HandleRef getCPtr(Vector3 obj) + { + return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; + } + + ~Vector3() + { + DisposeQueue.Instance.Add(this); + } + + public virtual void Dispose() + { + if (!Stage.IsInstalled()) + { + DisposeQueue.Instance.Add(this); + return; + } + + lock (this) + { + if (swigCPtr.Handle != global::System.IntPtr.Zero) + { + if (swigCMemOwn) + { + swigCMemOwn = false; + NDalicPINVOKE.delete_Vector3(swigCPtr); + } + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); + } + global::System.GC.SuppressFinalize(this); + } + } + + + public static Vector3 operator +(Vector3 arg1, Vector3 arg2) + { + return arg1.Add(arg2); + } + + public static Vector3 operator -(Vector3 arg1, Vector3 arg2) + { + return arg1.Subtract(arg2); + } + + public static Vector3 operator -(Vector3 arg1) + { + return arg1.Subtract(); + } + + public static Vector3 operator *(Vector3 arg1, Vector3 arg2) + { + return arg1.Multiply(arg2); + } + + public static Vector3 operator *(Vector3 arg1, float arg2) + { + return arg1.Multiply(arg2); + } + + public static Vector3 operator /(Vector3 arg1, Vector3 arg2) + { + return arg1.Divide(arg2); + } + + public static Vector3 operator /(Vector3 arg1, float arg2) + { + return arg1.Divide(arg2); + } + + public float this[uint index] + { + get + { + return ValueOfIndex(index); + } + } + + internal static Vector3 GetVector3FromPtr(global::System.IntPtr cPtr) + { + Vector3 ret = new Vector3(cPtr, false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + + public Vector3() : this(NDalicPINVOKE.new_Vector3__SWIG_0(), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public Vector3(float x, float y, float z) : this(NDalicPINVOKE.new_Vector3__SWIG_1(x, y, z), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public Vector3(float[] array) : this(NDalicPINVOKE.new_Vector3__SWIG_2(array), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public Vector3(Vector2 vec2) : this(NDalicPINVOKE.new_Vector3__SWIG_3(Vector2.getCPtr(vec2)), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public Vector3(Vector4 vec4) : this(NDalicPINVOKE.new_Vector3__SWIG_4(Vector4.getCPtr(vec4)), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public static Vector3 One + { + get + { + global::System.IntPtr cPtr = NDalicPINVOKE.Vector3_ONE_get(); + Vector3 ret = (cPtr == global::System.IntPtr.Zero) ? null : new Vector3(cPtr, false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + } + + public static Vector3 XAxis + { + get + { + global::System.IntPtr cPtr = NDalicPINVOKE.Vector3_XAXIS_get(); + Vector3 ret = (cPtr == global::System.IntPtr.Zero) ? null : new Vector3(cPtr, false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + } + + public static Vector3 YAxis + { + get + { + global::System.IntPtr cPtr = NDalicPINVOKE.Vector3_YAXIS_get(); + Vector3 ret = (cPtr == global::System.IntPtr.Zero) ? null : new Vector3(cPtr, false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + } + + public static Vector3 ZAxis + { + get + { + global::System.IntPtr cPtr = NDalicPINVOKE.Vector3_ZAXIS_get(); + Vector3 ret = (cPtr == global::System.IntPtr.Zero) ? null : new Vector3(cPtr, false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + } + + public static Vector3 NegativeXAxis + { + get + { + global::System.IntPtr cPtr = NDalicPINVOKE.Vector3_NEGATIVE_XAXIS_get(); + Vector3 ret = (cPtr == global::System.IntPtr.Zero) ? null : new Vector3(cPtr, false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + } + + public static Vector3 NegativeYAxis + { + get + { + global::System.IntPtr cPtr = NDalicPINVOKE.Vector3_NEGATIVE_YAXIS_get(); + Vector3 ret = (cPtr == global::System.IntPtr.Zero) ? null : new Vector3(cPtr, false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + } + + public static Vector3 NegativeZAxis + { + get + { + global::System.IntPtr cPtr = NDalicPINVOKE.Vector3_NEGATIVE_ZAXIS_get(); + Vector3 ret = (cPtr == global::System.IntPtr.Zero) ? null : new Vector3(cPtr, false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + } + + public static Vector3 Zero + { + get + { + global::System.IntPtr cPtr = NDalicPINVOKE.Vector3_ZERO_get(); + Vector3 ret = (cPtr == global::System.IntPtr.Zero) ? null : new Vector3(cPtr, false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + } + + internal Vector3 Assign(float[] array) + { + Vector3 ret = new Vector3(NDalicPINVOKE.Vector3_Assign__SWIG_0(swigCPtr, array), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal Vector3 Assign(Vector2 rhs) + { + Vector3 ret = new Vector3(NDalicPINVOKE.Vector3_Assign__SWIG_1(swigCPtr, Vector2.getCPtr(rhs)), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal Vector3 Assign(Vector4 rhs) + { + Vector3 ret = new Vector3(NDalicPINVOKE.Vector3_Assign__SWIG_2(swigCPtr, Vector4.getCPtr(rhs)), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal Vector3 Add(Vector3 rhs) + { + Vector3 ret = new Vector3(NDalicPINVOKE.Vector3_Add(swigCPtr, Vector3.getCPtr(rhs)), true); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal Vector3 AddAssign(Vector3 rhs) + { + Vector3 ret = new Vector3(NDalicPINVOKE.Vector3_AddAssign(swigCPtr, Vector3.getCPtr(rhs)), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal Vector3 Subtract(Vector3 rhs) + { + Vector3 ret = new Vector3(NDalicPINVOKE.Vector3_Subtract__SWIG_0(swigCPtr, Vector3.getCPtr(rhs)), true); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal Vector3 SubtractAssign(Vector3 rhs) + { + Vector3 ret = new Vector3(NDalicPINVOKE.Vector3_SubtractAssign(swigCPtr, Vector3.getCPtr(rhs)), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal Vector3 Multiply(Vector3 rhs) + { + Vector3 ret = new Vector3(NDalicPINVOKE.Vector3_Multiply__SWIG_0(swigCPtr, Vector3.getCPtr(rhs)), true); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal Vector3 Multiply(float rhs) + { + Vector3 ret = new Vector3(NDalicPINVOKE.Vector3_Multiply__SWIG_1(swigCPtr, rhs), true); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal Vector3 MultiplyAssign(Vector3 rhs) + { + Vector3 ret = new Vector3(NDalicPINVOKE.Vector3_MultiplyAssign__SWIG_0(swigCPtr, Vector3.getCPtr(rhs)), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal Vector3 MultiplyAssign(float rhs) + { + Vector3 ret = new Vector3(NDalicPINVOKE.Vector3_MultiplyAssign__SWIG_1(swigCPtr, rhs), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal Vector3 MultiplyAssign(Quaternion rhs) + { + Vector3 ret = new Vector3(NDalicPINVOKE.Vector3_MultiplyAssign__SWIG_2(swigCPtr, Quaternion.getCPtr(rhs)), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal Vector3 Divide(Vector3 rhs) + { + Vector3 ret = new Vector3(NDalicPINVOKE.Vector3_Divide__SWIG_0(swigCPtr, Vector3.getCPtr(rhs)), true); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal Vector3 Divide(float rhs) + { + Vector3 ret = new Vector3(NDalicPINVOKE.Vector3_Divide__SWIG_1(swigCPtr, rhs), true); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal Vector3 DivideAssign(Vector3 rhs) + { + Vector3 ret = new Vector3(NDalicPINVOKE.Vector3_DivideAssign__SWIG_0(swigCPtr, Vector3.getCPtr(rhs)), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal Vector3 DivideAssign(float rhs) + { + Vector3 ret = new Vector3(NDalicPINVOKE.Vector3_DivideAssign__SWIG_1(swigCPtr, rhs), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal Vector3 Subtract() + { + Vector3 ret = new Vector3(NDalicPINVOKE.Vector3_Subtract__SWIG_1(swigCPtr), true); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal bool EqualTo(Vector3 rhs) + { + bool ret = NDalicPINVOKE.Vector3_EqualTo(swigCPtr, Vector3.getCPtr(rhs)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal bool NotEqualTo(Vector3 rhs) + { + bool ret = NDalicPINVOKE.Vector3_NotEqualTo(swigCPtr, Vector3.getCPtr(rhs)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal float ValueOfIndex(uint index) + { + float ret = NDalicPINVOKE.Vector3_ValueOfIndex__SWIG_0(swigCPtr, index); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal float Dot(Vector3 other) + { + float ret = NDalicPINVOKE.Vector3_Dot(swigCPtr, Vector3.getCPtr(other)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal Vector3 Cross(Vector3 other) + { + Vector3 ret = new Vector3(NDalicPINVOKE.Vector3_Cross(swigCPtr, Vector3.getCPtr(other)), true); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public float Length() + { + float ret = NDalicPINVOKE.Vector3_Length(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public float LengthSquared() + { + float ret = NDalicPINVOKE.Vector3_LengthSquared(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public void Normalize() + { + NDalicPINVOKE.Vector3_Normalize(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public void Clamp(Vector3 min, Vector3 max) + { + NDalicPINVOKE.Vector3_Clamp(swigCPtr, Vector3.getCPtr(min), Vector3.getCPtr(max)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + internal SWIGTYPE_p_float AsFloat() + { + global::System.IntPtr cPtr = NDalicPINVOKE.Vector3_AsFloat__SWIG_0(swigCPtr); + SWIGTYPE_p_float ret = (cPtr == global::System.IntPtr.Zero) ? null : new SWIGTYPE_p_float(cPtr, false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public Vector2 GetVectorXY() + { + Vector2 ret = new Vector2(NDalicPINVOKE.Vector3_GetVectorXY__SWIG_0(swigCPtr), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public Vector2 GetVectorYZ() + { + Vector2 ret = new Vector2(NDalicPINVOKE.Vector3_GetVectorYZ__SWIG_0(swigCPtr), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public float X + { + set + { + NDalicPINVOKE.Vector3_X_set(swigCPtr, value); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + get + { + float ret = NDalicPINVOKE.Vector3_X_get(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + } + + public float Width + { + set + { + NDalicPINVOKE.Vector3_Width_set(swigCPtr, value); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + get + { + float ret = NDalicPINVOKE.Vector3_Width_get(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + } + + public float R + { + set + { + NDalicPINVOKE.Vector3_r_set(swigCPtr, value); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + get + { + float ret = NDalicPINVOKE.Vector3_r_get(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + } + + public float Y + { + set + { + NDalicPINVOKE.Vector3_Y_set(swigCPtr, value); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + get + { + float ret = NDalicPINVOKE.Vector3_Y_get(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + } + + public float Height + { + set + { + NDalicPINVOKE.Vector3_Height_set(swigCPtr, value); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + get + { + float ret = NDalicPINVOKE.Vector3_Height_get(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + } + + public float G + { + set + { + NDalicPINVOKE.Vector3_g_set(swigCPtr, value); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + get + { + float ret = NDalicPINVOKE.Vector3_g_get(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + } + + public float Z + { + set + { + NDalicPINVOKE.Vector3_Z_set(swigCPtr, value); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + get + { + float ret = NDalicPINVOKE.Vector3_Z_get(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + } + + public float Depth + { + set + { + NDalicPINVOKE.Vector3_Depth_set(swigCPtr, value); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + get + { + float ret = NDalicPINVOKE.Vector3_Depth_get(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + } + + public float B + { + set + { + NDalicPINVOKE.Vector3_b_set(swigCPtr, value); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + get + { + float ret = NDalicPINVOKE.Vector3_b_get(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + } + } - } - - public static Vector3 GetVector3FromPtr(global::System.IntPtr cPtr) { - Vector3 ret = new Vector3(cPtr, false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - - public Vector3() : this(NDalicPINVOKE.new_Vector3__SWIG_0(), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public Vector3(float x, float y, float z) : this(NDalicPINVOKE.new_Vector3__SWIG_1(x, y, z), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public Vector3(float[] array) : this(NDalicPINVOKE.new_Vector3__SWIG_2(array), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public Vector3(Vector2 vec2) : this(NDalicPINVOKE.new_Vector3__SWIG_3(Vector2.getCPtr(vec2)), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public Vector3(Vector4 vec4) : this(NDalicPINVOKE.new_Vector3__SWIG_4(Vector4.getCPtr(vec4)), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public static Vector3 ONE { - get { - global::System.IntPtr cPtr = NDalicPINVOKE.Vector3_ONE_get(); - Vector3 ret = (cPtr == global::System.IntPtr.Zero) ? null : new Vector3(cPtr, false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - } - - public static Vector3 XAXIS { - get { - global::System.IntPtr cPtr = NDalicPINVOKE.Vector3_XAXIS_get(); - Vector3 ret = (cPtr == global::System.IntPtr.Zero) ? null : new Vector3(cPtr, false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - } - - public static Vector3 YAXIS { - get { - global::System.IntPtr cPtr = NDalicPINVOKE.Vector3_YAXIS_get(); - Vector3 ret = (cPtr == global::System.IntPtr.Zero) ? null : new Vector3(cPtr, false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - } - - public static Vector3 ZAXIS { - get { - global::System.IntPtr cPtr = NDalicPINVOKE.Vector3_ZAXIS_get(); - Vector3 ret = (cPtr == global::System.IntPtr.Zero) ? null : new Vector3(cPtr, false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - } - - public static Vector3 NEGATIVE_XAXIS { - get { - global::System.IntPtr cPtr = NDalicPINVOKE.Vector3_NEGATIVE_XAXIS_get(); - Vector3 ret = (cPtr == global::System.IntPtr.Zero) ? null : new Vector3(cPtr, false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - } - - public static Vector3 NEGATIVE_YAXIS { - get { - global::System.IntPtr cPtr = NDalicPINVOKE.Vector3_NEGATIVE_YAXIS_get(); - Vector3 ret = (cPtr == global::System.IntPtr.Zero) ? null : new Vector3(cPtr, false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - } - - public static Vector3 NEGATIVE_ZAXIS { - get { - global::System.IntPtr cPtr = NDalicPINVOKE.Vector3_NEGATIVE_ZAXIS_get(); - Vector3 ret = (cPtr == global::System.IntPtr.Zero) ? null : new Vector3(cPtr, false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - } - - public static Vector3 ZERO { - get { - global::System.IntPtr cPtr = NDalicPINVOKE.Vector3_ZERO_get(); - Vector3 ret = (cPtr == global::System.IntPtr.Zero) ? null : new Vector3(cPtr, false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - } - - public Vector3 Assign(float[] array) { - Vector3 ret = new Vector3(NDalicPINVOKE.Vector3_Assign__SWIG_0(swigCPtr, array), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public Vector3 Assign(Vector2 rhs) { - Vector3 ret = new Vector3(NDalicPINVOKE.Vector3_Assign__SWIG_1(swigCPtr, Vector2.getCPtr(rhs)), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public Vector3 Assign(Vector4 rhs) { - Vector3 ret = new Vector3(NDalicPINVOKE.Vector3_Assign__SWIG_2(swigCPtr, Vector4.getCPtr(rhs)), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public Vector3 Add(Vector3 rhs) { - Vector3 ret = new Vector3(NDalicPINVOKE.Vector3_Add(swigCPtr, Vector3.getCPtr(rhs)), true); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public Vector3 AddAssign(Vector3 rhs) { - Vector3 ret = new Vector3(NDalicPINVOKE.Vector3_AddAssign(swigCPtr, Vector3.getCPtr(rhs)), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public Vector3 Subtract(Vector3 rhs) { - Vector3 ret = new Vector3(NDalicPINVOKE.Vector3_Subtract__SWIG_0(swigCPtr, Vector3.getCPtr(rhs)), true); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public Vector3 SubtractAssign(Vector3 rhs) { - Vector3 ret = new Vector3(NDalicPINVOKE.Vector3_SubtractAssign(swigCPtr, Vector3.getCPtr(rhs)), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public Vector3 Multiply(Vector3 rhs) { - Vector3 ret = new Vector3(NDalicPINVOKE.Vector3_Multiply__SWIG_0(swigCPtr, Vector3.getCPtr(rhs)), true); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public Vector3 Multiply(float rhs) { - Vector3 ret = new Vector3(NDalicPINVOKE.Vector3_Multiply__SWIG_1(swigCPtr, rhs), true); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public Vector3 MultiplyAssign(Vector3 rhs) { - Vector3 ret = new Vector3(NDalicPINVOKE.Vector3_MultiplyAssign__SWIG_0(swigCPtr, Vector3.getCPtr(rhs)), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public Vector3 MultiplyAssign(float rhs) { - Vector3 ret = new Vector3(NDalicPINVOKE.Vector3_MultiplyAssign__SWIG_1(swigCPtr, rhs), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public Vector3 MultiplyAssign(Quaternion rhs) { - Vector3 ret = new Vector3(NDalicPINVOKE.Vector3_MultiplyAssign__SWIG_2(swigCPtr, Quaternion.getCPtr(rhs)), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public Vector3 Divide(Vector3 rhs) { - Vector3 ret = new Vector3(NDalicPINVOKE.Vector3_Divide__SWIG_0(swigCPtr, Vector3.getCPtr(rhs)), true); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public Vector3 Divide(float rhs) { - Vector3 ret = new Vector3(NDalicPINVOKE.Vector3_Divide__SWIG_1(swigCPtr, rhs), true); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public Vector3 DivideAssign(Vector3 rhs) { - Vector3 ret = new Vector3(NDalicPINVOKE.Vector3_DivideAssign__SWIG_0(swigCPtr, Vector3.getCPtr(rhs)), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public Vector3 DivideAssign(float rhs) { - Vector3 ret = new Vector3(NDalicPINVOKE.Vector3_DivideAssign__SWIG_1(swigCPtr, rhs), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public Vector3 Subtract() { - Vector3 ret = new Vector3(NDalicPINVOKE.Vector3_Subtract__SWIG_1(swigCPtr), true); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public bool EqualTo(Vector3 rhs) { - bool ret = NDalicPINVOKE.Vector3_EqualTo(swigCPtr, Vector3.getCPtr(rhs)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public bool NotEqualTo(Vector3 rhs) { - bool ret = NDalicPINVOKE.Vector3_NotEqualTo(swigCPtr, Vector3.getCPtr(rhs)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public float ValueOfIndex(uint index) { - float ret = NDalicPINVOKE.Vector3_ValueOfIndex__SWIG_0(swigCPtr, index); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public float Dot(Vector3 other) { - float ret = NDalicPINVOKE.Vector3_Dot(swigCPtr, Vector3.getCPtr(other)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public Vector3 Cross(Vector3 other) { - Vector3 ret = new Vector3(NDalicPINVOKE.Vector3_Cross(swigCPtr, Vector3.getCPtr(other)), true); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public float Length() { - float ret = NDalicPINVOKE.Vector3_Length(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public float LengthSquared() { - float ret = NDalicPINVOKE.Vector3_LengthSquared(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public void Normalize() { - NDalicPINVOKE.Vector3_Normalize(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public void Clamp(Vector3 min, Vector3 max) { - NDalicPINVOKE.Vector3_Clamp(swigCPtr, Vector3.getCPtr(min), Vector3.getCPtr(max)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public SWIGTYPE_p_float AsFloat() { - global::System.IntPtr cPtr = NDalicPINVOKE.Vector3_AsFloat__SWIG_0(swigCPtr); - SWIGTYPE_p_float ret = (cPtr == global::System.IntPtr.Zero) ? null : new SWIGTYPE_p_float(cPtr, false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public Vector2 GetVectorXY() { - Vector2 ret = new Vector2(NDalicPINVOKE.Vector3_GetVectorXY__SWIG_0(swigCPtr), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public Vector2 GetVectorYZ() { - Vector2 ret = new Vector2(NDalicPINVOKE.Vector3_GetVectorYZ__SWIG_0(swigCPtr), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public float X { - set { - NDalicPINVOKE.Vector3_X_set(swigCPtr, value); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - get { - float ret = NDalicPINVOKE.Vector3_X_get(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - } - - public float Width { - set { - NDalicPINVOKE.Vector3_Width_set(swigCPtr, value); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - get { - float ret = NDalicPINVOKE.Vector3_Width_get(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - } - - public float r { - set { - NDalicPINVOKE.Vector3_r_set(swigCPtr, value); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - get { - float ret = NDalicPINVOKE.Vector3_r_get(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - } - - public float Y { - set { - NDalicPINVOKE.Vector3_Y_set(swigCPtr, value); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - get { - float ret = NDalicPINVOKE.Vector3_Y_get(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - } - - public float Height { - set { - NDalicPINVOKE.Vector3_Height_set(swigCPtr, value); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - get { - float ret = NDalicPINVOKE.Vector3_Height_get(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - } - - public float g { - set { - NDalicPINVOKE.Vector3_g_set(swigCPtr, value); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - get { - float ret = NDalicPINVOKE.Vector3_g_get(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - } - - public float Z { - set { - NDalicPINVOKE.Vector3_Z_set(swigCPtr, value); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - get { - float ret = NDalicPINVOKE.Vector3_Z_get(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - } - - public float Depth { - set { - NDalicPINVOKE.Vector3_Depth_set(swigCPtr, value); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - get { - float ret = NDalicPINVOKE.Vector3_Depth_get(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - } - - public float b { - set { - NDalicPINVOKE.Vector3_b_set(swigCPtr, value); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - get { - float ret = NDalicPINVOKE.Vector3_b_get(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - } - -} } diff --git a/Tizen.NUI/src/public/Vector4.cs b/Tizen.NUI/src/public/Vector4.cs old mode 100644 new mode 100755 index 9844f7a..9bf82d0 --- a/Tizen.NUI/src/public/Vector4.cs +++ b/Tizen.NUI/src/public/Vector4.cs @@ -1,470 +1,589 @@ -//------------------------------------------------------------------------------ -// +// Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved +// PROPRIETARY/CONFIDENTIAL +// This software is the confidential and proprietary +// information of SAMSUNG ELECTRONICS ("Confidential Information"). You shall +// not disclose such Confidential Information and shall use it only in +// accordance with the terms of the license agreement you entered into with +// SAMSUNG ELECTRONICS. SAMSUNG make no representations or warranties about the +// suitability of the software, either express or implied, including but not +// limited to the implied warranties of merchantability, fitness for a +// particular purpose, or non-infringement. SAMSUNG shall not be liable for any +// damages suffered by licensee as a result of using, modifying or distributing +// this software or its derivatives. + +// Copyright (c) 2017 Samsung Electronics Co., Ltd. // -// This file was automatically generated by SWIG (http://www.swig.org). -// Version 3.0.9 +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. // -// Do not make changes to this file unless you know what you are doing--modify -// the SWIG interface file instead. -//------------------------------------------------------------------------------ - -namespace NUI { - -public class Vector4 : global::System.IDisposable { - private global::System.Runtime.InteropServices.HandleRef swigCPtr; - protected bool swigCMemOwn; - - internal Vector4(global::System.IntPtr cPtr, bool cMemoryOwn) { - swigCMemOwn = cMemoryOwn; - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); - } - - internal static global::System.Runtime.InteropServices.HandleRef getCPtr(Vector4 obj) { - return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; - } - - ~Vector4() { - DisposeQueue.Instance.Add(this); - } - - public virtual void Dispose() { - if (!Stage.IsInstalled()) { - DisposeQueue.Instance.Add(this); - return; - } - - lock(this) { - if (swigCPtr.Handle != global::System.IntPtr.Zero) { - if (swigCMemOwn) { - swigCMemOwn = false; - NDalicPINVOKE.delete_Vector4(swigCPtr); - } - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); - } - global::System.GC.SuppressFinalize(this); - } - } - - - public static Vector4 operator+(Vector4 arg1, Vector4 arg2) { - return arg1.Add(arg2); - } - - public static Vector4 operator-(Vector4 arg1, Vector4 arg2) { - return arg1.Subtract(arg2); - } - - public static Vector4 operator-(Vector4 arg1) { - return arg1.Subtract(); - } - - public static Vector4 operator*(Vector4 arg1, Vector4 arg2) { - return arg1.Multiply(arg2); - } - - public static Vector4 operator*(Vector4 arg1, float arg2) { - return arg1.Multiply(arg2); - } - - public static Vector4 operator/(Vector4 arg1, Vector4 arg2) { - return arg1.Divide(arg2); - } - - public static Vector4 operator/(Vector4 arg1, float arg2) { - return arg1.Divide(arg2); - } - public float this[uint index] - { - get - { - return ValueOfIndex(index); +// This File has been auto-generated by SWIG and then modified using DALi Ruby Scripts +// Some have been manually changed + + +namespace Tizen.NUI +{ + + public class Vector4 : global::System.IDisposable + { + private global::System.Runtime.InteropServices.HandleRef swigCPtr; + protected bool swigCMemOwn; + + internal Vector4(global::System.IntPtr cPtr, bool cMemoryOwn) + { + swigCMemOwn = cMemoryOwn; + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); + } + + internal static global::System.Runtime.InteropServices.HandleRef getCPtr(Vector4 obj) + { + return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; + } + + ~Vector4() + { + DisposeQueue.Instance.Add(this); + } + + public virtual void Dispose() + { + if (!Stage.IsInstalled()) + { + DisposeQueue.Instance.Add(this); + return; + } + + lock (this) + { + if (swigCPtr.Handle != global::System.IntPtr.Zero) + { + if (swigCMemOwn) + { + swigCMemOwn = false; + NDalicPINVOKE.delete_Vector4(swigCPtr); + } + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); + } + global::System.GC.SuppressFinalize(this); + } + } + + + public static Vector4 operator +(Vector4 arg1, Vector4 arg2) + { + return arg1.Add(arg2); + } + + public static Vector4 operator -(Vector4 arg1, Vector4 arg2) + { + return arg1.Subtract(arg2); + } + + public static Vector4 operator -(Vector4 arg1) + { + return arg1.Subtract(); + } + + public static Vector4 operator *(Vector4 arg1, Vector4 arg2) + { + return arg1.Multiply(arg2); + } + + public static Vector4 operator *(Vector4 arg1, float arg2) + { + return arg1.Multiply(arg2); + } + + public static Vector4 operator /(Vector4 arg1, Vector4 arg2) + { + return arg1.Divide(arg2); + } + + public static Vector4 operator /(Vector4 arg1, float arg2) + { + return arg1.Divide(arg2); + } + + public float this[uint index] + { + get + { + return ValueOfIndex(index); + } + } + + internal static Vector4 GetVector4FromPtr(global::System.IntPtr cPtr) + { + Vector4 ret = new Vector4(cPtr, false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + + public Vector4() : this(NDalicPINVOKE.new_Vector4__SWIG_0(), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public Vector4(float x, float y, float z, float w) : this(NDalicPINVOKE.new_Vector4__SWIG_1(x, y, z, w), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public Vector4(float[] array) : this(NDalicPINVOKE.new_Vector4__SWIG_2(array), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public Vector4(Vector2 vec2) : this(NDalicPINVOKE.new_Vector4__SWIG_3(Vector2.getCPtr(vec2)), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public Vector4(Vector3 vec3) : this(NDalicPINVOKE.new_Vector4__SWIG_4(Vector3.getCPtr(vec3)), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public static Vector4 One + { + get + { + global::System.IntPtr cPtr = NDalicPINVOKE.Vector4_ONE_get(); + Vector4 ret = (cPtr == global::System.IntPtr.Zero) ? null : new Vector4(cPtr, false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + } + + public static Vector4 XAxis + { + get + { + global::System.IntPtr cPtr = NDalicPINVOKE.Vector4_XAXIS_get(); + Vector4 ret = (cPtr == global::System.IntPtr.Zero) ? null : new Vector4(cPtr, false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + } + + public static Vector4 YAxis + { + get + { + global::System.IntPtr cPtr = NDalicPINVOKE.Vector4_YAXIS_get(); + Vector4 ret = (cPtr == global::System.IntPtr.Zero) ? null : new Vector4(cPtr, false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + } + + public static Vector4 ZAxis + { + get + { + global::System.IntPtr cPtr = NDalicPINVOKE.Vector4_ZAXIS_get(); + Vector4 ret = (cPtr == global::System.IntPtr.Zero) ? null : new Vector4(cPtr, false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + } + + public static Vector4 Zero + { + get + { + global::System.IntPtr cPtr = NDalicPINVOKE.Vector4_ZERO_get(); + Vector4 ret = (cPtr == global::System.IntPtr.Zero) ? null : new Vector4(cPtr, false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + } + + internal Vector4 Assign(float[] array) + { + Vector4 ret = new Vector4(NDalicPINVOKE.Vector4_Assign__SWIG_0(swigCPtr, array), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal Vector4 Assign(Vector2 vec2) + { + Vector4 ret = new Vector4(NDalicPINVOKE.Vector4_Assign__SWIG_1(swigCPtr, Vector2.getCPtr(vec2)), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal Vector4 Assign(Vector3 vec3) + { + Vector4 ret = new Vector4(NDalicPINVOKE.Vector4_Assign__SWIG_2(swigCPtr, Vector3.getCPtr(vec3)), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal Vector4 Add(Vector4 rhs) + { + Vector4 ret = new Vector4(NDalicPINVOKE.Vector4_Add(swigCPtr, Vector4.getCPtr(rhs)), true); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal Vector4 AddAssign(Vector4 rhs) + { + Vector4 ret = new Vector4(NDalicPINVOKE.Vector4_AddAssign(swigCPtr, Vector4.getCPtr(rhs)), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal Vector4 Subtract(Vector4 rhs) + { + Vector4 ret = new Vector4(NDalicPINVOKE.Vector4_Subtract__SWIG_0(swigCPtr, Vector4.getCPtr(rhs)), true); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal Vector4 SubtractAssign(Vector4 rhs) + { + Vector4 ret = new Vector4(NDalicPINVOKE.Vector4_SubtractAssign(swigCPtr, Vector4.getCPtr(rhs)), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal Vector4 Multiply(Vector4 rhs) + { + Vector4 ret = new Vector4(NDalicPINVOKE.Vector4_Multiply__SWIG_0(swigCPtr, Vector4.getCPtr(rhs)), true); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal Vector4 Multiply(float rhs) + { + Vector4 ret = new Vector4(NDalicPINVOKE.Vector4_Multiply__SWIG_1(swigCPtr, rhs), true); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal Vector4 MultiplyAssign(Vector4 rhs) + { + Vector4 ret = new Vector4(NDalicPINVOKE.Vector4_MultiplyAssign__SWIG_0(swigCPtr, Vector4.getCPtr(rhs)), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal Vector4 MultiplyAssign(float rhs) + { + Vector4 ret = new Vector4(NDalicPINVOKE.Vector4_MultiplyAssign__SWIG_1(swigCPtr, rhs), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal Vector4 Divide(Vector4 rhs) + { + Vector4 ret = new Vector4(NDalicPINVOKE.Vector4_Divide__SWIG_0(swigCPtr, Vector4.getCPtr(rhs)), true); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal Vector4 Divide(float rhs) + { + Vector4 ret = new Vector4(NDalicPINVOKE.Vector4_Divide__SWIG_1(swigCPtr, rhs), true); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal Vector4 DivideAssign(Vector4 rhs) + { + Vector4 ret = new Vector4(NDalicPINVOKE.Vector4_DivideAssign__SWIG_0(swigCPtr, Vector4.getCPtr(rhs)), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal Vector4 DivideAssign(float rhs) + { + Vector4 ret = new Vector4(NDalicPINVOKE.Vector4_DivideAssign__SWIG_1(swigCPtr, rhs), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal Vector4 Subtract() + { + Vector4 ret = new Vector4(NDalicPINVOKE.Vector4_Subtract__SWIG_1(swigCPtr), true); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal bool EqualTo(Vector4 rhs) + { + bool ret = NDalicPINVOKE.Vector4_EqualTo(swigCPtr, Vector4.getCPtr(rhs)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal bool NotEqualTo(Vector4 rhs) + { + bool ret = NDalicPINVOKE.Vector4_NotEqualTo(swigCPtr, Vector4.getCPtr(rhs)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal float ValueOfIndex(uint index) + { + float ret = NDalicPINVOKE.Vector4_ValueOfIndex__SWIG_0(swigCPtr, index); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal float Dot(Vector3 other) + { + float ret = NDalicPINVOKE.Vector4_Dot__SWIG_0(swigCPtr, Vector3.getCPtr(other)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal float Dot(Vector4 other) + { + float ret = NDalicPINVOKE.Vector4_Dot__SWIG_1(swigCPtr, Vector4.getCPtr(other)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal float Dot4(Vector4 other) + { + float ret = NDalicPINVOKE.Vector4_Dot4(swigCPtr, Vector4.getCPtr(other)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal Vector4 Cross(Vector4 other) + { + Vector4 ret = new Vector4(NDalicPINVOKE.Vector4_Cross(swigCPtr, Vector4.getCPtr(other)), true); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public float Length() + { + float ret = NDalicPINVOKE.Vector4_Length(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public float LengthSquared() + { + float ret = NDalicPINVOKE.Vector4_LengthSquared(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public void Normalize() + { + NDalicPINVOKE.Vector4_Normalize(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public void Clamp(Vector4 min, Vector4 max) + { + NDalicPINVOKE.Vector4_Clamp(swigCPtr, Vector4.getCPtr(min), Vector4.getCPtr(max)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + internal SWIGTYPE_p_float AsFloat() + { + global::System.IntPtr cPtr = NDalicPINVOKE.Vector4_AsFloat__SWIG_0(swigCPtr); + SWIGTYPE_p_float ret = (cPtr == global::System.IntPtr.Zero) ? null : new SWIGTYPE_p_float(cPtr, false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public float X + { + set + { + NDalicPINVOKE.Vector4_X_set(swigCPtr, value); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + get + { + float ret = NDalicPINVOKE.Vector4_X_get(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + } + + public float R + { + set + { + NDalicPINVOKE.Vector4_r_set(swigCPtr, value); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + get + { + float ret = NDalicPINVOKE.Vector4_r_get(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + } + + public float S + { + set + { + NDalicPINVOKE.Vector4_s_set(swigCPtr, value); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + get + { + float ret = NDalicPINVOKE.Vector4_s_get(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + } + + public float Y + { + set + { + NDalicPINVOKE.Vector4_Y_set(swigCPtr, value); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + get + { + float ret = NDalicPINVOKE.Vector4_Y_get(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + } + + public float G + { + set + { + NDalicPINVOKE.Vector4_g_set(swigCPtr, value); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + get + { + float ret = NDalicPINVOKE.Vector4_g_get(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + } + + public float T + { + set + { + NDalicPINVOKE.Vector4_t_set(swigCPtr, value); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + get + { + float ret = NDalicPINVOKE.Vector4_t_get(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + } + + public float Z + { + set + { + NDalicPINVOKE.Vector4_Z_set(swigCPtr, value); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + get + { + float ret = NDalicPINVOKE.Vector4_Z_get(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + } + + public float B + { + set + { + NDalicPINVOKE.Vector4_b_set(swigCPtr, value); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + get + { + float ret = NDalicPINVOKE.Vector4_b_get(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + } + + public float P + { + set + { + NDalicPINVOKE.Vector4_p_set(swigCPtr, value); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + get + { + float ret = NDalicPINVOKE.Vector4_p_get(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + } + + public float W + { + set + { + NDalicPINVOKE.Vector4_W_set(swigCPtr, value); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + get + { + float ret = NDalicPINVOKE.Vector4_W_get(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + } + + public float A + { + set + { + NDalicPINVOKE.Vector4_a_set(swigCPtr, value); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + get + { + float ret = NDalicPINVOKE.Vector4_a_get(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + } + + public float Q + { + set + { + NDalicPINVOKE.Vector4_q_set(swigCPtr, value); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + get + { + float ret = NDalicPINVOKE.Vector4_q_get(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + } + } - } - - public static Vector4 GetVector4FromPtr(global::System.IntPtr cPtr) { - Vector4 ret = new Vector4(cPtr, false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - - public Vector4() : this(NDalicPINVOKE.new_Vector4__SWIG_0(), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public Vector4(float x, float y, float z, float w) : this(NDalicPINVOKE.new_Vector4__SWIG_1(x, y, z, w), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public Vector4(float[] array) : this(NDalicPINVOKE.new_Vector4__SWIG_2(array), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public Vector4(Vector2 vec2) : this(NDalicPINVOKE.new_Vector4__SWIG_3(Vector2.getCPtr(vec2)), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public Vector4(Vector3 vec3) : this(NDalicPINVOKE.new_Vector4__SWIG_4(Vector3.getCPtr(vec3)), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public static Vector4 ONE { - get { - global::System.IntPtr cPtr = NDalicPINVOKE.Vector4_ONE_get(); - Vector4 ret = (cPtr == global::System.IntPtr.Zero) ? null : new Vector4(cPtr, false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - } - - public static Vector4 XAXIS { - get { - global::System.IntPtr cPtr = NDalicPINVOKE.Vector4_XAXIS_get(); - Vector4 ret = (cPtr == global::System.IntPtr.Zero) ? null : new Vector4(cPtr, false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - } - - public static Vector4 YAXIS { - get { - global::System.IntPtr cPtr = NDalicPINVOKE.Vector4_YAXIS_get(); - Vector4 ret = (cPtr == global::System.IntPtr.Zero) ? null : new Vector4(cPtr, false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - } - - public static Vector4 ZAXIS { - get { - global::System.IntPtr cPtr = NDalicPINVOKE.Vector4_ZAXIS_get(); - Vector4 ret = (cPtr == global::System.IntPtr.Zero) ? null : new Vector4(cPtr, false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - } - - public static Vector4 ZERO { - get { - global::System.IntPtr cPtr = NDalicPINVOKE.Vector4_ZERO_get(); - Vector4 ret = (cPtr == global::System.IntPtr.Zero) ? null : new Vector4(cPtr, false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - } - - public Vector4 Assign(float[] array) { - Vector4 ret = new Vector4(NDalicPINVOKE.Vector4_Assign__SWIG_0(swigCPtr, array), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public Vector4 Assign(Vector2 vec2) { - Vector4 ret = new Vector4(NDalicPINVOKE.Vector4_Assign__SWIG_1(swigCPtr, Vector2.getCPtr(vec2)), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public Vector4 Assign(Vector3 vec3) { - Vector4 ret = new Vector4(NDalicPINVOKE.Vector4_Assign__SWIG_2(swigCPtr, Vector3.getCPtr(vec3)), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public Vector4 Add(Vector4 rhs) { - Vector4 ret = new Vector4(NDalicPINVOKE.Vector4_Add(swigCPtr, Vector4.getCPtr(rhs)), true); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public Vector4 AddAssign(Vector4 rhs) { - Vector4 ret = new Vector4(NDalicPINVOKE.Vector4_AddAssign(swigCPtr, Vector4.getCPtr(rhs)), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public Vector4 Subtract(Vector4 rhs) { - Vector4 ret = new Vector4(NDalicPINVOKE.Vector4_Subtract__SWIG_0(swigCPtr, Vector4.getCPtr(rhs)), true); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public Vector4 SubtractAssign(Vector4 rhs) { - Vector4 ret = new Vector4(NDalicPINVOKE.Vector4_SubtractAssign(swigCPtr, Vector4.getCPtr(rhs)), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public Vector4 Multiply(Vector4 rhs) { - Vector4 ret = new Vector4(NDalicPINVOKE.Vector4_Multiply__SWIG_0(swigCPtr, Vector4.getCPtr(rhs)), true); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public Vector4 Multiply(float rhs) { - Vector4 ret = new Vector4(NDalicPINVOKE.Vector4_Multiply__SWIG_1(swigCPtr, rhs), true); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public Vector4 MultiplyAssign(Vector4 rhs) { - Vector4 ret = new Vector4(NDalicPINVOKE.Vector4_MultiplyAssign__SWIG_0(swigCPtr, Vector4.getCPtr(rhs)), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public Vector4 MultiplyAssign(float rhs) { - Vector4 ret = new Vector4(NDalicPINVOKE.Vector4_MultiplyAssign__SWIG_1(swigCPtr, rhs), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public Vector4 Divide(Vector4 rhs) { - Vector4 ret = new Vector4(NDalicPINVOKE.Vector4_Divide__SWIG_0(swigCPtr, Vector4.getCPtr(rhs)), true); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public Vector4 Divide(float rhs) { - Vector4 ret = new Vector4(NDalicPINVOKE.Vector4_Divide__SWIG_1(swigCPtr, rhs), true); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public Vector4 DivideAssign(Vector4 rhs) { - Vector4 ret = new Vector4(NDalicPINVOKE.Vector4_DivideAssign__SWIG_0(swigCPtr, Vector4.getCPtr(rhs)), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public Vector4 DivideAssign(float rhs) { - Vector4 ret = new Vector4(NDalicPINVOKE.Vector4_DivideAssign__SWIG_1(swigCPtr, rhs), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public Vector4 Subtract() { - Vector4 ret = new Vector4(NDalicPINVOKE.Vector4_Subtract__SWIG_1(swigCPtr), true); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public bool EqualTo(Vector4 rhs) { - bool ret = NDalicPINVOKE.Vector4_EqualTo(swigCPtr, Vector4.getCPtr(rhs)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public bool NotEqualTo(Vector4 rhs) { - bool ret = NDalicPINVOKE.Vector4_NotEqualTo(swigCPtr, Vector4.getCPtr(rhs)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public float ValueOfIndex(uint index) { - float ret = NDalicPINVOKE.Vector4_ValueOfIndex__SWIG_0(swigCPtr, index); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public float Dot(Vector3 other) { - float ret = NDalicPINVOKE.Vector4_Dot__SWIG_0(swigCPtr, Vector3.getCPtr(other)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public float Dot(Vector4 other) { - float ret = NDalicPINVOKE.Vector4_Dot__SWIG_1(swigCPtr, Vector4.getCPtr(other)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public float Dot4(Vector4 other) { - float ret = NDalicPINVOKE.Vector4_Dot4(swigCPtr, Vector4.getCPtr(other)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public Vector4 Cross(Vector4 other) { - Vector4 ret = new Vector4(NDalicPINVOKE.Vector4_Cross(swigCPtr, Vector4.getCPtr(other)), true); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public float Length() { - float ret = NDalicPINVOKE.Vector4_Length(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public float LengthSquared() { - float ret = NDalicPINVOKE.Vector4_LengthSquared(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public void Normalize() { - NDalicPINVOKE.Vector4_Normalize(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public void Clamp(Vector4 min, Vector4 max) { - NDalicPINVOKE.Vector4_Clamp(swigCPtr, Vector4.getCPtr(min), Vector4.getCPtr(max)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public SWIGTYPE_p_float AsFloat() { - global::System.IntPtr cPtr = NDalicPINVOKE.Vector4_AsFloat__SWIG_0(swigCPtr); - SWIGTYPE_p_float ret = (cPtr == global::System.IntPtr.Zero) ? null : new SWIGTYPE_p_float(cPtr, false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public float X { - set { - NDalicPINVOKE.Vector4_X_set(swigCPtr, value); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - get { - float ret = NDalicPINVOKE.Vector4_X_get(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - } - - public float r { - set { - NDalicPINVOKE.Vector4_r_set(swigCPtr, value); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - get { - float ret = NDalicPINVOKE.Vector4_r_get(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - } - - public float s { - set { - NDalicPINVOKE.Vector4_s_set(swigCPtr, value); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - get { - float ret = NDalicPINVOKE.Vector4_s_get(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - } - - public float Y { - set { - NDalicPINVOKE.Vector4_Y_set(swigCPtr, value); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - get { - float ret = NDalicPINVOKE.Vector4_Y_get(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - } - - public float g { - set { - NDalicPINVOKE.Vector4_g_set(swigCPtr, value); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - get { - float ret = NDalicPINVOKE.Vector4_g_get(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - } - - public float t { - set { - NDalicPINVOKE.Vector4_t_set(swigCPtr, value); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - get { - float ret = NDalicPINVOKE.Vector4_t_get(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - } - - public float Z { - set { - NDalicPINVOKE.Vector4_Z_set(swigCPtr, value); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - get { - float ret = NDalicPINVOKE.Vector4_Z_get(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - } - - public float b { - set { - NDalicPINVOKE.Vector4_b_set(swigCPtr, value); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - get { - float ret = NDalicPINVOKE.Vector4_b_get(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - } - - public float p { - set { - NDalicPINVOKE.Vector4_p_set(swigCPtr, value); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - get { - float ret = NDalicPINVOKE.Vector4_p_get(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - } - - public float W { - set { - NDalicPINVOKE.Vector4_W_set(swigCPtr, value); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - get { - float ret = NDalicPINVOKE.Vector4_W_get(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - } - - public float a { - set { - NDalicPINVOKE.Vector4_a_set(swigCPtr, value); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - get { - float ret = NDalicPINVOKE.Vector4_a_get(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - } - - public float q { - set { - NDalicPINVOKE.Vector4_q_set(swigCPtr, value); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - get { - float ret = NDalicPINVOKE.Vector4_q_get(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - } - -} } diff --git a/Tizen.NUI/src/public/VideoView.cs b/Tizen.NUI/src/public/VideoView.cs old mode 100644 new mode 100755 index dbcbc89..c9170d7 --- a/Tizen.NUI/src/public/VideoView.cs +++ b/Tizen.NUI/src/public/VideoView.cs @@ -1,313 +1,339 @@ -/** Copyright (c) 2017 Samsung Electronics Co., Ltd. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ -// This File has been auto-generated by SWIG and then modified using DALi Ruby Scripts -//------------------------------------------------------------------------------ -// -// -// This file was automatically generated by SWIG (http://www.swig.org). -// Version 3.0.9 -// -// Do not make changes to this file unless you know what you are doing--modify -// the SWIG interface file instead. -//------------------------------------------------------------------------------ - -namespace NUI { - -using System; -using System.Runtime.InteropServices; - - -public class VideoView : View { - private global::System.Runtime.InteropServices.HandleRef swigCPtr; - - internal VideoView(global::System.IntPtr cPtr, bool cMemoryOwn) : base(NDalicPINVOKE.VideoView_SWIGUpcast(cPtr), cMemoryOwn) { - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); - } - - internal static global::System.Runtime.InteropServices.HandleRef getCPtr(VideoView obj) { - return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; - } - - ~VideoView() { - DisposeQueue.Instance.Add(this); - } - - public override void Dispose() { - if (!Stage.IsInstalled()) { - DisposeQueue.Instance.Add(this); - return; - } - - lock(this) { - if (swigCPtr.Handle != global::System.IntPtr.Zero) { - if (swigCMemOwn) { - swigCMemOwn = false; - NDalicPINVOKE.delete_VideoView(swigCPtr); - } - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); - } - global::System.GC.SuppressFinalize(this); - base.Dispose(); - } - } - - - -/** - * @brief Event arguments that passed via Finished signal - * - */ -public class FinishedEventArgs : EventArgs -{ - private VideoView _videoView; - - /** - * @brief VideoView - VideoView is a control for video playback and display. - * - */ - public VideoView VideoView - { - get - { - return _videoView; - } - set - { - _videoView = value; - } - } -} - - - [UnmanagedFunctionPointer(CallingConvention.StdCall)] - private delegate void FinishedCallbackDelegate(IntPtr data); - private DaliEventHandler _videoViewFinishedEventHandler; - private FinishedCallbackDelegate _videoViewFinishedCallbackDelegate; - - /** - * @brief Event for Finished signal which can be used to subscribe/unsubscribe the event handler - * (in the type of FinishedEventHandler-DaliEventHandler) provided by the user. - * Finished signal is emitted when a video playback have finished. - */ - public event DaliEventHandler Finished - { - add - { - lock(this) - { - // Restricted to only one listener - if (_videoViewFinishedEventHandler == null) - { - _videoViewFinishedEventHandler += value; - - _videoViewFinishedCallbackDelegate = new FinishedCallbackDelegate(OnFinished); - this.FinishedSignal().Connect(_videoViewFinishedCallbackDelegate); - } - } - } - - remove - { - lock(this) - { - if (_videoViewFinishedEventHandler != null) - { - this.FinishedSignal().Disconnect(_videoViewFinishedCallbackDelegate); - } - - _videoViewFinishedEventHandler -= value; - } - } - } - - // Callback for VideoView Finished signal - private void OnFinished(IntPtr data) - { - FinishedEventArgs e = new FinishedEventArgs(); - - // Populate all members of "e" (FinishedEventArgs) with real data - e.VideoView = VideoView.GetVideoViewFromPtr( data ); - - if (_videoViewFinishedEventHandler != null) - { - //here we send all data to user event handlers - _videoViewFinishedEventHandler(this, e); - } - } - - public static VideoView GetVideoViewFromPtr(global::System.IntPtr cPtr) { - VideoView ret = new VideoView(cPtr, false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - - public class Property : global::System.IDisposable { - private global::System.Runtime.InteropServices.HandleRef swigCPtr; - protected bool swigCMemOwn; - - internal Property(global::System.IntPtr cPtr, bool cMemoryOwn) { - swigCMemOwn = cMemoryOwn; - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); - } - - internal static global::System.Runtime.InteropServices.HandleRef getCPtr(Property obj) { - return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; - } - - ~Property() { - Dispose(); - } - - public virtual void Dispose() { - lock(this) { - if (swigCPtr.Handle != global::System.IntPtr.Zero) { - if (swigCMemOwn) { - swigCMemOwn = false; - NDalicPINVOKE.delete_VideoView_Property(swigCPtr); - } - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); - } - global::System.GC.SuppressFinalize(this); - } - } - - public Property() : this(NDalicPINVOKE.new_VideoView_Property(), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public static readonly int VIDEO = NDalicPINVOKE.VideoView_Property_VIDEO_get(); - public static readonly int LOOPING = NDalicPINVOKE.VideoView_Property_LOOPING_get(); - public static readonly int MUTED = NDalicPINVOKE.VideoView_Property_MUTED_get(); - public static readonly int VOLUME = NDalicPINVOKE.VideoView_Property_VOLUME_get(); - - } - - public VideoView () : this (NDalicPINVOKE.VideoView_New__SWIG_0(), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - - } - public VideoView (string url) : this (NDalicPINVOKE.VideoView_New__SWIG_1(url), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - - } - public VideoView(VideoView videoView) : this(NDalicPINVOKE.new_VideoView__SWIG_1(VideoView.getCPtr(videoView)), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public VideoView Assign(VideoView videoView) { - VideoView ret = new VideoView(NDalicPINVOKE.VideoView_Assign(swigCPtr, VideoView.getCPtr(videoView)), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public new static VideoView DownCast(BaseHandle handle) { - VideoView ret = new VideoView(NDalicPINVOKE.VideoView_DownCast(BaseHandle.getCPtr(handle)), true); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public void Play() { - NDalicPINVOKE.VideoView_Play(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public void Pause() { - NDalicPINVOKE.VideoView_Pause(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public void Stop() { - NDalicPINVOKE.VideoView_Stop(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public void Forward(int millisecond) { - NDalicPINVOKE.VideoView_Forward(swigCPtr, millisecond); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public void Backward(int millisecond) { - NDalicPINVOKE.VideoView_Backward(swigCPtr, millisecond); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public VideoViewSignal FinishedSignal() { - VideoViewSignal ret = new VideoViewSignal(NDalicPINVOKE.VideoView_FinishedSignal(swigCPtr), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public enum PropertyRange { - PROPERTY_START_INDEX = PropertyRanges.PROPERTY_REGISTRATION_START_INDEX - } - - public NUI.Property.Map Video - { - get - { - NUI.Property.Map temp = new NUI.Property.Map(); - GetProperty( VideoView.Property.VIDEO).Get( temp ); - return temp; - } - set - { - SetProperty( VideoView.Property.VIDEO, new NUI.Property.Value( value ) ); - } - } - public bool Looping - { - get - { - bool temp = false; - GetProperty( VideoView.Property.LOOPING).Get( ref temp ); - return temp; - } - set - { - SetProperty( VideoView.Property.LOOPING, new NUI.Property.Value( value ) ); - } - } - public bool Muted - { - get - { - bool temp = false; - GetProperty( VideoView.Property.MUTED).Get( ref temp ); - return temp; - } - set - { - SetProperty( VideoView.Property.MUTED, new NUI.Property.Value( value ) ); - } - } - public NUI.Property.Map Volume - { - get - { - NUI.Property.Map temp = new NUI.Property.Map(); - GetProperty( VideoView.Property.VOLUME).Get( temp ); - return temp; - } - set - { - SetProperty( VideoView.Property.VOLUME, new NUI.Property.Value( value ) ); - } - } - -} - -} +// Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved +// PROPRIETARY/CONFIDENTIAL +// This software is the confidential and proprietary +// information of SAMSUNG ELECTRONICS ("Confidential Information"). You shall +// not disclose such Confidential Information and shall use it only in +// accordance with the terms of the license agreement you entered into with +// SAMSUNG ELECTRONICS. SAMSUNG make no representations or warranties about the +// suitability of the software, either express or implied, including but not +// limited to the implied warranties of merchantability, fitness for a +// particular purpose, or non-infringement. SAMSUNG shall not be liable for any +// damages suffered by licensee as a result of using, modifying or distributing +// this software or its derivatives. + +// Copyright (c) 2017 Samsung Electronics Co., Ltd. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// + +// This File has been auto-generated by SWIG and then modified using DALi Ruby Scripts +// Some have been manually changed + + +namespace Tizen.NUI +{ + + using System; + using System.Runtime.InteropServices; + + + public class VideoView : View + { + private global::System.Runtime.InteropServices.HandleRef swigCPtr; + + internal VideoView(global::System.IntPtr cPtr, bool cMemoryOwn) : base(NDalicPINVOKE.VideoView_SWIGUpcast(cPtr), cMemoryOwn) + { + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); + } + + internal static global::System.Runtime.InteropServices.HandleRef getCPtr(VideoView obj) + { + return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; + } + + ~VideoView() + { + DisposeQueue.Instance.Add(this); + } + + public override void Dispose() + { + if (!Stage.IsInstalled()) + { + DisposeQueue.Instance.Add(this); + return; + } + + lock (this) + { + if (swigCPtr.Handle != global::System.IntPtr.Zero) + { + if (swigCMemOwn) + { + swigCMemOwn = false; + NDalicPINVOKE.delete_VideoView(swigCPtr); + } + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); + } + global::System.GC.SuppressFinalize(this); + base.Dispose(); + } + } + + + + /** + * @brief Event arguments that passed via Finished signal + * + */ + public class FinishedEventArgs : EventArgs + { + private VideoView _videoView; + + /** + * @brief VideoView - VideoView is a control for video playback and display. + * + */ + public VideoView VideoView + { + get + { + return _videoView; + } + set + { + _videoView = value; + } + } + } + + + [UnmanagedFunctionPointer(CallingConvention.StdCall)] + private delegate void FinishedCallback(IntPtr data); + private FinishedCallback _videoViewFinishedCallback; + private EventHandler _videoViewFinishedEventHandler; + + + /** + * @brief Event for Finished signal which can be used to subscribe/unsubscribe the event handler + * (in the type of FinishedEventHandler-DaliEventHandler) provided by the user. + * Finished signal is emitted when a video playback have finished. + */ + public event EventHandler Finished + { + add + { + if (_videoViewFinishedCallback == null) + { + _videoViewFinishedCallback = OnFinished; + FinishedSignal().Connect(_videoViewFinishedCallback); + } + _videoViewFinishedEventHandler += value; + } + remove + { + if (_videoViewFinishedCallback != null) + { + FinishedSignal().Disconnect(_videoViewFinishedCallback); + } + _videoViewFinishedEventHandler -= value; + } + } + + private void OnFinished(IntPtr data) + { + FinishedEventArgs e = new FinishedEventArgs(); + + e.VideoView = VideoView.GetVideoViewFromPtr(data); + + if (_videoViewFinishedEventHandler != null) + { + _videoViewFinishedEventHandler(this, e); + } + } + + internal static VideoView GetVideoViewFromPtr(global::System.IntPtr cPtr) + { + VideoView ret = new VideoView(cPtr, false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + + internal class Property : global::System.IDisposable + { + private global::System.Runtime.InteropServices.HandleRef swigCPtr; + protected bool swigCMemOwn; + + internal Property(global::System.IntPtr cPtr, bool cMemoryOwn) + { + swigCMemOwn = cMemoryOwn; + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); + } + + internal static global::System.Runtime.InteropServices.HandleRef getCPtr(Property obj) + { + return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; + } + + ~Property() + { + Dispose(); + } + + public virtual void Dispose() + { + lock (this) + { + if (swigCPtr.Handle != global::System.IntPtr.Zero) + { + if (swigCMemOwn) + { + swigCMemOwn = false; + NDalicPINVOKE.delete_VideoView_Property(swigCPtr); + } + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); + } + global::System.GC.SuppressFinalize(this); + } + } + + internal Property() : this(NDalicPINVOKE.new_VideoView_Property(), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + internal static readonly int VIDEO = NDalicPINVOKE.VideoView_Property_VIDEO_get(); + internal static readonly int LOOPING = NDalicPINVOKE.VideoView_Property_LOOPING_get(); + internal static readonly int MUTED = NDalicPINVOKE.VideoView_Property_MUTED_get(); + internal static readonly int VOLUME = NDalicPINVOKE.VideoView_Property_VOLUME_get(); + + } + + public VideoView() : this(NDalicPINVOKE.VideoView_New__SWIG_0(), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + + } + public VideoView(string url) : this(NDalicPINVOKE.VideoView_New__SWIG_1(url), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + + } + internal VideoView(VideoView videoView) : this(NDalicPINVOKE.new_VideoView__SWIG_1(VideoView.getCPtr(videoView)), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + internal VideoView Assign(VideoView videoView) + { + VideoView ret = new VideoView(NDalicPINVOKE.VideoView_Assign(swigCPtr, VideoView.getCPtr(videoView)), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public new static VideoView DownCast(BaseHandle handle) + { + VideoView ret = new VideoView(NDalicPINVOKE.VideoView_DownCast(BaseHandle.getCPtr(handle)), true); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public void Play() + { + NDalicPINVOKE.VideoView_Play(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public void Pause() + { + NDalicPINVOKE.VideoView_Pause(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public void Stop() + { + NDalicPINVOKE.VideoView_Stop(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public void Forward(int millisecond) + { + NDalicPINVOKE.VideoView_Forward(swigCPtr, millisecond); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public void Backward(int millisecond) + { + NDalicPINVOKE.VideoView_Backward(swigCPtr, millisecond); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + internal VideoViewSignal FinishedSignal() + { + VideoViewSignal ret = new VideoViewSignal(NDalicPINVOKE.VideoView_FinishedSignal(swigCPtr), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal enum PropertyRange + { + PROPERTY_START_INDEX = PropertyRanges.PROPERTY_REGISTRATION_START_INDEX + } + + public PropertyMap Video + { + get + { + PropertyMap temp = new PropertyMap(); + GetProperty(VideoView.Property.VIDEO).Get(temp); + return temp; + } + set + { + SetProperty(VideoView.Property.VIDEO, new Tizen.NUI.PropertyValue(value)); + } + } + public bool Looping + { + get + { + bool temp = false; + GetProperty(VideoView.Property.LOOPING).Get(ref temp); + return temp; + } + set + { + SetProperty(VideoView.Property.LOOPING, new Tizen.NUI.PropertyValue(value)); + } + } + public bool Muted + { + get + { + bool temp = false; + GetProperty(VideoView.Property.MUTED).Get(ref temp); + return temp; + } + set + { + SetProperty(VideoView.Property.MUTED, new Tizen.NUI.PropertyValue(value)); + } + } + public PropertyMap Volume + { + get + { + PropertyMap temp = new PropertyMap(); + GetProperty(VideoView.Property.VOLUME).Get(temp); + return temp; + } + set + { + SetProperty(VideoView.Property.VOLUME, new Tizen.NUI.PropertyValue(value)); + } + } + + } + +} diff --git a/Tizen.NUI/src/public/View.cs b/Tizen.NUI/src/public/View.cs old mode 100644 new mode 100755 index 2953c60..da30045 --- a/Tizen.NUI/src/public/View.cs +++ b/Tizen.NUI/src/public/View.cs @@ -1,966 +1,1008 @@ -/** Copyright (c) 2017 Samsung Electronics Co., Ltd. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ -// This File has been auto-generated by SWIG and then modified using DALi Ruby Scripts -//------------------------------------------------------------------------------ -// -// -// This file was automatically generated by SWIG (http://www.swig.org). -// Version 3.0.9 -// -// Do not make changes to this file unless you know what you are doing--modify -// the SWIG interface file instead. -//------------------------------------------------------------------------------ - -namespace NUI { - - using System; - using System.Runtime.InteropServices; - - -public class View : CustomActor { - private global::System.Runtime.InteropServices.HandleRef swigCPtr; - - internal View(global::System.IntPtr cPtr, bool cMemoryOwn) : base(NDalicPINVOKE.View_SWIGUpcast(cPtr), cMemoryOwn) { - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); - } - - internal static global::System.Runtime.InteropServices.HandleRef getCPtr(View obj) { - return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; - } - - ~View() { - Dispose(); - } - - public override void Dispose() { - lock(this) { - if (swigCPtr.Handle != global::System.IntPtr.Zero) { - if (swigCMemOwn) { - swigCMemOwn = false; - NDalicPINVOKE.delete_View(swigCPtr); - } - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); - } - global::System.GC.SuppressFinalize(this); - base.Dispose(); - } - } - - - - private EventHandler _keyInputFocusGainedEventHandler; - [UnmanagedFunctionPointer(CallingConvention.StdCall)] - private delegate void KeyInputFocusGainedCallbackType(IntPtr control); - private KeyInputFocusGainedCallbackType _keyInputFocusGainedCallback; - - /** - * @brief Event for KeyInputFocusGained signal which can be used to subscribe/unsubscribe the event handler - * provided by the user. KeyInputFocusGained signal is emitted when the control gets Key Input Focus. - */ - public event EventHandler KeyInputFocusGained - { - add - { - if (_keyInputFocusGainedEventHandler == null) - { - _keyInputFocusGainedCallback = OnKeyInputFocusGained; - this.KeyInputFocusGainedSignal().Connect(_keyInputFocusGainedCallback); - } - - _keyInputFocusGainedEventHandler += value; - } - - remove - { - if (_keyInputFocusGainedEventHandler != null) - { - this.KeyInputFocusGainedSignal().Disconnect(_keyInputFocusGainedCallback); - } - - _keyInputFocusGainedEventHandler -= value; - } - } - - private void OnKeyInputFocusGained(IntPtr view) - { - if (_keyInputFocusGainedEventHandler != null) - { - _keyInputFocusGainedEventHandler(this, null); - } - } - - - private EventHandler _keyInputFocusLostEventHandler; - [UnmanagedFunctionPointer(CallingConvention.StdCall)] - private delegate void KeyInputFocusLostCallbackType(IntPtr control); - private KeyInputFocusLostCallbackType _keyInputFocusLostCallback; - - /** - * @brief Event for KeyInputFocusLost signal which can be used to subscribe/unsubscribe the event handler - * provided by the user. KeyInputFocusLost signal is emitted when the control loses Key Input Focus. - */ - public event EventHandler KeyInputFocusLost - { - add - { - if (_keyInputFocusLostEventHandler == null) - { - _keyInputFocusLostCallback = OnKeyInputFocusLost; - this.KeyInputFocusLostSignal().Connect(_keyInputFocusLostCallback); - } - - _keyInputFocusLostEventHandler += value; - } - - remove - { - if (_keyInputFocusLostEventHandler != null) - { - this.KeyInputFocusLostSignal().Disconnect(_keyInputFocusLostCallback); - } - - _keyInputFocusLostEventHandler -= value; - } - } - - private void OnKeyInputFocusLost(IntPtr view) - { - if (_keyInputFocusLostEventHandler != null) - { - _keyInputFocusLostEventHandler(this, null); - } - } - - - /** - * @brief Event arguments that passed via KeyEvent signal - * - */ - public class KeyEventArgs : EventArgs - { - private KeyEvent _keyEvent; - - /** - * @brief KeyEvent - is the keyevent sent to the View. - * - */ - public KeyEvent KeyEvent - { - get - { - return _keyEvent; - } - set - { - _keyEvent = value; - } - } - } - - private EventHandlerWithReturnType _keyEventHandler; - [UnmanagedFunctionPointer(CallingConvention.StdCall)] - private delegate bool KeyCallbackType(IntPtr control, IntPtr keyEvent); - private KeyCallbackType _keyCallback; - - /** - * @brief Event for KeyPressed signal which can be used to subscribe/unsubscribe the event handler - * provided by the user. KeyPressed signal is emitted when key event is received. - */ - public event EventHandlerWithReturnType KeyPressed - { - add - { - if (_keyEventHandler == null) - { - _keyCallback = OnKeyEvent; - this.KeyEventSignal().Connect(_keyCallback); - } - - _keyEventHandler += value; - } - - remove - { - if (_keyEventHandler != null) - { - this.KeyEventSignal().Disconnect(_keyCallback); - } - - _keyEventHandler -= value; - } - } - - private bool OnKeyEvent(IntPtr view, IntPtr keyEvent) - { - KeyEventArgs e = new KeyEventArgs(); - - e.KeyEvent = NUI.KeyEvent.GetKeyEventFromPtr(keyEvent); - - if (_keyEventHandler != null) - { - return _keyEventHandler(this, e); - } - return false; - } - - - private EventHandler _onRelayoutEventHandler; - [UnmanagedFunctionPointer(CallingConvention.StdCall)] - private delegate void OnRelayoutEventCallbackType(IntPtr control); - private OnRelayoutEventCallbackType _onRelayoutEventCallback; - - /** - * @brief Event for OnRelayout signal which can be used to subscribe/unsubscribe the event handler - * OnRelayout signal is emitted after the size has been set on the view during relayout. - */ - public event EventHandler OnRelayoutEvent - { - add - { - if (_onRelayoutEventHandler == null) - { - _onRelayoutEventCallback = OnRelayout; - this.OnRelayoutSignal().Connect(_onRelayoutEventCallback); - } - - _onRelayoutEventHandler += value; - } - - remove - { - if (_onRelayoutEventHandler != null) - { - this.OnRelayoutSignal().Disconnect(_onRelayoutEventCallback); - } - - _onRelayoutEventHandler -= value; - } - } - - // Callback for View OnRelayout signal - private void OnRelayout(IntPtr data) - { - if (_onRelayoutEventHandler != null) - { - _onRelayoutEventHandler(this, null); - } - } - - - /** - * @brief Event arguments that passed via Touch signal - * - */ - public class TouchEventArgs : EventArgs - { - private TouchData _touchData; - - /** - * @brief TouchData - contains the information of touch points - * - */ - public TouchData TouchData - { - get - { - return _touchData; - } - set - { - _touchData = value; - } - } - } - - private EventHandlerWithReturnType _touchDataEventHandler; - [UnmanagedFunctionPointer(CallingConvention.StdCall)] - private delegate bool TouchDataCallbackType(IntPtr view, IntPtr touchData); - private TouchDataCallbackType _touchDataCallback; - - /** - * @brief Event for Touched signal which can be used to subscribe/unsubscribe the event handler - * provided by the user. Touched signal is emitted when touch input is received. - */ - public event EventHandlerWithReturnType Touched - { - add - { - if (_touchDataEventHandler == null) - { - _touchDataCallback = OnTouch; - this.TouchSignal().Connect(_touchDataCallback); - } - - _touchDataEventHandler += value; - } - - remove - { - if (_touchDataEventHandler != null) - { - this.TouchSignal().Disconnect(_touchDataCallback); - } - - _touchDataEventHandler -= value; - } - } - - // Callback for View TouchSignal - private bool OnTouch(IntPtr view, IntPtr touchData) - { - TouchEventArgs e = new TouchEventArgs(); - - e.TouchData = NUI.TouchData.GetTouchDataFromPtr(touchData); - - if (_touchDataEventHandler != null) - { - return _touchDataEventHandler(this, e); - } - return false; - } - - - /** - * @brief Event arguments that passed via Hover signal - * - */ - public class HoverEventArgs : EventArgs - { - private HoverEvent _hoverEvent; - /** - * @brief HoverEvent - contains touch points that represent the points - * that are currently being hovered or the points where a hover has stopped - * - */ - public HoverEvent HoverEvent - { - get - { - return _hoverEvent; - } - set - { - _hoverEvent = value; - } - } - } - - private EventHandlerWithReturnType _hoverEventHandler; - [UnmanagedFunctionPointer(CallingConvention.StdCall)] - private delegate bool HoverEventCallbackType(IntPtr view, IntPtr hoverEvent); - private HoverEventCallbackType _hoverEventCallback; - - /** - * @brief Event for Hovered signal which can be used to subscribe/unsubscribe the event handler - * provided by the user. Hovered signal is emitted when hover input is received. - */ - public event EventHandlerWithReturnType Hovered - { - add - { - if (_hoverEventHandler == null) - { - _hoverEventCallback = OnHoverEvent; - this.HoveredSignal().Connect(_hoverEventCallback); - } - - _hoverEventHandler += value; - } - - remove - { - if (_hoverEventHandler != null) - { - this.HoveredSignal().Disconnect(_hoverEventCallback); - } - - _hoverEventHandler -= value; - } - } - - // Callback for View Hover signal - private bool OnHoverEvent(IntPtr view, IntPtr hoverEvent) - { - HoverEventArgs e = new HoverEventArgs(); - - e.HoverEvent = NUI.HoverEvent.GetHoverEventFromPtr(hoverEvent); - - if (_hoverEventHandler != null) - { - return _hoverEventHandler(this, e); - } - return false; - } - - - /** - * @brief Event arguments that passed via Wheel signal - * - */ - public class WheelEventArgs : EventArgs - { - private WheelEvent _wheelEvent; - /** - * @brief WheelEvent - store a wheel rolling type : MOUSE_WHEEL or CUSTOM_WHEEL - * - */ - public WheelEvent WheelEvent - { - get - { - return _wheelEvent; - } - set - { - _wheelEvent = value; - } - } - } - - private EventHandlerWithReturnType _wheelEventHandler; - [UnmanagedFunctionPointer(CallingConvention.StdCall)] - private delegate bool WheelEventCallbackType(IntPtr view, IntPtr wheelEvent); - private WheelEventCallbackType _wheelEventCallback; - - /** - * @brief Event for WheelMoved signal which can be used to subscribe/unsubscribe the event handler - * provided by the user. WheelMoved signal is emitted when wheel event is received. - */ - public event EventHandlerWithReturnType WheelMoved - { - add - { - if (_wheelEventHandler == null) - { - _wheelEventCallback = OnWheelEvent; - this.WheelEventSignal().Connect(_wheelEventCallback); - } - - _wheelEventHandler += value; - } - - remove - { - if (_wheelEventHandler != null) - { - this.WheelEventSignal().Disconnect(_wheelEventCallback); - } - - _wheelEventHandler -= value; - } - } - - // Callback for View Wheel signal - private bool OnWheelEvent(IntPtr view, IntPtr wheelEvent) - { - WheelEventArgs e = new WheelEventArgs(); - - e.WheelEvent = NUI.WheelEvent.GetWheelEventFromPtr(wheelEvent); - - if (_wheelEventHandler != null) - { - return _wheelEventHandler(this, e); - } - return false; - } - - - private EventHandler _onStageEventHandler; - [UnmanagedFunctionPointer(CallingConvention.StdCall)] - private delegate void OnStageEventCallbackType(IntPtr control); - private OnStageEventCallbackType _onStageEventCallback; - - /** - * @brief Event for OnStage signal which can be used to subscribe/unsubscribe the event handler - * OnStage signal is emitted after the view has been connected to the stage. - */ - public event EventHandler OnStageEvent - { - add - { - if (_onStageEventHandler == null) - { - _onStageEventCallback = OnStage; - this.OnStageSignal().Connect(_onStageEventCallback); - } - - _onStageEventHandler += value; - } - - remove - { - if (_onStageEventHandler != null) - { - this.OnStageSignal().Disconnect(_onStageEventCallback); - } - - _onStageEventHandler -= value; - } - } - - // Callback for View OnStage signal - private void OnStage(IntPtr data) - { - if (_onStageEventHandler != null) - { - _onStageEventHandler(this, null); - } - } - - - private EventHandler _offStageEventHandler; - [UnmanagedFunctionPointer(CallingConvention.StdCall)] - private delegate void OffStageEventCallbackType(IntPtr control); - private OffStageEventCallbackType _offStageEventCallback; - - /** - * @brief Event for OffStage signal which can be used to subscribe/unsubscribe the event handler - * OffStage signal is emitted after the view has been disconnected from the stage. - */ - public event EventHandler OffStageEvent - { - add - { - if (_offStageEventHandler == null) - { - _offStageEventCallback = OffStage; - this.OnStageSignal().Connect(_offStageEventCallback); - } - - _offStageEventHandler += value; - } - - remove - { - if (_offStageEventHandler != null) - { - this.OnStageSignal().Disconnect(_offStageEventCallback); - } - _offStageEventHandler -= value; - } - } - - // Callback for View OffStage signal - private void OffStage(IntPtr data) - { - if (_offStageEventHandler != null) - { - _offStageEventHandler(this, null); - } - } - - - public static View GetViewFromPtr(global::System.IntPtr cPtr) { - View ret = new View(cPtr, false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public IntPtr GetPtrfromView() - { - return (IntPtr)swigCPtr; - } - - public View GetChildViewAt(uint index) - { - return View.DownCast( this.GetChildAt(index) ); - } - - - - - public class Property : global::System.IDisposable { - private global::System.Runtime.InteropServices.HandleRef swigCPtr; - protected bool swigCMemOwn; - - internal Property(global::System.IntPtr cPtr, bool cMemoryOwn) { - swigCMemOwn = cMemoryOwn; - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); - } - - internal static global::System.Runtime.InteropServices.HandleRef getCPtr(Property obj) { - return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; - } - - ~Property() { - Dispose(); - } - - public virtual void Dispose() { - lock(this) { - if (swigCPtr.Handle != global::System.IntPtr.Zero) { - if (swigCMemOwn) { - swigCMemOwn = false; - NDalicPINVOKE.delete_View_Property(swigCPtr); - } - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); - } - global::System.GC.SuppressFinalize(this); - } - } - - public Property() : this(NDalicPINVOKE.new_View_Property(), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public static readonly int STYLE_NAME = NDalicPINVOKE.View_Property_STYLE_NAME_get(); - public static readonly int BACKGROUND_COLOR = NDalicPINVOKE.View_Property_BACKGROUND_COLOR_get(); - public static readonly int BACKGROUND_IMAGE = NDalicPINVOKE.View_Property_BACKGROUND_IMAGE_get(); - public static readonly int KEY_INPUT_FOCUS = NDalicPINVOKE.View_Property_KEY_INPUT_FOCUS_get(); - public static readonly int BACKGROUND = NDalicPINVOKE.View_Property_BACKGROUND_get(); - - } - - public class KeyboardFocus : global::System.IDisposable { - private global::System.Runtime.InteropServices.HandleRef swigCPtr; - protected bool swigCMemOwn; - - internal KeyboardFocus(global::System.IntPtr cPtr, bool cMemoryOwn) { - swigCMemOwn = cMemoryOwn; - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); - } - - internal static global::System.Runtime.InteropServices.HandleRef getCPtr(KeyboardFocus obj) { - return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; - } - - ~KeyboardFocus() { - Dispose(); - } - - public virtual void Dispose() { - lock(this) { - if (swigCPtr.Handle != global::System.IntPtr.Zero) { - if (swigCMemOwn) { - swigCMemOwn = false; - NDalicPINVOKE.delete_View_KeyboardFocus(swigCPtr); - } - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); - } - global::System.GC.SuppressFinalize(this); - } - } - - public KeyboardFocus() : this(NDalicPINVOKE.new_View_KeyboardFocus(), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public enum Direction { - LEFT, - RIGHT, - UP, - DOWN, - PAGE_UP, - PAGE_DOWN - } - - } - - public View () : this (NDalicPINVOKE.View_New(), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - - } - public View(View uiControl) : this(NDalicPINVOKE.new_View__SWIG_1(View.getCPtr(uiControl)), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public View Assign(View handle) { - View ret = new View(NDalicPINVOKE.View_Assign(swigCPtr, View.getCPtr(handle)), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public new static View DownCast(BaseHandle handle) { - View ret = new View(NDalicPINVOKE.View_DownCast(BaseHandle.getCPtr(handle)), true); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public void SetKeyInputFocus() { - NDalicPINVOKE.View_SetKeyInputFocus(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public bool HasKeyInputFocus() { - bool ret = NDalicPINVOKE.View_HasKeyInputFocus(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public void ClearKeyInputFocus() { - NDalicPINVOKE.View_ClearKeyInputFocus(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public PinchGestureDetector GetPinchGestureDetector() { - PinchGestureDetector ret = new PinchGestureDetector(NDalicPINVOKE.View_GetPinchGestureDetector(swigCPtr), true); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public PanGestureDetector GetPanGestureDetector() { - PanGestureDetector ret = new PanGestureDetector(NDalicPINVOKE.View_GetPanGestureDetector(swigCPtr), true); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public TapGestureDetector GetTapGestureDetector() { - TapGestureDetector ret = new TapGestureDetector(NDalicPINVOKE.View_GetTapGestureDetector(swigCPtr), true); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public LongPressGestureDetector GetLongPressGestureDetector() { - LongPressGestureDetector ret = new LongPressGestureDetector(NDalicPINVOKE.View_GetLongPressGestureDetector(swigCPtr), true); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public void SetStyleName(string styleName) { - NDalicPINVOKE.View_SetStyleName(swigCPtr, styleName); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public string GetStyleName() { - string ret = NDalicPINVOKE.View_GetStyleName(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public void SetBackgroundColor(Vector4 color) { - NDalicPINVOKE.View_SetBackgroundColor(swigCPtr, Vector4.getCPtr(color)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public Vector4 GetBackgroundColor() { - Vector4 ret = new Vector4(NDalicPINVOKE.View_GetBackgroundColor(swigCPtr), true); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public void SetBackgroundImage(Image image) { - NDalicPINVOKE.View_SetBackgroundImage(swigCPtr, Image.getCPtr(image)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public void ClearBackground() { - NDalicPINVOKE.View_ClearBackground(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public ControlKeyEventSignal KeyEventSignal() { - ControlKeyEventSignal ret = new ControlKeyEventSignal(NDalicPINVOKE.View_KeyEventSignal(swigCPtr), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public KeyInputFocusSignal KeyInputFocusGainedSignal() { - KeyInputFocusSignal ret = new KeyInputFocusSignal(NDalicPINVOKE.View_KeyInputFocusGainedSignal(swigCPtr), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public KeyInputFocusSignal KeyInputFocusLostSignal() { - KeyInputFocusSignal ret = new KeyInputFocusSignal(NDalicPINVOKE.View_KeyInputFocusLostSignal(swigCPtr), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public View(ViewImpl implementation) : this(NDalicPINVOKE.new_View__SWIG_2(ViewImpl.getCPtr(implementation)), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public enum PropertyRange { - PROPERTY_START_INDEX = PropertyRanges.PROPERTY_REGISTRATION_START_INDEX, - CONTROL_PROPERTY_START_INDEX = PROPERTY_START_INDEX, - CONTROL_PROPERTY_END_INDEX = CONTROL_PROPERTY_START_INDEX+1000 - } - - public string StyleName - { - get - { - string temp; - GetProperty( View.Property.STYLE_NAME).Get( out temp ); - return temp; - } - set - { - SetProperty( View.Property.STYLE_NAME, new NUI.Property.Value( value ) ); - } - } - public Vector4 BackgroundColor - { - get - { - Vector4 temp = new Vector4(0.0f,0.0f,0.0f,0.0f); - GetProperty( View.Property.BACKGROUND_COLOR).Get( temp ); - return temp; - } - set - { - SetProperty( View.Property.BACKGROUND_COLOR, new NUI.Property.Value( value ) ); - } - } - public NUI.Property.Map BackgroundImage - { - get - { - NUI.Property.Map temp = new NUI.Property.Map(); - GetProperty( View.Property.BACKGROUND_IMAGE).Get( temp ); - return temp; - } - set - { - SetProperty( View.Property.BACKGROUND_IMAGE, new NUI.Property.Value( value ) ); - } - } - public bool KeyInputFocus - { - get - { - bool temp = false; - GetProperty( View.Property.KEY_INPUT_FOCUS).Get( ref temp ); - return temp; - } - set - { - SetProperty( View.Property.KEY_INPUT_FOCUS, new NUI.Property.Value( value ) ); - } - } - public NUI.Property.Map Background - { - get - { - NUI.Property.Map temp = new NUI.Property.Map(); - GetProperty( View.Property.BACKGROUND).Get( temp ); - return temp; - } - set - { - SetProperty( View.Property.BACKGROUND, new NUI.Property.Value( value ) ); - } - } - - public Vector2 CellIndex - { - get - { - Vector2 temp = new Vector2(0.0f,0.0f); - GetProperty( TableView.ChildProperty.CELL_INDEX).Get( temp ); - return temp; - } - set - { - SetProperty( TableView.ChildProperty.CELL_INDEX, new NUI.Property.Value( value ) ); - } - } - public float RowSpan - { - get - { - float temp = 0.0f; - GetProperty( TableView.ChildProperty.ROW_SPAN).Get( ref temp ); - return temp; - } - set - { - SetProperty( TableView.ChildProperty.ROW_SPAN, new NUI.Property.Value( value ) ); - } - } - public float ColumnSpan - { - get - { - float temp = 0.0f; - GetProperty( TableView.ChildProperty.COLUMN_SPAN).Get( ref temp ); - return temp; - } - set - { - SetProperty( TableView.ChildProperty.COLUMN_SPAN, new NUI.Property.Value( value ) ); - } - } - public string CellHorizontalAlignment - { - get - { - string temp; - GetProperty( TableView.ChildProperty.CELL_HORIZONTAL_ALIGNMENT).Get( out temp ); - return temp; - } - set - { - SetProperty( TableView.ChildProperty.CELL_HORIZONTAL_ALIGNMENT, new NUI.Property.Value( value ) ); - } - } - public string CellVerticalAlignment - { - get - { - string temp; - GetProperty( TableView.ChildProperty.CELL_VERTICAL_ALIGNMENT).Get( out temp ); - return temp; - } - set - { - SetProperty( TableView.ChildProperty.CELL_VERTICAL_ALIGNMENT, new NUI.Property.Value( value ) ); - } - } - - public float Flex - { - get - { - float temp = 0.0f; - GetProperty( FlexContainer.ChildProperty.FLEX).Get( ref temp ); - return temp; - } - set - { - SetProperty( FlexContainer.ChildProperty.FLEX, new NUI.Property.Value( value ) ); - } - } - public int AlignSelf - { - get - { - int temp = 0; - GetProperty( FlexContainer.ChildProperty.ALIGN_SELF).Get( ref temp ); - return temp; - } - set - { - SetProperty( FlexContainer.ChildProperty.ALIGN_SELF, new NUI.Property.Value( value ) ); - } - } - public Vector4 FlexMargin - { - get - { - Vector4 temp = new Vector4(0.0f,0.0f,0.0f,0.0f); - GetProperty( FlexContainer.ChildProperty.FLEX_MARGIN).Get( temp ); - return temp; - } - set - { - SetProperty( FlexContainer.ChildProperty.FLEX_MARGIN, new NUI.Property.Value( value ) ); - } - } - -} - -} +// Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved +// PROPRIETARY/CONFIDENTIAL +// This software is the confidential and proprietary +// information of SAMSUNG ELECTRONICS ("Confidential Information"). You shall +// not disclose such Confidential Information and shall use it only in +// accordance with the terms of the license agreement you entered into with +// SAMSUNG ELECTRONICS. SAMSUNG make no representations or warranties about the +// suitability of the software, either express or implied, including but not +// limited to the implied warranties of merchantability, fitness for a +// particular purpose, or non-infringement. SAMSUNG shall not be liable for any +// damages suffered by licensee as a result of using, modifying or distributing +// this software or its derivatives. + +// Copyright (c) 2017 Samsung Electronics Co., Ltd. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// + +// This File has been auto-generated by SWIG and then modified using DALi Ruby Scripts +// Some have been manually changed + + +namespace Tizen.NUI +{ + + using System; + using System.Runtime.InteropServices; + + + public class View : CustomActor + { + private global::System.Runtime.InteropServices.HandleRef swigCPtr; + + internal View(global::System.IntPtr cPtr, bool cMemoryOwn) : base(NDalicPINVOKE.View_SWIGUpcast(cPtr), cMemoryOwn) + { + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); + } + + internal static global::System.Runtime.InteropServices.HandleRef getCPtr(View obj) + { + return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; + } + + ~View() + { + Dispose(); + } + + public override void Dispose() + { + lock (this) + { + if (swigCPtr.Handle != global::System.IntPtr.Zero) + { + if (swigCMemOwn) + { + swigCMemOwn = false; + NDalicPINVOKE.delete_View(swigCPtr); + } + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); + } + global::System.GC.SuppressFinalize(this); + base.Dispose(); + } + } + + + private EventHandler _keyInputFocusGainedEventHandler; + [UnmanagedFunctionPointer(CallingConvention.StdCall)] + private delegate void KeyInputFocusGainedCallbackType(IntPtr control); + private KeyInputFocusGainedCallbackType _keyInputFocusGainedCallback; + + /** + * @brief Event for KeyInputFocusGained signal which can be used to subscribe/unsubscribe the event handler + * provided by the user. KeyInputFocusGained signal is emitted when the control gets Key Input Focus. + */ + public event EventHandler FocusGained + { + add + { + if (_keyInputFocusGainedEventHandler == null) + { + _keyInputFocusGainedCallback = OnKeyInputFocusGained; + this.KeyInputFocusGainedSignal().Connect(_keyInputFocusGainedCallback); + } + + _keyInputFocusGainedEventHandler += value; + } + + remove + { + if (_keyInputFocusGainedEventHandler != null) + { + this.KeyInputFocusGainedSignal().Disconnect(_keyInputFocusGainedCallback); + } + + _keyInputFocusGainedEventHandler -= value; + } + } + + private void OnKeyInputFocusGained(IntPtr view) + { + if (_keyInputFocusGainedEventHandler != null) + { + _keyInputFocusGainedEventHandler(this, null); + } + } + + + private EventHandler _keyInputFocusLostEventHandler; + [UnmanagedFunctionPointer(CallingConvention.StdCall)] + private delegate void KeyInputFocusLostCallbackType(IntPtr control); + private KeyInputFocusLostCallbackType _keyInputFocusLostCallback; + + /** + * @brief Event for KeyInputFocusLost signal which can be used to subscribe/unsubscribe the event handler + * provided by the user. KeyInputFocusLost signal is emitted when the control loses Key Input Focus. + */ + public event EventHandler FocusLost + { + add + { + if (_keyInputFocusLostEventHandler == null) + { + _keyInputFocusLostCallback = OnKeyInputFocusLost; + this.KeyInputFocusLostSignal().Connect(_keyInputFocusLostCallback); + } + + _keyInputFocusLostEventHandler += value; + } + + remove + { + if (_keyInputFocusLostEventHandler != null) + { + this.KeyInputFocusLostSignal().Disconnect(_keyInputFocusLostCallback); + } + + _keyInputFocusLostEventHandler -= value; + } + } + + private void OnKeyInputFocusLost(IntPtr view) + { + if (_keyInputFocusLostEventHandler != null) + { + _keyInputFocusLostEventHandler(this, null); + } + } + + + /** + * @brief Event arguments that passed via KeyEvent signal + * + */ + public class KeyEventArgs : EventArgs + { + private Key _key; + + /** + * @brief KeyEvent - is the keyevent sent to the View. + * + */ + public Key Key + { + get + { + return _key; + } + set + { + _key = value; + } + } + } + + private EventHandlerWithReturnType _keyEventHandler; + [UnmanagedFunctionPointer(CallingConvention.StdCall)] + private delegate bool KeyCallbackType(IntPtr control, IntPtr keyEvent); + private KeyCallbackType _keyCallback; + + /** + * @brief Event for KeyPressed signal which can be used to subscribe/unsubscribe the event handler + * provided by the user. KeyPressed signal is emitted when key event is received. + */ + public event EventHandlerWithReturnType KeyEvent + { + add + { + if (_keyEventHandler == null) + { + _keyCallback = OnKeyEvent; + this.KeyEventSignal().Connect(_keyCallback); + } + + _keyEventHandler += value; + } + + remove + { + if (_keyEventHandler != null) + { + this.KeyEventSignal().Disconnect(_keyCallback); + } + + _keyEventHandler -= value; + } + } + + private bool OnKeyEvent(IntPtr view, IntPtr keyEvent) + { + KeyEventArgs e = new KeyEventArgs(); + + e.Key = Tizen.NUI.Key.GetKeyFromPtr(keyEvent); + + if (_keyEventHandler != null) + { + return _keyEventHandler(this, e); + } + return false; + } + + + private EventHandler _onRelayoutEventHandler; + [UnmanagedFunctionPointer(CallingConvention.StdCall)] + private delegate void OnRelayoutEventCallbackType(IntPtr control); + private OnRelayoutEventCallbackType _onRelayoutEventCallback; + + /** + * @brief Event for OnRelayout signal which can be used to subscribe/unsubscribe the event handler + * OnRelayout signal is emitted after the size has been set on the view during relayout. + */ + public event EventHandler OnRelayoutEvent + { + add + { + if (_onRelayoutEventHandler == null) + { + _onRelayoutEventCallback = OnRelayout; + this.OnRelayoutSignal().Connect(_onRelayoutEventCallback); + } + + _onRelayoutEventHandler += value; + } + + remove + { + if (_onRelayoutEventHandler != null) + { + this.OnRelayoutSignal().Disconnect(_onRelayoutEventCallback); + } + + _onRelayoutEventHandler -= value; + } + } + + // Callback for View OnRelayout signal + private void OnRelayout(IntPtr data) + { + if (_onRelayoutEventHandler != null) + { + _onRelayoutEventHandler(this, null); + } + } + + + /** + * @brief Event arguments that passed via Touch signal + * + */ + public class TouchEventArgs : EventArgs + { + private Touch _touch; + + /** + * @brief TouchData - contains the information of touch points + * + */ + public Touch Touch + { + get + { + return _touch; + } + set + { + _touch = value; + } + } + } + + private EventHandlerWithReturnType _touchDataEventHandler; + [UnmanagedFunctionPointer(CallingConvention.StdCall)] + private delegate bool TouchDataCallbackType(IntPtr view, IntPtr touchData); + private TouchDataCallbackType _touchDataCallback; + + /** + * @brief Event for Touched signal which can be used to subscribe/unsubscribe the event handler + * provided by the user. Touched signal is emitted when touch input is received. + */ + public event EventHandlerWithReturnType Touched + { + add + { + if (_touchDataEventHandler == null) + { + _touchDataCallback = OnTouch; + this.TouchSignal().Connect(_touchDataCallback); + } + + _touchDataEventHandler += value; + } + + remove + { + if (_touchDataEventHandler != null) + { + this.TouchSignal().Disconnect(_touchDataCallback); + } + + _touchDataEventHandler -= value; + } + } + + // Callback for View TouchSignal + private bool OnTouch(IntPtr view, IntPtr touchData) + { + TouchEventArgs e = new TouchEventArgs(); + + e.Touch = Tizen.NUI.Touch.GetTouchFromPtr(touchData); + + if (_touchDataEventHandler != null) + { + return _touchDataEventHandler(this, e); + } + return false; + } + + + /** + * @brief Event arguments that passed via Hover signal + * + */ + public class HoverEventArgs : EventArgs + { + private Hover _hover; + /** + * @brief HoverEvent - contains touch points that represent the points + * that are currently being hovered or the points where a hover has stopped + * + */ + public Hover Hover + { + get + { + return _hover; + } + set + { + _hover = value; + } + } + } + + private EventHandlerWithReturnType _hoverEventHandler; + [UnmanagedFunctionPointer(CallingConvention.StdCall)] + private delegate bool HoverEventCallbackType(IntPtr view, IntPtr hoverEvent); + private HoverEventCallbackType _hoverEventCallback; + + /** + * @brief Event for Hovered signal which can be used to subscribe/unsubscribe the event handler + * provided by the user. Hovered signal is emitted when hover input is received. + */ + public event EventHandlerWithReturnType Hovered + { + add + { + if (_hoverEventHandler == null) + { + _hoverEventCallback = OnHoverEvent; + this.HoveredSignal().Connect(_hoverEventCallback); + } + + _hoverEventHandler += value; + } + + remove + { + if (_hoverEventHandler != null) + { + this.HoveredSignal().Disconnect(_hoverEventCallback); + } + + _hoverEventHandler -= value; + } + } + + // Callback for View Hover signal + private bool OnHoverEvent(IntPtr view, IntPtr hoverEvent) + { + HoverEventArgs e = new HoverEventArgs(); + + e.Hover = Tizen.NUI.Hover.GetHoverFromPtr(hoverEvent); + + if (_hoverEventHandler != null) + { + return _hoverEventHandler(this, e); + } + return false; + } + + + /** + * @brief Event arguments that passed via Wheel signal + * + */ + public class WheelEventArgs : EventArgs + { + private Wheel _wheel; + /** + * @brief WheelEvent - store a wheel rolling type : MOUSE_WHEEL or CUSTOM_WHEEL + * + */ + public Wheel Wheel + { + get + { + return _wheel; + } + set + { + _wheel = value; + } + } + } + + private EventHandlerWithReturnType _wheelEventHandler; + [UnmanagedFunctionPointer(CallingConvention.StdCall)] + private delegate bool WheelEventCallbackType(IntPtr view, IntPtr wheelEvent); + private WheelEventCallbackType _wheelEventCallback; + + /** + * @brief Event for WheelMoved signal which can be used to subscribe/unsubscribe the event handler + * provided by the user. WheelMoved signal is emitted when wheel event is received. + */ + public event EventHandlerWithReturnType WheelMoved + { + add + { + if (_wheelEventHandler == null) + { + _wheelEventCallback = OnWheelEvent; + this.WheelEventSignal().Connect(_wheelEventCallback); + } + + _wheelEventHandler += value; + } + + remove + { + if (_wheelEventHandler != null) + { + this.WheelEventSignal().Disconnect(_wheelEventCallback); + } + + _wheelEventHandler -= value; + } + } + + // Callback for View Wheel signal + private bool OnWheelEvent(IntPtr view, IntPtr wheelEvent) + { + WheelEventArgs e = new WheelEventArgs(); + + e.Wheel = Tizen.NUI.Wheel.GetWheelFromPtr(wheelEvent); + + if (_wheelEventHandler != null) + { + return _wheelEventHandler(this, e); + } + return false; + } + + + private EventHandler _onStageEventHandler; + [UnmanagedFunctionPointer(CallingConvention.StdCall)] + private delegate void OnStageEventCallbackType(IntPtr control); + private OnStageEventCallbackType _onStageEventCallback; + + /** + * @brief Event for OnStage signal which can be used to subscribe/unsubscribe the event handler + * OnStage signal is emitted after the view has been connected to the stage. + */ + public event EventHandler OnStageEvent + { + add + { + if (_onStageEventHandler == null) + { + _onStageEventCallback = OnStage; + this.OnStageSignal().Connect(_onStageEventCallback); + } + + _onStageEventHandler += value; + } + + remove + { + if (_onStageEventHandler != null) + { + this.OnStageSignal().Disconnect(_onStageEventCallback); + } + + _onStageEventHandler -= value; + } + } + + // Callback for View OnStage signal + private void OnStage(IntPtr data) + { + if (_onStageEventHandler != null) + { + _onStageEventHandler(this, null); + } + } + + + private EventHandler _offStageEventHandler; + [UnmanagedFunctionPointer(CallingConvention.StdCall)] + private delegate void OffStageEventCallbackType(IntPtr control); + private OffStageEventCallbackType _offStageEventCallback; + + /** + * @brief Event for OffStage signal which can be used to subscribe/unsubscribe the event handler + * OffStage signal is emitted after the view has been disconnected from the stage. + */ + public event EventHandler OffStageEvent + { + add + { + if (_offStageEventHandler == null) + { + _offStageEventCallback = OffStage; + this.OnStageSignal().Connect(_offStageEventCallback); + } + + _offStageEventHandler += value; + } + + remove + { + if (_offStageEventHandler != null) + { + this.OnStageSignal().Disconnect(_offStageEventCallback); + } + _offStageEventHandler -= value; + } + } + + // Callback for View OffStage signal + private void OffStage(IntPtr data) + { + if (_offStageEventHandler != null) + { + _offStageEventHandler(this, null); + } + } + + public static View GetViewFromPtr(global::System.IntPtr cPtr) + { + View ret = new View(cPtr, false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal IntPtr GetPtrfromView() + { + return (IntPtr)swigCPtr; + } + + public Tizen.NUI.PropertyMap Tooltip + { + get + { + Tizen.NUI.PropertyMap temp = new Tizen.NUI.PropertyMap(); + GetProperty(View.Property.TOOLTIP).Get(temp); + return temp; + } + set + { + SetProperty(View.Property.TOOLTIP, new Tizen.NUI.PropertyValue(value)); + } + } + + public string TooltipText + { + set + { + SetProperty(View.Property.TOOLTIP, new Tizen.NUI.PropertyValue(value)); + } + } + + internal class Property : global::System.IDisposable + { + private global::System.Runtime.InteropServices.HandleRef swigCPtr; + protected bool swigCMemOwn; + + internal Property(global::System.IntPtr cPtr, bool cMemoryOwn) + { + swigCMemOwn = cMemoryOwn; + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); + } + + internal static global::System.Runtime.InteropServices.HandleRef getCPtr(Property obj) + { + return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; + } + + ~Property() + { + Dispose(); + } + + public virtual void Dispose() + { + lock (this) + { + if (swigCPtr.Handle != global::System.IntPtr.Zero) + { + if (swigCMemOwn) + { + swigCMemOwn = false; + NDalicPINVOKE.delete_View_Property(swigCPtr); + } + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); + } + global::System.GC.SuppressFinalize(this); + } + } + + internal static readonly int TOOLTIP = NDalicManualPINVOKE.View_Property_TOOLTIP_get(); + + internal Property() : this(NDalicPINVOKE.new_View_Property(), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + internal static readonly int STYLE_NAME = NDalicPINVOKE.View_Property_STYLE_NAME_get(); + internal static readonly int BACKGROUND_COLOR = NDalicPINVOKE.View_Property_BACKGROUND_COLOR_get(); + internal static readonly int BACKGROUND_IMAGE = NDalicPINVOKE.View_Property_BACKGROUND_IMAGE_get(); + internal static readonly int KEY_INPUT_FOCUS = NDalicPINVOKE.View_Property_KEY_INPUT_FOCUS_get(); + internal static readonly int BACKGROUND = NDalicPINVOKE.View_Property_BACKGROUND_get(); + + } + + + public enum FocusDirection + { + Left, + Right, + Up, + Down, + PageUp, + PageDown + } + + + public View() : this(NDalicPINVOKE.View_New(), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + + } + internal View(View uiControl) : this(NDalicPINVOKE.new_View__SWIG_1(View.getCPtr(uiControl)), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + internal View Assign(View handle) + { + View ret = new View(NDalicPINVOKE.View_Assign(swigCPtr, View.getCPtr(handle)), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public new static View DownCast(BaseHandle handle) + { + View ret = new View(NDalicPINVOKE.View_DownCast(BaseHandle.getCPtr(handle)), true); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public void SetKeyInputFocus() + { + NDalicPINVOKE.View_SetKeyInputFocus(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public bool HasKeyInputFocus() + { + bool ret = NDalicPINVOKE.View_HasKeyInputFocus(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public void ClearKeyInputFocus() + { + NDalicPINVOKE.View_ClearKeyInputFocus(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + internal PinchGestureDetector GetPinchGestureDetector() + { + PinchGestureDetector ret = new PinchGestureDetector(NDalicPINVOKE.View_GetPinchGestureDetector(swigCPtr), true); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal PanGestureDetector GetPanGestureDetector() + { + PanGestureDetector ret = new PanGestureDetector(NDalicPINVOKE.View_GetPanGestureDetector(swigCPtr), true); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal TapGestureDetector GetTapGestureDetector() + { + TapGestureDetector ret = new TapGestureDetector(NDalicPINVOKE.View_GetTapGestureDetector(swigCPtr), true); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal LongPressGestureDetector GetLongPressGestureDetector() + { + LongPressGestureDetector ret = new LongPressGestureDetector(NDalicPINVOKE.View_GetLongPressGestureDetector(swigCPtr), true); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal void SetStyleName(string styleName) + { + NDalicPINVOKE.View_SetStyleName(swigCPtr, styleName); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + internal string GetStyleName() + { + string ret = NDalicPINVOKE.View_GetStyleName(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal void SetBackgroundColor(Vector4 color) + { + NDalicPINVOKE.View_SetBackgroundColor(swigCPtr, Vector4.getCPtr(color)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + internal Vector4 GetBackgroundColor() + { + Vector4 ret = new Vector4(NDalicPINVOKE.View_GetBackgroundColor(swigCPtr), true); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal void SetBackgroundImage(Image image) + { + NDalicPINVOKE.View_SetBackgroundImage(swigCPtr, Image.getCPtr(image)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public void ClearBackground() + { + NDalicPINVOKE.View_ClearBackground(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + internal ControlKeySignal KeyEventSignal() + { + ControlKeySignal ret = new ControlKeySignal(NDalicPINVOKE.View_KeyEventSignal(swigCPtr), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal KeyInputFocusSignal KeyInputFocusGainedSignal() + { + KeyInputFocusSignal ret = new KeyInputFocusSignal(NDalicPINVOKE.View_KeyInputFocusGainedSignal(swigCPtr), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal KeyInputFocusSignal KeyInputFocusLostSignal() + { + KeyInputFocusSignal ret = new KeyInputFocusSignal(NDalicPINVOKE.View_KeyInputFocusLostSignal(swigCPtr), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal View(ViewImpl implementation) : this(NDalicPINVOKE.new_View__SWIG_2(ViewImpl.getCPtr(implementation)), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + internal enum PropertyRange + { + PROPERTY_START_INDEX = PropertyRanges.PROPERTY_REGISTRATION_START_INDEX, + CONTROL_PROPERTY_START_INDEX = PROPERTY_START_INDEX, + CONTROL_PROPERTY_END_INDEX = CONTROL_PROPERTY_START_INDEX + 1000 + } + + public string StyleName + { + get + { + string temp; + GetProperty(View.Property.STYLE_NAME).Get(out temp); + return temp; + } + set + { + SetProperty(View.Property.STYLE_NAME, new Tizen.NUI.PropertyValue(value)); + } + } + + public Color BackgroundColor + { + get + { + Color temp = new Color(0.0f, 0.0f, 0.0f, 0.0f); + GetProperty(View.Property.BACKGROUND_COLOR).Get(temp); + return temp; + } + set + { + SetProperty(View.Property.BACKGROUND_COLOR, new Tizen.NUI.PropertyValue(value)); + } + } + + public string BackgroundImage + { + get + { + string temp; + GetProperty(View.Property.BACKGROUND).Get(out temp); + return temp; + } + set + { + SetProperty(View.Property.BACKGROUND, new Tizen.NUI.PropertyValue(value)); + } + } + internal bool KeyInputFocus + { + get + { + bool temp = false; + GetProperty(View.Property.KEY_INPUT_FOCUS).Get(ref temp); + return temp; + } + set + { + SetProperty(View.Property.KEY_INPUT_FOCUS, new Tizen.NUI.PropertyValue(value)); + } + } + public Tizen.NUI.PropertyMap Background + { + get + { + Tizen.NUI.PropertyMap temp = new Tizen.NUI.PropertyMap(); + GetProperty(View.Property.BACKGROUND).Get(temp); + return temp; + } + set + { + SetProperty(View.Property.BACKGROUND, new Tizen.NUI.PropertyValue(value)); + } + } + + public Vector2 CellIndex + { + get + { + Vector2 temp = new Vector2(0.0f, 0.0f); + GetProperty(TableView.ChildProperty.CELL_INDEX).Get(temp); + return temp; + } + set + { + SetProperty(TableView.ChildProperty.CELL_INDEX, new Tizen.NUI.PropertyValue(value)); + } + } + public float RowSpan + { + get + { + float temp = 0.0f; + GetProperty(TableView.ChildProperty.ROW_SPAN).Get(ref temp); + return temp; + } + set + { + SetProperty(TableView.ChildProperty.ROW_SPAN, new Tizen.NUI.PropertyValue(value)); + } + } + public float ColumnSpan + { + get + { + float temp = 0.0f; + GetProperty(TableView.ChildProperty.COLUMN_SPAN).Get(ref temp); + return temp; + } + set + { + SetProperty(TableView.ChildProperty.COLUMN_SPAN, new Tizen.NUI.PropertyValue(value)); + } + } + public string CellHorizontalAlignment + { + get + { + string temp; + GetProperty(TableView.ChildProperty.CELL_HORIZONTAL_ALIGNMENT).Get(out temp); + return temp; + } + set + { + SetProperty(TableView.ChildProperty.CELL_HORIZONTAL_ALIGNMENT, new Tizen.NUI.PropertyValue(value)); + } + } + public string CellVerticalAlignment + { + get + { + string temp; + GetProperty(TableView.ChildProperty.CELL_VERTICAL_ALIGNMENT).Get(out temp); + return temp; + } + set + { + SetProperty(TableView.ChildProperty.CELL_VERTICAL_ALIGNMENT, new Tizen.NUI.PropertyValue(value)); + } + } + + public float Flex + { + get + { + float temp = 0.0f; + GetProperty(FlexContainer.ChildProperty.FLEX).Get(ref temp); + return temp; + } + set + { + SetProperty(FlexContainer.ChildProperty.FLEX, new Tizen.NUI.PropertyValue(value)); + } + } + public int AlignSelf + { + get + { + int temp = 0; + GetProperty(FlexContainer.ChildProperty.ALIGN_SELF).Get(ref temp); + return temp; + } + set + { + SetProperty(FlexContainer.ChildProperty.ALIGN_SELF, new Tizen.NUI.PropertyValue(value)); + } + } + public Vector4 FlexMargin + { + get + { + Vector4 temp = new Vector4(0.0f, 0.0f, 0.0f, 0.0f); + GetProperty(FlexContainer.ChildProperty.FLEX_MARGIN).Get(temp); + return temp; + } + set + { + SetProperty(FlexContainer.ChildProperty.FLEX_MARGIN, new Tizen.NUI.PropertyValue(value)); + } + } + + public bool Focusable + { + set + { + SetKeyboardFocusable(value); + } + get + { + return IsKeyboardFocusable(); + } + } + + } + +} diff --git a/Tizen.NUI/src/public/VisualBase.cs b/Tizen.NUI/src/public/VisualBase.cs old mode 100644 new mode 100755 index 16ce2a6..4327ace --- a/Tizen.NUI/src/public/VisualBase.cs +++ b/Tizen.NUI/src/public/VisualBase.cs @@ -1,111 +1,186 @@ -//------------------------------------------------------------------------------ -// -// -// This file was automatically generated by SWIG (http://www.swig.org). -// Version 3.0.9 -// -// Do not make changes to this file unless you know what you are doing--modify -// the SWIG interface file instead. -//------------------------------------------------------------------------------ - -namespace NUI { - -public class VisualBase : BaseHandle { - private global::System.Runtime.InteropServices.HandleRef swigCPtr; - - internal VisualBase(global::System.IntPtr cPtr, bool cMemoryOwn) : base(NDalicPINVOKE.VisualBase_SWIGUpcast(cPtr), cMemoryOwn) { - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); - } - - internal static global::System.Runtime.InteropServices.HandleRef getCPtr(VisualBase obj) { - return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; - } - - ~VisualBase() { - Dispose(); - } - - public override void Dispose() { - lock(this) { - if (swigCPtr.Handle != global::System.IntPtr.Zero) { - if (swigCMemOwn) { - swigCMemOwn = false; - NDalicPINVOKE.delete_VisualBase(swigCPtr); - } - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); - } - global::System.GC.SuppressFinalize(this); - base.Dispose(); - } - } - - public VisualBase() : this(NDalicPINVOKE.new_VisualBase__SWIG_0(), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public VisualBase(VisualBase handle) : this(NDalicPINVOKE.new_VisualBase__SWIG_1(VisualBase.getCPtr(handle)), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public VisualBase Assign(VisualBase handle) { - VisualBase ret = new VisualBase(NDalicPINVOKE.VisualBase_Assign(swigCPtr, VisualBase.getCPtr(handle)), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public void SetName(string name) { - NDalicPINVOKE.VisualBase_SetName(swigCPtr, name); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public string GetName() { - string ret = NDalicPINVOKE.VisualBase_GetName(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public void SetTransformAndSize(Property.Map transform, Vector2 controlSize) { - NDalicPINVOKE.VisualBase_SetTransformAndSize(swigCPtr, Property.Map.getCPtr(transform), Vector2.getCPtr(controlSize)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public float GetHeightForWidth(float width) { - float ret = NDalicPINVOKE.VisualBase_GetHeightForWidth(swigCPtr, width); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public float GetWidthForHeight(float height) { - float ret = NDalicPINVOKE.VisualBase_GetWidthForHeight(swigCPtr, height); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public void GetNaturalSize(Vector2 naturalSize) { - NDalicPINVOKE.VisualBase_GetNaturalSize(swigCPtr, Vector2.getCPtr(naturalSize)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public void SetDepthIndex(float index) { - NDalicPINVOKE.VisualBase_SetDepthIndex(swigCPtr, index); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public float GetDepthIndex() { - float ret = NDalicPINVOKE.VisualBase_GetDepthIndex(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public void CreatePropertyMap(Property.Map map) { - NDalicPINVOKE.VisualBase_CreatePropertyMap(swigCPtr, Property.Map.getCPtr(map)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public VisualBase(SWIGTYPE_p_Dali__Toolkit__Internal__Visual__Base impl) : this(NDalicPINVOKE.new_VisualBase__SWIG_2(SWIGTYPE_p_Dali__Toolkit__Internal__Visual__Base.getCPtr(impl)), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - -} - -} +// Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved +// PROPRIETARY/CONFIDENTIAL +// This software is the confidential and proprietary +// information of SAMSUNG ELECTRONICS ("Confidential Information"). You shall +// not disclose such Confidential Information and shall use it only in +// accordance with the terms of the license agreement you entered into with +// SAMSUNG ELECTRONICS. SAMSUNG make no representations or warranties about the +// suitability of the software, either express or implied, including but not +// limited to the implied warranties of merchantability, fitness for a +// particular purpose, or non-infringement. SAMSUNG shall not be liable for any +// damages suffered by licensee as a result of using, modifying or distributing +// this software or its derivatives. + +// Copyright (c) 2017 Samsung Electronics Co., Ltd. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// + +// This File has been auto-generated by SWIG and then modified using DALi Ruby Scripts +// Some have been manually changed + + +namespace Tizen.NUI +{ + + public class VisualBase : BaseHandle + { + + private global::System.Runtime.InteropServices.HandleRef swigCPtr; + + internal VisualBase(global::System.IntPtr cPtr, bool cMemoryOwn) : base(NDalicPINVOKE.VisualBase_SWIGUpcast(cPtr), cMemoryOwn) + { + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); + } + + internal static global::System.Runtime.InteropServices.HandleRef getCPtr(VisualBase obj) + { + return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; + } + + ~VisualBase() + { + Dispose(); + } + + public override void Dispose() + { + lock (this) + { + if (swigCPtr.Handle != global::System.IntPtr.Zero) + { + if (swigCMemOwn) + { + swigCMemOwn = false; + NDalicPINVOKE.delete_VisualBase(swigCPtr); + } + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); + } + global::System.GC.SuppressFinalize(this); + base.Dispose(); + } + } + + public VisualBase() : this(NDalicPINVOKE.new_VisualBase__SWIG_0(), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + internal VisualBase(VisualBase handle) : this(NDalicPINVOKE.new_VisualBase__SWIG_1(VisualBase.getCPtr(handle)), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + internal VisualBase Assign(VisualBase handle) + { + VisualBase ret = new VisualBase(NDalicPINVOKE.VisualBase_Assign(swigCPtr, VisualBase.getCPtr(handle)), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public string Name + { + set + { + SetName(value); + } + get + { + return GetName(); + } + } + + internal void SetName(string name) + { + NDalicPINVOKE.VisualBase_SetName(swigCPtr, name); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + internal string GetName() + { + string ret = NDalicPINVOKE.VisualBase_GetName(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public void SetTransformAndSize(PropertyMap transform, Vector2 controlSize) + { + NDalicPINVOKE.VisualBase_SetTransformAndSize(swigCPtr, PropertyMap.getCPtr(transform), Vector2.getCPtr(controlSize)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public float GetHeightForWidth(float width) + { + float ret = NDalicPINVOKE.VisualBase_GetHeightForWidth(swigCPtr, width); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public float GetWidthForHeight(float height) + { + float ret = NDalicPINVOKE.VisualBase_GetWidthForHeight(swigCPtr, height); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public void GetNaturalSize(Size2D naturalSize) + { + NDalicPINVOKE.VisualBase_GetNaturalSize(swigCPtr, Size2D.getCPtr(naturalSize)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public float DepthIndex + { + set + { + SetDepthIndex(value); + } + get + { + return GetDepthIndex(); + } + } + internal void SetDepthIndex(float index) + { + NDalicPINVOKE.VisualBase_SetDepthIndex(swigCPtr, index); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + internal float GetDepthIndex() + { + float ret = NDalicPINVOKE.VisualBase_GetDepthIndex(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public PropertyMap Creation + { + set + { + CreatePropertyMap(value); + } + } + internal void CreatePropertyMap(PropertyMap map) + { + NDalicPINVOKE.VisualBase_CreatePropertyMap(swigCPtr, PropertyMap.getCPtr(map)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + internal VisualBase(SWIGTYPE_p_Dali__Toolkit__Internal__Visual__Base impl) : this(NDalicPINVOKE.new_VisualBase__SWIG_2(SWIGTYPE_p_Dali__Toolkit__Internal__Visual__Base.getCPtr(impl)), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + } + +} diff --git a/Tizen.NUI/src/public/VisualFactory.cs b/Tizen.NUI/src/public/VisualFactory.cs old mode 100644 new mode 100755 index c0e26b7..d73402c --- a/Tizen.NUI/src/public/VisualFactory.cs +++ b/Tizen.NUI/src/public/VisualFactory.cs @@ -1,88 +1,136 @@ -//------------------------------------------------------------------------------ -// -// -// This file was automatically generated by SWIG (http://www.swig.org). -// Version 3.0.9 -// -// Do not make changes to this file unless you know what you are doing--modify -// the SWIG interface file instead. -//------------------------------------------------------------------------------ - -namespace NUI { - -public class VisualFactory : BaseHandle { - private global::System.Runtime.InteropServices.HandleRef swigCPtr; - - internal VisualFactory(global::System.IntPtr cPtr, bool cMemoryOwn) : base(NDalicPINVOKE.VisualFactory_SWIGUpcast(cPtr), cMemoryOwn) { - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); - } - - internal static global::System.Runtime.InteropServices.HandleRef getCPtr(VisualFactory obj) { - return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; - } - - ~VisualFactory() { - DisposeQueue.Instance.Add(this); - } - - public override void Dispose() { - if (!Stage.IsInstalled()) { - DisposeQueue.Instance.Add(this); - return; - } - - lock(this) { - if (swigCPtr.Handle != global::System.IntPtr.Zero) { - if (swigCMemOwn) { - swigCMemOwn = false; - NDalicPINVOKE.delete_VisualFactory(swigCPtr); - } - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); - } - global::System.GC.SuppressFinalize(this); - base.Dispose(); - } - } - - - public static VisualFactory Get() { - VisualFactory ret = new VisualFactory(NDalicPINVOKE.VisualFactory_Get(), true); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public VisualFactory() : this(NDalicPINVOKE.new_VisualFactory__SWIG_0(), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public VisualFactory(VisualFactory handle) : this(NDalicPINVOKE.new_VisualFactory__SWIG_1(VisualFactory.getCPtr(handle)), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public VisualFactory Assign(VisualFactory handle) { - VisualFactory ret = new VisualFactory(NDalicPINVOKE.VisualFactory_Assign(swigCPtr, VisualFactory.getCPtr(handle)), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public VisualBase CreateVisual(Property.Map propertyMap) { - VisualBase ret = new VisualBase(NDalicPINVOKE.VisualFactory_CreateVisual__SWIG_0(swigCPtr, Property.Map.getCPtr(propertyMap)), true); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public VisualBase CreateVisual(Image image) { - VisualBase ret = new VisualBase(NDalicPINVOKE.VisualFactory_CreateVisual__SWIG_1(swigCPtr, Image.getCPtr(image)), true); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public VisualBase CreateVisual(string url, Uint16Pair size) { - VisualBase ret = new VisualBase(NDalicPINVOKE.VisualFactory_CreateVisual__SWIG_2(swigCPtr, url, Uint16Pair.getCPtr(size)), true); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - -} - -} +// Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved +// PROPRIETARY/CONFIDENTIAL +// This software is the confidential and proprietary +// information of SAMSUNG ELECTRONICS ("Confidential Information"). You shall +// not disclose such Confidential Information and shall use it only in +// accordance with the terms of the license agreement you entered into with +// SAMSUNG ELECTRONICS. SAMSUNG make no representations or warranties about the +// suitability of the software, either express or implied, including but not +// limited to the implied warranties of merchantability, fitness for a +// particular purpose, or non-infringement. SAMSUNG shall not be liable for any +// damages suffered by licensee as a result of using, modifying or distributing +// this software or its derivatives. + +// Copyright (c) 2017 Samsung Electronics Co., Ltd. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// + +// This File has been auto-generated by SWIG and then modified using DALi Ruby Scripts +// Some have been manually changed + + +namespace Tizen.NUI +{ + + public class VisualFactory : BaseHandle + { + private global::System.Runtime.InteropServices.HandleRef swigCPtr; + + internal VisualFactory(global::System.IntPtr cPtr, bool cMemoryOwn) : base(NDalicPINVOKE.VisualFactory_SWIGUpcast(cPtr), cMemoryOwn) + { + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); + } + + internal static global::System.Runtime.InteropServices.HandleRef getCPtr(VisualFactory obj) + { + return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; + } + + ~VisualFactory() + { + DisposeQueue.Instance.Add(this); + } + + public override void Dispose() + { + if (!Stage.IsInstalled()) + { + DisposeQueue.Instance.Add(this); + return; + } + + lock (this) + { + if (swigCPtr.Handle != global::System.IntPtr.Zero) + { + if (swigCMemOwn) + { + swigCMemOwn = false; + NDalicPINVOKE.delete_VisualFactory(swigCPtr); + } + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); + } + global::System.GC.SuppressFinalize(this); + base.Dispose(); + } + } + + + internal static VisualFactory Get() + { + VisualFactory ret = new VisualFactory(NDalicPINVOKE.VisualFactory_Get(), true); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal VisualFactory() : this(NDalicPINVOKE.new_VisualFactory__SWIG_0(), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + internal VisualFactory(VisualFactory handle) : this(NDalicPINVOKE.new_VisualFactory__SWIG_1(VisualFactory.getCPtr(handle)), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + internal VisualFactory Assign(VisualFactory handle) + { + VisualFactory ret = new VisualFactory(NDalicPINVOKE.VisualFactory_Assign(swigCPtr, VisualFactory.getCPtr(handle)), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public VisualBase CreateVisual(PropertyMap propertyMap) + { + VisualBase ret = new VisualBase(NDalicPINVOKE.VisualFactory_CreateVisual__SWIG_0(swigCPtr, PropertyMap.getCPtr(propertyMap)), true); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal VisualBase CreateVisual(Image image) + { + VisualBase ret = new VisualBase(NDalicPINVOKE.VisualFactory_CreateVisual__SWIG_1(swigCPtr, Image.getCPtr(image)), true); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal VisualBase CreateVisual(string url, Uint16Pair size) + { + VisualBase ret = new VisualBase(NDalicPINVOKE.VisualFactory_CreateVisual__SWIG_2(swigCPtr, url, Uint16Pair.getCPtr(size)), true); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + private static readonly VisualFactory instance = VisualFactory.Get(); + + public static VisualFactory Instance + { + get + { + return instance; + } + } + + } + +} diff --git a/Tizen.NUI/src/public/Wheel.cs b/Tizen.NUI/src/public/Wheel.cs new file mode 100755 index 0000000..6c441cd --- /dev/null +++ b/Tizen.NUI/src/public/Wheel.cs @@ -0,0 +1,266 @@ +// Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved +// PROPRIETARY/CONFIDENTIAL +// This software is the confidential and proprietary +// information of SAMSUNG ELECTRONICS ("Confidential Information"). You shall +// not disclose such Confidential Information and shall use it only in +// accordance with the terms of the license agreement you entered into with +// SAMSUNG ELECTRONICS. SAMSUNG make no representations or warranties about the +// suitability of the software, either express or implied, including but not +// limited to the implied warranties of merchantability, fitness for a +// particular purpose, or non-infringement. SAMSUNG shall not be liable for any +// damages suffered by licensee as a result of using, modifying or distributing +// this software or its derivatives. + +// Copyright (c) 2017 Samsung Electronics Co., Ltd. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// + +// This File has been auto-generated by SWIG and then modified using DALi Ruby Scripts +// Some have been manually changed + + +namespace Tizen.NUI +{ + + public class Wheel : global::System.IDisposable + { + private global::System.Runtime.InteropServices.HandleRef swigCPtr; + protected bool swigCMemOwn; + + internal Wheel(global::System.IntPtr cPtr, bool cMemoryOwn) + { + swigCMemOwn = cMemoryOwn; + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); + } + + internal static global::System.Runtime.InteropServices.HandleRef getCPtr(Wheel obj) + { + return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; + } + + ~Wheel() + { + DisposeQueue.Instance.Add(this); + } + + public virtual void Dispose() + { + if (!Stage.IsInstalled()) + { + DisposeQueue.Instance.Add(this); + return; + } + + lock (this) + { + if (swigCPtr.Handle != global::System.IntPtr.Zero) + { + if (swigCMemOwn) + { + swigCMemOwn = false; + NDalicPINVOKE.delete_Wheel(swigCPtr); + } + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); + } + global::System.GC.SuppressFinalize(this); + } + } + + + internal static Wheel GetWheelFromPtr(global::System.IntPtr cPtr) + { + Wheel ret = new Wheel(cPtr, false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public Wheel.WheelType Type + { + get + { + return type; + } + } + + public int Direction + { + get + { + return direction; + } + } + + public uint Modifiers + { + get + { + return modifiers; + } + } + + public Vector2 Point + { + get + { + return point; + } + } + + public int Z + { + get + { + return z; + } + } + + public uint TimeStamp + { + get + { + return timeStamp; + } + } + + public Wheel() : this(NDalicPINVOKE.new_Wheel__SWIG_0(), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public Wheel(Wheel.WheelType type, int direction, uint modifiers, Vector2 point, int z, uint timeStamp) : this(NDalicPINVOKE.new_Wheel__SWIG_1((int)type, direction, modifiers, Vector2.getCPtr(point), z, timeStamp), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public bool IsShiftModifier() + { + bool ret = NDalicPINVOKE.Wheel_IsShiftModifier(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public bool IsCtrlModifier() + { + bool ret = NDalicPINVOKE.Wheel_IsCtrlModifier(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public bool IsAltModifier() + { + bool ret = NDalicPINVOKE.Wheel_IsAltModifier(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + private Wheel.WheelType type + { + set + { + NDalicPINVOKE.Wheel_type_set(swigCPtr, (int)value); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + get + { + Wheel.WheelType ret = (Wheel.WheelType)NDalicPINVOKE.Wheel_type_get(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + } + + private int direction + { + set + { + NDalicPINVOKE.Wheel_direction_set(swigCPtr, value); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + get + { + int ret = NDalicPINVOKE.Wheel_direction_get(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + } + + private uint modifiers + { + set + { + NDalicPINVOKE.Wheel_modifiers_set(swigCPtr, value); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + get + { + uint ret = NDalicPINVOKE.Wheel_modifiers_get(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + } + + private Vector2 point + { + set + { + NDalicPINVOKE.Wheel_point_set(swigCPtr, Vector2.getCPtr(value)); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + get + { + global::System.IntPtr cPtr = NDalicPINVOKE.Wheel_point_get(swigCPtr); + Vector2 ret = (cPtr == global::System.IntPtr.Zero) ? null : new Vector2(cPtr, false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + } + + private int z + { + set + { + NDalicPINVOKE.Wheel_z_set(swigCPtr, value); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + get + { + int ret = NDalicPINVOKE.Wheel_z_get(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + } + + private uint timeStamp + { + set + { + NDalicPINVOKE.Wheel_timeStamp_set(swigCPtr, value); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + get + { + uint ret = NDalicPINVOKE.Wheel_timeStamp_get(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + } + + public enum WheelType + { + MouseWheel, + CustomWheel + } + + } + +} diff --git a/Tizen.NUI/src/public/WheelEvent.cs b/Tizen.NUI/src/public/WheelEvent.cs deleted file mode 100644 index 979c6a2..0000000 --- a/Tizen.NUI/src/public/WheelEvent.cs +++ /dev/null @@ -1,161 +0,0 @@ -//------------------------------------------------------------------------------ -// -// -// This file was automatically generated by SWIG (http://www.swig.org). -// Version 3.0.9 -// -// Do not make changes to this file unless you know what you are doing--modify -// the SWIG interface file instead. -//------------------------------------------------------------------------------ - -namespace NUI { - -public class WheelEvent : global::System.IDisposable { - private global::System.Runtime.InteropServices.HandleRef swigCPtr; - protected bool swigCMemOwn; - - internal WheelEvent(global::System.IntPtr cPtr, bool cMemoryOwn) { - swigCMemOwn = cMemoryOwn; - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); - } - - internal static global::System.Runtime.InteropServices.HandleRef getCPtr(WheelEvent obj) { - return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; - } - - ~WheelEvent() { - DisposeQueue.Instance.Add(this); - } - - public virtual void Dispose() { - if (!Stage.IsInstalled()) { - DisposeQueue.Instance.Add(this); - return; - } - - lock(this) { - if (swigCPtr.Handle != global::System.IntPtr.Zero) { - if (swigCMemOwn) { - swigCMemOwn = false; - NDalicPINVOKE.delete_WheelEvent(swigCPtr); - } - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); - } - global::System.GC.SuppressFinalize(this); - } - } - - - public static WheelEvent GetWheelEventFromPtr(global::System.IntPtr cPtr) { - WheelEvent ret = new WheelEvent(cPtr, false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public WheelEvent() : this(NDalicPINVOKE.new_WheelEvent__SWIG_0(), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public WheelEvent(WheelEvent.Type type, int direction, uint modifiers, Vector2 point, int z, uint timeStamp) : this(NDalicPINVOKE.new_WheelEvent__SWIG_1((int)type, direction, modifiers, Vector2.getCPtr(point), z, timeStamp), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public bool IsShiftModifier() { - bool ret = NDalicPINVOKE.WheelEvent_IsShiftModifier(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public bool IsCtrlModifier() { - bool ret = NDalicPINVOKE.WheelEvent_IsCtrlModifier(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public bool IsAltModifier() { - bool ret = NDalicPINVOKE.WheelEvent_IsAltModifier(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public WheelEvent.Type type { - set { - NDalicPINVOKE.WheelEvent_type_set(swigCPtr, (int)value); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - get { - WheelEvent.Type ret = (WheelEvent.Type)NDalicPINVOKE.WheelEvent_type_get(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - } - - public int direction { - set { - NDalicPINVOKE.WheelEvent_direction_set(swigCPtr, value); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - get { - int ret = NDalicPINVOKE.WheelEvent_direction_get(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - } - - public uint modifiers { - set { - NDalicPINVOKE.WheelEvent_modifiers_set(swigCPtr, value); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - get { - uint ret = NDalicPINVOKE.WheelEvent_modifiers_get(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - } - - public Vector2 point { - set { - NDalicPINVOKE.WheelEvent_point_set(swigCPtr, Vector2.getCPtr(value)); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - get { - global::System.IntPtr cPtr = NDalicPINVOKE.WheelEvent_point_get(swigCPtr); - Vector2 ret = (cPtr == global::System.IntPtr.Zero) ? null : new Vector2(cPtr, false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - } - - public int z { - set { - NDalicPINVOKE.WheelEvent_z_set(swigCPtr, value); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - get { - int ret = NDalicPINVOKE.WheelEvent_z_get(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - } - - public uint timeStamp { - set { - NDalicPINVOKE.WheelEvent_timeStamp_set(swigCPtr, value); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - get { - uint ret = NDalicPINVOKE.WheelEvent_timeStamp_get(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - } - - public enum Type { - MOUSE_WHEEL, - CUSTOM_WHEEL - } - -} - -} diff --git a/Tizen.NUI/src/public/Window.cs b/Tizen.NUI/src/public/Window.cs old mode 100644 new mode 100755 index f359909..0a96ee4 --- a/Tizen.NUI/src/public/Window.cs +++ b/Tizen.NUI/src/public/Window.cs @@ -1,185 +1,224 @@ -/** Copyright (c) 2017 Samsung Electronics Co., Ltd. -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ -// This File has been auto-generated by SWIG and then modified using DALi Ruby Scripts -//------------------------------------------------------------------------------ -// -// -// This file was automatically generated by SWIG (http://www.swig.org). -// Version 3.0.9 -// -// Do not make changes to this file unless you know what you are doing--modify -// the SWIG interface file instead. -//------------------------------------------------------------------------------ - -namespace NUI { - -public class Window : BaseHandle { - private global::System.Runtime.InteropServices.HandleRef swigCPtr; - - internal Window(global::System.IntPtr cPtr, bool cMemoryOwn) : base(NDalicPINVOKE.Window_SWIGUpcast(cPtr), cMemoryOwn) { - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); - } - - internal static global::System.Runtime.InteropServices.HandleRef getCPtr(Window obj) { - return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; - } - - ~Window() { - DisposeQueue.Instance.Add(this); - } - - public override void Dispose() { - if (!Stage.IsInstalled()) { - DisposeQueue.Instance.Add(this); - return; - } - - lock(this) { - if (swigCPtr.Handle != global::System.IntPtr.Zero) { - if (swigCMemOwn) { - swigCMemOwn = false; - NDalicPINVOKE.delete_Window(swigCPtr); - } - swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); - } - global::System.GC.SuppressFinalize(this); - base.Dispose(); - } - } - - - public Window (RectInteger windowPosition, string name, bool isTransparent) : this (NDalicPINVOKE.Window_New__SWIG_0(RectInteger.getCPtr(windowPosition), name, isTransparent), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - - } - public Window (RectInteger windowPosition, string name) : this (NDalicPINVOKE.Window_New__SWIG_1(RectInteger.getCPtr(windowPosition), name), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - - } - public Window (RectInteger windowPosition, string name, string className, bool isTransparent) : this (NDalicPINVOKE.Window_New__SWIG_2(RectInteger.getCPtr(windowPosition), name, className, isTransparent), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - - } - public Window (RectInteger windowPosition, string name, string className) : this (NDalicPINVOKE.Window_New__SWIG_3(RectInteger.getCPtr(windowPosition), name, className), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - - } - public Window(Window handle) : this(NDalicPINVOKE.new_Window__SWIG_1(Window.getCPtr(handle)), true) { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public Window Assign(Window rhs) { - Window ret = new Window(NDalicPINVOKE.Window_Assign(swigCPtr, Window.getCPtr(rhs)), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public void ShowIndicator(Window.IndicatorVisibleMode visibleMode) { - NDalicPINVOKE.Window_ShowIndicator(swigCPtr, (int)visibleMode); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public void SetIndicatorBgOpacity(Window.IndicatorBgOpacity opacity) { - NDalicPINVOKE.Window_SetIndicatorBgOpacity(swigCPtr, (int)opacity); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public void RotateIndicator(Window.WindowOrientation orientation) { - NDalicPINVOKE.Window_RotateIndicator(swigCPtr, (int)orientation); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public void SetClass(string name, string klass) { - NDalicPINVOKE.Window_SetClass(swigCPtr, name, klass); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public void Raise() { - NDalicPINVOKE.Window_Raise(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public void Lower() { - NDalicPINVOKE.Window_Lower(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public void Activate() { - NDalicPINVOKE.Window_Activate(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public void AddAvailableOrientation(Window.WindowOrientation orientation) { - NDalicPINVOKE.Window_AddAvailableOrientation(swigCPtr, (int)orientation); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public void RemoveAvailableOrientation(Window.WindowOrientation orientation) { - NDalicPINVOKE.Window_RemoveAvailableOrientation(swigCPtr, (int)orientation); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public void SetPreferredOrientation(Window.WindowOrientation orientation) { - NDalicPINVOKE.Window_SetPreferredOrientation(swigCPtr, (int)orientation); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - public Window.WindowOrientation GetPreferredOrientation() { - Window.WindowOrientation ret = (Window.WindowOrientation)NDalicPINVOKE.Window_GetPreferredOrientation(swigCPtr); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public DragAndDropDetector GetDragAndDropDetector() { - DragAndDropDetector ret = new DragAndDropDetector(NDalicPINVOKE.Window_GetDragAndDropDetector(swigCPtr), true); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public Any GetNativeHandle() { - Any ret = new Any(NDalicPINVOKE.Window_GetNativeHandle(swigCPtr), true); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public SWIGTYPE_p_Dali__SignalT_void_fboolF_t IndicatorVisibilityChangedSignal() { - SWIGTYPE_p_Dali__SignalT_void_fboolF_t ret = new SWIGTYPE_p_Dali__SignalT_void_fboolF_t(NDalicPINVOKE.Window_IndicatorVisibilityChangedSignal(swigCPtr), false); - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - return ret; - } - - public enum WindowOrientation { - PORTRAIT = 0, - LANDSCAPE = 90, - PORTRAIT_INVERSE = 180, - LANDSCAPE_INVERSE = 270 - } - - public enum IndicatorBgOpacity { - OPAQUE = 100, - TRANSLUCENT = 50, - TRANSPARENT = 0 - } - - public enum IndicatorVisibleMode { - INVISIBLE = 0, - VISIBLE = 1, - AUTO = 2 - } - -} - -} +// Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved +// PROPRIETARY/CONFIDENTIAL +// This software is the confidential and proprietary +// information of SAMSUNG ELECTRONICS ("Confidential Information"). You shall +// not disclose such Confidential Information and shall use it only in +// accordance with the terms of the license agreement you entered into with +// SAMSUNG ELECTRONICS. SAMSUNG make no representations or warranties about the +// suitability of the software, either express or implied, including but not +// limited to the implied warranties of merchantability, fitness for a +// particular purpose, or non-infringement. SAMSUNG shall not be liable for any +// damages suffered by licensee as a result of using, modifying or distributing +// this software or its derivatives. + +// Copyright (c) 2017 Samsung Electronics Co., Ltd. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// + +// This File has been auto-generated by SWIG and then modified using DALi Ruby Scripts +// Some have been manually changed + + +namespace Tizen.NUI +{ + + public class Window : BaseHandle + { + private global::System.Runtime.InteropServices.HandleRef swigCPtr; + + internal Window(global::System.IntPtr cPtr, bool cMemoryOwn) : base(NDalicPINVOKE.Window_SWIGUpcast(cPtr), cMemoryOwn) + { + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr); + } + + internal static global::System.Runtime.InteropServices.HandleRef getCPtr(Window obj) + { + return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; + } + + ~Window() + { + DisposeQueue.Instance.Add(this); + } + + public override void Dispose() + { + if (!Stage.IsInstalled()) + { + DisposeQueue.Instance.Add(this); + return; + } + + lock (this) + { + if (swigCPtr.Handle != global::System.IntPtr.Zero) + { + if (swigCMemOwn) + { + swigCMemOwn = false; + NDalicPINVOKE.delete_Window(swigCPtr); + } + swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); + } + global::System.GC.SuppressFinalize(this); + base.Dispose(); + } + } + + + public Window(RectInteger windowPosition, string name, bool isTransparent) : this(NDalicPINVOKE.Window_New__SWIG_0(RectInteger.getCPtr(windowPosition), name, isTransparent), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + + } + public Window(RectInteger windowPosition, string name) : this(NDalicPINVOKE.Window_New__SWIG_1(RectInteger.getCPtr(windowPosition), name), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + + } + public Window(RectInteger windowPosition, string name, string className, bool isTransparent) : this(NDalicPINVOKE.Window_New__SWIG_2(RectInteger.getCPtr(windowPosition), name, className, isTransparent), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + + } + public Window(RectInteger windowPosition, string name, string className) : this(NDalicPINVOKE.Window_New__SWIG_3(RectInteger.getCPtr(windowPosition), name, className), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + + } + internal Window(Window handle) : this(NDalicPINVOKE.new_Window__SWIG_1(Window.getCPtr(handle)), true) + { + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + internal Window Assign(Window rhs) + { + Window ret = new Window(NDalicPINVOKE.Window_Assign(swigCPtr, Window.getCPtr(rhs)), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public void ShowIndicator(IndicatorVisibleMode visibleMode) + { + NDalicPINVOKE.Window_ShowIndicator(swigCPtr, (int)visibleMode); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public void SetIndicatorBgOpacity(IndicatorBgOpacity opacity) + { + NDalicPINVOKE.Window_SetIndicatorBgOpacity(swigCPtr, (int)opacity); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public void RotateIndicator(WindowOrientation orientation) + { + NDalicPINVOKE.Window_RotateIndicator(swigCPtr, (int)orientation); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + internal void SetClass(string name, string klass) + { + NDalicPINVOKE.Window_SetClass(swigCPtr, name, klass); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public void Raise() + { + NDalicPINVOKE.Window_Raise(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public void Lower() + { + NDalicPINVOKE.Window_Lower(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + public void Activate() + { + NDalicPINVOKE.Window_Activate(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + internal void AddAvailableOrientation(WindowOrientation orientation) + { + NDalicPINVOKE.Window_AddAvailableOrientation(swigCPtr, (int)orientation); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + internal void RemoveAvailableOrientation(WindowOrientation orientation) + { + NDalicPINVOKE.Window_RemoveAvailableOrientation(swigCPtr, (int)orientation); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + internal void SetPreferredOrientation(WindowOrientation orientation) + { + NDalicPINVOKE.Window_SetPreferredOrientation(swigCPtr, (int)orientation); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + } + + internal WindowOrientation GetPreferredOrientation() + { + Window.WindowOrientation ret = (Window.WindowOrientation)NDalicPINVOKE.Window_GetPreferredOrientation(swigCPtr); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal DragAndDropDetector GetDragAndDropDetector() + { + DragAndDropDetector ret = new DragAndDropDetector(NDalicPINVOKE.Window_GetDragAndDropDetector(swigCPtr), true); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal Any GetNativeHandle() + { + Any ret = new Any(NDalicPINVOKE.Window_GetNativeHandle(swigCPtr), true); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + internal SWIGTYPE_p_Dali__SignalT_void_fboolF_t IndicatorVisibilityChangedSignal() + { + SWIGTYPE_p_Dali__SignalT_void_fboolF_t ret = new SWIGTYPE_p_Dali__SignalT_void_fboolF_t(NDalicPINVOKE.Window_IndicatorVisibilityChangedSignal(swigCPtr), false); + if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); + return ret; + } + + public enum WindowOrientation + { + Portrait = 0, + Landscape = 90, + PortraitInverse = 180, + LandscapeInverse = 270 + } + + public enum IndicatorBgOpacity + { + Opaque = 100, + Translucent = 50, + Transparent = 0 + } + + public enum IndicatorVisibleMode + { + Invisible = 0, + Visible = 1, + Auto = 2 + } + + } + +} diff --git a/etc/SampleApplication/.vs/SampleApplication/v14/.suo b/etc/SampleApplication/.vs/SampleApplication/v14/.suo deleted file mode 100755 index eead81d..0000000 Binary files a/etc/SampleApplication/.vs/SampleApplication/v14/.suo and /dev/null differ diff --git a/etc/SampleApplication/NUISamples/NUISamples.Tizen/NUISamples.Tizen.project.json b/etc/SampleApplication/NUISamples/NUISamples.Tizen/NUISamples.Tizen.project.json deleted file mode 100755 index aef7402..0000000 --- a/etc/SampleApplication/NUISamples/NUISamples.Tizen/NUISamples.Tizen.project.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "buildOptions": { - "emitEntryPoint": true, - "debugType": "portable", - "platform": "AnyCPU", - "preserveCompilationContext": true - }, - "dependencies": { - "Microsoft.NETCore.App": { - "version": "1.0.0" - }, - "Tizen.Library": "1.0.0-pre1" - }, - "runtimes": { - "win": {}, - "linux": {} - }, - "frameworks": { - "netcoreapp1.0": { - "imports": [ - "portable-net45+wp80+win81+wpa81", - "netstandard1.6" - ] - } - } -} \ No newline at end of file diff --git a/etc/SampleApplication/NUISamples/NUISamples.Tizen/bin/Release/NUISamples.Tizen.tpk b/etc/SampleApplication/NUISamples/NUISamples.Tizen/bin/Release/NUISamples.Tizen.tpk deleted file mode 100755 index 2a5461a..0000000 Binary files a/etc/SampleApplication/NUISamples/NUISamples.Tizen/bin/Release/NUISamples.Tizen.tpk and /dev/null differ diff --git a/etc/SampleApplication/NUISamples/NUISamples.Tizen/examples/control-dashboard.cs b/etc/SampleApplication/NUISamples/NUISamples.Tizen/examples/control-dashboard.cs deleted file mode 100755 index 898acfc..0000000 --- a/etc/SampleApplication/NUISamples/NUISamples.Tizen/examples/control-dashboard.cs +++ /dev/null @@ -1,373 +0,0 @@ -/* - * Copyright (c) 2016 Samsung Electronics Co., Ltd. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - */ - -using System; -using System.Runtime.InteropServices; -using NUI; - -namespace MyCSharpExample -{ - class Example - { - // This is simple structure to contain Control name and implement state at once - // name : control name - // isImplemented : the state which the control is implemented in public or not - private struct Item - { - public String name; - public bool isImplemented; - - public Item(String name, bool isImplemented) - { - this.name = name; - this.isImplemented = isImplemented; - } - } - - private NUI.Application _application; - private TableView _contentContainer; - private Stage _stage; - private Popup _popup; - - // List of items - private Item[] mViewList = { - new Item("PushButton", true), new Item("DropDown", false), new Item("Toggle", false), - new Item("InputField", false), new Item("AnimateGif", false), new Item("Loading", false), - new Item("ProgressBar", false), new Item("CheckBox", false), new Item("RadioButton", true), - new Item("Tooltip", false), new Item("Popup", true), new Item("Toast", true), - new Item("ItemView", false), new Item("CheckBox", true) - }; - - public Example(NUI.Application application) - { - _application = application; - _application.Initialized += OnInitialize; - } - - public void OnInitialize(object source, EventArgs e) - { - Console.WriteLine("Customized Application Initialize event handler"); - _stage = Stage.GetCurrent(); - _stage.BackgroundColor = Color.White; - - // Top label - TextLabel topLabel = new TextLabel(); - topLabel.SetResizePolicy(ResizePolicyType.FILL_TO_PARENT, DimensionType.WIDTH); - topLabel.SetResizePolicy(ResizePolicyType.SIZE_RELATIVE_TO_PARENT, DimensionType.HEIGHT); - topLabel.AnchorPoint = NDalic.AnchorPointTopCenter; - topLabel.ParentOrigin = NDalic.ParentOriginTopCenter; - topLabel.SizeModeFactor = new Vector3( 0.0f, 0.1f, 0.0f ); - topLabel.BackgroundColor = new Color(43.0f / 255.0f, 145.0f / 255.0f, 175.0f / 255.0f, 1.0f); - topLabel.TextColor = NDalic.WHITE; - topLabel.Text = " DALi Views V.0121"; - topLabel.HorizontalAlignment = "BEGIN"; - topLabel.VerticalAlignment = "CENTER"; - topLabel.SetStyleName("TextLabelFontSize4"); - _stage.Add(topLabel); - - // Grid container to contain items. Use tableView because FlexContainer support focus navigation just two direction ( up/down or left/right ) - _contentContainer = new TableView(6, 5); - _contentContainer.SetResizePolicy(ResizePolicyType.FILL_TO_PARENT, DimensionType.WIDTH); - _contentContainer.SetResizePolicy(ResizePolicyType.SIZE_RELATIVE_TO_PARENT, DimensionType.HEIGHT); - _contentContainer.SizeModeFactor = new Vector3( 0.0f, 0.9f, 0.0f ); - _contentContainer.AnchorPoint = NDalic.AnchorPointBottomCenter; - _contentContainer.ParentOrigin = NDalic.ParentOriginBottomCenter; - _contentContainer.SetRelativeHeight(0, 0.07f); - _contentContainer.SetRelativeHeight(1, 0.26f); - _contentContainer.SetRelativeHeight(2, 0.07f); - _contentContainer.SetRelativeHeight(3, 0.26f); - _contentContainer.SetRelativeHeight(4, 0.07f); - _contentContainer.SetRelativeHeight(5, 0.26f); - _contentContainer.StateFocusEnable = true; - _stage.Add(_contentContainer); - - CreateContent(); - - FocusManager.Instance.PreFocusChange += OnPreFocusChange; - } - - // Callback for KeyboardFocusManager - private View OnPreFocusChange(object source, FocusManager.PreFocusChangeEventArgs e) - { - if (!e.Proposed && !e.Current) - { - e.Proposed = _contentContainer.GetChildViewAt(1); - } - return e.Proposed; - } - - private void CreateContent() - { - for (int i = 0; i < mViewList.Length; i++) - { - CreateItem(mViewList[i], i); - } - } - - private void CreateItem(Item item, int idx) - { - // Make label for item - TextLabel itemLabel = new TextLabel(" " + item.name); - itemLabel.Size = new Vector3(_stage.GetSize().Width * 0.2f, _stage.GetSize().Height * 0.05f, 0.0f); - itemLabel.HorizontalAlignment = "BEGIN"; - itemLabel.VerticalAlignment = "BOTTOM"; - //itemLabel.PointSize = 10.0f; - _contentContainer.AddChild(itemLabel, new TableView.CellPosition(((uint)idx / 5) * 2, (uint)idx % 5)); - - // If item is implemented in public, attach it on stage - if (item.isImplemented) - { - if (item.name.CompareTo("PushButton") == 0) - { - PushButton pushButton = new PushButton(); - pushButton.LabelText = "Push Button"; - pushButton.SetResizePolicy(ResizePolicyType.FILL_TO_PARENT, DimensionType.WIDTH); - pushButton.SetResizePolicy(ResizePolicyType.FILL_TO_PARENT, DimensionType.HEIGHT); - pushButton.UnselectedColor = new Vector4(1.0f,0.0f,0.0f,1.0f); - pushButton.SelectedColor = new Vector4(0.0f,1.0f,0.0f,1.0f); - pushButton.Clicked += (obj, e) => - { - Button sender = (Button)(obj); - sender.LabelText = "Click Me"; - sender.UnselectedColor = new Vector4(0.0f,0.0f,1.0f,1.0f); - return true; - }; - - _contentContainer.AddChild(pushButton, new TableView.CellPosition(((uint)idx / 5) * 2 + 1, (uint)idx % 5)); - } - if (item.name.CompareTo("DropDown") == 0) - { - - } - if (item.name.CompareTo("Toggle") == 0) - { - - } - if (item.name.CompareTo("InputField") == 0) - { - - } - if (item.name.CompareTo("AnimateGif") == 0) - { - - } - if (item.name.CompareTo("Loading") == 0) - { - - } - if (item.name.CompareTo("ProgressBar") == 0) - { - - } - if (item.name.CompareTo("ScrollBar") == 0) - { - - } - if (item.name.CompareTo("CheckBox") == 0) - { - CheckBoxButton checkBoxButton = new CheckBoxButton(); - checkBoxButton.LabelText = "Yes"; - - _contentContainer.AddChild(checkBoxButton, new TableView.CellPosition(((uint)idx / 5) * 2 + 1, (uint)idx % 5)); - } - if (item.name.CompareTo("RadioButton") == 0) - { - TableView tableView = new TableView(2, 1); - tableView.SetResizePolicy(ResizePolicyType.FILL_TO_PARENT, DimensionType.WIDTH); - tableView.SetResizePolicy(ResizePolicyType.FILL_TO_PARENT, DimensionType.HEIGHT); - - RadioButton rButton = new RadioButton(); - rButton.LabelText = "Yes"; - rButton.Selected = true; - tableView.AddChild(rButton, new TableView.CellPosition(0, 0)); - - rButton = new RadioButton(); - rButton.LabelText = "No"; - - tableView.AddChild(rButton, new TableView.CellPosition(1, 0)); - - _contentContainer.AddChild(tableView, new TableView.CellPosition(((uint)idx / 5) * 2 + 1, (uint)idx % 5)); - } - if (item.name.CompareTo("Tooltip") == 0) - { - - } - if (item.name.CompareTo("Popup") == 0) - { - PushButton button = new PushButton(); - button.LabelText = "Popup"; - button.ParentOrigin = NDalic.ParentOriginCenter; - button.AnchorPoint = NDalic.AnchorPointCenter; - //button.MaximumSize = new Vector2(90.0f,50.0f); - _popup = CreatePopup(); - _popup.SetTitle(CreateTitle("Popup")); - - TextLabel text = new TextLabel("This will erase the file permanently. Are you sure?"); - text.BackgroundColor = Color.White; - text.MultiLine = true; - text.SetResizePolicy(ResizePolicyType.FILL_TO_PARENT, DimensionType.WIDTH); - text.SetResizePolicy(ResizePolicyType.DIMENSION_DEPENDENCY, DimensionType.HEIGHT); - text.SetPadding(new RectFloat(10.0f, 10.0f, 20.0f, 0.0f)); - _popup.SetContent(text); - _popup.StateFocusEnable = true; - _popup.SetDisplayState(Popup.DisplayStateType.HIDDEN); - - button.Clicked += (obj, ee) => - { - _stage.Add(_popup); - _popup.SetDisplayState(Popup.DisplayStateType.SHOWN); - FocusManager.Instance.SetCurrentFocusView(View.DownCast((_popup.FindChildByName( "Footer" )).FindChildByName("OKButton"))); - return true; - }; - _contentContainer.AddChild(button, new TableView.CellPosition(((uint)idx / 5) * 2 + 1, (uint)idx % 5)); - } - if (item.name.CompareTo("Toast") == 0) - { - PushButton button = new PushButton(); - button.LabelText = "Toast"; - button.ParentOrigin = NDalic.ParentOriginCenter; - button.AnchorPoint = NDalic.AnchorPointCenter; - button.Clicked += (obj, ee) => - { - TypeInfo typeInfo = new TypeInfo(TypeRegistry.Get().GetTypeInfo( "PopupToast" )); - if( typeInfo ) - { - BaseHandle baseHandle = typeInfo.CreateInstance(); - if( baseHandle ) - { - Popup toast = Popup.DownCast( baseHandle ); - TextLabel text = new TextLabel("This is a Toast.\nIt will auto-hide itself"); - text.TextColor = Color.White; - text.MultiLine = true; - text.HorizontalAlignment = "center"; - toast.SetTitle( text); - _stage.Add(toast); - toast.SetDisplayState( Popup.DisplayStateType.SHOWN); - } - } - return true; - }; - _contentContainer.AddChild(button, new TableView.CellPosition(((uint)idx / 5) * 2 + 1, (uint)idx % 5)); - } - if (item.name.CompareTo("ItemView") == 0) - { - - } - } - else - { - ImageView notSupportView = new ImageView("/home/owner/apps_rw/NUISamples.Tizen/res/images/not_yet_sign.png"); - notSupportView.Size = new Vector3(_stage.GetSize().Width * 0.2f, _stage.GetSize().Height * 0.25f, 0.0f); - notSupportView.StateFocusEnable = true; - _contentContainer.AddChild(notSupportView, new TableView.CellPosition(((uint)idx / 5) * 2 + 1, (uint)idx % 5)); - } - } - Popup CreatePopup() - { - Popup confirmationPopup = new Popup(); - - Actor footer = new Actor(); - footer.SetName("Footer"); - footer.SetResizePolicy(ResizePolicyType.FILL_TO_PARENT, DimensionType.WIDTH); - footer.SetResizePolicy(ResizePolicyType.FIXED, DimensionType.HEIGHT); - footer.Size = new Size3D(new Size(0.0f, 80.0f)); - footer.ParentOrigin = NDalic.ParentOriginCenter; - footer.AnchorPoint = NDalic.AnchorPointCenter; - - PushButton okButton = CreateOKButton(); - okButton.ParentOrigin = NDalic.ParentOriginCenter; - okButton.AnchorPoint = NDalic.AnchorPointCenter; - okButton.SetResizePolicy(ResizePolicyType.SIZE_FIXED_OFFSET_FROM_PARENT, DimensionType.ALL_DIMENSIONS); - okButton.SizeModeFactor = new Vector3(-20.0f, -20.0f, 0.0f); - - PushButton cancelButton = CreateCancelButton(); - cancelButton.ParentOrigin = NDalic.ParentOriginCenter; - cancelButton.AnchorPoint = NDalic.AnchorPointCenter; - cancelButton.SetResizePolicy(ResizePolicyType.SIZE_FIXED_OFFSET_FROM_PARENT, DimensionType.ALL_DIMENSIONS); - cancelButton.SizeModeFactor = new Vector3(-20.0f, -20.0f, 0.0f); - - TableView controlLayout = new TableView(1, 2); - controlLayout.ParentOrigin = NDalic.ParentOriginCenter; - controlLayout.AnchorPoint = NDalic.AnchorPointCenter; - controlLayout.SetResizePolicy(ResizePolicyType.FILL_TO_PARENT, DimensionType.ALL_DIMENSIONS); - controlLayout.SetCellPadding(new Size(10.0f, 10.0f)); - controlLayout.SetRelativeWidth(0, 0.5f); - controlLayout.SetRelativeWidth(1, 0.5f); - controlLayout.SetCellAlignment(new TableView.CellPosition(0, 0), HorizontalAlignmentType.CENTER, VerticalAlignmentType.CENTER); - controlLayout.SetCellAlignment(new TableView.CellPosition(0, 1), HorizontalAlignmentType.CENTER, VerticalAlignmentType.CENTER); - controlLayout.AddChild(okButton, new TableView.CellPosition(0, 0)); - controlLayout.AddChild(cancelButton, new TableView.CellPosition(0, 1)); - - footer.Add(controlLayout); - - confirmationPopup.SetFooter(footer); - return confirmationPopup; - } - Actor CreateTitle(string title) - { - TextLabel titleActor = new TextLabel(title); - titleActor.TextColor = Color.White; - titleActor.MultiLine = true; - titleActor.HorizontalAlignment = "center"; - return titleActor; - } - - PushButton CreateOKButton() - { - PushButton okayButton = new PushButton(); - okayButton.SetName("OKButton"); - okayButton.LabelText = "OK"; - okayButton.StateFocusEnable = true; - okayButton.Clicked += (obj, ee) => - { - _popup.SetDisplayState(Popup.DisplayStateType.HIDDEN); - return true; - }; - return okayButton; - } - PushButton CreateCancelButton() - { - PushButton cancelButton = new PushButton(); - cancelButton.LabelText = "Cancel"; - cancelButton.StateFocusEnable = true; - cancelButton.Clicked += (obj, ee) => - { - _popup.SetDisplayState(Popup.DisplayStateType.HIDDEN); - return true; - }; - return cancelButton; - } - - public void MainLoop() - { - _application.MainLoop(); - } - - /// - /// The main entry point for the application. - /// - - [STAThread] - static void Main(string[] args) - { - Console.WriteLine("dali c# control-dashboard! main() is called!"); - - Example example = new Example(Application.NewApplication("/home/owner/apps_rw/NUISamples.Tizen/res/style/control-dashboard-theme.json")); - example.MainLoop(); - } - } -} diff --git a/etc/SampleApplication/NUISamples/NUISamples.Tizen/examples/spin-control.cs b/etc/SampleApplication/NUISamples/NUISamples.Tizen/examples/spin-control.cs deleted file mode 100755 index 190b388..0000000 --- a/etc/SampleApplication/NUISamples/NUISamples.Tizen/examples/spin-control.cs +++ /dev/null @@ -1,460 +0,0 @@ -/* - * Copyright (c) 2016 Samsung Electronics Co., Ltd. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - */ - -using System; -using System.Runtime.InteropServices; -using NUI; - -namespace MyCSharpExample -{ - // A spin control (for continously changing values when users can easily predict a set of values) - class Spin : CustomView - { - private VisualBase _arrowVisual; - private TextField _textField; - private int _arrowVisualPropertyIndex; - private string _arrowImage; - private int _currentValue; - private int _minValue; - private int _maxValue; - private int _singleStep; - private bool _wrappingEnabled; - private string _fontFamily; - private string _fontStyle; - private int _pointSize; - private Color _textColor; - private Color _textBackgroundColor; - private int _maxTextLength; - - public Spin() : base(ViewWrapperImpl.CustomViewBehaviour.REQUIRES_KEYBOARD_NAVIGATION_SUPPORT | ViewWrapperImpl.CustomViewBehaviour.DISABLE_STYLE_CHANGE_SIGNALS) - { - } - - public override void OnInitialize() - { - // Initialize the properties - _arrowImage = "/home/owner/apps_rw/NUISamples.Tizen/res/images/arrow.png"; - _textBackgroundColor = new Color(0.6f, 0.6f, 0.6f, 1.0f); - _currentValue = 0; - _minValue = 0; - _maxValue = 0; - _singleStep = 1; - _maxTextLength = 0; - - // Create image visual for the arrow keys - _arrowVisualPropertyIndex = RegisterProperty("ArrowImage", new NUI.Property.Value(_arrowImage), NUI.Property.AccessMode.READ_WRITE); - _arrowVisual = VisualFactory.Get().CreateVisual( _arrowImage, new Uint16Pair(150, 150) ); - RegisterVisual( _arrowVisualPropertyIndex, _arrowVisual ); - - // Create a text field - _textField = new TextField(); - _textField.ParentOrigin = NDalic.ParentOriginCenter; - _textField.AnchorPoint = NDalic.AnchorPointCenter; - _textField.WidthResizePolicy = "SIZE_RELATIVE_TO_PARENT"; - _textField.HeightResizePolicy = "SIZE_RELATIVE_TO_PARENT"; - _textField.SizeModeFactor = new Vector3( 1.0f, 0.45f, 1.0f ); - _textField.PlaceholderText = "----"; - _textField.BackgroundColor = _textBackgroundColor; - _textField.HorizontalAlignment = "Center"; - _textField.VerticalAlignment = "Center"; - _textField.SetKeyboardFocusable(true); - _textField.Name = "_textField"; - - this.Add(_textField); - - _textField.KeyInputFocusGained += TextFieldKeyInputFocusGained; - _textField.KeyInputFocusLost += TextFieldKeyInputFocusLost; - } - - public override Vector3 GetNaturalSize() - { - return new Vector3(150.0f, 150.0f, 0.0f); - } - - public void TextFieldKeyInputFocusGained(object source, EventArgs e) - { - // Make sure when the current spin that takes input focus also takes the keyboard focus - // For example, when you tap the spin directly - FocusManager.Instance.SetCurrentFocusView(_textField); - } - - public void TextFieldKeyInputFocusLost(object source, EventArgs e) - { - int previousValue = _currentValue; - - // If the input value is invalid, change it back to the previous valid value - if(int.TryParse(_textField.Text, out _currentValue)) - { - if (_currentValue < _minValue || _currentValue > _maxValue) - { - _currentValue = previousValue; - } - } - else - { - _currentValue = previousValue; - } - - // Otherwise take the new value - this.Value = _currentValue; - } - - public override Actor GetNextKeyboardFocusableActor(Actor currentFocusedActor, View.KeyboardFocus.Direction direction, bool loopEnabled) - { - // Respond to Up/Down keys to change the value while keeping the current spin focused - Actor nextFocusedActor = currentFocusedActor; - if (direction == View.KeyboardFocus.Direction.UP) - { - this.Value += this.Step; - nextFocusedActor = _textField; - } - else if (direction == View.KeyboardFocus.Direction.DOWN) - { - this.Value -= this.Step; - nextFocusedActor = _textField; - } - else - { - // Return a native empty handle as nothing can be focused in the left or right - nextFocusedActor = new Actor(); - nextFocusedActor.Reset(); - } - - return nextFocusedActor; - } - - // Value property of type int: - public int Value - { - get - { - return _currentValue; - } - set - { - _currentValue = value; - - // Make sure no invalid value is accepted - if (_currentValue < _minValue) - { - _currentValue = _minValue; - } - - if (_currentValue > _maxValue) - { - _currentValue = _maxValue; - } - - _textField.Text = _currentValue.ToString(); - } - } - - // MinValue property of type int: - public int MinValue - { - get - { - return _minValue; - } - set - { - _minValue = value; - } - } - - // MaxValue property of type int: - public int MaxValue - { - get - { - return _maxValue; - } - set - { - _maxValue = value; - } - } - - // Step property of type int: - public int Step - { - get - { - return _singleStep; - } - set - { - _singleStep = value; - } - } - - // WrappingEnabled property of type bool: - public bool WrappingEnabled - { - get - { - return _wrappingEnabled; - } - set - { - _wrappingEnabled = value; - } - } - - // TextPointSize property of type int: - public int TextPointSize - { - get - { - return _pointSize; - } - set - { - _pointSize = value; - _textField.PointSize = _pointSize; - } - } - - // TextColor property of type Color: - public Color TextColor - { - get - { - return _textColor; - } - set - { - _textColor = value; - _textField.TextColor = _textColor; - } - } - - // MaxTextLength property of type int: - public int MaxTextLength - { - get - { - return _maxTextLength; - } - set - { - _maxTextLength = value; - _textField.MaxLength = _maxTextLength; - } - } - - public TextField SpinText - { - get - { - return _textField; - } - set - { - _textField = value; - } - } - - // Indicator property of type string: - public string IndicatorImage - { - get - { - return _arrowImage; - } - set - { - _arrowImage = value; - _arrowVisual = VisualFactory.Get().CreateVisual( _arrowImage, new Uint16Pair(150, 150) ); - RegisterVisual( _arrowVisualPropertyIndex, _arrowVisual ); - } - } - } - - class Example - { - private NUI.Application _application; - private FlexContainer _container; - private Spin _spinYear; - private Spin _spinMonth; - private Spin _spinDay; - - [UnmanagedFunctionPointer(CallingConvention.StdCall)] - delegate void CallbackDelegate(); - - public Example(NUI.Application application) - { - _application = application; - _application.Initialized += Initialize; - } - - public void Initialize(object source, EventArgs e) - { - Stage stage = Stage.GetCurrent(); - stage.BackgroundColor = Color.White; - - // Create a container for the spins - _container = new FlexContainer(); - - _container.ParentOrigin = NDalic.ParentOriginCenter; - _container.AnchorPoint = NDalic.AnchorPointCenter; - _container.FlexDirection = (int)FlexContainer.FlexDirectionType.ROW; - _container.Size = new Vector3(480.0f, 150.0f, 0.0f); - - stage.Add(_container); - - // Create a Spin control for year - _spinYear = new Spin(); - _spinYear.ParentOrigin = NDalic.ParentOriginCenter; - _spinYear.AnchorPoint = NDalic.AnchorPointCenter; - _spinYear.Flex = 0.3f; - _spinYear.FlexMargin = new Vector4(5.0f, 0.0f, 5.0f, 0.0f); - _container.Add(_spinYear); - - _spinYear.MinValue = 1900; - _spinYear.MaxValue = 2100; - _spinYear.Value = 2016; - _spinYear.Step = 1; - _spinYear.MaxTextLength = 4; - _spinYear.TextPointSize = 26; - _spinYear.TextColor = Color.White; - _spinYear.SetKeyboardFocusable(true); - _spinYear.Name = "_spinYear"; - - // Create a Spin control for month - _spinMonth = new Spin(); - _spinMonth.ParentOrigin = NDalic.ParentOriginCenter; - _spinMonth.AnchorPoint = NDalic.AnchorPointCenter; - _spinMonth.Flex = 0.3f; - _spinMonth.FlexMargin = new Vector4(5.0f, 0.0f, 5.0f, 0.0f); - _container.Add(_spinMonth); - - _spinMonth.MinValue = 1; - _spinMonth.MaxValue = 12; - _spinMonth.Value = 10; - _spinMonth.Step = 1; - _spinMonth.MaxTextLength = 2; - _spinMonth.TextPointSize = 26; - _spinMonth.TextColor = Color.White; - _spinMonth.SetKeyboardFocusable(true); - _spinMonth.Name = "_spinMonth"; - - // Create a Spin control for day - _spinDay = new Spin(); - _spinDay.ParentOrigin = NDalic.ParentOriginCenter; - _spinDay.AnchorPoint = NDalic.AnchorPointCenter; - _spinDay.Flex = 0.3f; - _spinDay.FlexMargin = new Vector4(5.0f, 0.0f, 5.0f, 0.0f); - _container.Add(_spinDay); - - _spinDay.MinValue = 1; - _spinDay.MaxValue = 31; - _spinDay.Value = 26; - _spinDay.Step = 1; - _spinDay.MaxTextLength = 2; - _spinDay.TextPointSize = 26; - _spinDay.TextColor = Color.White; - _spinDay.SetKeyboardFocusable(true); - _spinDay.Name = "_spinDay"; - - FocusManager keyboardFocusManager = FocusManager.Instance; - keyboardFocusManager.PreFocusChange += OnKeyboardPreFocusChange; - keyboardFocusManager.FocusedViewEnterKeyPressed += OnFocusedViewEnterKeyPressed; - - } - - private View OnKeyboardPreFocusChange(object source, FocusManager.PreFocusChangeEventArgs e) - { - View nextFocusActor = e.Proposed; - - // When nothing has been focused initially, focus the text field in the first spin - if (!e.Current && !e.Proposed) - { - nextFocusActor = _spinYear.SpinText; - } - else if(e.Direction == View.KeyboardFocus.Direction.LEFT) - { - // Move the focus to the spin in the left of the current focused spin - if(e.Current == _spinMonth.SpinText) - { - nextFocusActor = _spinYear.SpinText; - } - else if(e.Current == _spinDay.SpinText) - { - nextFocusActor = _spinMonth.SpinText; - } - } - else if(e.Direction == View.KeyboardFocus.Direction.RIGHT) - { - // Move the focus to the spin in the right of the current focused spin - if(e.Current == _spinYear.SpinText) - { - nextFocusActor = _spinMonth.SpinText; - } - else if(e.Current == _spinMonth.SpinText) - { - nextFocusActor = _spinDay.SpinText; - } - } - - return nextFocusActor; - } - - private void OnFocusedViewEnterKeyPressed(object source, FocusManager.FocusedViewEnterKeyEventArgs e) - { - // Make the text field in the current focused spin to take the key input - KeyInputFocusManager manager = KeyInputFocusManager.Get(); - - if (e.View == _spinYear.SpinText) - { - if (manager.GetCurrentFocusControl() != _spinYear.SpinText) - { - manager.SetFocus(_spinYear.SpinText); - } - } - else if (e.View == _spinMonth.SpinText) - { - if (manager.GetCurrentFocusControl() != _spinMonth.SpinText) - { - manager.SetFocus(_spinMonth.SpinText); - } - } - else if (e.View == _spinDay.SpinText) - { - if (manager.GetCurrentFocusControl() != _spinDay.SpinText) - { - manager.SetFocus(_spinDay.SpinText); - } - } - } - - public void MainLoop() - { - _application.MainLoop (); - } - - /// - /// The main entry point for the application. - /// - [STAThread] - static void Main(string[] args) - { - Example example = new Example(Application.NewApplication()); - example.MainLoop (); - } - } -} diff --git a/etc/SampleApplication/SampleApplication.sln b/etc/SampleApplication/SampleApplication.sln deleted file mode 100755 index 8ed5bea..0000000 --- a/etc/SampleApplication/SampleApplication.sln +++ /dev/null @@ -1,31 +0,0 @@ - -Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio 14 -VisualStudioVersion = 14.0.25420.1 -MinimumVisualStudioVersion = 10.0.40219.1 -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ClassLibrary1", "..\..\Tizen.NUI\ClassLibrary1.csproj", "{5037EB12-A7D9-47B4-A79C-4B2B0C8F0E23}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NUISamples.Tizen", "NUISamples\NUISamples.Tizen\NUISamples.Tizen.csproj", "{316BF936-F063-4C33-9499-F4F472CD3EA7}" - ProjectSection(ProjectDependencies) = postProject - {5037EB12-A7D9-47B4-A79C-4B2B0C8F0E23} = {5037EB12-A7D9-47B4-A79C-4B2B0C8F0E23} - EndProjectSection -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Any CPU = Debug|Any CPU - Release|Any CPU = Release|Any CPU - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {5037EB12-A7D9-47B4-A79C-4B2B0C8F0E23}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {5037EB12-A7D9-47B4-A79C-4B2B0C8F0E23}.Debug|Any CPU.Build.0 = Debug|Any CPU - {5037EB12-A7D9-47B4-A79C-4B2B0C8F0E23}.Release|Any CPU.ActiveCfg = Release|Any CPU - {5037EB12-A7D9-47B4-A79C-4B2B0C8F0E23}.Release|Any CPU.Build.0 = Release|Any CPU - {316BF936-F063-4C33-9499-F4F472CD3EA7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {316BF936-F063-4C33-9499-F4F472CD3EA7}.Debug|Any CPU.Build.0 = Debug|Any CPU - {316BF936-F063-4C33-9499-F4F472CD3EA7}.Release|Any CPU.ActiveCfg = Release|Any CPU - {316BF936-F063-4C33-9499-F4F472CD3EA7}.Release|Any CPU.Build.0 = Release|Any CPU - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection -EndGlobal diff --git a/etc/csharp-binder-internal b/etc/csharp-binder-internal deleted file mode 100755 index 9a87421..0000000 --- a/etc/csharp-binder-internal +++ /dev/null @@ -1,223 +0,0 @@ -automatic/csharp/AccessibilityActionScrollSignal.cs -automatic/csharp/AccessibilityActionSignal.cs -automatic/csharp/AccessibilityFocusOvershotSignal.cs -automatic/csharp/ActorContainer.cs -automatic/csharp/ActorHoverEventSignal.cs -automatic/csharp/ActorSignal.cs -automatic/csharp/ActorTouchDataSignal.cs -automatic/csharp/ActorWheelEventSignal.cs -automatic/csharp/Alignment.cs -automatic/csharp/AngleThresholdPair.cs -automatic/csharp/AnimatablePropertyComponentRegistration.cs -automatic/csharp/AnimatablePropertyRegistration.cs -automatic/csharp/AnimationSignal.cs -automatic/csharp/Any.cs -automatic/csharp/ApplicationControlSignal.cs -automatic/csharp/ApplicationExtensions.cs -automatic/csharp/ApplicationSignal.cs -automatic/csharp/AsyncImageLoader.cs -automatic/csharp/BaseHandle.cs -automatic/csharp/BaseObject.cs -automatic/csharp/BlendEquationType.cs -automatic/csharp/BlendFactorType.cs -automatic/csharp/BlendModeType.cs -automatic/csharp/BoolSignal.cs -automatic/csharp/BufferImage.cs -automatic/csharp/Builder.cs -automatic/csharp/ButtonSignal.cs -automatic/csharp/CameraType.cs -automatic/csharp/ChildPropertyRegistration.cs -automatic/csharp/ClampState.cs -automatic/csharp/ClampState2D.cs -automatic/csharp/ClippingModeType.cs -automatic/csharp/ColorMode.cs -automatic/csharp/ConnectionTracker.cs -automatic/csharp/ConnectionTrackerInterface.cs -automatic/csharp/ControlKeyEventSignal.cs -automatic/csharp/ControlOrientationType.cs -automatic/csharp/CustomActor.cs -automatic/csharp/CustomActorImpl.cs -automatic/csharp/DaliException.cs -automatic/csharp/DefaultItemLayoutProperty.cs -automatic/csharp/DefaultItemLayoutType.cs -automatic/csharp/DefaultRuler.cs -automatic/csharp/DepthFunctionType.cs -automatic/csharp/DepthTestModeType.cs -automatic/csharp/DepthWriteModeType.cs -automatic/csharp/DimensionType.cs -automatic/csharp/DirectionBias.cs -automatic/csharp/doublep.cs -automatic/csharp/DragAndDropDetector.cs -automatic/csharp/DrawModeType.cs -automatic/csharp/EncodedBufferImage.cs -automatic/csharp/FaceCullingModeType.cs -automatic/csharp/FilterModeType.cs -automatic/csharp/FittingModeType.cs -automatic/csharp/FixedRuler.cs -automatic/csharp/floatp.cs -automatic/csharp/FloatSignal.cs -automatic/csharp/FocusChangedSignal.cs -automatic/csharp/FocusGroupChangedSignal.cs -automatic/csharp/FrameBuffer.cs -automatic/csharp/FrameBufferImage.cs -automatic/csharp/GaussianBlurViewSignal.cs -automatic/csharp/GradientVisualSpreadMethodType.cs -automatic/csharp/GradientVisualUnitsType.cs -automatic/csharp/Handle.cs -automatic/csharp/HorizontalAlignmentType.cs -automatic/csharp/Image.cs -automatic/csharp/ImageSignal.cs -automatic/csharp/intp.cs -automatic/csharp/Item.cs -automatic/csharp/ItemContainer.cs -automatic/csharp/ItemFactory.cs -automatic/csharp/ItemIdContainer.cs -automatic/csharp/ItemLayout.cs -automatic/csharp/ItemRange.cs -automatic/csharp/KeyEventSignal.cs -automatic/csharp/KeyInputFocusSignal.cs -automatic/csharp/LoadingState.cs -automatic/csharp/LongPressGestureDetectedSignal.cs -automatic/csharp/LongPressGestureDetector.cs -automatic/csharp/MeshVisualShadingModeValue.cs -automatic/csharp/Meta.cs -automatic/csharp/NativeImage.cs -automatic/csharp/NativeImageInterface.cs -automatic/csharp/NDalic.cs -automatic/csharp/NDalicPINVOKE.cs -automatic/csharp/NinePatchImage.cs -automatic/csharp/ObjectCreatedSignal.cs -automatic/csharp/ObjectDestroyedSignal.cs -automatic/csharp/ObjectRegistry.cs -automatic/csharp/PageFactory.cs -automatic/csharp/PagePanSignal.cs -automatic/csharp/PageTurnLandscapeView.cs -automatic/csharp/PageTurnPortraitView.cs -automatic/csharp/PageTurnSignal.cs -automatic/csharp/PanGestureDetectedSignal.cs -automatic/csharp/PanGestureDetector.cs -automatic/csharp/PinchGestureDetectedSignal.cs -automatic/csharp/PinchGestureDetector.cs -automatic/csharp/PixelData.cs -automatic/csharp/PixelFormat.cs -automatic/csharp/PointStateType.cs -automatic/csharp/PositionInheritanceMode.cs -automatic/csharp/PrimitiveVisualShapeType.cs -automatic/csharp/ProjectionMode.cs -automatic/csharp/PropertyBuffer.cs -automatic/csharp/PropertyCondition.cs -automatic/csharp/PropertyNotification.cs -automatic/csharp/PropertyNotifySignal.cs -automatic/csharp/PropertyRanges.cs -automatic/csharp/PropertyRegistration.cs -automatic/csharp/RectDouble.cs -automatic/csharp/RectFloat.cs -automatic/csharp/RectInteger.cs -automatic/csharp/RectUnsignedInteger.cs -automatic/csharp/RefObject.cs -automatic/csharp/RenderBufferFormat.cs -automatic/csharp/RenderingType.cs -automatic/csharp/RenderModeType.cs -automatic/csharp/RenderTask.cs -automatic/csharp/RenderTaskList.cs -automatic/csharp/RenderTaskSignal.cs -automatic/csharp/ResourceImage.cs -automatic/csharp/ResourceImageSignal.cs -automatic/csharp/RulerDomain.cs -automatic/csharp/RulerPtr.cs -automatic/csharp/Sampler.cs -automatic/csharp/SamplingModeType.cs -automatic/csharp/ScrollableSignal.cs -automatic/csharp/ScrollViewSnapStartedSignal.cs -automatic/csharp/SignalConnectorType.cs -automatic/csharp/SignalObserver.cs -automatic/csharp/SliderMarkReachedSignal.cs -automatic/csharp/SliderValueChangedSignal.cs -automatic/csharp/SlotObserver.cs -automatic/csharp/SnapType.cs -automatic/csharp/StageWheelEventSignal.cs -automatic/csharp/StencilFunctionType.cs -automatic/csharp/StencilOperationType.cs -automatic/csharp/StringValuePair.cs -automatic/csharp/StyleChangedSignal.cs -automatic/csharp/StyleChangeType.cs -automatic/csharp/SWIGTYPE_p_CallbackBase.cs -automatic/csharp/SWIGTYPE_p_Configuration__ContextLoss.cs -automatic/csharp/SWIGTYPE_p_Dali__CallbackBase.cs -automatic/csharp/SWIGTYPE_p_Dali__Constraint.cs -automatic/csharp/SWIGTYPE_p_Dali__CustomActorImpl__Extension.cs -automatic/csharp/SWIGTYPE_p_Dali__FunctorDelegate.cs -automatic/csharp/SWIGTYPE_p_Dali__Internal__TypeRegistry.cs -automatic/csharp/SWIGTYPE_p_Dali__IntrusivePtrT_Dali__Toolkit__ItemLayout_t.cs -automatic/csharp/SWIGTYPE_p_Dali__SignalT_bool_fDali__Actor_Dali__TouchEvent_const_RF_t.cs -automatic/csharp/SWIGTYPE_p_Dali__SignalT_void_fboolF_t.cs -automatic/csharp/SWIGTYPE_p_Dali__SignalT_void_fDali__DragAndDropDetectorF_t.cs -automatic/csharp/SWIGTYPE_p_Dali__SignalT_void_fDali__Toolkit__Control_Dali__Toolkit__ControlF_t.cs -automatic/csharp/SWIGTYPE_p_Dali__SignalT_void_fDali__Toolkit__ProgressBar_floatF_t.cs -automatic/csharp/SWIGTYPE_p_Dali__SignalT_void_fDali__Toolkit__TextEditor_Dali__Toolkit__TextEditor__InputStyle__MaskF_t.cs -automatic/csharp/SWIGTYPE_p_Dali__SignalT_void_fDali__Toolkit__TextField_Dali__Toolkit__TextField__InputStyle__MaskF_t.cs -automatic/csharp/SWIGTYPE_p_Dali__SignalT_void_fDali__TouchEvent_const_RF_t.cs -automatic/csharp/SWIGTYPE_p_Dali__SignalT_void_fuint32_t_Dali__PixelDataF_t.cs -automatic/csharp/SWIGTYPE_p_Dali__Toolkit__ClampState.cs -automatic/csharp/SWIGTYPE_p_Dali__Toolkit__Internal__AsyncImageLoader.cs -automatic/csharp/SWIGTYPE_p_Dali__Toolkit__Internal__Control__Extension.cs -automatic/csharp/SWIGTYPE_p_Dali__Toolkit__Internal__TransitionData.cs -automatic/csharp/SWIGTYPE_p_Dali__Toolkit__Internal__Visual__Base.cs -automatic/csharp/SWIGTYPE_p_double.cs -automatic/csharp/SWIGTYPE_p_f___bool.cs -automatic/csharp/SWIGTYPE_p_f___Dali__BaseHandle.cs -automatic/csharp/SWIGTYPE_p_f_float__float.cs -automatic/csharp/SWIGTYPE_p_f_p_Dali__BaseObject_Dali__Property__Index__Dali__Property__Value.cs -automatic/csharp/SWIGTYPE_p_f_p_Dali__BaseObject_int_r_q_const__Dali__Property__Value__void.cs -automatic/csharp/SWIGTYPE_p_f_p_Dali__BaseObject_p_Dali__ConnectionTrackerInterface_r_q_const__std__string_p_Dali__FunctorDelegate__bool.cs -automatic/csharp/SWIGTYPE_p_f_p_Dali__BaseObject_r_q_const__std__string_r_q_const__Dali__Property__Map__bool.cs -automatic/csharp/SWIGTYPE_p_f_p_q_const__Dali__Any__AnyContainerBase__void.cs -automatic/csharp/SWIGTYPE_p_f_r_Dali__Vector2__bool.cs -automatic/csharp/SWIGTYPE_p_f_r_q_const__Dali__Any__AnyContainerBase__p_Dali__Any__AnyContainerBase.cs -automatic/csharp/SWIGTYPE_p_f_r_q_const__Dali__Vector3__float.cs -automatic/csharp/SWIGTYPE_p_float.cs -automatic/csharp/SWIGTYPE_p_FunctorDelegate.cs -automatic/csharp/SWIGTYPE_p_int.cs -automatic/csharp/SWIGTYPE_p_PropertyInputContainer.cs -automatic/csharp/SWIGTYPE_p_std__type_info.cs -automatic/csharp/SWIGTYPE_p_uint8_t.cs -automatic/csharp/SWIGTYPE_p_unsigned_char.cs -automatic/csharp/SWIGTYPE_p_unsigned_int.cs -automatic/csharp/SWIGTYPE_p_unsigned_short.cs -automatic/csharp/TapGestureDetectedSignal.cs -automatic/csharp/TapGestureDetector.cs -automatic/csharp/TextEditorSignal.cs -automatic/csharp/TextFieldSignal.cs -automatic/csharp/TextureSet.cs -automatic/csharp/TextureType.cs -automatic/csharp/TimePeriod.cs -automatic/csharp/TimerSignalType.cs -automatic/csharp/ToolkitPropertyRange.cs -automatic/csharp/TouchEvent.cs -automatic/csharp/TouchPoint.cs -automatic/csharp/TouchPointContainer.cs -automatic/csharp/TouchSignal.cs -automatic/csharp/TransitionData.cs -automatic/csharp/TypeAction.cs -automatic/csharp/TypeInfo.cs -automatic/csharp/TypeRegistration.cs -automatic/csharp/TypeRegistry.cs -automatic/csharp/Uint16Pair.cs -automatic/csharp/uintp.cs -automatic/csharp/ushortp.cs -automatic/csharp/VectorBase.cs -automatic/csharp/VectorFloat.cs -automatic/csharp/VectorInteger.cs -automatic/csharp/VectorUint16Pair.cs -automatic/csharp/VectorUnsignedChar.cs -automatic/csharp/VerticalAlignmentType.cs -automatic/csharp/VideoViewSignal.cs -automatic/csharp/ViewImpl.cs -automatic/csharp/ViewMode.cs -automatic/csharp/VisualType.cs -automatic/csharp/VoidSignal.cs -automatic/csharp/WrapModeType.cs -manual/csharp/DisposeQueue.cs -manual/csharp/KeyboardPreFocusChangeSignal.cs -manual/csharp/ManualPINVOKE.cs -manual/csharp/ViewWrapperImpl.cs diff --git a/etc/csharp-binder-public b/etc/csharp-binder-public deleted file mode 100755 index b7a9659..0000000 --- a/etc/csharp-binder-public +++ /dev/null @@ -1,79 +0,0 @@ -automatic/csharp/AccessibilityManager.cs -automatic/csharp/Actor.cs -automatic/csharp/AlphaFunction.cs -automatic/csharp/AngleAxis.cs -automatic/csharp/Animation.cs -automatic/csharp/Application.cs -automatic/csharp/Button.cs -automatic/csharp/CameraActor.cs -automatic/csharp/CheckBoxButton.cs -automatic/csharp/Degree.cs -automatic/csharp/FlexContainer.cs -automatic/csharp/GaussianBlurView.cs -automatic/csharp/Geometry.cs -automatic/csharp/Gesture.cs -automatic/csharp/GestureDetector.cs -automatic/csharp/HoverEvent.cs -automatic/csharp/ImageView.cs -automatic/csharp/ItemView.cs -automatic/csharp/KeyEvent.cs -automatic/csharp/KeyFrames.cs -automatic/csharp/KeyInputFocusManager.cs -automatic/csharp/Layer.cs -automatic/csharp/LinearConstrainer.cs -automatic/csharp/LongPressGesture.cs -automatic/csharp/Matrix.cs -automatic/csharp/Matrix3.cs -automatic/csharp/Model3dView.cs -automatic/csharp/PageTurnView.cs -automatic/csharp/PanGesture.cs -automatic/csharp/Path.cs -automatic/csharp/PathConstrainer.cs -automatic/csharp/PinchGesture.cs -automatic/csharp/Popup.cs -automatic/csharp/ProgressBar.cs -automatic/csharp/Property.cs -automatic/csharp/PushButton.cs -automatic/csharp/Quaternion.cs -automatic/csharp/Radian.cs -automatic/csharp/RadioButton.cs -automatic/csharp/RelayoutContainer.cs -automatic/csharp/Renderer.cs -automatic/csharp/ResizePolicyType.cs -automatic/csharp/Ruler.cs -automatic/csharp/ScrollBar.cs -automatic/csharp/ScrollView.cs -automatic/csharp/ScrollViewEffect.cs -automatic/csharp/ScrollViewPagePathEffect.cs -automatic/csharp/Scrollable.cs -automatic/csharp/Shader.cs -automatic/csharp/SizeScalePolicyType.cs -automatic/csharp/Slider.cs -automatic/csharp/Stage.cs -automatic/csharp/StyleManager.cs -automatic/csharp/TableView.cs -automatic/csharp/TapGesture.cs -automatic/csharp/TextEditor.cs -automatic/csharp/TextField.cs -automatic/csharp/TextLabel.cs -automatic/csharp/Texture.cs -automatic/csharp/Timer.cs -automatic/csharp/TouchData.cs -automatic/csharp/Vector2.cs -automatic/csharp/Vector3.cs -automatic/csharp/Vector4.cs -automatic/csharp/VideoView.cs -automatic/csharp/View.cs -automatic/csharp/VisualBase.cs -automatic/csharp/VisualFactory.cs -automatic/csharp/WheelEvent.cs -automatic/csharp/Window.cs -manual/csharp/Color.cs -manual/csharp/CustomView.cs -manual/csharp/DaliEnumConstants.cs -manual/csharp/DaliEventHandler.cs -manual/csharp/FocusManager.cs -manual/csharp/Position.cs -manual/csharp/Size.cs -manual/csharp/Tizen.Applications/DaliApplication.cs -manual/csharp/ViewWrapper.cs diff --git a/etc/csharp-binder-src b/etc/csharp-binder-src deleted file mode 100755 index 9eec627..0000000 --- a/etc/csharp-binder-src +++ /dev/null @@ -1,10 +0,0 @@ -automatic/cpp/dali_wrap.cpp -automatic/cpp/dali_wrap.h -automatic/cpp/DaliWrapper.cpp -automatic/cpp/DaliWrapper.h -automatic/cpp/stdafx.h -manual/cpp/callbackbase_wrap.cpp -manual/cpp/common.h -manual/cpp/keyboard_focus_manager_wrap.cpp -manual/cpp/view-wrapper-impl-wrap.cpp -manual/cpp/view-wrapper-impl-wrap.h diff --git a/etc/doxy-script.sh b/etc/doxy-script.sh deleted file mode 100755 index a5ca831..0000000 --- a/etc/doxy-script.sh +++ /dev/null @@ -1,13 +0,0 @@ -mkdir dali-csharp-binder -cd dali-csharp-binder -mkdir csharp-src -mkdir src -cd csharp-src -mkdir internal -mkdir public - -cd ../../ - -cat csharp-binder-src | xargs cp -t dali-csharp-binder/src/ -cat csharp-binder-internal | xargs cp -t dali-csharp-binder/csharp-src/internal/ -cat csharp-binder-public | xargs cp -t dali-csharp-binder/csharp-src/public/ diff --git a/packages/Xamarin.Forms.2.3.3.175/Xamarin.Forms.2.3.3.175.nupkg b/packages/Xamarin.Forms.2.3.3.175/Xamarin.Forms.2.3.3.175.nupkg new file mode 100755 index 0000000..3ec4679 Binary files /dev/null and b/packages/Xamarin.Forms.2.3.3.175/Xamarin.Forms.2.3.3.175.nupkg differ diff --git a/packages/Xamarin.Forms.2.3.3.175/build/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/ICSharpCode.Decompiler.dll b/packages/Xamarin.Forms.2.3.3.175/build/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/ICSharpCode.Decompiler.dll new file mode 100755 index 0000000..d272594 Binary files /dev/null and b/packages/Xamarin.Forms.2.3.3.175/build/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/ICSharpCode.Decompiler.dll differ diff --git a/packages/Xamarin.Forms.2.3.3.175/build/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/ICSharpCode.NRefactory.CSharp.dll b/packages/Xamarin.Forms.2.3.3.175/build/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/ICSharpCode.NRefactory.CSharp.dll new file mode 100755 index 0000000..db211ea Binary files /dev/null and b/packages/Xamarin.Forms.2.3.3.175/build/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/ICSharpCode.NRefactory.CSharp.dll differ diff --git a/packages/Xamarin.Forms.2.3.3.175/build/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/ICSharpCode.NRefactory.Cecil.dll b/packages/Xamarin.Forms.2.3.3.175/build/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/ICSharpCode.NRefactory.Cecil.dll new file mode 100755 index 0000000..c5eabfb Binary files /dev/null and b/packages/Xamarin.Forms.2.3.3.175/build/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/ICSharpCode.NRefactory.Cecil.dll differ diff --git a/packages/Xamarin.Forms.2.3.3.175/build/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/ICSharpCode.NRefactory.Xml.dll b/packages/Xamarin.Forms.2.3.3.175/build/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/ICSharpCode.NRefactory.Xml.dll new file mode 100755 index 0000000..1f07e70 Binary files /dev/null and b/packages/Xamarin.Forms.2.3.3.175/build/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/ICSharpCode.NRefactory.Xml.dll differ diff --git a/packages/Xamarin.Forms.2.3.3.175/build/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/ICSharpCode.NRefactory.dll b/packages/Xamarin.Forms.2.3.3.175/build/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/ICSharpCode.NRefactory.dll new file mode 100755 index 0000000..d6114ae Binary files /dev/null and b/packages/Xamarin.Forms.2.3.3.175/build/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/ICSharpCode.NRefactory.dll differ diff --git a/packages/Xamarin.Forms.2.3.3.175/build/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/Mono.Cecil.Mdb.dll b/packages/Xamarin.Forms.2.3.3.175/build/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/Mono.Cecil.Mdb.dll new file mode 100755 index 0000000..de280f6 Binary files /dev/null and b/packages/Xamarin.Forms.2.3.3.175/build/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/Mono.Cecil.Mdb.dll differ diff --git a/packages/Xamarin.Forms.2.3.3.175/build/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/Mono.Cecil.Pdb.dll b/packages/Xamarin.Forms.2.3.3.175/build/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/Mono.Cecil.Pdb.dll new file mode 100755 index 0000000..25c40dd Binary files /dev/null and b/packages/Xamarin.Forms.2.3.3.175/build/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/Mono.Cecil.Pdb.dll differ diff --git a/packages/Xamarin.Forms.2.3.3.175/build/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/Mono.Cecil.Rocks.dll b/packages/Xamarin.Forms.2.3.3.175/build/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/Mono.Cecil.Rocks.dll new file mode 100755 index 0000000..47090eb Binary files /dev/null and b/packages/Xamarin.Forms.2.3.3.175/build/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/Mono.Cecil.Rocks.dll differ diff --git a/packages/Xamarin.Forms.2.3.3.175/build/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/Mono.Cecil.dll b/packages/Xamarin.Forms.2.3.3.175/build/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/Mono.Cecil.dll new file mode 100755 index 0000000..99e9394 Binary files /dev/null and b/packages/Xamarin.Forms.2.3.3.175/build/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/Mono.Cecil.dll differ diff --git a/packages/Xamarin.Forms.2.3.3.175/build/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/Xamarin.Forms.Build.Tasks.dll b/packages/Xamarin.Forms.2.3.3.175/build/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/Xamarin.Forms.Build.Tasks.dll new file mode 100755 index 0000000..86201f1 Binary files /dev/null and b/packages/Xamarin.Forms.2.3.3.175/build/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/Xamarin.Forms.Build.Tasks.dll differ diff --git a/packages/Xamarin.Forms.2.3.3.175/build/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/Xamarin.Forms.Core.dll b/packages/Xamarin.Forms.2.3.3.175/build/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/Xamarin.Forms.Core.dll new file mode 100755 index 0000000..1e3988e Binary files /dev/null and b/packages/Xamarin.Forms.2.3.3.175/build/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/Xamarin.Forms.Core.dll differ diff --git a/packages/Xamarin.Forms.2.3.3.175/build/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/Xamarin.Forms.Xaml.dll b/packages/Xamarin.Forms.2.3.3.175/build/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/Xamarin.Forms.Xaml.dll new file mode 100755 index 0000000..1d3f0e8 Binary files /dev/null and b/packages/Xamarin.Forms.2.3.3.175/build/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/Xamarin.Forms.Xaml.dll differ diff --git a/packages/Xamarin.Forms.2.3.3.175/build/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/Xamarin.Forms.targets b/packages/Xamarin.Forms.2.3.3.175/build/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/Xamarin.Forms.targets new file mode 100755 index 0000000..1282525 --- /dev/null +++ b/packages/Xamarin.Forms.2.3.3.175/build/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/Xamarin.Forms.targets @@ -0,0 +1,69 @@ + + + + + + + + XamlG; + $(CoreCompileDependsOn); + + + + + + $(CompileDependsOn); + XamlC; + + + + + + + + + + _PreXamlG; + _CollectXamlFiles; + _CoreXamlG; + + + + + + + + + + <_XamlResources Include="@(EmbeddedResource)" Condition="'%(Extension)' == '.xaml' AND '$(DefaultLanguageSourceExtension)' == '.cs'"/> + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/packages/Xamarin.Forms.2.3.3.175/lib/MonoAndroid10/Design/Xamarin.Forms.Core.Design.dll b/packages/Xamarin.Forms.2.3.3.175/lib/MonoAndroid10/Design/Xamarin.Forms.Core.Design.dll new file mode 100755 index 0000000..3021c93 Binary files /dev/null and b/packages/Xamarin.Forms.2.3.3.175/lib/MonoAndroid10/Design/Xamarin.Forms.Core.Design.dll differ diff --git a/packages/Xamarin.Forms.2.3.3.175/lib/MonoAndroid10/Design/Xamarin.Forms.Xaml.Design.dll b/packages/Xamarin.Forms.2.3.3.175/lib/MonoAndroid10/Design/Xamarin.Forms.Xaml.Design.dll new file mode 100755 index 0000000..4ad300a Binary files /dev/null and b/packages/Xamarin.Forms.2.3.3.175/lib/MonoAndroid10/Design/Xamarin.Forms.Xaml.Design.dll differ diff --git a/packages/Xamarin.Forms.2.3.3.175/lib/MonoAndroid10/FormsViewGroup.dll b/packages/Xamarin.Forms.2.3.3.175/lib/MonoAndroid10/FormsViewGroup.dll new file mode 100755 index 0000000..31d5d6a Binary files /dev/null and b/packages/Xamarin.Forms.2.3.3.175/lib/MonoAndroid10/FormsViewGroup.dll differ diff --git a/packages/Xamarin.Forms.2.3.3.175/lib/MonoAndroid10/FormsViewGroup.pdb b/packages/Xamarin.Forms.2.3.3.175/lib/MonoAndroid10/FormsViewGroup.pdb new file mode 100755 index 0000000..4b52daf Binary files /dev/null and b/packages/Xamarin.Forms.2.3.3.175/lib/MonoAndroid10/FormsViewGroup.pdb differ diff --git a/packages/Xamarin.Forms.2.3.3.175/lib/MonoAndroid10/Xamarin.Forms.Core.dll b/packages/Xamarin.Forms.2.3.3.175/lib/MonoAndroid10/Xamarin.Forms.Core.dll new file mode 100755 index 0000000..1e3988e Binary files /dev/null and b/packages/Xamarin.Forms.2.3.3.175/lib/MonoAndroid10/Xamarin.Forms.Core.dll differ diff --git a/packages/Xamarin.Forms.2.3.3.175/lib/MonoAndroid10/Xamarin.Forms.Core.pdb b/packages/Xamarin.Forms.2.3.3.175/lib/MonoAndroid10/Xamarin.Forms.Core.pdb new file mode 100755 index 0000000..aa8e520 Binary files /dev/null and b/packages/Xamarin.Forms.2.3.3.175/lib/MonoAndroid10/Xamarin.Forms.Core.pdb differ diff --git a/packages/Xamarin.Forms.2.3.3.175/lib/MonoAndroid10/Xamarin.Forms.Core.xml b/packages/Xamarin.Forms.2.3.3.175/lib/MonoAndroid10/Xamarin.Forms.Core.xml new file mode 100755 index 0000000..2a6c0bc --- /dev/null +++ b/packages/Xamarin.Forms.2.3.3.175/lib/MonoAndroid10/Xamarin.Forms.Core.xml @@ -0,0 +1,17273 @@ + + + Xamarin.Forms.Core + + + + Positions child elements at absolute positions. + + Application developers can control the placement of child elements by providing proportional coordinates, device coordinates, or a combination of both, depending on the values that are passed to method. When one of the proportional enumeration values is provided, the corresponding X, or Y arguments that range between 0.0 and 1.0 will always cause the child to be displayed completely on screen. That is, you do not need to subtract or add the height or width of a child in order to display it flush with the left, right, top, or bottom of the . For width, height, X, or Y values that are not specified proportionally, application developers use device-dependent units to locate and size the child element. + + The following example shows how to use an with proportional position arguments. + + The code sample below shows how to place two labels by specifying device-dependent units. + + + The following image shows the AbsoluteLayout demo from the FormsGallery sample. + + + + + + XAML for Xamarin.Forms supports the following attached properties for the class: + + + Attached Property + Value + + + AbsoluteLayout.LayoutBounds + + A comma-separated list—possibly with spaces—of four values that specify the bounding rectangle's position and dimensions. The first two values in the list must represent numbers. The latter two values may each either be numbers, or the string "AutoSize". The AbsoluteLayout.LayoutFlags attached property determines how the values in the list are interpreted to create the bounding rectangle. + + + + AbsoluteLayout.LayoutFlags + + + enumeration value names: All, None, HeightProportional, WidthProportional, SizeProportional, XProportional, YProportional, or PositionProportional. Application developers can combine any of these flags together by supplying a comma-separated list. + + + + Application developers can use XAML to lay out elements with the class. The example below places a blue inside an : + + + +]]> + + The class can lay its child elements out in proportional units, device units, or a combination of both. Application developers should remember the following points when specifying a structure that will define the layout bounds of a child element: + For elements whose height and width fit on the screen, proportional position dimensions in the range [0,1] represent elements that are completely on the screen, regardless of whether the height, width, or both are specified in device or proportional units.The above point means that, to specify an element in the lower right hand corner of the screen and that is half as wide and half as all as the screen, with a value of All, the application developer would specify "1.0, 1.0, 0.5, 0.5".The app developer can inadvertently cause child elements for which one or both size dimensions were specified proportionally to be displayed partially off the screen, or hidden altogether, by specifying device-unit positions that do not leave enough room for the calculated size of the child.Each part of the bounding structure is interpreted according to the value that controls it. A given rectangle might, for example, have an X-coordinate that is in device units, a Y-coordinate that is in proportional units, a height that is in proportional units, and a width that is in device units, or any other combination of device and proportional units. Rectangles that, when interpreted by using the current set on the child, represent bounding boxes that are partially or wholly off-screen—for example, by having a width that is larger than the screen width—may give unexpected results. + + + + Initializes a new instance of the AbsoluteLayout class. + To be added. + + + A value that indicates that the width or height of the child should be sized to that childs native size. + + + Application developers can set the width or height of the property to on a visual element when adding to the layout to cause that element to be measured during the layout pass and sized appropriately. + + + + Gets the collection of child elements of the AbsoluteLayout. + The collection of child elements. + + Application developers can use implicit collection syntax in XAML to add items to this collection, because this property is the ContentPropertyAttribute for the AbsoluteLayout class. + + + + A visual element. + Gets the layout bounds of . + The layout bounds of the object. + + This method supports the AbsoluteLayout.LayoutBounds XAML attached property. In XAML, Application developers can specify a comma-separated list—possibly with spaces—of four values that specify the bounding rectangle's position and dimensions. The first two values in the list must represent numbers. The latter two values may each either be numbers, or the string "AutoSize". The AbsoluteLayout.LayoutFlags attached property determines how the values in the list are interpreted to create the bounding rectangle. + + + + A visual element. + Gets the layout flags that were specified when was added to an . + The layout flags of the object. + + This method supports the AbsoluteLayout.LayoutFlags XAML attached property. In XAML, Application developers can specify the following enumeration value names for the value of this property on the children of a : + + + + All + + + + + None + + + + + HeightProportional + + + + + WidthProportional + + + + + SizeProportional + + + + + XProportional + + + + + YProportional + + + + + PositionProportional + + + + Application developers can combine any of the above values by supplying a comma-separated list. + + + + Implements the attached property that represents the layout bounds of child elements. Bindable at run time with the string "LayoutBounds". See Remarks. + The interface for this property is defined by the and methods. + + + + The X coordinate of the region that contains the child elements and that is used to calulate proportional values. + The Y coordinate of the region that contains the child elements and that is used to calulate proportional values. + The width of the the region that contains the child elements and that is used to calulate proportional values. + The height of the region that contains the child elements and that is used to calulate proportional values. + Positions and sizes the children of an AbsoluteLayout. + + Application developers can override to change the default behavior of . When doing so, it is recommended to call the base method and then modify the dimensions and locations of the children directly. + + + + Implements the attached property that contains the values for child elements. + The interface for this property is defined by the and methods. + + + + The element that was added to the children. + Called when a child is added to the . + + Application developers can override to change the default behavior thata is triggered when a child is added. When doing so, it is recommended to call the base method and then add additional logic. + + + + The element that was removed from the children. + Called when a child is removed from the . + + Application developers can override to change the default behavior thata is triggered when a child is removed. When doing so, it is recommended to call the base method and then add additional logic. + + + + The available width for the AbsoluteLayout to use. + The available height for the AbsoluteLayout to use. + Called during the measure pass of a layout cycle to get the desired size of the AbsoluteLayout. + A which contains the desired size of the AbsoluteLayout. + + Application developers can override to change the default behavior thata is triggered when a child is removed. When doing so, it is recommended to call the base method and then modify the dimensions and locations of the children directly. + + + + The view to delimit by . + A rectangle that represents the desired size and shape of . + Sets the layout bounds of a view that will be used to size it when it is layed out. + + This method supports the AbsoluteLayout.LayoutBounds XAML attached property. In XAML, Application developers can specify a comma-separated list—possibly with spaces—of four values that specify the bounding rectangle's position and dimensions. The first two values in the list must represent numbers. The latter two values may each either be numbers, or the string "AutoSize". The AbsoluteLayout.LayoutFlags attached property determines how the values in the list are interpreted to create the bounding rectangle. Application developers can call this method to update the layout of a view after it is added. + + + + The view on which to set the layout flags. + A that describes the how to interpret the layout bounds for . + Sets the layout flags of a view that will be used to interpret the layout bounds set on it when it is added to the layout. + + This method supports the AbsoluteLayout.LayoutFlags XAML attached property. In XAML, Application developers can specify the following enumeration value names for the value of this property on the children of a : + + + + All + + + + + None + + + + + HeightProportional + + + + + WidthProportional + + + + + SizeProportional + + + + + XProportional + + + + + YProportional + + + + + PositionProportional + + + + Application developers can combine any of the above values by supplying a comma-separated list. Application developers can call this method to update the layout flags of a view after it is added. + + + + The type of elements in the absolute layout. + List interface with overloads for adding elements to an absolute layout. + + + + The view to add. + The location at which to position the view. + Adds a view to the list at the specified location with automatic sizing. + + + + The view to add. + The bounds to layout the view with. + The flags to interpret bounds with. + Adds a view to the list with the specified bounds and flags. + + + + Flags used to modify how layout bounds are interpreted in an . + + The class can lay its child elements out in proportional units, device units, or a combination of both. Application developers should remember the following points when specifying a structure that will define the layout bounds of a child element: + For elements whose height and width fit on the screen, proportional position dimensions in the range [0,1] represent elements that are completely on the screen, regardless of whether the height, width, or both are specified in device or proportional units.The above point means that, to specify an element in the lower right hand corner of the screen and that is half as wide and half as all as the screen, with a value of All, the application developer would specify "0.1, 0.1, 0.5, 0.5".The app developer can inadvertently cause child elements for which one or both size dimensions were specified proportionally to be displayed partially off the screen, or hidden altogether, by specifying device-unit positions that do not leave enough room for the calculated size of the child.Each part of the bounding structure is interpreted according to the value that controls it. A given rectangle might, for example, have an X-coordinate that is in device units, a Y-coordinate that is in proportional units, a height that is in proportional units, and a width that is in device units, or any other combination of device and proportional units. Rectangles that, when interpreted by using the current set on the child, represent bounding boxes that are partially or wholly off-screen—for example, by having a width that is larger than the screen width—may give unexpected results. + + + + Interpret all dimensions proportionally. + + + Interpret height property as proportional to layout height. + + + Disable all flags. + + + Equivalent to both XProportional | YProportional. + + + Equivalent to both WidthProportional | HeightProportional. + + + Interpret width property as proportional to layout width. + + + Interpret x property as proportional to the remaining space after width is accounted for. + + + Interpret y property as proportional to the remaining space after height is accounted for. + + + A visual control used to indicate that something is ongoing. + + This control gives a visual clue to the user that something is happening, without information about its progress. + + + + XAML for Xamarin.Forms supports the following properties for the class: + + + Property + Value + + + Color + + A color specification, with or without the prefix, "Color". For example, "Color.Red" and "Red" both specify the color red. + + + + IsRunning + + + or , to indicate whether the animation for is displayed. + + + + + The example below creates a red activity indicator that is animated to imply that an activity is ongoing: + ]]> + + + + + Initializes a new instance of the ActivityIndicator class. + + The following example shows the initialization of a running ActivityIndicator. + + + + + + + + Gets or sets the of the ActivityIndicator. This is a bindable property. + A used to display the ActivityIndicator. Default is . + + + + Identifies the Color bindable property. + + + + Gets or sets the value indicating if the ActivityIndicator is running. This is a bindable property. + A indicating if the ActivityIndicator is running. + + + + Identifies the Color bindable property. + + + + To be added. + To be added. + To be added. + To be added. + + + Encapsulates an animation, a collection of functions that modify properties over a user-perceptible time period. + To be added. + + + Creates a new object with default values. + To be added. + + + To be added. + To be added. + To be added. + To be added. + To be added. + Creates a new object with the specified parameters. + To be added. + + + To be added. + To be added. + To be added. + Adds an object to this that begins at and finishes at . + To be added. + + + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + Runs the animation with the supplied parameters. + To be added. + + + Returns a callback that recursively runs the eased animation step on this object and those of its children that have begun and not finished. + A callback that recursively runs the eased animation step on this object and those of its children that have begun and not finished. + To be added. + + + Returns an enumerator that can be used to iterate over the child objects of this object. + To be added. + To be added. + + + To be added. + To be added. + To be added. + Adds an object to this that begins at and finishes at . + To be added. + To be added. + + + To be added. + To be added. + To be added. + Adds to the children of this object and sets the start and end times of to and , respectively. + To be added. + To be added. + + + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + Creates a new object with the specified parameters, and adds it to the children of this object. + To be added. + To be added. + + + Extension methods for . + To be added. + + + To be added. + To be added. + Stops the animation. + To be added. + If refers to an animation that belongs to this instance, then its tweener handlers are removed, the tweener is stopped, the animation is removed from this instance, and it is marked as finished. If refers to one of the kinetics that belong to this instance, then it and its ticker are removed. + + + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + Sets the specified parameters and starts the animation. + To be added. + + + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + Sets the specified parameters and starts the animation. + To be added. + + + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + Sets the specified parameters and starts the animation. + To be added. + + + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + Sets the specified parameters and starts the animation. + To be added. + + + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + Sets the specified parameters and starts the kinetic animation. + To be added. + + + To be added. + To be added. + Returns a Boolean value that indicates whether or not the animation that is specified by is running. + To be added. + To be added. + + + To be added. + To be added. + To be added. + To be added. + Returns a function that performs a linear interpolation between and . + A function that performs a linear interpolation between and . Application developers can pass values between 0.0f and 1.0f to this function in order to recieve a value that is offset from or , depending on the value of , by the passed value times the distance between and . + If is , then the interpolation happens between and . + + + Class that represents a cross-platform mobile application. + To be added. + + + Initializes a new instance. + To be added. + + + To be added. + To be added. + To be added. + + + Gets the current application. + To be added. + To be added. + + + Gets or sets the main page of the application. + To be added. + This property throws an exception if the application developer attempts to set it to . + + + Event that is raised after a view has been popped modally. + To be added. + + + Event that is raised when a view is modally popped. + To be added. + + + Event that is raised after a view has been pushed modally. + To be added. + + + Event that is raised when a view is modally pushed. + To be added. + + + To be added. + To be added. + To be added. + To be added. + + + To be added. + To be added. + To be added. + + + Throws . + To be added. + + + Application developers override this method to perform actions when the application resumes from a sleeping state. + To be added. + + + Application developers override this method to perform actions when the application enters the sleeping state. + To be added. + + + Application developers override this method to perform actions when the application starts. + To be added. + + + Gets the dictionary of properties for this object. + To be added. + To be added. + + + Gets or sets the resource dictionary for this object. + To be added. + To be added. + + + Asynchronously persists the dictionary for the application object. + To be added. + To be added. + + + To be added. + To be added. + To be added. + + + To be added. + To be added. + + + To be added. + To be added. + + + To be added. + To be added. + To be added. + + + To be added. + To be added. + + + To be added. + To be added. + To be added. + + + To be added. + To be added. + + + To be added. + To be added. + To be added. + To be added. + + + To be added. + To be added. + To be added. + + + To be added. + To be added. + + + To be added. + To be added. + To be added. + + + To be added. + To be added. + To be added. + + + To be added. + To be added. + + + To be added. + To be added. + To be added. + + + To be added. + To be added. + + + To be added. + To be added. + To be added. + + + Defines how an image is displayed. + + + + Scale the image to fill the view. Some parts may be clipped in order to fill the view. + + + + Scale the image to fit the view. Some parts may be left empty (letter boxing). + + + Scale the image so it exactly fills the view. Scaling may not be uniform in X and Y. + + + Internal use only. Contains arguments for the event that is raised when a back button is pressed. + To be added. + + + Internal use only. Initializes a new instance. + To be added. + + + Internal use only. Gets or sets a value that indicates whether the back button event has already been handled. + To be added. + To be added. + + + Base class for menu items. + To be added. + + + Intializes a new instance. + To be added. + + + Base class for generalized user-defined behaviors that can respond to arbitrary conditions and events. + Application developers should specialize the generic class, instead of directly using . + + + Gets the type of the objects with which this can be associated. + To be added. + To be added. + + + To be added. + Application developers override this method to implement the behaviors that will be associated with . + To be added. + + + To be added. + Application developers override this method to remove the behaviors from that were implemented in a previous call to the method. + To be added. + + + To be added. + Attempts to attach to . If successful, calls the method. + To be added. + + + To be added. + Detaches from . Calls the method. + To be added. + + + The type of the objects with which this can be associated. + Base generic class for generalized user-defined behaviors that can respond to arbitrary conditions and events. + Application developers should specialize this generic class, instead of directly using . + + + Creates a new instance. + + + + To be added. + Application developers override this method to implement the behaviors that will be associated with . + To be added. + + + To be added. + Attaches to the superclass and then calls the method on this object. + To be added. + + + To be added. + Application developers override this method to remove the behaviors from that were implemented in a previous call to the method. + To be added. + + + To be added. + Calls the method and then detaches from the superclass. + To be added. + + + Provides a mechanism by which application developers can propagate changes that are made to data in one object to another, by enabling validation, type coercion, and an event system. . + + The class provides a data storage mechanism that enables the application developer to synchronize data between objects in response to changes, for example, between the View and View Model in the MVVM design pattern. All of the visual elements in the namespace inherit from class, so they can all be used to bind the data behind their user interface elements to View Models that are supplied by the application developer. + + To bind the data behind a property in a , typically a view, to a property in the View Model, application developers should do the following. + First, the developer creates a pair of properties on the view, one of which is a , and the other of which is a property of whatever type is required. In the code below, MockBindableObject stands in for what would typically be a user interface object in production code. Application developers should note the use of and to get and set the value on the bound property; The property of the desired type provides the interface that the target of the bound property will implement. + ( + // o => o.Foo, default (string) + // ); + + public string BoundName + { + get { return (string) GetValue (BoundNameProperty); } + set { SetValue (BoundNameProperty, value); } + } +} + ]]> + Second, the developer creates the implementation for the bound property in a class that implements the interface. In the MVVM design pattern, this is typically done by the View Model. Application developers should implement the interface on classes that they want to use as View Models. In the example below, app developers should take note of the idiomatic way that the Name property is implemented to, first, ensure that the property actually changed and return if it did not, and only then assign the value and call the method. Additionally, the Name property in the example below merely wraps the name field. In practice, the application developer may choose a different model in which to store application data. + + Third, and finally, the application developer binds an instance of a BindableObject to an instance that implements INotifyPropertyChanged. In the vocabulary of the MVVM design pattern, this is "binding an instance of the View to an instance of a View Model." Once this step is complete, changes in the data are propagated between the View and View Model in a way that is determined by the value of the enumeration, if any, that was passed during the binding step. + The code below, when included in a project that reference the classes above, creates an instance of both MockBindable and MockViewModel, performs some intitialization, sets the binding, and then demonstrates a one-way binding. The code below runs without throwing an exception. + + + + + + Initializes a new instance of the BindableObject class. + The class is abstract, and this constructor is protected. It is invoked by child constructors. + + + The object that contains the properties that will be targeted by the bound properties that belong to this . This parameter is optional. + Apply the bindings to this. + + If an object is passed for the argument, bindings are first unapplied from . This method removes any current bindings from the old context, and applies every binding to the current . Application developers could use this method to bind the UI from a new View to an existing ViewModel, while optionally removing the bindings from the old View. Application developers can omit the argument in order to leave the old bindings in place. + + + + Gets or sets object that contains the properties that will be targeted by the bound properties that belong to this . + An that contains the properties that will be targeted by the bound properties that belong to this . This is a bindable property. + + Typically, the runtime performance is better if is set after all calls to have been made. + The following example shows how to apply a BindingContext and a Binding to a Label (inherits from BindableObject): + + + + + + + Raised whenever the property changes. + + + + Implements the bound property whose interface is provided by the property. + + Typically, the runtime performance is better if is set after all calls to have been made. + The following example shows how to set a binding to the BindingContext: + + + + + + + The BindableProperty to clear. + Clears any value set by for . + + Calling this method on a readonly property will result in an InvalidOperationException. + + + + The BindablePropertyKey that identifies the to clear. + Clears any value set by for the property that is identified by . + + Calling this method on a readonly property will result in an InvalidOperationException. + + + + The BindableProperty for which to get the value. + Returns the value that is contained the BindableProperty. + The value that is contained the . + + + and are used to access the values of properties that are implemented by a . That is, application developers typically provide an interface for a bound property by defining property whose accessor casts the result of to the appropriate type and returns it, and whose accessor uses to set the value on the correct property. Application developers should perform no other steps in the public property that defines the interface of the bound property. + + The following example shows how to create a bindable property interface for an implementation that will be provided in the target property when the binding is made at run time. + (w => w.My, default(string)); + + public string My { + get { return (string)GetValue (MyProperty); } + set { SetValue (MyProperty, value); } + } +} + ]]> + + + + + Override this method to execute an action when the BindingContext changes. + + + + The name of the property that changed. + Call this method from a child class to notify that a change happened on a property. + + A triggers this by itself. An inheritor only needs to call this for properties without as the backend store. + + + + The name of the property that is changing. + Call this method from a child class to notify that a change is going to happen on a property. + A triggers this by itself. An inheritor only needs to call this for properties without as the backend store. + + + Raised when a property has changed. + + + + Raised when a property is about to change. + + + + The BindableProperty from which to remove bindings. + Removes a previously set binding. + + This method succeeds even if is not bound. + + + + The BindableProperty on which to set a binding. + The binding to set. + Assigns a binding to a property. + + The following example shows how to set a binding to a property: + + + + + + + The object on which to set the inherited binding context. + The inherited context to set. + Sets the inherited context to a nested element. + + + + The BindableProperty on which to assign a value. + The value to set. + Sets the value of the specified property. + + + and are used to access the values of properties that are implemented by a . That is, application developers typically provide an interface for a bound property by defining property whose accessor casts the result of to the appropriate type and returns it, and whose accessor uses to set the value on the correct property. Application developers should perform no other steps in the public property that defines the interface of the bound property. + + The following example shows how to create a bindable property interface for an implementation that will be provided in the target property when the binding is made at run time. + (w => w.My, default(string)); + + public string My { + get { return (string)GetValue (MyProperty); } + set { SetValue (MyProperty, value); } + } +} + ]]> + + + + + The BindablePropertyKey on which to assign a value. + The value to set. + Sets the value of the propertyKey. + + This method and are useful to implement BindableProperties with limited write access. The write access is limited to the scope of the BindablePropertyKey. + The following example shows how to declare a BindableProperty with "internal" write access. + + (w => w.My, default(string)); + public static readonly BindableProperty MyProperty = MyPropertyKey.BindableProperty; + + public string My { + get { return (string)GetValue (MyProperty); } + internal set { SetValue (MyPropertyKey, value); } + } +} + ]]> + + + + + Unapplies all previously set bindings. + + This method removes all current bindings from the current context. + Changing a bound property requires that the binding count for a bound property must be 0. The method merely decrements the cound, and does not remove all bindings everywhere. + + + + To be added. + To be added. + For internal use only. + To be added. + + + To be added. + To be added. + For internal use only. + To be added. + + + Contains convenience extension methods for . + + + + The . + The BindableProperty on which to set a binding. + A indicating the property path to bind to. + Creates and applies a binding to a property. + + The following example shows how to use the extension method to set a binding. + + + + + + + The . + The BindableProperty on which to set a bindinge. + A indicating the property path to bind to. + The for the binding. This parameter is optional. Default is . + An for the binding. This parameter is optional. Default is . + A string used as stringFormat for the binding. This parameter is optional. Default is . + Creates and applies a binding to a property. + + The following example shows how to use the extension method to set a binding. + + + + + + + The source type. + The BindableObject. + The BindableProperty to bind to + An expression used to retrieve the source path. + The BindingMode for the binding. This parameter is optional. Default is . + An IValueConverter for the binding. This parameter is optional. Default is . + A string used as stringFormat for the binding. This parameter is optional. Default is . + Creates and applies a binding from an expression. + + This extension method uses Expression instead of path to creates and sets bindings. Using Expressions is more refactoring friendly. + This following example illustrates the setting of a binding using the extension method. + + (Label.TextProperty, vm => vm.Name); +label.BindingContext = new PersonViewModel { + Name = "John Doe", + Company = "Xamarin" +}; +Debug.WriteLine (label.Text); //prints "John Doe" + ]]> + + + + + A BindableProperty is a backing store for properties allowing bindings on . + + + + + The name of the BindableProperty. + The type of the property. + The type of the declaring object. + The default value for the property. + The BindingMode to use on SetBinding() if no BindingMode is given. This parameter is optional. Default is BindingMode.OneWay. + A delegate to be ran when a value is set. This parameter is optional. Default is null. + A delegate to be ran when the value has changed. This parameter is optional. Default is null. + A delegate to be ran when the value will change. This parameter is optional. Default is null. + A delegate used to coerce the range of a value. This parameter is optional. Default is null. + Creates a new instance of the BindableProperty class. + A newly created BindableProperty. + + + + The name of the BindableProperty. + The type of the property. + The type of the declaring object. + The default value for the property. + The BindingMode to use on SetBinding() if no BindingMode is given. This parameter is optional. Default is BindingMode.OneWay. + A delegate to be ran when a value is set. This parameter is optional. Default is null. + A delegate to be ran when the value has changed. This parameter is optional. Default is null. + A delegate to be ran when the value will change. This parameter is optional. Default is null. + To be added. + A Func used to initialize default value for reference types.. + Creates a new instance of the BindableProperty class. + A newly created BindableProperty. + To be added. + + + The type of the declaring object. + The type of the property. + An expression identifying the getter for the property using this BindableProperty as backing store. + Default value for the BindableProperty. + The BindingMode to use on SetBinding() if no BindingMode is given. This parameter is optional. Default is BindingMode.OneWay. + A delegate to be ran when a value is set. This parameter is optional. Default is null. + To be added. + To be added. + A delegate used to coerce the range of a value. This parameter is optional. Default is null. + Deprecated. Do not use. + A newly created BindableProperty. + To be added. + + + The type of the declaring object. + The type of the property. + An expression identifying the getter for the property using this BindableProperty as backing store. + Default value for the BindableProperty. + The BindingMode to use on SetBinding() if no BindingMode is given. This parameter is optional. Default is BindingMode.OneWay. + A delegate to be ran when a value is set. This parameter is optional. Default is null. + To be added. + To be added. + To be added. + A Func used to initialize default value for reference types.. + Deprecated. Do not use. + A newly created BindableProperty. + + + + The name of the BindableProperty. + The type of the property. + The type of the declaring object. + The default value for the property. + The BindingMode to use on SetBinding() if no BindingMode is given. This parameter is optional. Default is BindingMode.OneWay. + A delegate to be ran when a value is set. This parameter is optional. Default is null. + A delegate to be ran when the value has changed. This parameter is optional. Default is null. + A delegate to be ran when the value will change. This parameter is optional. Default is null. + A delegate used to coerce the range of a value. This parameter is optional. Default is null. + Creates a new instance of the BindableProperty class for an attached property. + A newly created attached BindableProperty. + + + + The name of the BindableProperty. + The type of the property. + The type of the declaring object. + The default value for the property. + The BindingMode to use on SetBinding() if no BindingMode is given. This parameter is optional. Default is BindingMode.OneWay. + A delegate to be ran when a value is set. This parameter is optional. Default is null. + A delegate to be ran when the value has changed. This parameter is optional. Default is null. + A delegate to be ran when the value will change. This parameter is optional. Default is null. + A delegate used to coerce the range of a value. This parameter is optional. Default is null. + A Func used to initialize default value for reference types.. + Creates a new instance of the BindableProperty class for an attached property. + A newly created attached BindableProperty. + + + + The type of the declaring object. + The type of the property. + An expression identifying a static method returning the value of the property using this BindableProperty as backing store. + Default value for the BindableProperty. + The BindingMode to use on SetBinding() if no BindingMode is given. This parameter is optional. Default is BindingMode.OneWay. + A delegate to be ran when a value is set. This parameter is optional. Default is null. + To be added. + To be added. + A delegate used to coerce the range of a value. This parameter is optional. Default is null. + Deprecated. Do not use. + A newly created BindableProperty. + + Attached properties are bindable properties that are bound to an object other than their parent. Often, they are used for child items in tables and grids, where data about the location of an item is maintained by its parent, but must be accessed from the child item itself. + + + + The type of the declaring object. + The type of the property. + An expression identifying a static method returning the value of the property using this BindableProperty as backing store. + Default value for the BindableProperty. + The BindingMode to use on SetBinding() if no BindingMode is given. This parameter is optional. Default is BindingMode.OneWay. + A delegate to be ran when a value is set. This parameter is optional. Default is null. + To be added. + To be added. + A delegate used to coerce the range of a value. This parameter is optional. Default is null. + A Func used to initialize default value for reference types.. + Deprecated. Do not use. + A newly created BindableProperty. + + Attached properties are bindable properties that are bound to an object other than their parent. Often, they are used for child items in tables and grids, where data about the location of an item is maintained by its parent, but must be accessed from the child item itself. + + + + The name of the BindableProperty. + The type of the property. + The type of the declaring object. + The default value for the property. + The BindingMode to use on SetBinding() if no BindingMode is given. This parameter is optional. Default is BindingMode.OneWay. + A delegate to be ran when a value is set. This parameter is optional. Default is null. + A delegate to be ran when the value has changed. This parameter is optional. Default is null. + A delegate to be ran when the value will change. This parameter is optional. Default is null. + A delegate used to coerce the range of a value. This parameter is optional. Default is null. + Creates a new instance of the BindableProperty class for attached read-only properties. + A newly created attached read-only BindableProperty. + + Attached properties are bindable properties that are bound to an object other than their parent. Often, they are used for child items in tables and grids, where data about the location of an item is maintained by its parent, but must be accessed from the child item itself. + + + + The name of the BindableProperty. + The type of the property. + The type of the declaring object. + The default value for the property. + The BindingMode to use on SetBinding() if no BindingMode is given. This parameter is optional. Default is BindingMode.OneWay. + A delegate to be ran when a value is set. This parameter is optional. Default is null. + A delegate to be ran when the value has changed. This parameter is optional. Default is null. + A delegate to be ran when the value will change. This parameter is optional. Default is null. + A delegate used to coerce the range of a value. This parameter is optional. Default is null. + A Func used to initialize default value for reference types. + Creates a new instance of the BindableProperty class for attached read-only properties. + A newly created attached read-only BindableProperty. + + Attached properties are bindable properties that are bound to an object other than their parent. Often, they are used for child items in tables and grids, where data about the location of an item is maintained by its parent, but must be accessed from the child item itself. + + + + The type of the declaring object. + The type of the property. + An expression identifying a static method returning the value of the property using this BindableProperty as backing store. + Default value for the BindableProperty. + The BindingMode to use on SetBinding() if no BindingMode is given. This parameter is optional. Default is BindingMode.OneWay. + A delegate to be ran when a value is set. This parameter is optional. Default is null. + To be added. + To be added. + A delegate used to coerce the range of a value. This parameter is optional. Default is null. + Deprecated. Do not use. + A newly created BindablePropertyKey. + + Attached properties are bindable properties that are bound to an object other than their parent. Often, they are used for child items in tables and grids, where data about the location of an item is maintained by its parent, but must be accessed from the child item itself. + + + + The type of the declaring object. + The type of the property. + An expression identifying a static method returning the value of the property using this BindableProperty as backing store. + Default value for the BindableProperty. + The BindingMode to use on SetBinding() if no BindingMode is given. This parameter is optional. Default is BindingMode.OneWay. + A delegate to be ran when a value is set. This parameter is optional. Default is null. + To be added. + To be added. + A delegate used to coerce the range of a value. This parameter is optional. Default is null. + A Func used to initialize default value for reference types. + Deprecated. Do not use. + A newly created BindablePropertyKey. + + + + The name of the BindableProperty. + The type of the property. + The type of the declaring object. + The default value for the property. + The BindingMode to use on SetBinding() if no BindingMode is given. This parameter is optional. Default is BindingMode.OneWay. + A delegate to be ran when a value is set. This parameter is optional. Default is null. + To be added. + To be added. + A delegate used to coerce the range of a value. This parameter is optional. Default is null. + Creates a new instance of the BindablePropertyKey class. + + + Attached properties are bindable properties that are bound to an object other than their parent. Often, they are used for child items in tables and grids, where data about the location of an item is maintained by its parent, but must be accessed from the child item itself. + + + + The name of the BindableProperty. + The type of the property. + The type of the declaring object. + The default value for the property. + The BindingMode to use on SetBinding() if no BindingMode is given. This parameter is optional. Default is BindingMode.OneWay. + A delegate to be ran when a value is set. This parameter is optional. Default is null. + To be added. + To be added. + A delegate used to coerce the range of a value. This parameter is optional. Default is null. + A Func used to initialize default value for reference types. + Creates a new instance of the BindablePropertyKey class. + + + Attached properties are bindable properties that are bound to an object other than their parent. Often, they are used for child items in tables and grids, where data about the location of an item is maintained by its parent, but must be accessed from the child item itself. + + + The type of the declaring object. + The type of the property. + An expression identifying the getter for the property using this BindableProperty as backing store. + Default value for the BindableProperty. + The BindingMode to use on SetBinding() if no BindingMode is given. This parameter is optional. Default is BindingMode.OneWay. + A delegate to be ran when a value is set. This parameter is optional. Default is null. + A delegate to be ran when the value has changed. This parameter is optional. Default is null. + A delegate to be ran when the value will change. This parameter is optional. Default is null. + A delegate used to coerce the range of a value. This parameter is optional. Default is null. + Deprecated. Do not use. + A newly created BindablePropertyKey. + + A BindablePropertyKey is used to restrict write access to a property, either via SetValue() or binding. A BindableProperty is usually defined too, to give broader read access + + + + The type of the declaring object. + The type of the property. + An expression identifying the getter for the property using this BindableProperty as backing store. + Default value for the BindableProperty. + The BindingMode to use on SetBinding() if no BindingMode is given. This parameter is optional. Default is BindingMode.OneWay. + A delegate to be ran when a value is set. This parameter is optional. Default is null. + A delegate to be ran when the value has changed. This parameter is optional. Default is null. + A delegate to be ran when the value will change. This parameter is optional. Default is null. + A delegate used to coerce the range of a value. This parameter is optional. Default is null. + A Func used to initialize default value for reference types. + Deprecated. Do not use. + A newly created BindablePropertyKey. + + A BindablePropertyKey is used to restrict write access to a property, either via SetValue() or binding. A BindableProperty is usually defined too, to give broader read access + + + + Gets the type declaring the BindableProperty + + Unused + + + Gets the default BindingMode. + + + + + Gets the default value for the BindableProperty. + + + + + Gets the Func used as default value creator. + + + + + Gets a value indicating if the BindableProperty is created form a BindablePropertyKey. + + + + + Gets the property name. + + + + + Gets the type of the BindableProperty. + + + + + To be added. + To be added. + To be added. + Delegate for BindableProperty.PropertyChanged. + To be added. + + + To be added. + To be added. + To be added. + To be added. + Strongly-typed delegate for BindableProperty.PropertyChanged. + To be added. + + + To be added. + To be added. + To be added. + Delegate for BindableProperty.PropertyChanging. + To be added. + + + To be added. + To be added. + To be added. + To be added. + Strongly-typed delegate for BindableProperty.PropertyChanging. + To be added. + + + To be added. + To be added. + Delegate for BindableProperty.CoerceValue. + To be added. + To be added. + + + To be added. + To be added. + To be added. + Strongly-typed delegate for BindableProperty.CoerceValue. + To be added. + To be added. + + + To be added. + Strongly typed delegate for BindableProperty.DefaultValueCreator. + To be added. + To be added. + + + To be added. + To be added. + To be added. + Delegate for BindableProperty.DefaultValueCreator. + To be added. + To be added. + + + To be added. + To be added. + Delegate for BindableProperty.ValidateValue. + To be added. + To be added. + + + To be added. + To be added. + To be added. + Strongly-typed delegate for BindableProperty.ValidateValue. + To be added. + To be added. + + + A for bindable properties. + To be added. + + + Creates a new with default values. + To be added. + + + To be added. + Returns if the source type can be converted with this type converter. + To be added. + To be added. + + + To be added. + To be added. + Converts with the specified . + To be added. + To be added. + + + To be added. + Returns a bindable property when supplied a string of the form Type.PropertyName. + To be added. + To be added. + + + To be added. + To be added. + To be added. + For internal use only. + To be added. + To be added. + + + To be added. + To be added. + For internal use only. + To be added. + To be added. + + + The secret key to a BindableProperty, used to implement a BindableProperty with restricted write access. + + The following example shows the creation of a BindablePropertyKey. Write access is while read access is . + + (w => w.Foo, default(string)); + + public static readonly BindableProperty FooProperty = FooPropertyKey.BindableProperty; + + public string Foo { + get { return (string)GetValue (FooProperty); } + internal set { SetValue (FooPropertyKey, value); } + } +} + ]]> + + + + + Gets the BindableProperty. + A BindableProperty used for read access. + + + + A single 1:1 immutable data binding. + This class is immutable. + + + Constructs and initializes a new instance of the class. + + + + The property path. + The binding mode. This property is optional. Default is . + The converter. This parameter is optional. Default is . + An user-defined parameter to pass to the converter. This parameter is optional. Default is . + A String format. This parameter is optional. Default is . + Constructs and initializes a new instance of the class. + + The following example shows how to set a binding to a property with a BindingMode and Converter: + + + + + + + The property path. + The binding mode. This property is optional. Default is . + The converter. This parameter is optional. Default is . + An user-defined parameter to pass to the converter. This parameter is optional. Default is . + A String format. This parameter is optional. Default is . + An object used as the source for this binding. This parameter is optional. Default is . + Constructs and initializes a new instance of the class. + + The following example shows how to set a binding to a property with a BindingMode and Converter: + + + + + + + Gets or sets the converter to be used for this binding ? + An IValueConverter, or . + + + + Gets or sets the parameter passed as argument to the converter. + An object, or . + + + + The type of the source of the binding. + An expression used to retrieve the binding path. + The binding mode. This property is optional. Default is . + The converter. This parameter is optional. Default is . + An user-defined parameter to pass to the converter. This parameter is optional. Default is . + A String format. This parameter is optional. Default is . + This is a convenient factory method to create a binding from an expression, instead of a property name. This api is more resilient to refactoring. + A newly created binding. + + The following example shows how to set a binding to a property : + + (vm => vm.Name)); +Debug.WriteLine (label.Text); //prints "John Doe". + ]]> + + + + + Gets or sets the path of the property + A string indicating the path to the property. + + + + Gets or sets the source of the binding. + An object used as the binding source. + If the Source is not null, the BindingContext is ignored, and the Source is used instead. This allows to set a source for a single Binding, and not for all the Bindings applied to the BindableObject. + + + An abstract class that provides a and a formatting option. + To be added. + + + To be added. + Stops synchronization on the . + See for more information on enabling and disabling synchronization of collections in multithreaded environments. + + + The collection that will be read or updated. + The context or lock object that will be passed to . May be . + The synchronization callback. + Starts synchronization on the by using and . + + Application developers implement and pass it to the method to enable correct multithreaded access to . After synchronization is enabled, the Xamarin.Forms framework passes an access method, , and a that indicates whether write access is needed, to the application developer's implementation of each time that the framework needs to modify the collection in a multithreaded environment. The application developer's implementation should decide, based on the object (which may be merely a locking object or the object on which the collection lives) and the value of the parameter, whether or not to lock while calling . + Because Xamarin.Forms maintains a weak reference to , application developers do not need to call to aid in garbage collection. + + + + Gets or sets the mode for this binding. + To be added. + To be added. + + + Gets or sets the string format for this binding. + + A string specifying the format for the value of this binding. + + + + Used for providing a display format for the binding value or compositing the value with other + text. Implementors of decide how the string format is utilized, but + all support standard conventions. + + + allows for one argument for its singular value. + + + + A simple example showing compositing text and determining the display format for the value with a + + + + + + + + Throws an if the binding has been applied. + + Use this method in property setters as bindings can not be changed once applied. + + + + Class that represents a value comparison with the target of an arbitrary binding. + To be added. + + + Initializes a new instance. + To be added. + + + Gets or sets the binding against which the property will be compared. + To be added. + To be added. + + + The binding value that satisfies the condition. + To be added. + To be added. + + + To be added. + Used by XAML infrastructure. + To be added. + To be added. + + + The direction of changes propagation for bindings. + + The following examples shows some BindingMode use cases. + + (Label.TextProperty, vm => vm.Name, mode: BindingMode.OneWay); + +viewmodel.Name = "John Doe"; +Debug.WriteLine (label.Text); //prints "John Doe" +label.Text = "Foo"; +Debug.WriteLine (viewmodel.Name); //prints "John Doe" + + +//BindingMode.TwoWay +label = new Label (); +label.BindingContext = viewmodel = new PersonViewModel (); +label.SetBinding (Label.TextProperty, vm => vm.Name, mode: BindingMode.TwoWay); + +viewmodel.Name = "John Doe"; +Debug.WriteLine (label.Text); //prints "John Doe" +label.Text = "Foo"; +Debug.WriteLine (viewmodel.Name); //prints "Foo" + + +//BindingMode.OneWayToSource +label = new Label (); +label.BindingContext = viewmodel = new PersonViewModel (); +label.SetBinding (Label.TextProperty, vm => vm.Name, mode: BindingMode.OneWayToSource); + +viewmodel.Name = "John Doe"; +Debug.WriteLine (label.Text); //prints "" +label.Text = "Foo"; +Debug.WriteLine (viewmodel.Name); //prints "Foo" + ]]> + + + + + When used in Bindings, indicates that the Binding should use the . When used in BindableProperty declaration, defaults to BindingMode.OneWay. + + + Indicates that the binding should only propagates changes from source (usually the View Model) to target (the BindableObject). This is the default mode for most BindableProperty values. + + + Indicates that the binding should only propagates changes from target (the BindableObject) to source (usually the View Model). This is mainly used for read-only BindableProperty values. + + + Indicates that the binding should propagates changes from source (usually the View Model) to target (the BindableObject) in both directions. + + + Type converter that converts from source types to + To be added. + + + Creates a new object with default values. + To be added. + + + To be added. + Returns a Boolean value that indicates whether this can convert to . + To be added. + To be added. + + + To be added. + To be added. + Converts to by using . + To be added. + To be added. + + + To be added. + Converts a property path to a binding. + To be added. + To be added. + + + A bounds layout constraint used by s. + To be added. + + + To be added. + To be added. + Returns a object that contains the compiled version of and is relative to either or the views referred to in . + To be added. + To be added. + + + A that converts strings into s for use with s. + To be added. + + + Creates a new with default values. + To be added. + + + To be added. + Returns a Boolean value that indicates whether this can convert the to a instance. + To be added. + To be added. + + + To be added. + To be added. + Converts into a by using the specified . + To be added. + To be added. + + + To be added. + Converts into a . + To be added. + To be added. + + + A used to draw a solid colored rectangle. + + BoxView is a useful stand-in for images or custom elements when doing initial prototyping. BoxView has a default size request of 40x40. If you need a different size, assign the and properties. + XAML for Xamarin.Forms supports the following properties for the class: + + The example below creates a red with the default width and height. + ]]> + + The following example shows a basic use: + + + + + + + + + + Initializes a new instance of the BoxView class. + + + + Gets or sets the color which will fill the rectangle. This is a bindable property. + The color that is used to fill the rectangle. The default is . + + + + Identifies the Color bindable property. + + + + To be added. + To be added. + To be added. + To be added. + + + To be added. + To be added. + Method that is called when a size request is made to the box view. + To be added. + To be added. + + + A button that reacts to touch events. + + + The following example shows a basic use: + + + + + + + + + Initializes a new instance of the Button class. + + + + Gets or sets a color that describes the border stroke color of the button. This is a bindable property. + The color that is used as the border stroke color; the default is . + This property has no effect if is set to 0. On Android this property will not have an effect unless is set to a non-default color. + + + Backing store for the BorderColor bindable property. + + + + Gets or sets the corner radius of the border. This is a bindable property. + The corner radius of the button border; the default is 5. + + + + Backing store for the BorderRadius bindable property. + + + + Gets or sets the width of the border. This is a bindable property. + The width of the button border; the default is 0. + Set this value to a non-zero value in order to have a visible border. + + + Backing store for the BorderWidth bindable property. + + + + Occurs when the Button is clicked. + The user may be able to raise the clicked event using accessibility or keyboard controls when the Button has focus. + + + Gets or sets the command to invoke when the button is activated. This is a bindable property. + A command to invoke when the button is activated. The default value is . + This property is used to associate a command with an instance of a button. This property is most often set in the MVVM pattern to bind callbacks back into the ViewModel. is controlled by the Command if set. + + + Gets or sets the parameter to pass to the Command property. This is a bindable property. + A object to pass to the command property. The default value is . + + + + Backing store for the CommandParameter bindable property. + + + + Backing store for the Command bindable property. + + + + To be added. + To be added. + To be added. + + + To be added. + To be added. + + + Gets or sets the Font for the Label text. This is a bindable property. + The value for the button. The default is , which represents the default font on the platform. + + + + Gets a value that indicates whether the font for the button text is bold, italic, or neither. + To be added. + To be added. + + + Backing store for the FontAttributes property. + To be added. + + + Gets the font family to which the font for the button text belongs. + To be added. + To be added. + + + Backing store for the FontFamily property. + To be added. + + + Backing store for the Font bindable property. + + + + Gets or sets the size of the font of the button text. + To be added. + To be added. + + + Backing store for the FontSize property. + To be added. + + + Gets or sets the optional image source to display next to the text in the Button. This is a bindable property. + To be added. + To be added. + + + Backing store for the Image bindable property. + + + + To be added. + To be added. + To be added. + To be added. + + + Method that is raised when the binding context changes. + + Application developers who override this method in derived classes must call this method in the base class, . + + + + The name of the changed property. + Call this method from a child class to notify that a change happened on a property. + A Button triggers this by itself. An inheritor only need to call this for properties without BindableProperty as backend store. + + + Gets or sets the Text displayed as the content of the button. This is a bindable property. + The text displayed in the button. The default value is . + Changing the Text of a button will trigger a layout cycle. + + + Gets or sets the for the text of the button. This is a bindable property. + The value. + + + + Backing store for the TextColor bindable property. + + + + Backing store for the Text bindable property. + + + + Sends a click event. + To be added. + + + To be added. + To be added. + + + To be added. + To be added. + To be added. + To be added. + + + To be added. + To be added. + To be added. + + + To be added. + To be added. + To be added. + + + To be added. + To be added. + To be added. + + + To be added. + To be added. + + + To be added. + + + To be added. + + + To be added. + + + To be added. + + + To be added. + To be added. + + + To be added. + To be added. + + + To be added. + To be added. + To be added. + To be added. + + + A Page that users can swipe from side to side to display pages of content, like a gallery. + + The provides a navigation experience that will feel natural and familiar to Windows Phone users. By using , application developers can provide customized navigation on a per-platform basis. For example, an application developer could use a for Android and iOS, and use a on Windows Phone. + + The following XAML example, when properly included and referenced in a Xamarin.Forms project, creates a that displays three simple elements: + + + + + + + + + + + + + + + +]]> + + + The following C# example creates a that displays three simple elements: + pages = new List (0); +Color[] colors = { Color.Red, Color.Green, Color.Blue }; +foreach (Color c in colors) { + pages.Add (new ContentPage { Content = new StackLayout { + Children = { + new Label { Text = c.ToString () }, + new BoxView { + Color = c, + VerticalOptions = LayoutOptions.FillAndExpand + } + } + } + }); +} + +MainPage = new CarouselPage { + Children = { pages [0], + pages [1], + pages [2] } +}; +]]> + + When embedding a CarouselPage into a , application developers should set to to prevent gesture conflicts between the CarouselPage and MasterDetailPage. + + + + + + + Initializes a new instance of the CarouselPage class. + + + + The object representing the model ofr the page. + Creates a default page, suitable for display in this, for an object. + A page that is titled with the string value of . + This returns a new object that has its property set to the value of when called on . + + + To be added. + To be added. + To be added. + To be added. + + + Provides base class and capabilities for all Forms cells. Cells are elements meant to be added to or . + + The subtypes of are: + + + Type + Description + + + EntryCell + A with a label and a single line text entry field. + + + SwitchCell + A with a label and an on/off switch. + + + TextCell + A with primary and secondary text. + + + ImageCell + A that also includes an image. + + + ViewCell + A containing a developer-defined . + + + The various subclasses are shown in the following image: + + + + + + + XAML for Xamarin.Forms supports the following properties for the class: + + + Property + Value + + + ContextActions + + A list of objects to display when the user performs the context action. + + + + IsEnabled + + + or , indicating whether the animation for is displayed. + + + + + + + Initializes a new instance of the Cell class. + Cell class is abstract, this constructor is never invoked directly. + + + Occurs when the visual representation of the Cell is being added to the visual layout. + This method is raised before the cell is on screen. + + + Gets a list of menu items to display when the user performs the device-specific context gesture on the Cell. + The list of menu items that will be displayed when the user performs the device-specific context gesture on the Cell. + The context gesture on the iOS platform is a left swipe. For Android and Windows Phone operating systems, the context gesture is a press and hold. + + + Occurs when the visual representation of the Cell is being removed from the visual layout. + This method is for virtualization usage only. It is not gauranteed to fire for all visible Cells when the ListView or TableView is removed from the screen. Additionally it fires during virtualization, which may not correspond directly with removal from the screen depending on the platform virtualization technique used. + + + Immediately updates the cell's size. + + Developers can call this method to update the cell's size, even if the cell is currently visible. Developers should note that this operation can be expensive. + + + + Gets a value that indicates whether the cell has at least one menu item in its list property. + To be added. + To be added. + + + Gets or sets the height of the Cell. + A double that represents the height of the cell. + The property is ignored if the app developer sets the or property on the surrounding to . In that case, the or property is used instead. + + + Gets or sets the IsEnabled state of the Cell. This is a bindable property. + A bool. Default is . + + + + Identifies the IsEnabled bindable property. + + + + Invoked whenever an event occurs. Implement this method to add class handling for this event. + + + + Event that is raised when the binding context is changed. + To be added. + + + Invoked whenever an event occurs. Implement this method to add class handling for this event. + + + + Invoked whenever a long press is applied to the Cell. + + + + Application developers can override this method to do actions when the cell's parent is set. + To be added. + + + The name of the property on which to monitor value changes. + TApplication developers can override this method to do actions when the property named by is set. + To be added. + + + Invoked whenever the Cell is Tapped. + + + + Gets the height of the rendered cell on the device. + + + + + Occurs when the Cell is Tapped. + + + + To be added. + To be added. + + + To be added. + To be added. + + + The collection that was passed to . + The context or lock object that was passed to . + An action that reads or modifies . + A value that tells whether write access is required by . + Delegate for callback in . + Application developers implement a method and pass it to the method to enable correct multithreaded access to . After synchronization is enabled, the Xamarin.Forms framework passes to the application developer's implementation of each time that the framework needs to modify the collection in a multithreaded environment. The application developer's implementation should decide, based on the object (which may be merely a locking object or the object on which the collection lives) and the value of the parameter, whether or not to lock while calling . + + + Class that represents a color and exposes it as RGBA and HSL values. + + This type is immutable. Colors can be expressed in the RGB or HSL modes. While the constructor takes R, G, B, and A values, the class also calculates and makes available HSL data for the color. + + In XAML, application developers can specify any property that is of type , for example, either as a XAML attribute or as a nested tag. The following code example shows how to specify the text color for a label by using an attribute: + + Hello, World! +]]> + The example below shows how to specify the text color for a label by using a nested tag: + + Hello, World! + Color.Blue +]]> + + Application developers can specify colors in XAML either as a hexadecimal number or as a valid color name. + When specifying a color with a hexadecimal number, app developers can use 3, 4, or 6 digits. If the developer specifies 3 digits, they are interpreted as RGB doublet data for a fully opaque color. For example, "#123" specifies the color that is represented by "#FF112233". If the developer provides a 4-digit hexadecimal number, then the data are interpreted as above, except that the first digit specifies the alpha channel. For example, "#1234" specifies the color that is represented by "#11223344". Finally, if the developer provides a 6 digit hexadecimal number, the data are interpreted as a fully opaque color with those RGB values. For example, "#112233" specifies the color that is represented by "#FF112233". + When specifying a color with a string, app developers can use color name in isolation, or prefix it with "Color.". For example, both Purple and Color.Purple are valid ways to specify the color purple. The following table describes the valid color names that can be used to specify colors in XAML. +ColorShort NameRGB ValueColor.TransparentTransparent0, 0, 0 (With the alpha channel set to 0.)Color.AquaAqua0, 255, 255Color.BlackBlack0, 0, 0Color.BlueBlue0, 0, 255Color.FuchsiaFuchsia255, 0, 255Color.GrayGray128, 128, 128Color.GreenGreen0, 128, 0Color.LimeLime0, 255, 0Color.MaroonMaroon128, 0, 0Color.NavyNavy0, 0, 128Color.OliveOlive128, 128, 0Color.OrangeOrange255, 165, 0Color.PurplePurple128, 0, 128Color.PinkPink255, 102, 255Color.RedRed255, 0, 0Color.SilverSilver192, 192, 192Color.TealTeal0, 128, 128Color.WhiteWhite255, 255, 255Color.YellowYellow255, 255, 0 + + + + The luminosity of the gray-scale color. + Initialize a new gray color. + This is equivalent to new Color (value, value, value). The value is clamped to [0-1]. App developers should use the equivalent methods, instead. + + + The red component of the color. + The green component of the color. + The blue component of the color. + Initializes a new RGB color. + This is equivalent to new Color (r, g, b, 1). Values are clamped to [0-1]. Prefer the equivalent methods. + + + The red component of the color. + The green component of the color. + The blue component of the color. + The alpha component of the color. + Initializes a new RGB color with an alpha channel. + Values are clamped to [0-1]. + + + Gets the alpha component of the color. + The Alpha component of the color as a double that is in the inclusive range [0-1]. + + + + Gets the accent or tint color from the application. + A Color. + The accent color is platform and device dependent. + + + The delta (positive or negative) to add to the luminosity channel. + Returns a new Color with a modified luminosity channel. + A new color with a possibly modified luminosity channel. + The parameter is added to the current luminosity, and the resulting luminosity is then clamped to the inclusive range [0,1]. + + + Aqua, the color that is represented by the RGB value #00ffff. + + + + Gets the blue component of the color. + The Blue component of the color as a double that is in the inclusive range [0-1]. + + + + Black, the color that is represented by the RGB value #000000. + + + + Blue, the color that is represented by the RGB value #0000ff. + + + + Returns the default color. + The default color. + The Default color is used to unset any Color, and revert to the default one. + + + The value to compare to this structure. + Determine if the provided is equivalent to the current Color. + + if the provided object is an equivalent Color. Otherwies, . + Overriden. + + + A string that contains the hexadecimal (A)RGB color representation. + Returns a new RGB Color instance with the requested Red, Green, and Blue channels. The Alpha channel is set if contains one. + A color. + + When specifying a color with a hexadecimal number, app developers can use 3, 4, 6, or 8 digits. If the developer specifies 3 digits, they are interpreted as RGB doublet data for a fully opaque color. For example, "#123" specifies the color that is represented by "#FF112233". If the developer provides a 4-digit hexadecimal number, then the data are interpreted as above, except that the first digit specifies the alpha channel. For example, "#1234" specifies the color that is represented by "#11223344". If the developer provides a 6 digit hexadecimal number, the data are interpreted as a fully opaque color with those RGB values. For example, "#112233" specifies the color that is represented by "#FF112233". Finally, the developer can explicitly provide an 8-digit number that completely specifies the Alpha, Red, Green, and Blue channels, in that order. + Note that, in the paragraph above, the fully expanded color description is of the format, AARRGGBB. That is: the first pair of hexadecimal digits specifies the Alpha channel; the second pair specifies the Red channel; the third pair specifies the Green channel; and the final pair specifies the Blue channel. + + + + The Hue component of the color. + The Saturation component of the color. + The Luminosity component of the color. + The alpha value of the color. + Returns a new HSL Color with an alpha channel + An HSL color + + + + The red component of the color. + The green component of the color. + The blue component of the color. + Returns a new rgb color instance. + An RGB color + Component values are clamped to [0,1]. The method is striclty equivalent to new Color (r, g, b), and is present for API consistency. + + + The red component of the color. + The green component of the color. + The blue component of the color. + Returns a new rgb color instance. + A new RGB color. + Component values are clamped to [0,255]. + + + The red component of the color. + The green component of the color. + The blue component of the color. + The alpha component of the color. + Returns a new RGBA color instance. + A new RGBA color. + Component values are clamped to [0,1]. The method is striclty equivalent to new Color (r, g, b, a), and is present for API consistency. + + + The red component of the color. + The green component of the color. + The blue component of the color. + The alpha component of the color. + Returns a new RGBA color instance. + A new RGBA color. + Component values are clamped to [0,255]. + + + A uint that represents the ARGB value of the color. + Returns a new Color with the requested RGBA value. + An RGBA color. + + The parameter must represent an unsigned integer that can be represented by hexadecimal string that matches the format "AARRGGBB". + + + + Fucshia, the color that is represented by the RGB value #ff00ff. + + + + Fucshia, the color that is represented by the RGB value #ff00ff. Deprecated. See Remarks. + Use the color, instead. + + + Gets the Green component of the color. + The Green component of the color as a double that is in the inclusive range [0-1]. + + + + Returns the Hashcode for this . + A signed 32-bit hash code. + Overriden. + + + Gray, the color that is represented by the RGB value #808080. + + + + Green, the color that is represented by the RGB value #008000. + + + + Gets the Hue of the color. + The Hue component of the color as a double that is in the inclusive range [0-1]. + + + + Lime, the color that is represented by the RGB value #00ff00. + + + + Gets the Luminosity fo the color. + The Luminosity component of the color as a double that is in the inclusive range [0-1]. + + + + Maroon, the color that is represented by the RGB value #800000. + + + + The alpha multiplicator. + Returns a new color with the alpha channel multiplied by alpha, clamped to the inclusive range [0-1]. + A new RGBA color with a possibly new value for its alpha channel. See Remarks. + The resulting color has its alpha channel clamped toto the inclusive range [0-1], preventing invalid colors. + + + Navy, the color that is represented by the RGB value #000080. + + + + Olive, the color that is represented by the RGB value #808000. + + + + To be added. + To be added. + Returns if represents the same color as . + To be added. + To be added. + + + To be added. + To be added. + Returns if does not represent the same color as . + To be added. + To be added. + + + Orange, the color that is represented by the RGB value #ffa500. + + + + Pink, the color that is represented by the RGB value #ff66ff. + + + + Purple, the color that is represented by the RGB value #800080. + + + + Gets the Red component of the color. + The Red component of the color as a double that is in the inclusive range [0-1]. + + + + Red, the color that is represented by the RGB value #ff0000. + + + + Gets the Saturation of the color + The Saturation component of the color as a double that is in the inclusive range [0-1]. + + + + Silver, the color that is represented by the RGB value #c0c0c0. + + + + Teal, the color that is represented by the RGB value #008080. + + + + Returns a string representation of the Color. + A string. + Overriden. + + + The transparent color, represented by the RGB value #00000000. + The Alpha channel of the color is set to 0. + + + White, the color that is represented by the RGB value #ffffff. + + + + The modified Hue. + Returns a color with modified Hue, but keeping the same Saturation and Luminosity. + A color. + The Hue is clamped to the inclusive range [0,1]. This method is useful for creating color palettes. + + + The modified luminosity. + Returns a color with modified Luminosity. + A new HSL color. + The new Luminosity is clamped to [0,1]. This method is useful for creating color palettes. + + + The modified Saturation. + Returns a new color with modified Saturation. + A new HSLcolor. + The Saturation is clamped to [0,1]. This method is useful for creating color palettes. + + + Yellow, the color that is represented by the RGB value #ffff00.. + + + + A that converts from strings to a . + + The following example shows some variations of : + + + + + + + Creates a new with default values. + To be added. + + + To be added. + Returns a Boolean value that indicates whether this can convert the to a instance. + To be added. + To be added. + + + To be added. + To be added. + Converts into a by using the specified . + To be added. + To be added. + + + To be added. + Creates a color from a valid color name. + To be added. + To be added. + + + An that defines properties for a column in a . + + XAML for Xamarin.Forms supports the following property for the class: + + + Property + Value + + + Width + + "*" or "Auto" to indicate the corresponding enumeration values, or a number to indicate an absolute width. + + + + + App developers can specify values for the property in XAML by nesting ColumnDefinition tags inside tags for the collection property. The following example demonstrates setting three column widths to each of the three valid values: + + + + + +]]> + + + + + Creates a new object with default values. + To be added. + + + Event that is raised when the size of the column is changed. + To be added. + + + Gets or sets the width of the column. + To be added. + To be added. + + + Backing store for the property. + To be added. + + + A for s. + + App developers can specify values for the property in XAML by nesting ColumnDefinition tags inside tags for the collection property. The following example demonstrates setting three column widths to each of the three valid values: + + + + + + +]]> + + + + + Creates a new empty collection. + To be added. + + + Defines an implementation that wraps a . + + + The following example creates a new Command and set it to a button. + + + Debug.WriteLine ("Command executed")); +var button = new Button { + Text = "Hit me to execute the command", + Command = command, +}; +]]> + + + More useful scenarios takes a parameter + + + Debug.WriteLine ("Command executed: {0}", o)); +var button = new Button { + Text = "Hit me to execute the command", + Command = command, + CommandParameter = "button0", +}; +]]> + + + + + An Action to execute when the Command is executed. + Initializes a new instance of the Command class. + + + + An Action<object> to execute when the Command is executed. + Initializes a new instance of the Command class. + The Action will be executed with a parameter. + + + An Action to execute when the Command is executed. + A indicating if the Command can be executed. + Initializes a new instance of the Command class. + Whenever the value returned by canExecute has changed, a call to is required to trigger . + + + An Action<object> to execute when the Command is executed. + A indicating if the Command can be executed. + Initializes a new instance of the Command class. + Whenever the value returned by canExecute has changed, a call to is required to trigger . + + + An used as parameter to determine if the Command can be executed. + Returns a indicating if the Command can be exectued with the given parameter. + + if the Command can be executed, otherwise. + + If no canExecute parameter was passed to the Command constructor, this method always returns . + If the Command was created with non-generic execute parameter, the parameter of this method is ignored. + + + + Occurs when the target of the Command should reevaluate whether or not the Command can be executed. + + + + Send a + + + + An used as parameter for the execute Action. + Invokes the execute Action + + If the Command was created with non-generic execute parameter, the parameter of this method is ignored. + + + + The Type of the parameter, + Defines an implementation wrapping a generic Action<T>. + + + The following example creates a new Command and set it to a button. + + + (s => Debug.WriteLine ("Command executed: {0}", s)); +var button = new Button { + Text = "Hit me to execute the command", + Command = command, + CommandParameter = "button0", +}; +]]> + + + + + An Action to execute when the Command is executed. + Initializes a new instance of the Command class. + + + + An Action to execute when the Command is executed. + A indicating if the Command can be executed. + Initializes a new instance of the Command class. + + + + Base class for conditions. + To be added. + + + To be added. + To be added. + To be added. + To be added. + + + To be added. + To be added. + To be added. + + + To be added. + To be added. + To be added. + To be added. + + + To be added. + To be added. + To be added. + + + A layout constraint used by s. + To be added. + + + To be added. + Returns a object that constrains an element to . + To be added. + To be added. + + + To be added. + Returns a that is calculated from . + To be added. + To be added. + + + To be added. + Returns a object that constrains an element relative to its parent's size. + To be added. + To be added. + + + To be added. + To be added. + Returns a object that constrains an element relative to the parameter. + To be added. + To be added. + + + Defines a constraint relationship. + + XAML for Xamarin.Forms supports the following properties for the class: + + + Property + Value + + + Constant + + An optionally signed integer literal. + + + + ElementName + + The name of a source element against which to calculate the constraint. + + + + Factor + + A decimal literal in the range (0,1]. + + + + Property + + The name of the property on the source element to use in the constraint calculation. + + + + Type + + + Constant, RelativeToParent, or RelativeToView. + + + + + + + Creates a new with default values. + To be added. + + + Gets or sets the constant constraint value.. + To be added. + To be added. + + + Gets or sets the name of a source element against which to calculate the constraint. + To be added. + To be added. + + + Gets or sets the factor by which to scale a constrained dimension, relative to the source element. + To be added. + To be added. + + + Gets or sets name of the property on the source element to use in the constraint calculation. + To be added. + To be added. + + + To be added. + Returns a for this . + To be added. + To be added. + + + To be added. + To be added. + To be added. + To be added. + + + Gets or sets the constraint type. + To be added. + To be added. + + + To be added. + To be added. + To be added. + To be added. + + + Enumeration specifying whether a constraint is constant, relative to a view, or relative to its parent. + To be added. + + + A constant constraint. + + + A constraint that is relative to a parent element. + + + A constraint that is relative to a view. + + + A that converts from strings to a . + To be added. + + + Creates a new with default values. + To be added. + + + To be added. + Returns a Boolean value that indicates whether this can convert the to a instance. + To be added. + To be added. + + + To be added. + To be added. + Converts into a by using the specified . + To be added. + To be added. + + + To be added. + >Converts into a . + To be added. + To be added. + + + A that displays a single view. + + This is a Page displaying a single View, often a container like a or . + + The example below is taken from he App.cs file that is contained in the default "Hello, Forms!" app. It uses a to display a label, which is a typical, though basic, use of the class. + + The FormsGallery sample, which can be found on the Sample Applications page, has a ContentPageDemoPage.cs file. This file contains a longer and more complicated example. + XAML for Xamarin.Forms supports the following property for the class: + + + + Property + Value + + + Content + + A list of objects that represent the visual content of the . This tag can be omitted, and the contents listed directly. + + + A ContentPage tag can be the root element of a XAML document. + + + + + + Initializes a new ContentPage instance. + + + + Gets or sets the view that contains the content of the Page. + A subclass, or . + + + + Backing store for the property. + To be added. + + + Method that is called when the binding context changes. + To be added. + + + Layout manager for templated views. + To be added. + + + Creates a new empty with default values + To be added. + + + Gets or sets the view whose layout is managed by this . + To be added. + To be added. + + + Backing store for the property. + To be added. + + + The X coordinate of the upper left corner of the layout rectangle. + The Y coordinate of the upper left corner of the layout rectangle. + The width of the layout rectangle. + The height of the layout rectangle. + Lays out the children of the property within the rectangle that is defined by , , , and . + To be added. + + + The width constraint of the size request. + The width constraint of the size request.. + Method that is raised when a size request is made. + To be added. + To be added. + + + Indicates the property of the type that is the (default) content property. + + XAML processor uses to determine the content property. + +Decorating types with ContentPropertyAttribute allows shorter XAML syntax. As + + has a ContentProperty attribute applied, this XAML is valid: + + +This is equivalent to the following, more explicit XAML + + + + + ]]> + + + + The name of the property. + Initializes a new instance of the ContentPropertyAttribute class. + + + + Gets the name of the content property + A string representing the name of the content property. + + + + An element that contains a single child element. + + XAML for Xamarin.Forms supports the following property for the class: + + + Property + Value + + + Content + + The object that represents the visual content of the . + + + + + The following example shows how to construct a new ContentView with a Label inside. + + + + + + + + + + + Initializes a new instance fo the ContentView class. + + + + Gets or sets the content of the ContentView. + A that contains the content. + + + + Backing store for the property.. + To be added. + + + A value representing the x coordinate of the child region bounding box. + A value representing the y coordinate of the child region bounding box. + A value representing the y coordinate of the child region bounding box. + A value representing the y coordinate of the child region bounding box. + Positions and sizes the content of a ContentView. + + + + Method that is called when the binding context changes. + To be added. + + + The available width for the ContentView to use + The available height for the ContentView to use. + This method is called during the measure pass of a layout cycle to get the desired size of the ContentView. + A which contains the desired size of the StackLayout. + The results of this method will be the desired size of its content. + + + Template that specifies a group of styles and effects for controls. + To be added. + + + For internal use only. + To be added. + + + To be added. + Creates a new control template for the specified control type. + To be added. + + + A template for multiple bindings, commonly used by s and s. + In XAML, application developers can nest markup inside a DataTemplate tag to create a whose members are bound to the properties of data objects that are contained in a list. + + + For internal use only. + To be added. + + + A custom content generator to be called + Creates and initializes a new instance of the class. + To be added. + + + To be added. + Creates a new for type . + To be added. + + + Gets a dictionary of bindings, indexed by the bound properties. + To be added. + To be added. + + + Loads the template for the type that is represented by this and sets all of the bindings and values. + To be added. + To be added. + + + To be added. + To be added. + Sets the binding for . + To be added. + + + To be added. + To be added. + Sets the value of . + To be added. + + + Returns a dictionary of property values for this , indexed by property. + To be added. + To be added. + + + For internal use only. + To be added. + To be added. + + + To be added. + For internal use only. + To be added. + + + Gets or sets the parent element of this object. + To be added. + To be added. + + + To be added. + For internal use only. + To be added. + + + + + + + + + + + + + + For internal use only. + + + + + + + + + For internal use only. + To be added. + To be added. + + + Selects objects by data type and container. + + Application developers override the method to return a unique for a data type and parent container combination. Additionally, because the same exact template instance must be returned for a given piece of data across successive calls to , developers should create and store these in their constructor overrides. + Developers should note the following items: OnSelectTemplate must not return another DataTemplateSelector, and + The Android platform is limited to 20 templates per list view. + The following example shows a basic use: + + + + + Creates a new with default values. + Application developers should provide their own constructors to create and store the objects that can be returned by this . + + + The data for which to return a template. + An optional container object in which the developer may have opted to store objects. + Calls . + A developer-defined that can be used to display . + + This method throws an exception if returns an instance of . + + + + The data for which to return a template. + An optional container object in which the developer may have opted to store objects. + When overriden by developers in a derived class, returns a for . + + A developer-defined that can be used to display . + + + Developers should ensure that this method never returns a object, as this will cause the method to throw an exception. + + Developers should note that the he Android platform is limited to 20 templates per list view. + + The following example shows a basic use: + + + + + Class that represents a binding condition and a list of objects that will be applied when the condition is met. + + XAML for Xamarin.Forms supports the following properties for the class: + + + Property + Value + + + Property + + The name of the property whose value to compare against Value. + + + + Value + + The value of the property that will trigger the setters in Setters. + + + + Setters + + A list of setters that are called when the property condition is met. Each Setter tag or tag pair in the list has a Property and Value that represents the assignments to perform when the condition is met. + + + + + + + To be added. + Initializes a new instance. + To be added. + + + Gets or sets the binding whose value will be compared to to determine when to invoke the setters. + To be added. + To be added. + + + Gets the list of objects that will be applied when the binding that is named by the property becomes equal to . + To be added. + To be added. + + + Gets or sets the value of the binding, named by the property, that will cause the setters to be applied. + To be added. + To be added. + + + To be added. + XAML infrastructure. + To be added. + To be added. + + + Event arguments for event. + To be added. + + + To be added. + To be added. + Creates a new object that represents a change from to . + To be added. + + + The date that the user entered. + To be added. + To be added. + + + The date that was on the element at the time that the user selected it. + To be added. + To be added. + + + A that allows date picking. + + The visual representation of a DatePicker is very similar to the one of , except that a special control for picking a date appears in place of a keyboard. + + + + The following example shows a basic use: + + + + XAML for Xamarin.Forms supports the following properties for the class: + + + Property + Value + + + Format + + A string that specifies the display format in the control of the chosen date. + + + + Date + + An x:FactoryMethod call to the method, or a markup extension call to a method that produces a object. See below. + + + + MinimumDate + + An x:FactoryMethod call to the method, or a markup extension call to a method that produces a object. See below. + + + + MaximumDate + + An x:FactoryMethod call to the method, or a markup extension call to a method that produces a object. See below. + + + + + The example below creates a working that displays the current date and allows the user to select a date between the specified ranges. The value for the property is specified with the x:Static markup extension, and the and properties are specified by calling the method with the x:FactoryMethod and x:Arguments tags. The example below requires a namespace declaration in the root ContentPage or ContentView tags. In particular, xmlns:sys="clr-namespace:System;assembly=mscorlib" must appear in the attribute list for the root element, so that the XAML parser can resolve the name, sys:DateTime. + + + yyyy-MM-dd + + + + Jan 1 2000 + + + + + + + Dec 31 2050 + + + + + ]]> + + + + + Initializes a new instance of the DatePicker class. + + + + Gets or sets the displayed date. This is a bindable property. + The displayed in the DatePicker. + + + + Identifies the Date bindable property. + + + + An event fired when the Date property changes. + + + + The format of the date to display to the user. This is a dependency property. + A valid date format. + Format string is the same is passed to DateTime.ToString (string format). + + + Identifies the Format dependency property. + + + + The highest date selectable for this DatePicker. This is a bindable property. + The maximum selectable for the DateEntry. Default December 31, 2100. + + + + Identifies the MaximumDate bindable property. + + + + The lowest date selectable for this DatePicker. This is a bindable property. + The minimum selectable for the DateEntry. Default January 1, 1900. + + + + Identifies the MinimumDate bindable property. + + + + To be added. + To be added. + To be added. + To be added. + + + To be added. + To be added. + To be added. + + + To be added. + To be added. + + + To be added. + A collection parameterized by an . Base class for and . + + Objects of type are parameterized with a type of . + + + + + + + The to add. + Adds a to the collection. + To be added. + + + Removes all values from this . + To be added. + + + The to check for in this . + Returns a Boolean value that indicates whether or not this contains the specified . + To be added. + To be added. + + + To be added. + To be added. + Copies instances from this to an array, starting at the specified index. + To be added. + + + Gets the number of instances contained in this . + To be added. + To be added. + + + Returns an enumerator that iterates through the instances in this . + To be added. + To be added. + + + The instance to find. + Returns the index of the first occurrence of in this . + To be added. + To be added. + + + The position at which to insert . + The to insert. + Inserts a into this at the location that is specified by . + To be added. + + + + . instances can have items added to them and removed from them. + + + + To be added. + + + The location of the item to get or set. + Gets or sets the value indexed by . + To be added. + To be added. + + + Event that is raised when the display size of item in the collection changes. + To be added. + + + The to remove from this . + Removes a from this and returns if the item was removed. + + if was in this and was therefore removed. if was not in this . + To be added. + + + The location in this from which to remove an instance. + Removes an item from this . + To be added. + + + Gets an enumerator that can be used to iterate over the instances in this . + To be added. + To be added. + + + An attribute that indicates that the specified type provides a concrete implementation of a needed interface. + To be added. + + + To be added. + Creates a new with default values. + To be added. + + + Enumeration specifying whether should return a reference to a global or new instance. + + The following example shows how can be used to specify a new instance: + + (DependencyFetchTarget.NewInstance); + ]]> + + + + + Return a global instance. + + + Return a new instance. + + + Static class that provides the factory method for retrieving platform-specific implementations of the specified type T. + To be added. + + + To be added. + To be added. + Returns the platform-specific implementation of type T. + To be added. + To be added. + + + To be added. + Registers the platform-specific implementation of type T. + To be added. + + + To be added. + To be added. + Registers the platform-specific implementation of type T. + To be added. + + + A utility class to interact with the current Device/Platform. + + + + The Action to invoke + Invokes an Action on the device main (UI) thread. + + This example shows how to set the Text of Label on the main thread, e.g. in response to an async event. + + + { + label.Text = "Async operation completed"; +}); + ]]> + + + + + To be added. + To be added. + Returns a double that represents the named size for the font that is used on the element on the native platform. + To be added. + To be added. + + + To be added. + To be added. + Returns a double that represents a font size that corresponds to on . + To be added. + To be added. + + + Gets the kind of device that Xamarin.Forms is currently working on. + A that represents the device type. + + + + (optional) The Action to execute on iOS. + (optional) The Action to execute on Android. + (optional) The Action to execute on WinPhone. + (optional) The Action to execute if no Action was provided for the current OS. + Executes different Actions depending on the that Xamarin.Forms is working on. + + This example shows how to change the font of a Label on a single OS. + + + label.Font = Font.OfSize ("HelveticaNeue-UltraLight", NamedSize.Large)); + ]]> + + + + + The type of the value to be returned. + The value for iOS. + The value for Android. + The value for WinPhone. + Returns different values depending on the Xamarin.Forms is working on. + The value for the current OS. + + This example shows how to use different heights for a Button on different OS. + + + + + + + + The to open. + Request the device to open the Uri. + This often navigates out of the application. + + + Gets the indicating the OS Xamarin.Forms is working on. + A that indicates the current OS. + + + + The interval between invocations of the callback. + The action to run when the timer elapses. + Starts a recurring timer using the device clock capabilities. + While the callback returns , the timer will keep recurring. + + + Class that exposes device-specific styles as static fields. + To be added. + + + The device-specific body style. + To be added. + + + The key that identifies the device-specific in the base resource. + To be added. + + + The device-specific caption style. + To be added. + + + The key that identifies the device-specific in the base resource. + To be added. + + + The device-specific style for detail text in list items. + To be added. + + + The key that identifies the device-specific in the base resource. + To be added. + + + The device-specific style for text in list items. + To be added. + + + The key that identifies the device-specific in the base resource. + To be added. + + + The device-specific subtitle style. + To be added. + + + The key that identifies the device-specific in the base resource. + To be added. + + + The device-specific title style. + To be added. + + + The key that identifies the device-specific in the base resource. + To be added. + + + Functions that modify values non-linearly, generally used for animations. + + Easing functions are applied to input values in the range [0,1]. The cubic easing functions are often considered to look most natural. + If developers wish to use their own easing functions, they should return a value of 0 for an input of 0 and a value of 1 for an input of 1 or the animation will have a jump. + The predefined functions have the following forms: + + + Member + Graph + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + To be added. + Creates a new object with the function. + To be added. + + + + Jumps towards, and then bounces as it settles at the final value. + + + + + + + Leaps to final values, bounces 3 times, and settles. + + + + + + + + Starts slowly and accelerates. + + + + + + + + Accelerates and decelerates. Often a natural-looking choice. + + + + + + + + Starts quickly and the decelerates. + + + + + + + + A value in the range [0,1] to which the easing function should be applied. + Applies the easing function to the specified value . + The value of the easing function when applied to the value . + To be added. + + + Linear transformation. + + + + + + + + An easing function. + Converts a function into an . + An for the . + + An easing function should return a value of (or near) 0 at 0 and 1 (or near) for 1. + + + + Smoothly accelerates. + + + + + + + + Accelerates in and decelerates out. + + + + . + + + Smoothly decelerates. + + + + + + + + Moves away and then leaps toward the final value. + + + + + + + + Overshoots and then returns. + + + + + + + + A control that can edit multiple lines of text. + + For single line entries, see . + + + + + + + Initializes a new instance of the Editor class. + + + The following example creates a Editor with a Chat keyboard that fills the available space. + + + + + XAML for Xamarin.Forms supports the following property for the class: + + + Property + Value + + + Text + + The initial text that will appear in the editor. + + + + + + + Event that is fired when editing has completed. + iOS (Unfocusing the editor or pressing "Done" triggers the event). Android / Windows Phone (Unfocusing the Editor triggers the event) + + + Gets a value that indicates whether the font for the editor is bold, italic, or neither. + To be added. + To be added. + + + Backing store for the FontAttributes property. + To be added. + + + Gets the font family to which the font for the editor belongs. + To be added. + To be added. + + + Backing store for the FontFamily property. + To be added. + + + Gets the size of the font for the editor. + To be added. + To be added. + + + Backing store for the FontSize property. + To be added. + + + To be added. + To be added. + To be added. + To be added. + + + Gets or sets the text of the entry. This is a bindable property. + A string containing the text of the entry. The default value is null. + Setting this property will cause the event to be emitted. + + + Occurs when the text of the Editor changes. + + + + Gets or sets the text color. + To be added. + To be added. + + + Backing store for the property. + To be added. + + + Identifies the Text bindable property. + + + + A collection of styles and properties that can be added to an element at run time. + + Effects are suitable when the developer needs to use platform-specific features to achieve the desired effect. Developers should consider using if they do not need platform-specific implentations to achieve their desired result. + + + + Gets the element to which the style is attached. + The to which the property is attached, if the property is attached. Otherwise, . + To be added. + + + Gets a value that tells whether the effect is attached to an element. + To be added. + To be added. + + + Method that is called after the effect is attached and made valid. + To be added. + + + Method that is called after the effect is detached and invalidated. + To be added. + + + To be added. + Returns an for the specified name, which is of the form ResolutionGroupName.ExportEffect. + The uniquely identified effect. + The method takes a string that is the concatenation of a resolution group name (supplied to ), '.', and the unique name that was supplied to , and returns the specified effect. + + + Gets the ID that is used to resolve this effect at runtime. + The ID that is used to resolve this effect at runtime. + + Developers must supply a name to that is unique over the scope of the name that they supply to . The method takes a string that is the concatenation of (the resolution group name), '.', and the unique name that was supplied to , and returns the specified effect. + + For example, with the declarations: + + Then the code below will add the effect to a button: + + + This property returns the string that developers pass to to get the effect at runtime. + + + + Provides the base class for all Forms hierarchal elements. This class contains all the methods and properties required to represent an element in the Forms hierarchy. + + The following diagram shows the classes derived from . + + + + The diagram shows some important categories: + + + Class + Description + + + + + + A that occupies an area on the screen, has a visual appearance, and can obtain touch input. + + + + + + Cells are elements meant to be added to or . + + + + + + A that occupies most or all of the screen and contains a single child. + + + + + + + have a single child of type , while subclasses of have a collection of multiple children views, including other layouts. + + + + Controls and specialized s + + The lower part of the diagram shows the Xamarin.Forms classes for universally-available controls, such as s and s. + + + + + + Protected constructor used to initialize a the element. + To be added. + + + To be added. + To be added. + To be added. + + + Occurs whenever a child element is added to the element. + To be added. + + + Occurs whenever a child element is removed from the element. + To be added. + + + Gets or sets a value used to identify a collection of semantically similar elements. + A string that represents the collection the element belongs to. + Use the class id property to collect together elements into semantically similar groups for identification in ui testing and in theme engines. + + + Identifies the ClassId bindable property. + To be added. + + + Occurs whenever a child element is added to the elements subtree. + To be added. + + + Occurs whenever a child element is removed from the elements subtree. + To be added. + + + A list of the effects that are applied to this item. + To be added. + To be added. + + + Gets a value that can be used to uniquely identify an element through the run of an application. + A Guid uniquely identifying the element. + This value is generated at runtime and is not stable across runs of your app. + + + Invoked whenever the binding context of the element changes. Implement this method to add class handling for this event. + Implementors must call the base method. + + + The element that was added. + Invoked whenever the event needs to be emitted. Implement this method to add class handling for this event. + This method has no default implementation. You should still call the base implementation in case an intermediate class has implemented this method. + + + The element that was removed. + Invoked whenever the event needs to be emitted. Implement this method to add class handling for this event. + This method has no default implementation. You should still call the base implementation in case an intermediate class has implemented this method. + + + Invoked whenever the Parent of an element is set. Implement this method in order to add behavior when the element is added to a parent. + Implementors must call the base method. + + + The name of the bound property that changed. + Method that is called when a bound property is changed. + To be added. + + + Gets or sets the parent element of the element. + The element which should be the parent of this element. + Most application authors will not need to set the parent element by hand. + + + Gets the element which is the closest ancestor of this element that is a . + The closest ansestor which is a . + Convenient way of accessing the nearest ancestor of an element which is actually represented on screen visually. If this element is a visual element, its bounds are relative to its ParentView. + + + The BindableProperty from which to remove the DynamicResource. + Removes a previously set dynamic resource + + + + The BindableProperty. + The key of the DynamicResource + Sets the BindableProperty property of this element to be updated via the DynamicResource with the provided key. + + + + Gets or sets a user defined value to uniquely identify the element. + A string uniquely identifying the element. + Use the StyleId property to identify individual elements in your application for identification in ui testing and in theme engines. + + + To be added. + Internal. + To be added. + + + To be added. + Internal. + To be added. + + + + Internal. + + + + + + + + + + Gets or sets a weak reference to the parent of this object. + To be added. + To be added. + + + For internal use only. + To be added. + To be added. + + + To be added. + To be added. + To be added. + To be added. + + + To be added. + To be added. + To be added. + + + To be added. + To be added. + Sets a value from a renderer without breaking the binding on a bound property. + To be added. + + + To be added. + To be added. + Sets a value from a renderer without breaking the binding on a bound property. + To be added. + + + The identifier of the being sought. + Finds an object previously registered with . + The Object previously associated with by a call to . Raises a if this is not in an . + To be added. + + + To be added. + To be added. + Internal use only. + To be added. + + + Identifier to be used with the . + Object to be associated with the . + Within an , creates an association between and . + To be added. + + + To be added. + To be added. + To be added. + Internal. + To be added. + + + The identifier to be removed. + Removes from an . + To be added. + + + To be added. + For internal use only. + To be added. + To be added. + + + To be added. + To be added. + For internal use only. + To be added. + + + To be added. + To be added. + To be added. + For internal use only. + To be added. + + + To be added. + For internal use only. + To be added. + + + Provides data for events pertaining to a single . + + + + + + + + The element relevant to the event. + Constructs and initializes a new instance of the class. + + + + Gets the element relevant to the event. + The element relevant to the event. + + + + Base class for and classes. + To be added. + + + Used by the XAML infrastructure to load data templates and set up the content of the resulting UI. + To be added. + To be added. + + + For internal use only. + To be added. + To be added. + + + A control that can edit a single line of text. + + Entry is a single line text entry. It is best used for collecting small discrete pieces of information, like usernames and passwords. + + + The following example creates a new username and password set of entries. + + + The FormsGallery sample, which can be found on the Sample Applications page, has an EntryDemoPage.cs file. This file contains a longer and more complicated example. + + XAML for Xamarin.Forms supports the following properties for the class: + + + Property + Value + + + IsPassword + + true to indicate that the is a password field. Otherwise, false. + + + Placeholder + The default text that will appear in the control. + + + Text + + The initial text that will appear in the entry. + + + + TextColor + + A color specification, with or without the prefix, "Color". For example, "Color.Red" and "Red" both specify the color red. + + + + + + + + + + Initializes a new instance of the Entry class. + + + + Occurs when the user finalizes the text in an entry with the return key. + This finalization will usually but not always be accompanied by IsFocused being set to false. + + + Gets a value that indicates whether the font for the Entry element text is bold, italic, or neither. + To be added. + To be added. + + + Backing store for the FontAttributes property. + To be added. + + + Gets the font family for the Entry element text. + To be added. + To be added. + + + Backing store for the FontFamily property. + To be added. + + + Gets the size of the font for the Entry element text. + To be added. + To be added. + + + Backing store for the property. + To be added. + + + Gets or sets the horizontal text alignment. + To be added. + To be added. + + + Backing store for the HorizontalTextAlignment property. + To be added. + + + Gets or sets a value that indicates if the entry should visually obscure typed text. This is a bindable property. + + if the element is a password box; otherwise, . Default value is . + Toggling this value does not reset the contents of the entry, therefore it is advisable to be careful about setting IsPassword to false, as it may contain sensitive information. + + + Identifies the IsPassword bindable property. + + + + To be added. + To be added. + To be added. + To be added. + + + Gets or sets the placeholder text shown when the entry is null or empty. This is a bindable property. + The placeholder text shown when is null or empty. The default value is . + + + + Gets or sets the color of the placeholder text. + To be added. + To be added. + + + Backing store for the property. + To be added. + + + Identifies the Placeholder bindable property. + + + + Gets or sets the text of the entry. This is a bindable property. + A string containing the text of the entry. The default value is . + Setting this property will cause the event to be emitted. + + + Event that is raised when the text in this element is changed. + To be added. + + + Gets or sets the for the text of the Entry. This is a bindable property. + The of the text. + + + + Identifies the TextColor bindable property. + + + + Identifies the Text bindable property. + + + + To be added. + To be added. + + + A with a label and a single line text entry field. + + The following example shows a basic use. + + + + XAML for Xamarin.Forms supports the following properties for the class: + + + Property + Value + + + Keyboard + A property name that indicates which keyboard to present to the user when editing text. + + + Label + + The text that is presented next to the entry area in the . + + + + LabelColor + + A color specification, with or without the prefix, "Color". For example, "Color.Red" and "Red" both specify the color red. + + + + Placeholder + The default text that will appear in the control when it is empty. + + + Text + + The initial text that will appear in the editor. + + + + XAlign + + + Center, End, or Start, to indicate the placement of the text that is entered by the user. + + + + + + + + + + Initializes a new instance of the EntryCell class. + + + + Event fired when the user presses 'Done' on the EntryCell's keyboard + + + + Gets or sets the horizontal alignement of the Text property. This is a bindable property. + To be added. + To be added. + + + Identifies the HorizontalTextAlignment bindable property. + To be added. + + + Gets or sets the Keyboard to display while editing the EntryCell. This is a bindable property. + A representing the keyboard kind. Default is . + + + + Identifies the Keyboard bindable property. + + + + Gets or sets the fixed text presented next to the Entry in the EntryCell. This is a bindable property. + A . + + + + Gets or sets the Color used for rendering the Label property. This is a bindable property. + Default is Color.Default. + + + + Identifies the LabelColor bindable property. + + + + Identifies the Label bindable property. + + + + Gets or sets the placeholder text displayed in the Entry when the Text is null or empty. This is a bindable property. + + + + + Identifies the Placeholder bindable property, + + + + Gets or sets the content of the Entry of the EntryCell. This is a bindable property. + + + + + Identifies the Text bindable property. + + + + Gets or sets the horizontal alignement of the Text property. This is a bindable property. + Default is . + + + + Identifies the XAlign bindable property. + + + + To be added. + To be added. + + + Class that represents a triggering event and a list of objects that will be invoked when the event is raised. + + XAML for Xamarin.Forms supports the following property for the class: + + + Property + Value + + + Event + + The name of the event to which to respond. + + + + Object name + + The qualified name of a implementation that has been defined by the application developer. This object is instantiated and its method is called when the triggering event is raised. Attributes on this tag set corresponding proptery values on the implementation before the method is called. + + + + + + Creates a new instance. + + + + Gets the list of objects that will be invoked when the event that is identified by the property is raised. + + + + + Gets or sets the name of the event that will cause the actions that are contained in the to be invoked. + + + + + Internal. + + + + Internal. + + + + Attribute that identifies a with a unique identifier that can be used with to locate an effect. + + Developers must supply a name that is unique over the scope of the value that was supplied to . The method takes a string that is the concatenation of the the resolution group name that was provided to , '.', and the name that was supplied to , and returns an effect that will have the type . + + For example, with the declarations: + + Then the code below will add the effect to a button: + + + + + + + The type of the marked . + A unique name for the . + Creates a new . + + Developers must supply a that is unique over the scope of the value that was supplied to . The method takes a string that is the concatenation of the the resolution group name that was provided to , '.', and the name that was supplied to , and returns an effect that will have the type . + + For example, with the declarations: + + Then the code below will add the effect to a button: + + + + + + + An that reads an image from a file. + To be added. + + + Creates a new object with default values. + To be added. + + + Request a cancel of the ImageSource loading. + An awaitable Task. + Overriden for FileImageSource. FileImageSource are not cancellable, so this will always returns a completed Task with as Result. + + + Gets or sets the file from which this will load an image. + To be added. + To be added. + + + Backing store for the property. + To be added. + + + To be added. + Method that is called when the property that is specified by is changed. + To be added. + + + To be added. + Allows implicit casting from a string. + To be added. + To be added. + + + To be added. + Allows implicit casting to a string. + To be added. + To be added. + + + A that converts to . + To be added. + + + Creates a new with default values. + To be added. + + + To be added. + Returns if the source type can be converted with this type converter. + To be added. + To be added. + + + To be added. + To be added. + Converts with the specified . + To be added. + To be added. + + + To be added. + Creates a file image source given a path to an image. + To be added. + To be added. + + + Event args for 's and events. + + + + The who's focused was changed. + Whether or not the was focused. + Constructs and initializes a new instance of the class. + + + + Gets whether or not the was focused. + + if the view was focused, otherwise. + + + + Gets the who's focused was changed. + The who's focused was changed. + + + + The font used to display text. + The available fonts, and the matching between and real displayed fonts is device-dependent. + + + The desired font size. + Returns a font instance that represents the default bold font, in the requested size, for the device. + The requested bold . + + + + The desired font . + Returns an usable font instance representing the default bold font, in the requested NamedSize, for the device. + The requested bold . + + + + Gets the default font for the device. + The default font for the device. + To be added. + + + The value to compare this font to. + Determine if the provided is equivalent to the current Font. + + if the provided object is an equivalent font. otherwise. + Overriden. + + + Gets a value that indicates whether the font is bold, italic, or neither. + To be added. + To be added. + + + Gets the font family to which this font belongs. + The font family to which this structure belongs. + To be added. + + + Gets the size of the font. + A that indicates the size of the font. + To be added. + + + Get the Hashcode for this . + A signed 32-bit hash code. + Overriden. + + + Gets a value that tells whether this font has no attributes, belongs to the default family, and has no attributes set. + To be added. + To be added. + + + Gets the named font size, such as "Large" or "Small". + To be added. + To be added. + + + The name of the targeted system font. + The desired font size. + Returns a structure with the requested font and size. + A instance. + Font availability is platform- and device-dependent. + + + The name of the targeted system font. + The desired font . + Returns an usable , with the requested font and NamedSize. + A Font instance. + Font availability is platform and device dependent. + + + To be added. + To be added. + Returns if represents the same font that represents. Otherwise, . + To be added. + To be added. + + + To be added. + To be added. + Returns if does not represent the same font that represents. Otherwise, . + To be added. + To be added. + + + The desired font size. + Returns an usable font instance representing the default font, in the requested size, for the device and platform. + The requested . + + + + The desired font . + Returns an usable font instance representing the default font, in the requested size, for the device and platform. + The requested bold . + + + + The requested font size. + Whether the font is bold, italic, or neither. + Returns a font structure with the specified size and attributes. + A structure with the specified and . + To be added. + + + The requested named font size. + Whether the font is bold, italic, or neither. + Returns a font structure with the specified size and attributes. + A structure with the specified and . + To be added. + + + Returns a string representation of this font structure. + A string representation of this structure. + The method returns a string that contains a labeled, comma-separated list of the , , , and properties. + + + Gets a value that indicates whether the target operating system should use size that is specified by the property. + To be added. + To be added. + + + Whether the font is italic, bold, or neither. + Returns a new font structure with the specified attributes. + A new structure with the attributes that were specified with . + To be added. + + + The requested font size. + Returns a new font structure with the size that was specified with . + To be added. + To be added. + + + The requested named font size. + A new structure with the size that was specified with . + To be added. + To be added. + + + Enumerates values that describe font styles. + To be added. + + + The font is bold. + + + The font is italic. + + + The font is unmodified. + + + Converts a string into a font size. + To be added. + + + Initializes a new object. + To be added. + + + To be added. + Returns a value that indicates if the source type can be converted to a font size. + To be added. + To be added. + + + To be added. + To be added. + Converts an object into a font size. + To be added. + To be added. + + + To be added. + Converts a string representation of a font size into a font size. + To be added. + To be added. + + + To be added. + To be added. + To be added. + For internal use only. + To be added. + To be added. + + + To be added. + To be added. + For internal use only. + To be added. + To be added. + + + A that converts from strings to . + String should be formatted as "[name],[attributes],[size]" there may be multiple attributes, e.g. "Georgia, Bold, Italic, 42" + + + Creates a new with default values. + To be added. + + + To be added. + Returns a Boolean value that indicates whether this can convert the to a instance. + To be added. + To be added. + + + To be added. + To be added. + Converts into a by using the specified . + To be added. + To be added. + + + To be added. + Converts into a . + To be added. + To be added. + + + Represents a text with attributes applied to some parts. + + + + Initializes a new instance of the FormattedString class. + To be added. + + + To be added. + Cast the FormattedString to a string, stripping all the attributes. + To be added. + To be added. + + + To be added. + Cast a string to a FromattedString that contains a single span with no attribute set. + To be added. + To be added. + + + Event that is raised when a bound property is changed. + To be added. + + + Gets the collection of spans. + To be added. + To be added. + + + Returns the text of the formatted string as an unformatted string. + To be added. + To be added. + + + An element containing a single child, with some framing options. + + Frame have a default of 20. + + The following example shows how to construct a new Frame with an Outline color. + + + + + + + + XAML for Xamarin.Forms supports the following properties for the class: + + + Property + Value + + + HasShadow + + + true or false, to indicate whether to show a shadow effect where the platform supports it. + + + + OutlineColor + + A color specification, with or without the prefix, "Color". For example, "Color.Red" and "Red" both specify the color red. + + + + + + + Initializes a new instance of the Frame class. + A Frame has a default of 20. + + + Gets or sets a flag indicating if the Frame has a shadow displayed. This is a bindable property. + A indicating whether or not the Frame has a shadow. Default is . + + + + Identifies the HasShadow bindable property. + + + + To be added. + To be added. + To be added. + To be added. + + + Gets or sets the color of the border of the Frame. This is a bindable property. + A representing the border Color. Default is . + + + + Identifies the OutlineColor bindable property. + + + + The base class for all gesture recognizers. + + + + The parent element of the gesture recognizer. + An element from which the binding context will be inherited. + + + + Gets or sets a weak reference to the parent of this object. + To be added. + To be added. + + + Enumeration specifying the various states of a gesture. + To be added. + + + The gesture has begun and has not ended, failed, or been cancelled. + + + The gesture was cancelled. + + + The gesture has ended. + + + The gesture was not recognized. + + + The gesture is in progress and may still become recognizable. + + + The gesture state is being updated. + + + Enumerates possible gesture states. + To be added. + + + The gesture was canceled. + + + The gesture completed. + + + The gesture is still being recognized. + + + The gesture started. + + + A layout that arranges views in rows and columns. + + + The following example shows a basic use: + + + The following shows Grids on the various platforms: + + + + It is convenient for the layout class arranges to store row and column indices of each of its child elements. Additionally, when a element is laid out with a grid, application developers can access and change the child's position and span from the child itself by using the , , , , static methods, and the equivalent static methods for columns and column spans. + XAML for Xamarin.Forms supports the following properties for the class: + + + Property + Value + + + Children + + Nested visual elements that are displayed in the Grid. + + + + ColumnDefinitions + + A list of ColumnDefinition specifications. See . + + + + ColumnSpacing + An integer. + + + RowDefinitions + + A list of RowDefinition specifications. See . + + + + RowSpacing + + An integer. + + + + XAML for Xamarin.Forms supports the following attached properties for the class: + + + Attached Property + Value + + + Column + + An integer that represents the Column in which the item will appear. + + + + ColumnSpan + An integer that represents the number of Columns that the item will span. + + + Row + + An integer that represents the row in which the item will appear. + + + + RowSpan + + An integer that represents the number of rows that the item will span. + + + + The documentation for the following member methods contains XAML syntax examples: + + + + + Initializes a new instance of the Grid class. + + + + Gets the collection of child elements of the Grid. + The collection of child elements. + + Application developers can use implicit collection syntax in XAML to add items to this collection, because this property is the ContentPropertyAttribute for the Grid class. + + + + Provides the interface for the bound property that gets or sets the ordered collection of objects that control the layout of columns in the . + A ColumnDefinitionCollection for the Grid instance. + + ColumnDefinitions is an ordered set of ColumnDefinition objects that determine the width of each column. Each successive ColumnDefintion controls the width of each successive column. If ColumnDefinitions is empty, or if there are more columns than definitions, then columns for which there is no definition are rendered as if they were controlled by a ColumnDefinition object that has its property set to . + The property has XAML syntax support. The syntax for this operation is shown below. + + + + Implements the property, and allows the class to bind it to properties on other objects at run time. + + + + Implements the attached property that represents the zero-based column index of a child element. See Remarks. + + The interface for this property is defined by the and methods. + + + + Provides the interface for the bound property that gets or sets the distance between columns in the Grid. + The space between columns in this layout. + + The property does not control spacing on the left and right edges of the layout. Application developers can control the spacing around the outside of the layout by setting the property of the visual element to which it belongs. + + + + Implements the property, and allows the class to bind it to properties on other objects at run time. + + + + Implements the attached property that represents the number of columns that a child element spans. See Remarks. + + The interface for this property is defined by the and methods. + + + + An element that belongs to the Grid layout. + Gets the column of the child element. + The column that the child element is in. + + The method corresponds to the value that is set by the following XAML attached property. + + + Attached Property + Value + + + Column + + An integer that represents the Column in which the item will appear. + + + + The remarks for the method contain syntax for and information about the Column attached property. + + + + An element that belongs to the Grid layout. + Gets the column span of the child element. + The column that the child element is in. + + The method corresponds to the value that is set by the following XAML attached property. + + + Attached Property + Value + + + ColumnSpan + + An integer that represents the number of Columns that the item will span. + + + + The remarks for the method contain syntax for and information about the ColumnSpan attached property. + + + + An element that belongs to the Grid layout. + Gets the row of the child element. + The row that the child element is in. + + The method corresponds to the following XAML attached property: + + + Attached Property + Value + + + Row + + An integer that represents the row in which the item will appear. + + + + The remarks for the method contain syntax for and information about the Row attached property. + + + + An element that belongs to the Grid layout. + Gets the row span of the child element. + The row that the child element is in. + + The method corresponds to the following XAML attached properties: + + + Attached Property + Value + + + RowSpan + An integer that represents the number of rows that the item will span. + + + The remarks for the method contain syntax for and information about the RowSpan attached property. + + + + Invalidates the grid layout. + To be added. + + + X-coordinate of the top left corner of the bounding rectangle. + Y-coordinate of the top left corner of the bounding rectangle. + Width of the bounding rectangle. + Height of the bounding rectangle. + + Lays out the child elements when the layout is invalidated. + + To be added. + + + The element that was added. + Method that is called when a child is added to this element. + + + + Application developers override this to respond when the binding context changes. + To be added. + + + The element that was removed. + Method that is called when a child is removed from this element. + To be added. + + + The requested width. + The requested height. + Method that is called when an attempt is made to resize this element. + + The new requested size. + + To be added. + + + Provides the interface for the bound property that gets or sets the collection of RowDefinition objects that control the heights of each row. + A RowDefinitionCollection for the Grid instance. + + RowDefinitions is an ordered set of objects that determine the height of each column. Each successive RowDefintion controls the width of each successive column. If RowDefinitions is empty, or if there are more rows than definitions, then rows for which there is no definition are rendered as if they were controlled by a RowDefinition object that has its property set to . + + + + Implements the property, and allows the class to bind it to properties on other objects at run time. + To be added. + + + Implements the attached property that represents the zero-based row index of a child element. See Remarks. + + The interface for this property is defined by the and methods. + + + + Gets or sets the amount of space left between rows in the Grid. This is a bindable property. + The space between rows + + The property does not control spacing on the top and bottom edges of the layout. Application developers can control the spacing around the outside of the layout by setting the property of the visual element to which it belongs. + + + + Implements the property, and allows the class to bind it to properties on other objects at run time. + + + + Implements the attached property that represents the number of rows that a child element spans, and allows the class to bind it to properties on other objects at run time. + + The interface for this property is defined by the and methods. + + + + A child element of this Grid to move to a different column. + The column in which to place the child element. + Changes the column in which a child element will be placed. + + The method corresponds to the value that is set by the following XAML attached property. + + + Attached Property + Value + + + ColumnSpan + + An integer that represents the Column in which the item will appear. + + + + + + + A child element of this Grid on which to assign a new column span. + The new column span. + Changes the column span of the specified child element. + + The method corresponds to the value that is set by the following XAML attached property. + + + Attached Property + Value + + + Column + + An integer that represents the number of Columns that the item will span. + + + + + + + A child element of this Grid to move to a different row. + The row in which to place the child element. + Changes the row in which a child element will be placed. + + The method corresponds to the following XAML attached property: + + + Attached Property + Value + + + Row + + An integer that represents the row in which the item will appear. + + + + + + + A child element of this Grid on which to assign a new row span. + The new row span. + Changes the row span of the specified child element. + + The method corresponds to the following XAML attached property: + + + Attached Property + Value + + + RowSpan + An integer that represents the number of rows that the item will span. + + + + + + The type of elements in the grid. + List interface with overloads for adding elements to a grid. + + + + The view to add. + The column to add the view to. + The row to add the view to. + Adds a view to the List at the specified location with a RowSpan and HeightSpan of 1. + + + + The view to add. + The left edge of the column span. Must be greater than 0. + The right edge of the column span. Must be greater than left. + The top edge of the row span. Must be greater than 0. + The bottom edge of the row span. Must be greater than top. + Adds a view to the List at the specified row and column spans. + + + + The views to add. + Add a collection views to the List such that they are horizontally stacked to the right of the current contents of the Grid. + The final span of each view is defined to be the height of the grid at the add time, and one column wide at the end of the current arrangement. + + + The view to add. + Add a view to the List such that it is horizontally stacked to the right of the current contents of the Grid. + The final span of the view is defined to be the height of the grid at the add time, and one column wide at the end of the current arrangement. + + + The views to add. + Add a collection views to the List such that they are vertically stacked below the current contents of the Grid. + The final span of each view is defined to be the width of the grid at the add time, and one row tall at the end of the current arrangement. + + + The view to add. + Add a view to the List such that it is vertically stacked below the current contents of the Grid. + The final span of the view is defined to be the width of the grid at the add time, and one row tall at the end of the current arrangement. + + + Used to define the size (width/height) of Grid ColumnDefinition and RowDefinition. + + GridLength of type GridUnitType.Absolute represents exact size. The ones of type GridUnitType.Auto adapts for fitting the size of the elements in the gird column/row. GridLenght of type GridUnitType.Star are used to split the available size in proportional buckets. + This valuetype is readonly. + + + + To be added. + Initializes a new Absolute GridLength. + This is striclty equivalent to new GridLength (value, GridUnitType.Absolute). + + + The size of the GridLength. + The GridUnitType (Auto, Star, Absolute) of the GridLength. + Initializes a new GridLength. + + + + A ready to reuse GridLength of GridUnitType.Auto. + + Value has no meaning for GridLength ot type GridUnitType.Auto. + + + A GridLength to compare to. + Test the equality of this GridLength and another one. + true is the GridLength are equal. False otherwise. + + + + Returns a value that is used for efficient storage of this object in collections. + To be added. + overriden. + + + Gets or sets the GridUnitType of the GridLength + The GridUnitType of the GridLength + + + + Gets wether or not the GridUnitType of the GridLength is GridUnitType.Absolute. + true if the GridUnitType of the GridLength is GridUnitType.Absolute + + + + Gets wether or not the GridUnitType of the GridLength is GridUnitType.Auto. + true if the GridUnitType of the GridLength is GridUnitType.Auto + + + + Gets a value that indicates whether the GridUnitType of the GridLength is GridUnitType.Star. + true if the GridUnitType of the GridLength is GridUnitType.Star + + + + The absolute size + Casting operator to convert a double into a GridLength of type GridUnitType.Absolute + A GridLength of type GridUnitType.Absolute and of size absolutesize + + + + A ready to reuse GridLength of GridUnitType.Star with a Value of 1. + + If a Value other than 1 is needed with GridUnitType.Star, then use the constructor GridLength (value, GridUnitType.Star). + + + Returns the value and the grid unit type, separated by a ".". + To be added. + To be added. + + + Gets the Value of the GridLength. + The value in GridUnitType of the GridLength. + + + + A that converts from strings to s. + + The following example shows some uses of : + + + + + + + Creates a new object with default values. + To be added. + + + To be added. + Returns a Boolean value that indicates whether this can convert the to a instance. + To be added. + To be added. + + + To be added. + To be added. + Converts into a by using the specified . + To be added. + To be added. + + + To be added. + Converts a valid grid length descriptor in to a . + To be added. + To be added. + + + Enumerates values that control how the property is interpreted for row and column definitions. + To be added. + + + Interpret the property value as the number of device-specific units. + To be added. + + + Ignore the property value and choose a size that fits the children of the row or column. + To be added. + + + Interpret the property value as a proportional weight, to be laid out after rows and columns with or are accounted for. + After all the rows and columns of type and are laid out, each of the corresponding remaining rows or columns, which are of type , receive a fraction of the remaining available space. This fraction is determined by dividing each row's or column's property value by the sum of all the row or column property values, correspondingly, including its own. + + + An abstract attribute whose subclasses specify the platform-specific renderers for Xamarin.Forms abstract controls. + To be added. + + + To be added. + To be added. + Creates a new object that maps events from to . + To be added. + + + Returns a Boolean value that indicates whether the runtime should automatically register the handler for the target. + To be added. + To be added. + + + A WebViewSource bound to an HTML-formatted string. + To be added. + + + Creates a new empty object with default values. + To be added. + + + The base URL for the source HTML document. + To be added. + To be added. + + + Backing store for the property. + To be added. + + + The HTML content. + To be added. + To be added. + + + Backing store for the property. + To be added. + + + Defines an interface for elements that can be animated. + To be added. + + + Implement this method to begin a batch of animations that have been committed. + To be added. + + + Implement this method to commit a batch of animations so that they can be run with the method. + To be added. + + + To be added. + To be added. + + + To be added. + To be added. + To be added. + + + To be added. + To be added. + + + To be added. + To be added. + To be added. + + + To be added. + To be added. + + + To be added. + To be added. + To be added. + + + To be added. + To be added. + To be added. + + + To be added. + To be added. + To be added. + + + To be added. + To be added. + To be added. + + + To be added. + To be added. + To be added. + + + To be added. + To be added. + To be added. + + + To be added. + To be added. + + + To be added. + To be added. + To be added. + + + To be added. + To be added. + To be added. + + + To be added. + To be added. + To be added. + + + To be added. + To be added. + + + To be added. + To be added. + + + To be added. + To be added. + + + To be added. + To be added. + + + To be added. + To be added. + + + To be added. + To be added. + + + To be added. + To be added. + To be added. + + + To be added. + To be added. + To be added. + + + To be added. + To be added. + + + Interface defining the type of and . + + Objects of type are parameterized with a type of . + + + + + + + Event that is raised when the size of the row or column changes. + To be added. + + + When implemented in a renderer, registers a platform-specific effect on an element. + To be added. + + + The effect to register. + Registers the effect with the element by establishing the parent-child relations needed for rendering on the specific platform. + To be added. + + + To be added. + To be added. + To be added. + + + To be added. + To be added. + To be added. + To be added. + + + When implemented in a derived class, sets the value on bound properties so that their bindings are preserved. + To be added. + + + When implemented in a derived class, gets or sets the provider that registers platform-specific effects. + To be added. + To be added. + + + To be added. + To be added. + To be added. + To be added. + + + To be added. + To be added. + To be added. + + + To be added. + To be added. + When implemented in a derived class, sets the value on bound properties so that their bindings are preserved. + To be added. + + + To be added. + To be added. + Sets a bound property value from a renderer without breaking the binding. + To be added. + + + To be added. + To be added. + + + To be added. + To be added. + + + To be added. + To be added. + + + To be added. + To be added. + + + Base class for type converters. + To be added. + + + To be added. + To be added. + To be added. + Converts with the specified and . + To be added. + To be added. + + + To be added. + To be added. + Converts with the specified . + To be added. + To be added. + + + The base interface all gesture recognizers must implement. + This interface is currently empty, this will likely change. + + + To be added. + To be added. + + + To be added. + To be added. + To be added. + + + To be added. + To be added. + To be added. + + + To be added. + To be added. + To be added. + To be added. + + + To be added. + To be added. + To be added. + To be added. + + + To be added. + To be added. + To be added. + + + To be added. + To be added. + + + To be added. + To be added. + To be added. + To be added. + + + To be added. + To be added. + To be added. + + + To be added. + To be added. + To be added. + To be added. + + + To be added. + To be added. + To be added. + To be added. + + + To be added. + To be added. + To be added. + To be added. + + + Interface indicating layout behavior and exposing the event. + To be added. + + + Event that is raised when the layout changes. + To be added. + + + Class that renderers implement in order participate in the layout cycle. + To be added. + + + Gets a read-only list of the immediate children of the renderer that implements the interface. + To be added. + To be added. + + + To be added. + To be added. + + + To be added. + To be added. + + + To be added. + To be added. + To be added. + + + To be added. + To be added. + + + To be added. + To be added. + To be added. + + + To be added. + To be added. + To be added. + To be added. + + + To be added. + To be added. + To be added. + + + To be added. + To be added. + To be added. + To be added. + + + To be added. + To be added. + To be added. + + + To be added. + To be added. + To be added. + To be added. + + + To be added. + To be added. + To be added. + To be added. + To be added. + + + To be added. + To be added. + To be added. + + + To be added. + To be added. + + + To be added. + To be added. + To be added. + + + To be added. + To be added. + To be added. + + + To be added. + To be added. + + + + that holds an image. + + + The following example creates a new image from a file + + + + + The FormsGallery sample, which can be found on the Sample Applications page, has a ImageDemoPage.cs file. This file contains a longer and more complicated example. + + + + Initializes a new instance of the Image class. + + + The following example creates a new image from a file + + + + + + + + Gets or sets the scaling mode for the image. This is a bindable property. + A representing the scaling mode of the image. Default is . + + + + Identifies the Aspect bindable property. + + + + Gets the loading status of the image. This is a bindable property. + A indicating if the image is loadin. Default is false. + + + The following example illustrates running a to indicate that the image is loading: + + + + + + + Identifies the IsLoading bindable property. + This bindable property is readonly. + + + Gets or sets the opacity flag for the image. This is a bindable property. + A indicating the value for the property. Default is false. + If true, you'll be able to see through transparent parts of the image. + + + Identifies the IsOpaque bindable property. + + + + To be added. + To be added. + To be added. + To be added. + + + Invoked when the BindingContext changes. + Overriden for Image. + + + The name of the property. + Invoked when a property has changed. + Overriden for Image. + + + The name of the property. + Invoked when a property will change. + Overriden for Image. + + + The available width. + The available height. + Invoked when the layotu cycle request the element desired size. + + Overriden for Image. + + + Gets or sets the source of the image. This is a bindable property. + An representing the image source. Default is null. + + + + Identifies the Source bindable property. + + + + To be added. + To be added. + To be added. + + + A that has an image. + + + objects are used to place images and accompanying text into a table. + + The following example shows a basic use. + + + + + + + + + Initializes a new instance of the ImageCell class. + + + + Gets or sets the ImageSource from which the Image is loaded. This is a bindable property. + + + + + Identifies the ImageSource bindable property. + + + + Overriden.. + + + + Abstract class whose implementors load images from files or the Web. + To be added. + + + To be added. + To be added. + + + Request a cancel of the ImageSource loading. + An awaitable Task. The result of the Task indicates if the Task was successfully cancelled. + Calling Cancel() multiple times will throw an exception. + + + Gets the CancellationTokenSource. + + Used by inheritors to implement cancellable loads. + + + The name of a file that contains a valid image. + Returns a new that reads from . + To be added. + To be added. + + + A string representing the id of the EmbeddedResource to load. + Creates an ImageSource for an EmbeddedResource included in the Assembly from which the call to FromResource is made. + A newly created ImageSource. + + + + The name of a valid image resource in . + The source assembly in which to search for the image. + Creates a from the specified resource in the specified source assembly. + To be added. + To be added. + + + The name of a valid image resource in the assembly to which belongs. + A type from the assembly in which to look up the image resource with . + Creates a from the specified resource in the specified source assembly. + To be added. + To be added. + + + A stream that supplies image data. + Returns a new that reads from . + To be added. + To be added. + + + A URI that identifies a valid image. + Returns a new that reads from . + To be added. + To be added. + + + A bool indicating if the source was cancelled. + Called by inheritors to indicate the end of the loading of the source. + OnLoadingCompleted should follow a OnLoadingStarted. + + + Called by inheritors to indicate the beginning of a loading operation. + OnLoadingCompleted should follow a OnLoadingStarted. + + + Called by inheritors to indicate that the source changed.. + To be added. + + + A string that represents an image location. + Allows implicit casting from a string that represents an absolute URI. + To be added. + To be added. + + + A absolute URI that specifies an image location. + Allows implicit casting from objects that were created with an absolute URI. + To be added. + To be added. + + + Gets or sets the element to which this object belongs. + To be added. + To be added. + + + Gets or sets a weak reference to the parent of this object. + To be added. + To be added. + + + Class that takes a string representation of an image file location and returns a from the specified resource. + To be added. + + + Creates a new with default values. + To be added. + + + A type to query. + Returns if the converter can create and return a for items of the specified source type. Otherwise, . + + if the converter can create and return a for items of the specified source type. Otherwise, . + To be added. + + + To be added. + To be added. + Creates and returns a for the specified and . + A for the specified and . + To be added. + + + To be added. + Returns an image source created from a URI that is contained in . + To be added. + To be added. + + + To be added. + To be added. + + + To be added. + To be added. + + + To be added. + To be added. + To be added. + + + To be added. + To be added. + To be added. + + + To be added. + To be added. + To be added. + + + To be added. + To be added. + To be added. + + + To be added. + To be added. + + + To be added. + To be added. + + + To be added. + To be added. + + + To be added. + To be added. + To be added. + + + To be added. + To be added. + To be added. + + + Interface that contains a read-only property that returns the platform-specific native view for a Xamarin.Forms element. + To be added. + + + Gets the platform-specific native view for a Xamarin.Forms element. + To be added. + To be added. + + + Interface abstracting platform-specific navigation. + + Note that on the Android platform, operations do not generate activity lifecycle notifications. For each that you push or pop, the Android implementation of simply adds or removes the content of the page to or from a single activity. + Also note that the Windows Phone platform provides navigation natively. Therefore, you do not need to use a object to get navigation on that platform. + + + + The page to add. + The existing page, before which will be inserted. + Inserts a page in the navigation stack before an existing page in the stack. + To be added. + + + Gets the modal navigation stack. + To be added. + To be added. + + + Gets the stack of pages in the navigation. + To be added. + To be added. + + + Asynchronously removes the most recent from the navigation stack. + The that had been at the top of the navigation stack. + To be added. + + + To be added. + Asynchronously removes the most recent from the navigation stack, with optional animation. + To be added. + To be added. + + + Asynchronously dismisses the most recent modally presented . + An awaitable Task<Page>, indicating the PopModalAsync completion. The Task.Result is the Page that has been popped. + + The following example shows PushModal and PopModal usage: + + + + + Application developers must the result of and . Calling may cause a deadlock if a previous call to or has not completed. + + + + + To be added. + Asynchronously dismisses the most recent modally presented , with optional animation. + To be added. + To be added. + + + Pops all but the root off the navigation stack. + A task representing the asynchronous dismiss operation. + To be added. + + + To be added. + Pops all but the root off the navigation stack, with optional animation. + To be added. + To be added. + + + The to be pushed on top of the navigation stack. + Asynchronously adds a to the top of the navigation stack. + A task representing the asynchronous dismiss operation. + + + The following example shows and usage: + + + + + + + + To be added. + To be added. + Asynchronously adds a to the top of the navigation stack, with optional animation. + To be added. + To be added. + + + The to present modally. + Presents a modally. + An awaitable Task, indicating the PushModal completion. + + The following example shows PushModalAsync and PopModalAsync usage: + + + + + + + To be added. + To be added. + Presents a modally, with optional animation. + To be added. + To be added. + + + To be added. + Removes the specified page from the navigation stack. + To be added. + + + To be added. + To be added. + + + To be added. + To be added. + + + To be added. + To be added. + To be added. + To be added. + To be added. + + + To be added. + To be added. + + + To be added. + To be added. + + + To be added. + To be added. + + + To be added. + To be added. + + + To be added. + To be added. + To be added. + + + To be added. + To be added. + To be added. + + + The base class of a view which can take keyboard input. + The constructor of this class is internal. Forms does not provide any renderer for InputView base class. + + + Gets or sets the Keyboard for the InputView. This is a bindable property. + The to use for the InputView. + + + + Identifies the Keyboard bindable property. + + + + A view controller for displaying OpenGL content. + To be added. + + + Event that is raised when an OpenGL display is requested. + To be added. + + + A view controller for displaying OpenGL content. + To be added. + + + Event that is raised when an OpenGL display is requested. + To be added. + + + To be added. + Interface defining a container for s and exposing a property. + To be added. + + + Gets the current page. + To be added. + To be added. + + + To be added. + To be added. + + + To be added. + To be added. + To be added. + + + To be added. + To be added. + To be added. + + + To be added. + To be added. + To be added. + + + To be added. + To be added. + + + To be added. + To be added. + + + Interface defining the abstraction of a native platform. + To be added. + + + The binding context for the native platform. + To be added. + To be added. + + + Event that is raised when the binding context changes. + To be added. + + + The platform engine, useful for getting the screen size and for finding out if the paltform supports 3D. + To be added. + To be added. + + + Gets the root page of the platform. + To be added. + To be added. + + + To be added. + Sets the root page of the platform. + To be added. + + + To be added. + To be added. + To be added. + To be added. + + + Interface defining a native platform rendering engine. + To be added. + + + To be added. + To be added. + To be added. + Performs a size request on the native platform. + To be added. + To be added. + + + Gets a Boolean value that indicates whether the native platform supports 3D graphics. + To be added. + To be added. + + + Internally-used flagging interface indicating types that can be registered with . + To be added. + + + Interface for a scrollview controller. + To be added. + + + To be added. + To be added. + Calculates and returns a point that represents the scroll position that results in being displayed at in the scroll view. + To be added. + To be added. + + + Event that is raised when a request has been made to scroll the scroll view. + To be added. + + + Attempts to set the scroll task completion source state to RanToCompletion. + To be added. + + + To be added. + To be added. + Sets the scroll position to (, + ). + To be added. + + + To be added. + To be added. + + + To be added. + To be added. + + + To be added. + To be added. + + + To be added. + To be added. + To be added. + To be added. + + + To be added. + To be added. + + + To be added. + To be added. + To be added. + To be added. + To be added. + + + To be added. + To be added. + To be added. + To be added. + + + To be added. + To be added. + To be added. + To be added. + To be added. + + + To be added. + To be added. + To be added. + To be added. + + + To be added. + To be added. + To be added. + + + To be added. + To be added. + To be added. + + + To be added. + To be added. + To be added. + To be added. + + + To be added. + To be added. + To be added. + To be added. + + + To be added. + To be added. + To be added. + + + To be added. + To be added. + To be added. + To be added. + + + To be added. + To be added. + + + To be added. + To be added. + To be added. + + + To be added. + To be added. + + + To be added. + To be added. + To be added. + + + To be added. + To be added. + To be added. + + + To be added. + To be added. + To be added. + To be added. + + + To be added. + To be added. + To be added. + To be added. + + + To be added. + To be added. + To be added. + To be added. + + + To be added. + To be added. + To be added. + To be added. + + + To be added. + To be added. + To be added. + To be added. + To be added. + + + To be added. + To be added. + To be added. + To be added. + To be added. + + + To be added. + To be added. + + + To be added. + To be added. + To be added. + + + To be added. + To be added. + To be added. + To be added. + + + To be added. + To be added. + To be added. + + + To be added. + To be added. + To be added. + + + To be added. + To be added. + To be added. + + + To be added. + To be added. + + + To be added. + To be added. + To be added. + + + To be added. + To be added. + To be added. + To be added. + To be added. + + + To be added. + To be added. + To be added. + To be added. + To be added. + + + To be added. + To be added. + + + To be added. + To be added. + To be added. + + + To be added. + To be added. + To be added. + + + To be added. + To be added. + To be added. + + + To be added. + To be added. + To be added. + + + To be added. + To be added. + + + To be added. + To be added. + To be added. + + + The type of visual that the items will be templated into. + A base class for a view that contains a templated list of items. + + + This class is used as a base class for views that wish to take in a list of user objects and produce views for each of them to be displayed, such as . The generic + argument is used to specify the type of visual that the view expects. In the case of , only subclasses are accepted, so that's + what it provides as its argument. + + + + + The user object + Creates a default instance for . + An instance of the class. + + This method is called by the templating system when is . + The of the returned object will automatically be set to , there is no + need to set it yourself. If you do, it will be overridden. + + + + Gets or sets the source of items to template and display. + To be added. + + While any implementer is accepted, any that do not implement or + (where T is a class) will be converted to list by iterating. + If your collection implements , any changes raised from the event on this interface will be reflected in the items view. Note that if the event + is raised on another thread the main thread, the results will be unpredictable depending on the platform. To safely modify your collection (and raise the event) from another thread, call + to enable proper synchronization of access to the thread. + + + + Identifies the property. + + + + Gets or sets the to apply to the . + The for the , or + + The ItemTemplate is used to define the visual appearance of objects from the . Through + the item template you can set up data bindings to the user objects supplied to automatically fill in the visual and respond to any changes in the user + object. + If the item template is , is called and the result is used as the visual. + + In this example, a template for a is created for a simple user object. + + + + + + + + + Identifies the property. + + + + The visual content to setup. + The index of the content. + Performs any additional setup for the content at creation time. + + This method is called when the is creating visuals for user items. At this point, + the will have been set. You can override this method to perform additional setup + for content specific to your subclass. , for example, uses + this method to set to itself. + + + + To be added. + Application developers override this method to unregister event handlers for items that they registered in . + + Application developers must call before performing any other action when overriding this method. + Application developers who override to allocate resources must override this method in order to deallocate them. + + + + To be added. + Creates a default TVisual by using + To be added. + To be added. + + + To be added. + To be added. + Configures . + To be added. + + + To be added. + Internal use only. + To be added. + + + To be added. + To be added. + To be added. + + + To be added. + To be added. + To be added. + + + Event arguments for the event. + To be added. + + + To be added. + To be added. + Creates a new object for the specified that was tapped and the to which it belongs. + To be added. + + + The collection of elements to which the tapped item belongs. + To be added. + To be added. + + + The visual element that the user tapped. + To be added. + To be added. + + + Event args when an items visiblity has been changed in a . + + + + The modified item. + Initializes a new instance of the ItemVisibilityEventArgs class with the item whose visibility has changed. + + + + The item from the whose visibility has changed. + An object. + + + + Interface defining methods for two-way value conversion between types. + To be added. + + + To be added. + To be added. + To be added. + To be added. + Implement this method to convert to by using and . + To be added. + To be added. + + + To be added. + To be added. + To be added. + To be added. + Implement this method to convert back from by using and . + To be added. + To be added. + + + To be added. + The type of element that can be added to the container. + + + + The children collection of a visual element. + The collection containing the visual elements children. + + + + Contains methods that set values from renderers on bound properties without breaking the binding. + To be added. + + + Method that is called when the native size of a visual element changes. + To be added. + + + To be added. + To be added. + To be added. + + + When implemented in a renderer, called to invalidate the layout when the native size of a visual element changes. + To be added. + + + To be added. + To be added. + + + To be added. + To be added. + To be added. + To be added. + + + To be added. + To be added. + To be added. + + + Default keyboard and base class for specialized keyboards, such as those for telephone numbers, email, and URLs. + To be added. + + + Gets an instance of type "ChatKeyboard". + To be added. + To be added. + + + To be added. + Returns a new keyboard with the specified . + To be added. + To be added. + + + Gets an instance of type "Keyboard". + To be added. + To be added. + + + Gets an instance of type "EmailKeyboard". + To be added. + To be added. + + + Gets an instance of type "NumericKeyboard". + To be added. + To be added. + + + Returns a new keyboard with None ". + To be added. + To be added. + + + Gets an instance of type "TelephoneKeyboard". + To be added. + To be added. + + + Gets an instance of type "TextKeyboard". + To be added. + To be added. + + + Gets an instance of type "UrlKeyboard".. + To be added. + To be added. + + + Flagging enumeration for Keyboard options such as Capitalization, Spellcheck, and Suggestions. + To be added. + + + Capitalize the first words of sentences, and perform spellcheck and offer suggested word completions on text that the user enters. + + + Capitalize the first words of sentences. + + + No special features provided by the keyboard. + + + Perform spellcheck on text that the user enters. + + + Offer suggested word completions on text that the user enters. + + + A that converts a string into a . + + The following XAML snippet illustrates a case where a KeyboardTypeConverter is used behind the scenes: + + + ]]> + + The following shows some examples of forms: + + { + {"Keyboard.Default", Keyboard.Default}, + {"Keyboard.Email", Keyboard.Email}, + {"Keyboard.Text", Keyboard.Text}, + {"Keyboard.Url", Keyboard.Url}, + {"Keyboard.Telephone", Keyboard.Telephone}, + {"Keyboard.Chat", Keyboard.Chat}, +}) +Assert.AreSame (kvp.Value, converter.ConvertFrom (kvp.Key)); + ]]> + + + + + Initializes a new instance of the KayboardTypeConverter class. + + + + The type of the object. + Returns wheher this converter can convert an object of the given type. + + if the KeyboardTypeConverter can convert from sourceType. otherwise. + This method only returns is sourceType is . + + + The Culture fo the value parameter. + The object to convert from. + TConvert the given value into a Keyboard. + A . + This will throw an IvalidOperationException if the conversion failed. + + + To be added. + Returns a keyboard for a valid keyboard name. + To be added. + To be added. + + + A that displays text. + + A Label is used to display single-line text elements as well as multi-line blocks of text. + + + + The following example, adapted from the default Xamarin Forms solution, shows a basic use: + + + The FormsGallery sample, which can be found on the Sample Applications page, has a LabelDemoPage.cs file. This file contains a longer and more complete example. + + XAML for Xamarin.Forms supports the following properties for the class: + + + Property + Value + + + Font + + Deprecated. Use FontAttributes, FontFamily, and FontSize, instead. A string of the format [name],[attributes],[size]. The font specification may contain multiple attributes, e.g. Georgia, Bold, Italic, 42. + + + + FontAttributes + + + Bold, Bold,Italic, or None. + + + + FontFamily + + A font family, such as sans-serif or monospace. + + + + FontSize + + A named size, such as Large, or an integer that represents the size in device units. + + + + + LineBreakMode + + A string that corresponds to a enumeration value. + + + + Text + + The text that will appear on the label. + + + + TextColor + + A color specification, with or without the prefix, "Color". For example, "Color.Red" and "Red" both specify the color red. + + + + HorizontalTextAlignment + + + Center, End, or Start, to indicate the horizontal placement of the label text. + + + + VerticalTextAlignment + + + Center, End, or Start, to indicate the vertical placement of the label text. + + + + + + + Initializes a new instance of the Label class. + + + + Gets or sets the Font for the Label. This is a bindable property. + The value for the Label. The default is , which represents the default font on the platform. + + + + Gets a value that indicates whether the font for the label is bold, italic, or neither. + To be added. + To be added. + + + Backing store for the FontAttributes property. + To be added. + + + Gets the font family to which the font for the label belongs. + To be added. + To be added. + + + Backing store for the FontFamily property. + To be added. + + + Backing store for the Font bindable property. + + + + Gets the size of the font for the label. + To be added. + To be added. + + + Backing store for the FontSize property. + To be added. + + + Gets or sets the formatted text for the Label. This is a bindable property. + The value to be displayed inside of the Label. This is a bindable property. + Setting FromattedText to a non-null value will set the Text property to null. + + + + Backing store for the FormattedText property. + To be added. + + + Gets or sets the horizontal alignement of the Text property. This is a bindable property. + To be added. + To be added. + + + Identifies the HorizontalTextAlignment bindable property + To be added. + + + Gets or sets the LineBreakMode for the Label. This is a bindable property. + The value for the Label. The default is + + + + Backing store for the LineBreakMode bindable property. + + + + To be added. + To be added. + To be added. + To be added. + + + Gets or sets the text for the Label. This is a bindable property. + The value to be displayed inside of the Label. + Setting Text to a non-null value will set the FormattedText property to null. + + + + Gets or sets the for the text of this Label. This is a bindable property. + The value. + + + + Backing store for the TextColor bindable property. + + + + Backing store for the Text bindable property. + + + + Gets or sets the vertical alignement of the Text property. This is a bindable property. + To be added. + To be added. + + + Identifies the VerticalTextAlignment bindable property. + To be added. + + + Gets or sets the horizontal alignment for the Text inside of the Label bound. + The value. The default is , i.e. the text is left-aligned. + + + + Backing store for the XAlign bindable property. + + + + Gets or sets the vertical alignment for the Text inside of the Label bound. + The value. The default is , i.e. the text is top-aligned. + + + + Backing store for the YAlign bindable property. + + + + + Provides the base class for all Layout elements. Use Layout elements to position and size child elements in Forms applications. + + + Subtypes of include , , and , as shown in the following diagram. + The property of contains a list of children of the parameterized type T, which must be a type of . Since is itself a subclass of , this allows s to hold sub-layouts, scrolling regions, etc. + + XAML for Xamarin.Forms supports the following properties for the class: + + + Property + Value + + + IsClippedToBounds + + + true or false, to indicate whether the layout is clipped to its bounding rectangle. + + + + Padding + + A comma-separated list of 4 integers that represent a structure. + + + + + + + + + + Intitializes a new instance. + To be added. + + + Forces a layout cycle on the element and all of its descendants. + + Calling ForceLayout frequently can have negative impacts on performance. + + + + The available width that a parent Layout can allocate to a child. Value will be between 0 and double.PositiveInfinity. + The available height that a parent Layout can allocate to a child. Value will be between 0 and double.PositiveInfinity. + Returns the of the Layout. Calling this method begins the measure pass of a layout cycle. + A which contains a requested size and a minimum size. + + + Calling GetSizeRequest causes a measure pass to occur for the subtree of elements it is called on. It is ideal to only call GetSizeRequest when needed as excessive calls can negatively impact the performance of the app. Overriding GetSizeRequest should only be done if the developer wants to ignore Width/HeightRequest. More likely a subclass would wish to override . + + + + + + Invalidates the current layout. + Calling this method will invalidate the measure and triggers a new layout cycle. + + + Gets or sets a value which determines if the Layout should clip its children to its bounds. + + if the Layout is clipped; otherwise, . The default value is . + To be added. + + + Identifies the bindable property. + + + + Occurs at the end of a layout cycle if any of the child element's have changed. + + Developers wishing to implement animations may wish to begin them at the end of a LayoutChanged event. + + + + The child element to be positioned. + The bounding region in which the child should be positioned. + Positions a child element into a bounding region while respecting the child elements and . + This method is called in the layout cycle after the general regions for each child have been calculated. This method will handle positioning the element relative to the bounding region given if the bounding region given is larger than the child's desired size. + + + A value representing the x coordinate of the child region bounding box. + A value representing the y coordinate of the child region bounding box. + A value representing the width of the child region bounding box. + A value representing the height of the child region bounding box. + Positions and sizes the children of a Layout. + Implementors wishing to change the default behavior of a Layout should override this method. It is suggested to still call the base method and modify its calculated results. + + + The view to lower in the visual stack. + Sends a child to the back of the visual stack. + Children are internally stored in visual stack order. This means that raising or lowering a child also changes the order in which the children are enumerated. + + + Invoked whenever a child of the layout has emitted . Implement this method to add class handling for this event. + To be added. + + + The child element whose preferred size changed. + The event data. + Invoked whenever a child of the layout has emitted . Implement this method to add class handling for this event. + This method has a default implementation and and application developers must call the base implementation. + + + The new width of the element. + The new height of the element. + This method is called when the size of the element is set during a layout cycle. This method is called directly before the event is emitted. Implement this method to add class handling for this event. + This method has a default implementation which triggers the layout cycle of the Layout to begin. + + + Gets or sets the inner padding of the Layout. + The Thickness values for the layout. The default value is a Thickness with all values set to 0. + + + The padding is the space between the bounds of a layout and the bounding region into which its children should be arranged into. + + + The following example shows setting the padding of a Layout to inset its children. + + + + + + + + Identifies the Padding bindable property. + + + + The view to raise in the visual stack. + Sends a child to the front of the visual stack. + Children are internally stored in visual stack order. This means that raising or lowering a child also changes the order in which they are enumerated. + + + To be added. + When implemented, should return if should call , and to return if it should not. + To be added. + To be added. + + + To be added. + When implemented, should return if should call when it is removed, and to return if it should not. + To be added. + To be added. + + + Instructs the layout to relayout all of its children. + This method starts a new layout cycle for the layout. Invoking this method frequently can negatively impact performance. + + + Internal. + To be added. + To be added. + + + The subclass of the layout contains. + A base implementation of a layout with undefined behavior and multiple children. + + + s contain that are of the type T with which the was specified. This T must be of type . Since s are subclasses of , this means that layouts may be nested, contain scrolling regions, etc. + + The following image shows the relationship between , , , and important subtypes. + + + + + The following example shows adding and removing elements from a layout. + + + layout, IEnumerable newItems) + { + layout.Children.Clear (); + foreach (var item in newItems) { + layout.Children.Add (item); + } + } + ]]> + + + + + Provides the base initialization for objects derived from the Layout<T> class. + + + + Gets an IList<View> of child element of the Layout. + A IList<View>. The default is an empty list. + + + The Children collection of a Layout contains all the children added throught the public add/remove interface. Internal children will not be exposed through this collection. + + + The following shows the creation of a layout, setting a property, and adding the children in the object initializer. + + + + + + + + The view which was added. + Invoked when a child is added to the layout. Implement this method to add class handling for this event. + This method is different from in that it provides a typed child consistent with the type of the Layout<T>. + + + To be added. + Application developers can override this method to respond when a child is added. + Application developers who override this method must call base.OnChildAdded before performing any other actions in their override. + + + To be added. + Application developers can override this method to respond when a child is removed. + Application developers who override this method must call base.OnChildRemoved before performing any other actions in their override. + + + The view which was removed. + Invoked when a child is removed from the layout. Implement this method to add class handling for this event. + This method is different from in that it provides a typed child consistent with the type of the Layout<T>. + + + Values that represent LayoutAlignment. + To be added. + + + The center of an alignment. + + + The end of an alignment. Usually the Bottom or Right. + + + Fill the entire area if possible. + + + The start of an alignment. Usually the Top or Left. + + + A struct whose static members define various alignment and expansion options. + To be added. + + + An alignment value. + Whether or not an element will expand to fill available space in its parent. + Creates a new object with and . + To be added. + + + Gets or sets a value that indicates how an element will be aligned. + The flags that describe the behavior of an element. + To be added. + + + A structure that describes an element that is centered and does not expand. + To be added. + + + A structure that describes an element that is centered and expands. + To be added. + + + A structure that describes an element that appears at the end of its parent and does not expand. + To be added. + + + A object that describes an element that appears at the end of its parent and expands. + To be added. + + + Gets or sets a value that indicates whether or not the element that is described by this structure will occupy the largest space that its parent will give to it. + Whether or not the element that is described by this structure will occupy the largest space that its parent will give it. if the element will occupy the largest space the parent will give to it. if the element will be as compact as it can be. + To be added. + + + A stucture that describes an element that has no padding around itself and does not expand. + To be added. + + + A structure that describes an element that has no padding around itself and expands. + To be added. + + + A structure that describes an element that appears at the start of its parent and does not expand. + To be added. + + + A structure that describes an element that appears at the start of its parent and expands. + To be added. + + + Class that takes a string representation of a and returns a corresponding . + To be added. + + + Creates a new with default values. + To be added. + + + A type to query. + Returns if the converter can create and return a for items of the specified source type. Otherwise, . + To be added. + To be added. + + + To be added. + To be added. + Creates and returns a for the specified and . + A for the specified and . + To be added. + + + To be added. + Returns a for a valid layout options string. + To be added. + To be added. + + + Enumeration specifying various options for line breaking. + To be added. + + + Wrap at character boundaries. + + + Truncate the head of text. + + + Truncate the middle of text. This may be done, for example, by replacing it with an ellipsis. + + + Do not wrap text. + + + Truncate the tail of text. + + + Wrap at word boundaries. + + + To be added. + To be added. + + + To be added. + To be added. + + + To be added. + To be added. + To be added. + To be added. + + + An that displays a collection of data as a vertical list. + + + + + The following example shows a basic use: + + people = new List + { + new Person("Abigail", new DateTime(1975, 1, 15), Color.Aqua), + new Person("Bob", new DateTime(1976, 2, 20), Color.Black), + // ...etc.,... + new Person("Yvonne", new DateTime(1987, 1, 10), Color.Purple), + new Person("Zachary", new DateTime(1988, 2, 5), Color.Red) + }; + + // Create the ListView. + ListView listView = new ListView + { + // Source of data items. + ItemsSource = people, + + // Define template for displaying each item. + // (Argument of DataTemplate constructor is called for + // each item; it must return a Cell derivative.) + ItemTemplate = new DataTemplate(() => + { + // Create views with bindings for displaying each property. + Label nameLabel = new Label(); + nameLabel.SetBinding(Label.TextProperty, "Name"); + + Label birthdayLabel = new Label(); + birthdayLabel.SetBinding(Label.TextProperty, + new Binding("Birthday", BindingMode.OneWay, + null, null, "Born {0:d}")); + + BoxView boxView = new BoxView(); + boxView.SetBinding(BoxView.ColorProperty, "FavoriteColor"); + + // Return an assembled ViewCell. + return new ViewCell + { + View = new StackLayout + { + Padding = new Thickness(0, 5), + Orientation = StackOrientation.Horizontal, + Children = + { + boxView, + new StackLayout + { + VerticalOptions = LayoutOptions.Center, + Spacing = 0, + Children = + { + nameLabel, + birthdayLabel + } + } + } + } + }; + }) + }; + + // Accomodate iPhone status bar. + this.Padding = new Thickness(10, Device.OnPlatform(20, 0, 0), 10, 5); + + // Build the page. + this.Content = new StackLayout + { + Children = + { + header, + listView + } + }; + } + } +} + +]]> + + XAML for Xamarin.Forms supports the following properties for the class: + + + Property + Value + + + + HasUnevenRows + + + true or false, to indicate whether the items in the list all have the same height. + + + + IsGroupingEnabled + + + true or false, to indicate whether grouping is enabled. + + + + RowHeight + + An integer that describes the height of the items in the list. This is ignored if HasUnevenRows is true. + + + + + + + + Creates and initializes a new instance of the class. + + + + A value that indicates how the List View should manage memory when displaying data items using a data template. + Creates and initializes a new instance of the class, with the specified caching strategy. + + For memory and performance reasons, application developers should strongly prefer , when possible. See for more details. + + When devolopers specify , OnElementChanged events are not raised when cells are recycled. Instead, the cell is retained and its property values change when the binding context is updated to that of an available cell, OnElementPropertyChanged events are raised. Application developers should remember to listen for the correct events, and should note that their renderers will need to be updated if the default behavior changes to in a future release. + + + + + Enters the refreshing state by setting the property to . + To be added. + + + The item to create a default visual for. + Creates an instance of the default visual representation of an item. + + A instance with its text set to the string representation of the object (). + + + + This method is called by the templating system when is . + + + The of the returned object will automatically be set to , there is no + need to set it yourself. If you do, it will be overridden. + + + + + Exits the refreshing state by setting the property to . + To be added. + + + Gets or sets the string, binding, or view that will be displayed at the bottom of the list view. + To be added. + To be added. + + + Backing store for the property. + To be added. + + + Gets or sets a data template to use to format a data object for display at the bottom of the list view. + To be added. + To be added. + + + Backing store for the property. + To be added. + + + Gets or sets the binding to use for display the group header. + The instance to apply to grouped lists, or . + + + This binding can be used to simply set a the text of the group headers without defining a full template and uses the default visuals + of the platform to display it. The binding is applied to the of the group. + + + This property is mutually exclusive with property. Setting it will set + to . + + + + This example shows an alphabetized list of people, grouped by first initial with the display binding set. + + + { + public Group (string firstInitial) + { + FirstInitial = firstInitial; + } + + public string FirstInitial + { + get; + private set; + } + } + ]]> + + + + + Identifies the property. + + + + Gets or sets a for group headers. + The for group headers, or . + + + Use this property to define a template for a that will be used as the header for groups in this + . The will be the + for each group. + + + GroupHeaderTemplate is mutually exclusive with . Setting this property + will set to . + + Empty groups will still display a group header. + + + + + + + Identifies the property. + + + + Gets or sets a binding for the name to display in grouped jump lists. + The instance to apply to grouped lists, or . + + + When grouping items in a , it is often useful to have jump lists to jump to specific + sections in the list. For example, in an alphabetically grouped lists, the jump list would be the the letter of each group. + This binding is applied against the of each group to select the short name to display + in the jump list. + + + Note: On Android, there is no displayed jump list. + + + + This example shows an alphabetized list of people, grouped by first initial with the short name binding set. + + +{ + public Group (string firstInitial) + { + FirstInitial = firstInitial; + } + + public string FirstInitial + { + get; + private set; + } +} + ]]> + + + + + Identifies the property. + + + + Gets or sets a Boolean value that indicates whether this element has uneven rows. + + if this control has uneven rows. Otherwise, + + Application developers will find that the easiest and least error-prone way to automatically size list view rows for content is: first, to set the property to ; and, second, to either leave at its default value of -1, or set it to -1 if it has been changed. + Application developers will find that the easiest and least error-prone way to set all rows to a constant size is to first set to , and then either: leave at its default value of -1 (or set it back to that value if it has been changed) in order to get the default height for the system; or set the property to the desired uniform row height. + A more detailed discussion follows, below. + When the app developer sets the property to , the behavior of the list view depends on the property. First, if the developer sets the property to a positive value, then all rows in the , irrespective of the height of their content, will be as tall as the specified property value. Second, if the develper instead does not set the property, or sets it to a nonpositive value, then all rows in the , irrespective of the height of their content, will have the default row height for the system. + When the app developer sets the property to , the behavior of the list view still depends on the property. First, if the developer either does not set the property or sets it to -1, list view items are autosized to fit their contents. This is the desired behavior and the intended use case for a value of , as noted above. Second, if the developer sets the property to 0 or to a negative value other than -1, then all rows in the will, irrespective of the height of their content, have the default height for the system. Third, and finally, if the developer sets to a positive value, then all rows in the will, irrespective of the height of their content, be as tall as , as if had been set to . + + + + + Identifies the property. + + + + Gets or sets the string, binding, or view that will be displayed at the top of the list view. + To be added. + To be added. + + + Backing store for the property. + To be added. + + + Gets or sets a data template to use to format a data object for display at the top of the list view. + To be added. + To be added. + + + Backing store for the property. + To be added. + + + Gets or sets whether or not grouping is enabled for . + + if grouping is enabled, otherwise and by default. + + + + + + + Identifies the property. + + + + Gets or sets a value that tells whether the user can swipe down to cause the application to refresh. + To be added. + To be added. + + + Backing store for the property. + To be added. + + + Gets or sets a value that tells whether the list view is currently refreshing. + To be added. + To be added. + + + Backing store for the property. + To be added. + + + Occurs when the visual representation of an item is being added to the visual layout. + This method is guaranteed to fire at some point before the element is on screen. + + + Occurs when the visual representation of an item is being removed from the visual layout. + This method is for virtualization usage only. It is not guaranteed to fire for all visible items when the List is removed from the screen. Additionally it fires during virtualization, which may not correspond directly with removal from the screen depending on the platform virtualization technique used. + + + Event that is raised when a new item is selected. + To be added. + + + Event that is raised when an item is tapped. + To be added. + + + To be added. + To be added. + To be added. + To be added. + + + To be added. + To be added. + + + To be added. + To be added. + Method that is called when a size request is made.. + To be added. + To be added. + + + Gets or sets the command that is run when the list view enters the refreshing state. + To be added. + To be added. + + + Backing store for the property. + To be added. + + + Event that is raised when the list view refreshes. + To be added. + + + Gets or sets a value that represents the height of a row. + To be added. + To be added. + + + The backing store for the property. + + + + The item from your to scroll to. + How the item should be positioned on screen. + Whether or not the scroll should be animated. + Scrolls the ListView to the . + + A linear search is done for the item, so if the same reference appears multiple times in the list, the first item will be scrolled to. This includes if grouping is enabled. + + + contains an invalid value for . + + + The item from your to scroll to. + The group from your to scroll to. + How the item should be positioned on screen. + Whether or not the scroll should be animated. + Scrolls the ListView to the in the + + A linear search is done for the item, so if the same reference appears multiple times in the , the first item will be scrolled to. The same item in a different group will be ignored. + + + contains an invalid value for . + + + is . + + + Gets or sets the currently selected item from the . + The selected item or if no item is selected. + + + + Identifies the property. + + + + Gets or sets the color of the bar that separates list items. + To be added. + The default value is Color.Default. This property has no effect if is . + + + Backing store for the property. + To be added. + + + Gets or sets a value that tells whether separators are visible between items. + To be added. + To be added. + + + Backing store for the property. + To be added. + + + The cell to set up. + The index of the cell in the list of items. + Application developers override this method to register event handlers for list view items. + + Application developers must call before performing any other action when overriding this method. + Application developers who override this method to allocate resources must override in order to deallocate them. + + + + To be added. + Application developers override this method to unregister event handlers for list view items that they registered in . + + Application developers must call before performing any other action when overriding this method. + Application developers who override to allocate resources must override this method in order to deallocate them. + + + + To be added. + Raises the event for . + To be added. + + + To be added. + Raises the event for . + To be added. + + + To be added. + Internal. + To be added. + + + To be added. + Internal. + To be added. + + + To be added. + To be added. + To be added. + + + To be added. + To be added. + To be added. + To be added. + + + Internal. + To be added. + To be added. + + + To be added. + To be added. + To be added. + To be added. + + + Internal. + To be added. + To be added. + + + To be added. + To be added. + To be added. + To be added. + + + To be added. + To be added. + To be added. + To be added. + To be added. + + + To be added. + To be added. + To be added. + + + To be added. + To be added. + To be added. + + + To be added. + To be added. + To be added. + + + Internal. + To be added. + + + Enumerates caching strategies for a ListView. + + Application developers can specify one of these values when constructing a to determine whether the List View will minimize their memory footprint and speed execution by recycling list cells, or will instead generate a cell for every item in the list. Currently, the default behavior is to retain item data in their generated cells when they are not needed. (Items are not needed, for example, when they are far enough off screen that their display is not imminent.) This behavior corresponds to a value of . For performance reasons, it is likely that the default behavior will be changed to in a future release. In the meantime, for memory and performance reasons, app developers should specify when constructing a new List View. + The performance advantage of is so great that application developers have been provided with a XAML syntax shortcut for initializing List Views. Instead of x:TypeArguments syntax that specifies a parameter for the constructor, XAML for Xamarin.Forms provides a XAML attribute for a non-existent property that corresponds to the caching strategy argument of the constructor. Application developers can set the CachingStrategy attribute to either of the RecycleElement (preferred) or RetainElement values to choose a caching strategy. For example: + + + + + + + + +]]> + + When devolopers specify , OnElementChanged events are not raised when cells are recycled. Instead, the cell is retained and its property values change when the binding context is updated to that of an available cell, OnElementPropertyChanged events are raised. Application developers should remember to listen for the correct events, and should note that their renderers will need to be updated if the default behavior changes to in a future release. + + + + + Indicates that unneeded cells will have their binding contexts updated to that of a cell that is needed. + + + Indicates that for every item in the List View's property, a single unique element will be constructed from the DataTemplate. + + + Enumerates values that control how detail content is displayed in a master-detail page. + To be added. + + + Details are displayed in the default way for the platform. + + + Details pop over the page. + + + Details are always displayed in a split screen. + + + Details are displayed in a split screen when the device is in landscape orientation. + + + Details are displayed in a split screen when the device is in portrait orientation. + + + A that manages two panes of information: A master page that presents data at a high level, and a detail page that displays low-level details about information in the master. + + The following example code, taken from the FormsGallery sample application, creates a that allows the user to view detailed information about a color that she chooses from a list. Note that the NamedColorPage class, defined in as a sublcass of in another file in the sample application, simply displays RGB data, a with its background color set to the color that the user selected, and, finally, hue, saturation, and luminosity data. + The sample below illustrates three key concepts. First, the "Master" portion of the MasterDetailPage is represented by the property, which is set to a element in this example. This element contains a label and a list of colors. Second, the "Detail" portion of the is represented by the property, which, in this example, is set to the NamedColorPage that was noted above. Third, and finally, the page that is represented by the property is displayed by setting the property to ; That is, the property controls whether or not the page that is represented by the is presented to the user. + The page must have its property set. Additionally, the page will only display a navigation bar if it is an instance of . + + + { + this.IsPresented = true; + })); + } + + // Define a selected handler for the ListView. + listView.ItemSelected += (sender, args) => + { + // Set the BindingContext of the detail page. + this.Detail.BindingContext = args.SelectedItem; + + // Show the detail page. + this.IsPresented = false; + }; + + // Initialize the ListView selection. + listView.SelectedItem = namedColors[0]; + + + } + } +} + ]]> + + + The Windows Phone and Android platforms do not support sliding the detail screen in order to show or hide it. Application developers can use a to provide the user an additional way to show and hide the Detail screen on these platforms. On Windows Phone, developers could consider using a user interface class that provides an experience that is more consistent with that platform, such as . + + + + + Creates a new empty . + To be added. + + + Gets or sets the detail page that is used to display details about items on the master page. + To be added. + To be added. + + + Gets or sets a value that turns on or off the gesture to reveal the master page. This is a bindable property. + + if gesture is enabled; otherwise . Default is . + Has no effect on Windows Phone. + + + Backing store for the IsGestureEnabled bindable property. + + + + Gets or sets a value that indicates whether or not the visual element that is represented by the property is presented to the user. + To be added. + Setting this property causes the event to be raised. + + + Event that is raised when the visual element that is represented by the property is presented or hidden. + To be added. + + + Backing store for the property. + To be added. + + + To be added. + To be added. + To be added. + To be added. + Lays out the master and detail pages. + To be added. + + + Gets or sets the master page. + To be added. + To be added. + + + Gets or sets a value that indicates how detail content is displayed. + To be added. + To be added. + + + Backing store for the MasterBehavior property. + To be added. + + + To be added. + To be added. + To be added. + To be added. + + + Event that is raised when a detail appears. + To be added. + + + Event that is raised when the back button is pressed. + To be added. + To be added. + + + Event that is raised when a detail disappears. + To be added. + + + Method that is called when the property of this is set. + To be added. + + + Returns a value that tells whether the list view should display a toolbar button. + To be added. + To be added. + + + To be added. + To be added. + To be added. + + + To be added. + To be added. + To be added. + + + To be added. + To be added. + To be added. + + + To be added. + To be added. + To be added. + + + To be added. + To be added. + + + Enumerates values that tell whether margins are included when laying out windows. + To be added. + + + Include margins in a layout measurement. + + + Do not include margins in a layout measurement. + + + Class that presents a menu item and associates it with a command. + + XAML for Xamarin.Forms supports the following properties for the class: + + + Property + Value + + + Command + + A binding to a command. + + + + CommandParameter + + A parameter to pass to the command. + + + + + IsDestructive + + + true or false, to indicate whether the command deletes an item in a list. + + + + Text + + The text to display on the menu item. + + + + + + + Intitializes a new instance. + To be added. + + + Event that is raised when the menu item is clicked. + To be added. + + + Gets or sets the command that is run when the menu is clicked. + To be added. + To be added. + + + Gets or sets the parameter that is passed to the command. + To be added. + To be added. + + + Identifies the command parameter bound property. + To be added. + + + Identifies the command bound property. + To be added. + + + Gets or sets the icon for the menu item. + To be added. + To be added. + + + Identfies the icon bound property. + To be added. + + + Gets or sets a value that indicates whether or not the menu item removes its associated UI element. + To be added. + To be added. + + + Identifies the IsDestructive bound property. + To be added. + + + When overriden by an app dev, implements behavior when the menu item is clicked. + To be added. + + + The text of the menu item. + To be added. + To be added. + + + Identifies the text bound property. + To be added. + + + To be added. + To be added. + + + To be added. + To be added. + To be added. + + + To be added. + To be added. + To be added. + + + Associates a callback on subscribers with a specific message name. + + The following shows a simple example of a strongly-typed callback using is: + + (subscriber, "IntPropertyMessage", (s, e) => { + subscriber.IntProperty = e; +}); + +//...later... + +MessagingCenter.Send(this, "IntPropertyMessage", 2); +Assert.AreEqual(2, subscriber.IntProperty); + ]]> + + + + + To be added. + To be added. + To be added. + Sends a named message that has no arguments. + To be added. + + + To be added. + To be added. + To be added. + To be added. + To be added. + Sends a named message with the specified arguments. + To be added. + + + To be added. + To be added. + To be added. + To be added. + To be added. + Run the on in response to messages that are named and that are created by . + To be added. + + + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + Run the on in response to parameterized messages that are named and that are created by . + To be added. + + + To be added. + To be added. + To be added. + Unsubscribes a subscriber from the specified messages that come from the specified sender. + To be added. + + + To be added. + To be added. + To be added. + To be added. + Unsubscribes from the specified parameterless subscriber messages. + To be added. + + + Base class for , , , and . + To be added. + + + To be added. + Creates a new object for a navigation event that happened to the page. + To be added. + + + Gets or sets the page whose navigation triggered the event. + To be added. + To be added. + + + Arguments for the event that is raised when a modal window is popped from the navigation stack. + To be added. + + + To be added. + Constructs a new object for the page that was just popped. + To be added. + + + Arguments for the event that is raised when a modal window is popping from the navigation stack. + To be added. + + + To be added. + Constructs a new object for the page that is being popped. + To be added. + + + Gets or sets a value that tells whether the modal navigation was canceled. + To be added. + To be added. + + + Arguments for the event that is raised when a modal window is pushed onto the navigation stack. + To be added. + + + To be added. + Constructs a new object for the page that was just popped. + To be added. + + + Arguments for the event that is raised when a modal window is being pushed onto the navigation stack. + To be added. + + + To be added. + Constructs a new object for the page that is being pushed. + To be added. + + + The particular subclass of that the MultiPage services. + A bindable, templatable base class for pages which contain multiple sub-pages. + + Provides a base implementation for binding and templating pages. + XAML for Xamarin.Forms supports the following properties for the class: + + + Property + Value + + + ItemsSource + + A static collection of data objects. + + + + ItemTemplate + + A view that has bindings to properties on the members of the collection that is specified by ItemsSource. + + + + + + + Provides the base initialization for objects derived from the MultiPage<T> class. + + provides two classes that are derived from , and . + + + + Gets an IList<Page> of child elements of the MultiPage. + A IList<Page>. The default is an empty list. + + + The collection of a contains all the children added through the public add/remove interface. Internal children will not be exposed through this collection. + + + The following shows the creation of a , which descends from . + + + + + + + + The object which the default page should be templated from. + Create default provides a default method of creating new pages from objects in a binding scenario. + The newly created page. + Most implementors will not need to use or override CreateDefault. + + + Gets or sets the currently selected page. + The current page. The default value is null. + The default page will usually get set when the multi-page is displayed or templated. + + + Raised when the property changes. + + + + The source for the items to be displayed. + To be added. + To be added. + + + Identifies the property. + To be added. + + + The template for displaying items. + To be added. + To be added. + + + Identifies the bindable property. + + + + Event that is raised when the back button is pressed. + To be added. + To be added. + + + The child that was added. + Called when a child has been added to the . + + + + Raises the event. + + + + To be added. + Called when the pages of the have been changed. + To be added. + + + The name of the property that was changed. + Called when a bindable property has changed. + + + + Raised when the children pages of the have changed. + To be added. + + + The currently selected item. + The selected item from the or if nothing selected. + + + + Identifies the bindable property. + + + + To be added. + To be added. + When overriden in a derived class, performs initialization of . + To be added. + + + To be added. + Application developers override this method to unregister event handlers for items that they registered in . + + Application developers must call before performing any other action when overriding this method. + Application developers who override to allocate resources must override this method in order to deallocate them. + + + + To be added. + Sets the page that is specified by as the default page. + To be added. + To be added. + + + To be added. + To be added. + Performs initialization of . + To be added. + + + To be added. + Internal use only. + To be added. + + + Class that represents a list of property and binding conditions, and a list of setters that are applied when all of the conditions in the list are met. + + XAML for Xamarin.Forms supports the following properties for the class: + + + Property + Value + + + Conditions + + A list of PropertyCondition and/or BindingCondition markup instances that specify the conditions that all must be met before all of the setters that are listed in Setters are applied. + + + + Setters + + A list of setters that are applied when all of the property conditions are met. Each Setter tag or tag pair in the list has a Property and Value that represents the assignments to perform when the condition is met. + + + + + + + To be added. + Initializes a new instance. + To be added. + + + Gets the list of conditions that must be satisfied in ordeer for the setters in the list to be invoked. + To be added. + To be added. + + + Gets the list of objects that will be applied when the list of conditions in the property are all met. + To be added. + To be added. + + + Represents pre-defined font sizes. + The exact pixel-value depends on the platform on which Forms runs. + + + The default font size. + + + A Large font size, for titles or other important text elements. + + + A default font size, to be used in stand alone labels or buttons. + + + The smallest readable font size for the device. Think about this like legal footnotes. + + + A small but readable font size. Use this for block of text. + + + Extension methods for and that add strongly-typed FindByName methods. + To be added. + + + To be added. + To be added. + To be added. + Returns the instance of type that has name in the scope that includes . + To be added. + To be added. + + + EventArgs for the NavigationPage's navigation events. + + + + + + + The page that was popped or is newly visible. + + + + + Gets the page that was removed or is newly visible. + + + For , this is the that was removed. For + and it is the newly visible page, the pushed page or the root respectively. + + + + For internal use only. + To be added. + + + For internal use only. + To be added. + + + To be added. + For internal use only. + To be added. + + + To be added. + For internal use only. + To be added. + + + For internal use only. + To be added. + To be added. + + + A that manages the navigation and user-experience of a stack of other pages. + + Note that on the Android platform, operations do not generate activity lifecycle notifications. For each that you push or pop, the Android implementation of simply adds or removes the content of the page to or from a single activity. + Also note that the Windows Phone platform provides navigation natively. Therefore, you do not need to use a object to get navigation on that platform. + + + + Initializes a new object. + To be added. + + + To be added. + Creates a new element with as its root element. + To be added. + + + Identifies the property associated with the title of the back button. + To be added. + + + Gets or sets the background color for the bar at the top of the NavigationPage. + + + + + Identifies the property associated with the color of the NavigationPage's bar background color. + To be added. + + + Gets or sets the text that appears on the bar at the top of the NavigationPage. + + + + + Identifies the property associated with the color of the NavigationPage's bar text color. + To be added. + + + The that is currently top-most on the navigation stack. + To be added. + To be added. + + + Identifies the property. + + + + The whose back-button's title is being requested. + The title of the back button for the specified . + The title of the back button that would be shown if the specified were the . + To be added. + + + To be added. + Returns a value that indicates whether has a back button. + To be added. + To be added. + + + The being queried. + Returns a value that indicates whether the has a navigation bar. + + if would display a navigation bar were it the . + To be added. + + + The whose title icon is being set. + Retrieves the path to the file providing the title icon for the . + The path to the file providing the title icon for the . + To be added. + + + Backing store for the HasBackButton property. + To be added. + + + Backing store for the HasNavigationBar property. + To be added. + + + To be added. + To be added. + To be added. + To be added. + + + Event that is raised when the hardware back button is pressed. This event is not raised on iOS. + To be added. + To be added. + + + Asynchronously removes the top from the navigation stack. + The that had been at the top of the navigation stack. + To be added. + + + To be added. + Asynchronously removes the top from the navigation stack, with optional animation. + To be added. + To be added. + + + Event that is raised after a page is popped from this element. + To be added. + + + Event that is raised when the last nonroot element is popped from this element. + The can be cast to for + access to additional properties. For example, the list of popped pages. + + + + Pops all but the root off the navigation stack. + A task that represents the asynchronous dismiss operation. + To be added. + + + To be added. + A task for asynchronously popping all pages off of the navigation stack. + To be added. + To be added. + + + The to present modally. + Presents a modally. + An awaitable Task, indicating the PushModal completion. + To be added. + + + To be added. + To be added. + A task for asynchronously pushing a page onto the navigation stack, with optional animation. + To be added. + To be added. + + + Event that is raised when a page is pushed onto this element. + To be added. + + + To be added. + To be added. + Sets the title that appears on the back button for . + To be added. + + + To be added. + To be added. + Adds or removes a back button to , with optional animation. + To be added. + + + To be added. + To be added. + Sets a value that indicates whether or not this element has a navigation bar. + To be added. + + + The whose title icon is being set. + The FileImageSource of the icon. + Sets the title icon of the to the icon file at . + + + + + + + + + + + The color to be used as the Tint of the . + To be added. + + Tint is especially important in iOS 7 and later, where the Tint is primary way to specify which controls on screen are active or have an action associated with them. + + + + Identifies the bindable property. + To be added. + + + Indicates the / property. + To be added. + + + To be added. + To be added. + To be added. + To be added. + To be added. + + + To be added. + To be added. + To be added. + + + To be added. + To be added. + To be added. + + + To be added. + Provides idiom-specific implementation of T for the current TargetIdiom. + + + + Initializes a new instance of OnIdiom + + + + To be added. + Implicitly converts OnIdiom to T, depending on Device.Idiom. + The value of the Phone or Tablet property, depending on the current Device.Idiom. + + + + Gets or sets the value applied on Phone-like devices. + A T. + + + + Gets or sets the value applied on Tablet-like devices. + A T. + + + + To be added. + Provides the platform-specific implementation of T for the current . + To be added. + + + Creates a new instance of the type. + To be added. + + + The type as it is implemented on the Android platform. + To be added. + To be added. + + + The type as it is implemented on the iOS platform. + To be added. + To be added. + + + To be added. + Casts the type to the version that corresponds to the platform. + To be added. + To be added. + + + The type as it is implemented on the WinPhone platform. + To be added. + To be added. + + + A that displays OpenGL content. + + + s are easiest to program using Shared Projects, in which case the reference to OpenTK is straightforward. The following example shows a simple OpenGL app with a render loop: + + { + + GL.ClearColor (red, green, blue, 1.0f); + GL.Clear ((ClearBufferMask.ColorBufferBit | ClearBufferMask.DepthBufferBit)); + + red += 0.01f; + if (red >= 1.0f) + red -= 1.0f; + green += 0.02f; + if (green >= 1.0f) + green -= 1.0f; + blue += 0.03f; + if (blue >= 1.0f) + blue -= 1.0f; + }; + + toggle.Toggled += (s, a) => { + view.HasRenderLoop = toggle.IsToggled; + }; + button.Clicked += (s, a) => view.Display (); + + var stack = new StackLayout { + Padding = new Size (20, 20), + Children = {view, toggle, button} + }; + + Content = stack; + } + } +} + + ]]> + + + + + + + + Creates a new object with default values. + To be added. + + + Called prior to rendering. + To be added. + + + Whether this has a custom rendering loop. + To be added. + To be added. + + + Identifies the bindable property. + To be added. + + + To be added. + To be added. + To be added. + To be added. + + + Overridden to create a custom rendering loop. + To be added. + + When overridden, creates a custom renderer: + + { + + GL.ClearColor (red, green, blue, 1.0f); + GL.Clear ((ClearBufferMask.ColorBufferBit | ClearBufferMask.DepthBufferBit)); + + red += 0.01f; + if (red >= 1.0f) + red -= 1.0f; + green += 0.02f; + if (green >= 1.0f) + green -= 1.0f; + blue += 0.03f; + if (blue >= 1.0f) + blue -= 1.0f; + }; + ]]> + + + + + A that occupies the entire screen. + + + is primarily a base class for more useful derived types. Objects that are derived from the see class are most prominently used as the top level UI element in Xamarin.Forms applications. Typically, application developers will provide such an object to the target platforms by returning it from a static method that the developer created in a project that references . The contents of a typical App.cs file that would appear in a project that reference are shown below: + + + + While a object was returned in the example above, note that any class that extends could have been passed, instead. For example, by using conditional compilation or by checking the platform, the developr can pass a to Windows Phone applications, in order to better match the style of the user interface on that platform, while passing objects or other Page types to the other platforms. + The other projects in the solution that target the Windows Phone, iOS, and Android platforms can call the GetMainPage method to obtain the descendant that describes the portable user interface. This object can then be used with platform-specific static methods or extension methods to incorporate it into the native UI for each platform. + In each platform-specific project, Application developers must call the Xamarin.Forms.Forms.Init() method, with platform-specific parameters, before they get or create any elements. + Each targeted platform uses the returned page in a different way. The Xamarin.Forms.Platform.iOS library provides Xamarin.Forms.Page.CreateViewController() extension method, which returns a UIViewController that application developers can assign to the UIWindow.RootViewController property of the top-level UI. This code is typically placed inside the UIApplicationDelegate.FinishedLaunching override for the main application class. A typical example is shown below: + + +using System; +using Xamarin.Forms; + +namespace MyFirstFormsApp.iOS +{ + [Register("AppDelegate")] + public partial class AppDelegate : UIApplicationDelegate + { + UIWindow window; + + public override bool FinishedLaunching(UIApplication app, + NSDictionary options) + { + Forms.Init(); + + window = new UIWindow(UIScreen.MainScreen.Bounds); + + window.RootViewController = App.GetMainPage().CreateViewController(); + window.MakeKeyAndVisible(); + + return true; + } + } +} + + + + The Xamarin.Forms.Platform.Android.AndroidActivity class provides the Xamarin.Forms.Platform.Android.AndroidActivity.SetPage method, which performs the work that is necessary to make its page argument the top-level UI element of the Xamarin.Forms.Platform.Android.AndroidActivity. A typical example is shown below: + + +using System; +using Android.App; +using Android.OS; +using Xamarin.Forms.Platform.Android; + + +namespace MyFirstFormsApp.Android +{ + [Activity(Label = "MyFirstFormsApp", MainLauncher = true)] + public class MainActivity : AndroidActivity + { + protected override void OnCreate(Bundle bundle) + { + base.OnCreate(bundle); + + Xamarin.Forms.Forms.Init(this, bundle); + + SetPage(App.GetMainPage()); + } + } +} + + + For Windows Phone, provides an extension method for that is called . This method returns a System.Windows.UIElement object that has the page that was passed to it as its current page. A typical example is shown below: + + +using System; +using System.Windows; +using System.Windows.Controls; +using System.Windows.Navigation; +using Microsoft.Phone.Controls; +using Microsoft.Phone.Shell; + +using Xamarin.Forms; + + +namespace MyFirstFormsApp.WinPhone +{ + public partial class MainPage : PhoneApplicationPage + { + public MainPage() + { + InitializeComponent(); + + Forms.Init(); + Content = Phoneword.App.GetMainPage().ConvertPageToUIElement(this); + } + } +} + + In addition to their role as the main pages of applications, objects and their descendants can be used with navigation classes, such as or , among others, to provide rich user experiences that conform to the expected behaviors on each platform. + XAML for Xamarin.Forms supports the following properties for the class: + + + Property + Value + + + BackgroundImage + + A local file specification that identifies an image. + + + + Icon + + A local file specification that identifies an image. + + + + Padding + + A comma-separated list of 4 integers that represent a structure. + + + + Title + + Text that represents the title of the page. + + + + ToolbarItems + + A list of ToolBarItem elements. + + + + + + + Creates a new element with default values. + To be added. + + + To be added. + To be added. + + + To be added. + To be added. + + + Indicates that the is about to appear. + To be added. + + + Identifies the image used as a background for the . + To be added. + To be added. + + + Identifies the property. + To be added. + + + To be added. + To be added. + + + Indicates that the is about to cease displaying. + To be added. + + + Title of the displayed action sheet. Must not be . + Text to be displayed in the 'Cancel' button. Can be to hide the cancel action. + Text to be displayed in the 'Destruct' button. Can be to hide the destructive option. + Text labels for additional buttons. Must not be . + Displays a native platform action sheet, allowing the application user to choose from several buttons. + An awaitable Task that displays an action sheet and returns the Text of the button pressed by the user. + + Developers should be aware that Windows' line endings, CR-LF, only work on Windows systems, and are incompatible with iOS and Android. A particular consequence of this is that characters that appear after a CR-LF, (For example, in the title.) may not be displayed on non-Windows platforms. Developers must use the correct line endings for each of the targeted systems. + + + + The title of the alert dialog. + The body text of the alert dialog. + Text to be displayed on the 'Cancel' button. + Presents an alert dialog to the application user with a single cancel button. + To be added. + To be added. + + + The title of the alert dialog. + The body text of the alert dialog. + Text to be displayed on the 'Accept' button. + Text to be displayed on the 'Cancel' button. + Presents an alert dialog to the application user with an accept and a cancel button. + To be added. + To be added. + + + Forces the to perform a layout pass. + To be added. + + + Resource identifier for the 's associated icon. + To be added. + To be added. + + + Identifies the property. + To be added. + + + Marks the Page as busy. This will cause the platform specific global activity indicator to show a busy state. + A bool indicating if the Page is busy or not. + Setting IsBusy to true on multiple pages at once will cause the global activity indicator to run until both are set back to false. It is the authors job to unset the IsBusy flag before cleaning up a Page. + + + Identifies the property. + To be added. + + + Raised when the layout of the has changed. + To be added. + + + Left-hand side of layout area. + Top of layout area. + Width of layout area. + Height of layout area. + Lays out children s into the specified area. + To be added. + + + To be added. + To be added. + To be added. + To be added. + + + When overridden, allows application developers to customize behavior immediately prior to the becoming visible. + To be added. + + + Application developers can override this method to provide behavior when the back button is pressed. + To be added. + To be added. + + + + Invoked whenever the binding context of the changes. Override this method to add class handling for this event. + + + Overriders must call the base method. + + + + To be added. + To be added. + Indicates that the preferred size of a child has changed. + To be added. + + + When overridden, allows the application developer to customize behavior as the disappears. + To be added. + + + Called when the 's property has changed. + To be added. + + + The width allocated to the . + The height allocated to the . + Indicates that the has been assigned a size. + To be added. + + + The space between the content of the and it's border. + To be added. + To be added. + + + Identifies the property. + To be added. + + + Calls . + To be added. + To be added. + + + The 's title. + To be added. + To be added. + + + Identifies the property. + To be added. + + + A set of s, implemented in a platform-specific manner. + To be added. + To be added. + + + Requests that the children s of the update their layouts. + To be added. + + + To be added. + To be added. + To be added. + + + To be added. + To be added. + To be added. + + + To be added. + To be added. + To be added. + + + To be added. + To be added. + + + To be added. + To be added. + + + A gesture recognizer for panning content that is larger than its parent view. + To be added. + + + Creates a new with default values. + To be added. + + + Event that is raised when the pan gesture changes. + To be added. + + + Gets or sets the number of touch points in the gesture. + To be added. + To be added. + + + Backing store for the property. + To be added. + + + Event that is raised when a pan gesture updates. + To be added. + + + Whether the gesture just began, is continuing, was completed, or is canceled. + An identifier for the gesture. + Creates a new with the specified values. + To be added. + + + Whether the gesture just began, is continuing, was completed, or is canceled. + An identifier for the gesture. + The total change in the X direction since the beginning of the gesture. + The total change in the Y direction since the beginning of the gesture. + Creates a new with the specified values. + To be added. + + + Gets the identifier for the gesture that raised the event. + To be added. + To be added. + + + Gets a value that tells if this event is for a newly started gesture, a running gesture, a completed gesture, or a canceled gesture. + To be added. + To be added. + + + Gets the total change in the X direction since the beginning of the gesture.. + To be added. + To be added. + + + Gets the total change in the Y direction since the beginning of the gesture.. + To be added. + To be added. + + + A control for picking an element in a list. + + The visual representation of a Picker is similar to a , but a picker control appears in place of a keyboard. + The following example shows the creation of a Picker. + + nameToColor = new Dictionary + { + { "Aqua", Color.Aqua }, { "Black", Color.Black }, + { "Blue", Color.Blue }, { "Fuschia", Color.Fuschia }, + { "Gray", Color.Gray }, { "Green", Color.Green }, + { "Lime", Color.Lime }, { "Maroon", Color.Maroon }, + { "Navy", Color.Navy }, { "Olive", Color.Olive }, + { "Purple", Color.Purple }, { "Red", Color.Red }, + { "Silver", Color.Silver }, { "Teal", Color.Teal }, + { "White", Color.White }, { "Yellow", Color.Yellow } + }; + + public PickerDemoPage() + { + Label header = new Label + { + Text = "Picker", + FontSize = Device.GetNamedSize (NamedSize.Large, typeof(Label)), + HorizontalOptions = LayoutOptions.Center + }; + + Picker picker = new Picker + { + Title = "Color", + VerticalOptions = LayoutOptions.CenterAndExpand + }; + + foreach (string colorName in nameToColor.Keys) + { + picker.Items.Add(colorName); + } + + // Create BoxView for displaying picked Color + BoxView boxView = new BoxView + { + WidthRequest = 150, + HeightRequest = 150, + HorizontalOptions = LayoutOptions.Center, + VerticalOptions = LayoutOptions.CenterAndExpand + }; + + picker.SelectedIndexChanged += (sender, args) => + { + if (picker.SelectedIndex == -1) + { + boxView.Color = Color.Default; + } + else + { + string colorName = picker.Items[picker.SelectedIndex]; + boxView.Color = nameToColor[colorName]; + } + }; + + // Accomodate iPhone status bar. + this.Padding = new Thickness(10, Device.OnPlatform(20, 0, 0), 10, 5); + + // Build the page. + this.Content = new StackLayout + { + Children = + { + header, + picker, + boxView + } + }; + + } + } +} +]]> + + XAML for Xamarin.Forms supports the following properties for the class: + + + Property + Value + + + Items + + A list of items with which to populate the picker. + + + + SelectedIndex + + An integer from 0 to 1 less than the count of items that are listed in Items. This element must be specified in a tag that appears lexically after Items. + + + + Title + + Text that represents the title of the picker. + + + + + + + + + + Initializes a new instance of the Picker class. + + + + Gets the list of choices. + An IList<string> representing the Picker choices. + This property is read-only, but exposes the IList<> interface, so items can be added using Add(). + + + To be added. + To be added. + To be added. + To be added. + + + Gets or sets the index of the slected item of the picker. This is a bindable property. + An 0-based index representing the selected item in the list. Default is -1. + A value of -1 represents no item selected. + + + Raised when the value of the SelectIndex property has changed. + To be added. + + + Identifies the SelectedIndex bindable property. + + + + To be added. + To be added. + To be added. + + + To be added. + To be added. + + + Gets or sets the title for the Picker. This is a bindable property. + A string. + Depending on the platform, the Title is shown as a placeholder, headline, or not showed at all. + + + Identifies the Title bindable property. + + + + Recognizer for pinch gestures. + To be added. + + + Constructs a new pinch gesture recognizer. + To be added. + + + Event that is raised when a pinch gesture updates. + To be added. + + + Event arguments for the event. + To be added. + + + To be added. + Constructs a new object with default values. + To be added. + + + Whether the gesture is starting, running, or has ended. + The current scale of the pinch gesture. + The updated origin of the pinch gesture. + Constructs a new object with the specified values. + + The origin of the pinch is the center of the pinch gesture, and changes if the user translates their pinch while they scale. Application developers may want to store the pinch origin when the gesture begins and use it for all scaling operations for that gesture. + + + + The relative size of the user's pinch gesture. + The distance between the user's digits, divided by the initial distance between the user's digits in the pinch gesture. + + The initial value of the property for each new pinch gesture is 1.0. + + + + The updated origin of the pinch gesture. + The midpoint of the pinch gesture. + + The origin of the pinch is the center of the pinch gesture, and changes if the user translates their pinch while they scale. Application developers may want to store the pinch origin when the gesture begins and use it for all scaling operations for that gesture. + + + + Whether the gesture started, is running, or has finished. + Whether the gesture started, is running, or has finished. + + The origin of the pinch, , is the center of the pinch gesture, and changes if the user translates their pinch while they scale. Application developers may want to store the pinch origin when the gesture begins and use it for all scaling operations for that gesture. + The initial value of the property for each new pinch gesture is 1.0. + + + + To be added. + To be added. + Base class for platform-specific effect classes. + + App developers derive from the + Xamarin.Forms.Platform.Android.PlatformEffect,Xamarin.Forms.Platform.iOS.PlatformEffect,Xamarin.Forms.Platform.UWP.PlatformEffectXamarin.Forms.Platform.WinPhone.PlatformEffect, orXamarin.Forms.Platform.WinRT.PlatformEffect, + classes to implement effects on the respective platforms. + + + + Creates a new platform-specific effect with default values. + To be added. + + + Returns the container for the platform-specific effect. + To be added. + To be added. + + + Returns the control for the platform-specific effect. + To be added. + To be added. + + + The arguments for the property changed event. + Method that is called when a element property has changed. + To be added. + + + Struct defining a 2-D point as a pair of doubles. + To be added. + + + + that specifies a that has the coordinates (, ). + Creates a new object that has coordinates that are specified by the width and height of , in that order. + To be added. + + + The horizontal coordinate. + The vertical coordinate. + Creates a new object that represents the point (,). + To be added. + + + The to which the distance is calculated. + Calculates the distance between two points. + The distance between this and the . + To be added. + + + Another . + Returns if the X and Y values of this are exactly equal to those in the argument. + + if the X and Y values are equal to those in . Returns if is not a . + + The and values of the are stored as s. Developers should be aware of the precision limits and issues that can arise when comparing floating-point values. In some circumstances, developers should consider the possibility of measuring approximate equality using the (considerably slower) method. + + + + Returns a hash value for the . + A value intended for efficient insertion and lookup in hashtable-based data structures. + To be added. + + + Whether both X and Y are 0. + + if both and are 0.0. + To be added. + + + The amount to add along the X axis. + The amount to add along the Y axis. + Returns a new that translates the current by and . + A new at [this.X + dx, this.Y + dy]. + To be added. + + + The to which is being added. + The values to add to . + Returns a new by adding a to a . + A new at [pt.X + sz.Width, pt.Y + sz.Height]. + To be added. + + + To be added. + To be added. + Whether the two s are equal. + + if the two s have equal values. + To be added. + + + The to be translated as a . + Returns a new whose and and equivalent to the 's and properties. + A new based on the . + To be added. + + + To be added. + To be added. + Whether two points are not equal. + + if and do not have equivalent X and Y values. + To be added. + + + The from which is to be subtracted. + The whose and will be subtracted from 's and . + Returns a new by subtracting a from a . + A new at [pt.X - sz.Width, pt.Y - sz.Height]. + To be added. + + + Returns a new whose and have been rounded to the nearest integral value. + A new whose and have been rounded to the nearest integral value, per the behavior of Math.Round(Double). + To be added. + + + A human-readable representation of the . + The string is formatted as "{{X={0} Y={1}}}". + To be added. + + + Location along the horizontal axis. + To be added. + To be added. + + + Location along the vertical axis. + To be added. + To be added. + + + The at {0,0}. + To be added. + + + A that converts from a string to a . + To be added. + + + Creates a new with default values. + To be added. + + + To be added. + Returns a Boolean value that indicates whether this can convert the to a instance. + To be added. + To be added. + + + To be added. + To be added. + Converts into a by using the specified . + To be added. + To be added. + + + To be added. + Returns a point for a valid point description. + To be added. + To be added. + + + EventArgs for the NavigationPage's PoppedToRoot navigation event. + + The passes as the + event argument. This class can be cast to to allow for access to the + PoppedPages collection that exposes the pages that was popped. + + + + + To be added. + To be added. + To be added. + To be added. + + + Gets a collection of pages that was removed from the navigation stack. + + + For this represents the pages + that were popped. The order of the pages represents the order of the stack that was popped. The first page in the + collection is the page that was closest to the root page. + + + + + A control that displays progress. + + The following example shows the usage of a ProgressBar. + + + + + + + XAML for Xamarin.Forms supports the following property for the class: + + + Property + Value + + + Progress + + A decimal value between 0 and 1, inclusive, that specifies the fraction of the bar that is colored. + + + + + + + Initializes a new instance of the ProgressBar class + + + + To be added. + To be added. + To be added. + To be added. + + + Gets or sets the progress value. This is s bindable property. + Gets or sets a value that specifies the fraction of the bar that is colored. + Values less than 0 or larger than 1 will be clamped to the range [0-1]. + + + Identifies the Progress bindable property. + + + + To be added. + To be added. + To be added. + Animate the Progress property to value. + A Task<bool> you can await on. + + + + Event arguments for the delegate. + To be added. + + + To be added. + Creates a new object that indicates that is changing. + To be added. + + + Gets the name of the property that is changing. + The name of the property that is changing. + To be added. + + + To be added. + To be added. + Delegate for the event. + To be added. + + + Class that represents a value comparison with a property. + + XAML for Xamarin.Forms supports the following properties for the class: + + + Property + Value + + + Property + + The name of the property to check. + + + + Value + + The value for which the condition is met. + + + + + + + Initializes a new instance. + To be added. + + + Gets or sets the property against which the property will be compared. + To be added. + To be added. + + + The binding value that satisfies the condition. + To be added. + To be added. + + + To be added. + Provides a value by using the supplied service provider. + To be added. + To be added. + + + Struct defining a rectangle, using doubles. + + Application developers should be aware of the limits of floating-point representations, specifically the possibility of incorrect comparisons and equality checks for values with small differences. David Goldberg's paper What Every Computer Scientist Should Know About Floating-Point Arithmetic describes the issues excellently. + Where Xamarin.Forms supports XAML for structures, app devs can represent the rectangle as a comma-separated list of the X-coordinate, Y-Coordinate, Width, and Height. + + + + To be added. + To be added. + Creates a new object with its top left corner at with a height and width that are specified by . + To be added. + + + To be added. + To be added. + To be added. + To be added. + Creates a new object with its top left corner at (, ) and wide and tall. + To be added. + + + The bottom of the . + To be added. + + Modifying this value also modifies the property. + + + + The halfway between and , and . + To be added. + To be added. + + + The being checked for containment. + Whether the is within, or along the periphery, of this . + + if is within, or along the periphery, of this. + To be added. + + + The being checked for containment. + Whether is entirely within, or along the periphery, of this . + + if the borders of are entirely within, or along the periphery, of this. + To be added. + + + The X location of the point being checked. + The Y location of the point being checked. + Whether the point described by and is within, or along the periphery of, this . + + if the point described by and is within, or along the periphery of, this. + To be added. + + + An Object to compare to this. + Whether an is a and has exactly the same values as this. + + if is a that has exactly the same values as this. + To be added. + + + The being compared to this. + Whether a has exactly the same values as this. + + if has exactly the same values as this. + To be added. + + + To be added. + To be added. + To be added. + To be added. + Factory method to create a from , , , and . + A new whose values are equal to the arguments. + To be added. + + + The hashcode for the . + A value optimized for fast insertion and retrieval in a hash-based data structure. + To be added. + + + Extent along the Y axis. + To be added. + + Modifying this value modifies the property.. + + + Values to inflate all the borders. + Creates a whose borders are inflated in every direction. + A new whose and are inflated by 's and whose and are inflated by 's . + + Application developers should note that since the inflation occurs in every direction, the returned is larger in each dimension by twice . + + + + + + + Value to shift to the left and to the right. + Value to shift upward and downward. + Creates a whose borders are inflated in every direction. + A new whose and are inflated by and whose and are inflated by . + + Application developers should note that since the inflation occurs in every direction, the returned is larger in X by twice and larger in Y by twice . + + + + + + + A this will be intersected with. + A new that is the intersection of this and . + Returns a new that is the intersection of this and , or if there is no intersection. + To be added. + + + A being intersected. + A being intersected. + A new that is the intersection of and . + Returns a new that is the intersection of and , or if there is no intersection. + To be added. + + + The being intersected. + Whether this intersects . + + if this intersects . + To be added. + + + Whether this has either or less than or equal to 0. + + if either or is less than or equal to 0. + To be added. + + + The position of the on the X axis. + To be added. + To be added. + + + The defined by and . + To be added. + To be added. + + + A whose X and Y values should be added to this's . + A new whose is offset by . + A new whose is equal to this's translated by . + To be added. + + + Change along the X axis. + Change along the Y axis. + A new whose is offset by and . + A new whose is equal to this's translated by and . + To be added. + + + A being compared. + A being compared. + Whether two s have equal values. + + if both the and of the two rectangles are equivalent. + To be added. + + + A being compared. + A being compared. + Whether two s have unequal values. + + if either the or of the two rectangles have differences. + To be added. + + + The furthest extent along the X axis. + To be added. + To be added. + + + Returns a new whose values have been rounded to their nearest integral value. + A new whose , , , and have been rounded to their nearest integral values. + + The rounding is applied to each property independently. + + + + The extent of the along its X and Y axes. + To be added. + To be added. + + + The top of the . + To be added. + To be added. + + + A human-readable description of the . + The format is "{X={0} Y={1} Width={2} Height={3}}". + To be added. + + + The whose union is being calculated. + A new whose bounds cover the union of this and . + Returns a new whose bounds cover the union of this and . + To be added. + + + A whose union is being calculated. + A whose union is being calculated. + A new whose bounds cover the union of and . + Returns a new whose bounds cover the union of and . + To be added. + + + The extent of this along the X axis. + To be added. + To be added. + + + The position of this on the X axis. + To be added. + To be added. + + + The position of this on the Y axis. + To be added. + To be added. + + + The at {0,0} whose Size is {0,0}. + To be added. + + + A that converts a string to a . + To be added. + + + Creates a new with default values. + To be added. + + + To be added. + Returns a Boolean value that indicates whether this can convert the to a instance. + To be added. + To be added. + + + To be added. + To be added. + Converts into a by using the specified . + To be added. + To be added. + + + To be added. + Returns a for a comma-separated list of double values. + To be added. + To be added. + + + A that uses s to layout its children. + + The RelativeLayoutExample class in the following code extends the class by adding a that contains a heading and another label. Both labels are positioned relative to the : + + { + return 0; + })); + + relativeLayout.Children.Add (relativelyPositioned, + Constraint.RelativeToParent ((parent) => { + return parent.Width / 3; + }), + Constraint.RelativeToParent ((parent) => { + return parent.Height / 2; + })); + this.Content = relativeLayout; + } +} +]]> + + For a more complete example that exercises many more of the layout options for the class, see the FormsGallery sample that can be found on the Sample Applications page. + XAML for Xamarin.Forms supports the following attached properties for the class: + + + AttachedProperty + Value + + + XConstraint + + XAML markup extension for a constraint expression. See . + + + + YConstraint + + XAML markup extension for a constraint expression. See . + + + + WidthConstraint + + XAML markup extension for a constraint expression. See . + + + + HeightConstraint + + XAML markup extension for a constraint expression. See . + + + + + + + Creates a new with default values. + To be added. + + + Identifies the bindable property associated with /. + To be added. + + + List of s that are children of this . + To be added. + To be added. + + + The for which the bounds constraint is being requested. + Returns the bounds constraint of the . + The of the . + To be added. + + + The for which the height constraint is being requested. + Returns the height constraint of the . + The on the height of the . + To be added. + + + The for which the width constraint is being requested. + Returns the width constraint of the . + The on the width of the . + To be added. + + + The for which the X constraint is being requested. + Returns the X constraint of the . + The on the X position of the . + To be added. + + + The for which the Y constraint is being requested. + Returns the Y constraint of the . + The on the Y position of the . + To be added. + + + Identifies the bindable property associated with the / methods. + To be added. + + + The left-side bound of the rectangle into which the children will be laid out. + The top bound of the rectangle into which the children will be laid out. + The width of the rectangle into which the children will be laid out. + The height of the rectangle into which the children will be laid out. + Lays out the in the specified rectangle. + To be added. + + + The added to the . + Called when a is added to the collection. + To be added. + + + The removed from the collection. + Called when a is removed from the collection. + To be added. + + + To be added. + To be added. + Called when this has received a size request. + To be added. + To be added. + + + The to which the constraint will be applied. + The on the . + Sets as a constraint on the bounds of . + To be added. + + + Identifies the width constraint. + To be added. + + + Identifies the constraint on X. + To be added. + + + Identifies the constraint on Y. + To be added. + + + To be added. + An of s used by a . + To be added. + + + To be added. + To be added. + Constrains to and adds it to the layout. + To be added. + + + To be added. + To be added. + To be added. + To be added. + To be added. + Constrains to the rectangle that is defined by , , , and , and adds it to the layout. + To be added. + + + To be added. + To be added. + To be added. + To be added. + To be added. + Constrains by , , , and , and adds it to the layout. + To be added. + + + Associate view with renderer. + Lazily assoicate a view with it's renderer. + + + The view to render. + The view to render. + The view to render. + + + The renderer for this view. + The renderer for this view. + The renderer for this view. + + + Attribute that identifies a group name, typically a company name or reversed company URL, that provides a scope for effect names. + + Developers must supply a name to that is unique over the scope of the that they supply to . The method takes a string that is the concatenation of (the resolution group name), '.', and the unique name that was supplied to , and returns the specified effect. + + For example, with the declarations: + + Then the code below will add the effect to a button: + + + + + + A name, such as a company name or reversed company URL, that helps to uniquely identify effects. + Creates a new resolution group name attribute. + + Developers must supply a name to that is unique over the scope of the that they supply to . The method takes a string that is the concatenation of (the resolution group name), '.', and the unique name that was supplied to , and returns the specified effect. + + For example, with the declarations: + + Then the code below will add the effect to a button: + + + + + + + An IDictionary that maps identifier strings to arbitrary resource objects. + To be added. + + + Creates a new empty object. + To be added. + + + To be added. + + Add an implicit Style to the ResourceDictionary. Implicit Styles are applied to all VisualElements matching TargetType in the descendants of this ResourceDictionary owner, unless a Style is explicitely applied to the Element. + + Implicit Styles are added to a ResourceDictionary in XAML by not specifying an x:Key for the Element. + + To be added. + + + The identifier to be used to retrieve the . + The associated with the . + Adds and to the as a key-value pair. + To be added. + + + Empties the . + To be added. + + + The identifier being searched for. + Whether the contains a key-value pair identified by . + To be added. + To be added. + + + The number of entries in the . + To be added. + To be added. + + + Returns a of the 's s. + To be added. + To be added. + + + The identifier of the desired object. + Retrieves the value associated with the key . + To be added. + To be added. + + + The collection of identifier s that are keys in the . + To be added. + To be added. + + + To be added. + To be added. + To be added. + + + The identifier of the key-value pair to be removed. + Removes the key and value identified by from the . + + if the key existed and the removal was successful. + To be added. + + + To be added. + Adds an item to the collection. + To be added. + + + To be added. + Returns a value that indicates whether the dictionary contains the value in , indexed by the key in . + To be added. + To be added. + + + To be added. + To be added. + Copies the values in the dictionary to , starting at position in . + To be added. + + + Gets a value that indicates whether the resource dictionary is read-only. + To be added. + To be added. + + + To be added. + Removes the value in , indexed by the key in , from the dictionary, if present. + To be added. + To be added. + + + Returns a of the 's s. + An of the 's s. + To be added. + + + The identifier of the object to be retrieved. + An reference to the object being retrieved, or it's default value. + Retrieves the object specified by or, if not present, the default value of . + The object specified by or, if not present, the default value of . + To be added. + + + Retrieves the values of the . + To be added. + To be added. + + + Platform-independent effect that wraps an inner effect, which is usually platform-specific. + To be added. + + + To be added. + Creates a new routing effect with the specified . + To be added. + + + Method that is called after the effect is attached and made valid. + To be added. + + + Method that is called after the effect is detached and invalidated. + To be added. + + + An that defines properties for a row in a . + + XAML for Xamarin.Forms supports the following property for the class: + + + Property + Value + + + Height + + "*" or "Auto" to indicate the corresponding enumeration values, or a number to indicate an absolute height. + + + + + App developers can specify values for the property in XAML. This is typically done inside tags for the collection property. The following example demonstrates setting three row heights to each of the three valid values: + + + + + +]]> + + + + + Creates a new object with default values. + To be added. + + + Gets or sets the height of the row. + To be added. + To be added. + + + Backing store for the property. + To be added. + + + Event that is raised when the size of the row is changed. + To be added. + + + A for s. + To be added. + + + Creates a new empty object. + To be added. + + + Arguments for the event that is raised when a window is scrolled. + To be added. + + + To be added. + To be added. + Constructs a new object for a scroll to and . + To be added. + + + The X position of the finished scroll. + To be added. + To be added. + + + The Y position of the finished scroll. + To be added. + To be added. + + + Enumeration specifying vertical or horizontal scrolling directions. + To be added. + + + Scroll both horizontally and vertically. + + + Scroll Horizontally. + + + Scroll vertically. + + + Enumerates values that describe how a scroll request is made. + To be added. + + + Scroll positions are specified by element. + + + Scroll positions are specified by a float. + + + Enumerates values that describe a scroll request. + To be added. + + + Scroll to the center of a list. + + + Scroll to the end of a list. + + + Scroll to make a specified list item visible. + + + Scroll to the start of a list. + + + Arguments for the event that is raised when a scroll is requested. + To be added. + + + An element to scroll to. + To be added. + To be added. + + + Whether to scroll by element or by position. + To be added. + To be added. + + + An enumeration value that describes which part of an element to scroll to. + To be added. + To be added. + + + The X position to scroll to. + To be added. + To be added. + + + The Y position to scroll to. + To be added. + To be added. + + + Gets a value that tells whether the scroll operation should be animated. + To be added. + To be added. + + + To be added. + To be added. + To be added. + + + To be added. + To be added. + To be added. + + + An element capable of scrolling if its Content requires. + + The following example shows the creation of a ScrollView with a large in it. + + + + Application developers should not nest one within another. Additionally, they should refrain from nesting them other elements that can scroll, such as . + + + + XAML for Xamarin.Forms supports the following properties for the class: + + + Property + Value + + + Content + + Markup that specifies a to display in the . + + + + Orientation + + + Horizontal or Vertical, to indicate the scroll direction. + + + + + + + Initializes a new instance of the ScrollView class. + + + + Gets or sets a to display in the . + The that is displayed. + + + + Gets the size of the Content. This is a bindable property. + A that represents the size of the content. + + + + Identifies the ContentSize bindable property. + This bindable property is read-only. + + + A value that represents the x coordinate of the child region bounding box. + A value that represents the y coordinate of the child region bounding box. + A value that represents the y coordinate of the child region bounding box. + A value that represents the y coordinate of the child region bounding box. + Positions and sizes the content of a ScrollView. + + + + To be added. + To be added. + To be added. + To be added. + + + The available width for the element to use. + The available height for the element to use. + This method is called during the measure pass of a layout cycle to get the desired size of an element. + + A which contains the desired size of the element. + + The results of this method will be (-1, -1) if the element has not yet been realized with a platform specific backing control. Overriding this method does not require a call to the base class so long as a valid SizeRequest is returned. + + + Gets or sets the scrolling direction of the ScrollView. This is a bindable property. + + + + + Identifies the Orientation bindable property. + + + + Event that is raised after a scroll completes. + To be added. + + + To be added. + To be added. + To be added. + Returns a task that scrolls the scroll view to a position asynchronously. + To be added. + To be added. + + + To be added. + To be added. + To be added. + Returns a task that scrolls the scroll view to an element asynchronously. + To be added. + To be added. + + + Gets the current X scroll position. + To be added. + To be added. + + + Backing store for the property. + To be added. + + + Gets the current Y scroll position.. + To be added. + To be added. + + + Backing store for the property. + To be added. + + + To be added. + To be added. + Internal. + To be added. + To be added. + + + Internal. + To be added. + + + To be added. + To be added. + Internal. + To be added. + + + A control that provides a search box. + + The following example shows a basic use. + + {resultsLabel.Text = "Result: " + searchBar.Text + " is what you asked for.";}) + }; + + MainPage = new ContentPage { + Content = new StackLayout { + VerticalOptions = LayoutOptions.Start, + Children = { + new Label { + HorizontalTextAlignment = TextAlignment.Center, + Text = "SearchBar", + FontSize = 50 + }, + searchBar, + new ScrollView + { + Content = resultsLabel, + VerticalOptions = LayoutOptions.FillAndExpand + } + }, + Padding = new Thickness(10, Device.OnPlatform(20, 0, 0), 10, 5) + } + }; + } + + // OnStart, OnSleep, and OnResume implementations, & etc. + +}]]> + + + + + XAML for Xamarin.Forms supports the following properties for the class: + + + Property + Value + + + CancelButtonColor + + A color specification, with or without the prefix, "Color". For example, "Color.Red" and "Red" both specify the color red. + + + + Placeholder + + The default text that will appear in the search bar when it is empty. + + + + SearchCommand + + XAML markup extension that describes a binding to a command. + + + + SearchCommandParameter + + The parameter for the search command. + + + + Text + + The initial text that will appear in the search bar. + + + + + + + Creates a new . + To be added. + + + Gets or sets the color of the cancel button. + To be added. + To be added. + + + Backing store for the CancelButtonColor property. + To be added. + + + Gets a value that indicates whether the font for the searchbar text is bold, italic, or neither. + To be added. + To be added. + + + Backing store for the FontAttributes property. + To be added. + + + Gets or sets the font family for the search bar text. + To be added. + To be added. + + + Backing store for the FontFamily property. + To be added. + + + Gets the size of the font for the text in the searchbar. + To be added. + To be added. + + + Backing store for the FontSize property. + To be added. + + + Gets or sets the horizontal text alignment. + To be added. + To be added. + + + Backing store for the property. + To be added. + + + To be added. + To be added. + To be added. + To be added. + + + Gets or sets the text that is displayed when the is empty. + The text that is displayed when the is empty. + To be added. + + + Gets or sets the color of the placheholder text. + To be added. + To be added. + + + Backing store for the property. + To be added. + + + Backing store for the property. + To be added. + + + Event that is raised when the user presses the Search button. + To be added. + + + Gets or sets the command that is run when the user presses Search button. + The command that is run when the user presses Search button. + To be added. + + + Gets or sets the parameter that is sent to the . + The parameter that is sent to the . + To be added. + + + Backing store for the property. + To be added. + + + Backing store for the property. + To be added. + + + Gets or sets the text that is displayed in the . + The text that is displayed in the . + To be added. + + + Event that is raised when the property is changed. For example, this event is raised as the user edits the text in the SearchBar. + To be added. + + + Gets or sets the text color. + To be added. + To be added. + + + Backing store for the property. + To be added. + + + Backing store for the property. + To be added. + + + To be added. + To be added. + + + Event arguments for the event. + To be added. + + + To be added. + Creates a new event that indicates that the user has selected . + To be added. + + + Gets the new selected item. + To be added. + To be added. + + + To be added. + To be added. + + + To be added. + To be added. + To be added. + + + To be added. + To be added. + To be added. + + + Enumerates values that control the visibility of list item separators. + To be added. + + + Use the default visibility for the platform. + + + Do not display separators. + + + Represents an assignment of a property to a value, typically in a style or in response to a trigger. + + Setters are used with triggers and styles. + XAML for Xamarin.Forms supports the following properties for the class: + + + Property + Value + + + Property + + The name of the property to set. + + + + Value + + The value to apply to the property. + + + + + + + Creates a new object. + To be added. + + + The property on which to apply the assignment. + To be added. + + Only bindable properties can be set with a .. + + + The value to assign to the property. + To be added. + To be added. + + + To be added. + + + + To be added. + To be added. + + + Defines extensions methods for IList<Setter> + + + + + + To be added. + To be added. + To be added. + Add a Setter with a value to the IList<Setter> + To be added. + + + To be added. + To be added. + To be added. + Add a Setter with a Binding to the IList<Setter> + To be added. + + + To be added. + To be added. + To be added. + Add a Setter with a DynamicResource to the IList<Setter> + To be added. + + + Struct defining height and width as a pair of doubles. + + Application developers should be aware of the limits of floating-point representations, specifically the possibility of incorrect comparisons and equality checks for values with small differences. David Goldberg's paper What Every Computer Scientist Should Know About Floating-Point Arithmetic describes the issues excellently. + + + + To be added. + To be added. + Creates a new object with and . + To be added. + + + The object to which this is being compared. + Whether this is equivalent to . + + if is a whose values are identical to this's and . + To be added. + + + The to which this is being compared. + Whether this is equivalent to . + + if 's values are identical to this's and . + To be added. + + + Returns a hash value for the . + A value intended for efficient insertion and lookup in hashtable-based data structures. + To be added. + + + Magnitude along the vertical axis, in platform-specific units. + To be added. + To be added. + + + Whether the has and of 0.0. + + if both and are 0.0. + To be added. + + + A to be added. + A to be added. + Returns a new whose and are the sum of the component's height and width. + A whose is equal to s1.Width + s2.Width and whose is equal to sz1.Height + sz2.Height. + To be added. + + + A to be compared. + A to be compared. + Whether two s have equal values. + + if and have equal values for and . + + Application developers should be aware that and are stored internally as s. Values with small differences may compare incorrectly due to internal rounding limitations. + + + + The to be converted to a . + Returns a new based on a . + A whose and are equal to 's and , respectively. + To be added. + + + To be added. + To be added. + Whether two s have unequal values. + + if and have unequal values for either or . + + Application developers should be aware that and are stored internally as s. Values with small differences may compare incorrectly due to internal rounding limitations. + + + + A to be scaled. + A factor by which to multiple 's and values. + Scales both and . + A new whose and have been scaled by . + To be added. + + + A from whose values a size will be subtracted. + The to subtract from . + Returns a new whose and are 's height and width minus the values in . + A whose is equal to s1.Width - s2.Width and whose is equal to sz1.Height - sz2.Height. + To be added. + + + Returns a human-readable representation of the . + The format has the pattern "{Width={0} Height={1}}". + To be added. + + + Magnitude along the horizontal axis, in platform-defined units. + To be added. + To be added. + + + The whose values for height and width are 0.0. + To be added. + + + Struct that definse minimum and maximum s. + To be added. + + + To be added. + Creates a new object with default values. + To be added. + + + To be added. + To be added. + Creates a new object that requests at least the size , but preferably the size . + To be added. + + + The minimum acceptable size. + To be added. + To be added. + + + The requested size. + To be added. + To be added. + + + Returns a string representation of the size request. + To be added. + To be added. + + + A control that inputs a linear value. + + + + + XAML for Xamarin.Forms supports the following properties for the class: + + + Property + Value + + + Maximum + + An integer or decimal literal. + + + + Minimum + + An integer or decimal literal. If this value is nonnegative, it must appear lexically below Maximum, so that validation can succeed. + + + + Value + + An integer or decimal literal that represents a number that is in the range[Minimum,Maximum]. + + + + + + + Initializes a new instance of the Slider class. + + The following example shows a basic use. + + + + + + + The minimum selectable value. + The maximum selectable value. + The actual value. + Initializes a new instance of the Slider class. + + + + Gets or sets the maximum selectable value for the Slider. This is a bindable property. + A double. + + + + Identifies the Maximum bindable property. + + + + Gets or sets the minimum selectable value for the Slider. This is a bindable property. + A double. + + + + Identifies the Minimum bindable property. + + + + To be added. + To be added. + To be added. + To be added. + + + Gets or sets the current value. This is a bindable property. + A double. + + + + The ValueChanged event is fired when the Value property changes. + + + + Identifies the Value bindable property. + + + + Represents a part of a FormattedString. + To be added. + + + Initialize a new instance of the Span class. + To be added. + + + Gets or sets the Color of the span background. + To be added. + Not supported on WindowsPhone. + + + Gets or sets the Font for the text in the span. + To be added. + To be added. + + + Gets a value that indicates whether the font for the span is bold, italic, or neither. + To be added. + To be added. + + + Gets the font family to which the font for the text in the span belongs. + To be added. + To be added. + + + Gets the size of the font for the text in the span. + To be added. + To be added. + + + Gets or sets the Color for the text in the span. + To be added. + To be added. + + + Event that is raised when a property is changed. + To be added. + + + Gets or sets the text of the span. + To be added. + To be added. + + + A that positions child elements in a single line which can be oriented vertically or horizontally. + + Because layouts override the bounds on their child elements, application developers should not set bounds on them. + + The following example code, adapted from the FormsGallery example shows how to create a new with children that explore many of the layout behaviors of : + + + + + + XAML for Xamarin.Forms supports the following properties for the class: + + + Property + Value + + + Orientation + + + Horizontal or Vertical. The default is Vertical. + + + + Spacing + + An integer or decimal. + + + + + + + Initializes a new instance of the StackLayout class. + + + The following example shows the initialization of a new StackLayout and setting its orientation and children. + + + + + + + + Invalidates the layout. + To be added. + + + A value representing the x coordinate of the child region bounding box. + A value representing the y coordinate of the child region bounding box. + A value representing the width of the child region bounding box. + A value representing the height of the child region bounding box. + Positions and sizes the children of a StackLayout. + Implementors wishing to change the default behavior of a StackLayout should override this method. It is suggested to still call the base method and modify its calculated results. + + + The available width for the StackLayout to use. + The available height for the StackLayout to use. + This method is called during the measure pass of a layout cycle to get the desired size of the StackLayout. + A which contains the desired size of the StackLayout. + The results of this method will be a sum of all the desired sizes of its children along the orientation axis, and the maximum along the non-orientation axis. + + + Gets or sets the value which indicates the direction which child elements are positioned. + A which indicates the direction children layouts flow. The default value is Vertical. + Setting the Orientation of a StackLayout triggers a layout cycle if the stack is already inside of a parent layout. To prevent wasted layout cycles, set the orientation prior to adding the StackLayout to a parent. + + + Identifies the Orientation bindable property. + + + + Gets or sets a value which indicates the amount of space between each child element. + A value in device pixels which indicates the amount of space between each element. The default value is 6.0. + + + Setting this value triggers a layout cycle if the StackLayout is already in a parent Layout. + + + The following example sets the Spacing on construction of a StackLayout. + + + + + + + + Identifies the Spacing bindable property. + + + + The orientations the a StackLayout can have. + + + + StackLayout should be horizontally oriented. + + + StackLayout should be vertically oriented. + + + A control that inputs a discrete value, constrained to a range. + + The following example shows a basic use. + + + + + + + XAML for Xamarin.Forms supports the following properties for the class: + + + Property + Value + + + Increment + + An integer or decimal literal. + + + + Maximum + + An integer or decimal literal. + + + + Minimum + + An integer or decimal literal. If this value is nonnegative, it must appear lexically below Maximum, so that validation can succeed. + + + + Value + + An integer or decimal literal that represents a number that is in the range [Minimum,Maximum]. + + + + ValueChanged + The name of an event handler. Note that this tag must appear below Value. + + + + + + Initializes a new instance of the Stepper class. + To be added. + + + The minimum selectable value. + The maximum selectable value. + The current selected value. + The increment by which Value is increased or decreased. + Initializes a new instance of the Stepper class. + To be added. + + + Gets or sets the increment by which Value is increased or decreased. This is a bindable property. + A double. + + + + Identifies the Increment bindable property. + To be added. + + + Gets or sets the maximum selectable value. This is a bindable property. + A double. + To be added. + + + Identifies the Maximum bindable property. + To be added. + + + Gets or sets the minimum selectabel value. This is a bindable property. + A double. + To be added. + + + Identifies the Minimum bindable property. + To be added. + + + To be added. + To be added. + To be added. + To be added. + + + Gets or sets the current value. This is a bindable property. + A double. + To be added. + + + Raised when the property changes. + To be added. + + + Identifies the Value bindable property. + To be added. + + + + that loads an image from a . + To be added. + + + Creates a new object with default values. + To be added. + + + To be added. + Method that is called when the property that is specified by is changed.. + To be added. + + + Gets or sets the delegate responsible for returning a for the Image. + + + + + Backing store for the property. + To be added. + + + To be added. + To be added. + To be added. + To be added. + + + Class that contains triggers, setters, and behaviors that completely or partially define the appearance and behavior of a class of visual elements. + + XAML for Xamarin.Forms supports the following properties for the class: + + + Property + Value + + + BasedOn + + A StaticResource markup extension that names the style on which this style is based. + + + + BaseResourceKey + + A resource dictionary key that names a dynamic base style. + + + + Behaviors + + Markup for the behaviors that are associated with the style. + + + + Setters + + A list of setters containing Property and Value elements or attributes. + + + + TargetType + + The name of the type that the style is intended for. + + + + Triggers + + A list of triggers. + + + + + + + To be added. + Intitializes a new instance. + To be added. + + + To be added. + To be added. + To be added. + + + The on which this is based. + To be added. + The supports a mechanism in XAML that is similar to inheritance in C#. + + + Gets or sets the key that identifies the on which this is based. + To be added. + To be added. + + + Gets the list of objects that belong to this . + To be added. + To be added. + + + To be added. + To be added. + To be added. + + + To be added. + To be added. + To be added. + + + Gets the list of objects that belong to this . + To be added. + To be added. + + + Gets the type of object that this style can describe. See Remarks. + To be added. + +

Developers should be aware that implicit styles are only applied to the specific type that is described by , and not to types that inherit from it.

+
+
+ + Gets the list of objects that belong to this . + To be added. + To be added. + + + A control that provides a toggled value. + + The following example describes a basic use. + + + + + + + XAML for Xamarin.Forms supports the following properties for the class: + + + Property + Value + + + IsToggled + + + true or false, to indicate whether the switch has been toggled. + + + + Toggled + + The name of an event handler. Note that this tag must appear below IsToggled. + + + + + + + Creates a new element with default values. + To be added. + + + Gets or sets a Boolean value that indicates whether this element is toggled. + To be added. + To be added. + + + Backing store for the property. + To be added. + + + To be added. + To be added. + To be added. + To be added. + + + Event that is raised when this is toggled. + To be added. + + + A with a label and an on/off switch. + + The following example shows a basic use. + + + + + + + XAML for Xamarin.Forms supports the following properties for the class: + + + Property + Value + + + On + + + true or false, to indicate whether the switch cell is in the "on" position. + + + + OnChanged + + The name of an event handler. Note that this tag must appear below On. + + + + Text + + Text that represents the title of the switch cell. + + + + + + + Initializes a new instance of the SwitchCell class. + To be added. + + + Gets or sets the state of the switch. This is a bindable property. + Default is . + To be added. + + + Triggered when the switch has changed value. + To be added. + + + Identifies the bindable property. + To be added. + + + Gets or sets the text displayed next to the switch. This is a bindable property. + + To be added. + + + Identifies the Text bindable property. + To be added. + + + + that displays an array of tabs across the top of the screen, each of which loads content onto the screen. + + The user interface of a tabbed page consists of a list of tabs and a larger detail area. On iOS, the list of tabs appears at the bottom of the screen, and the detail area is above. On Android and Windows phones, the tabs appear across the top of the screen. The user can scroll the collection of tabs that are across the top of the screen if that collection is too large to fit on one screen. + App developers can create tabbed pages in either of two ways. First, application developers can assign a list of objects of a single class, or its subclasses, to the property and assign a to the property to return pages for objects of the least derived type. Second, app developers can add a succession of objects to the property. Both methods are shown in the code examples below. + + The following example code, adapted for brevity from the FormsGallery sample that can be found on the Sample Applications page, shows how to display data of a specific type by assigning a to the property. Note how NamedColorPage gets its color by binding its field. + { + return new NamedColorPage (); + }); + } + } + + // Data type: + class NamedColor + { + public NamedColor (string name, Color color) + { + this.Name = name; + this.Color = color; + } + + public string Name { private set; get; } + + public Color Color { private set; get; } + + public override string ToString () + { + return Name; + } + } + + // Format page + class NamedColorPage : ContentPage + { + public NamedColorPage () + { + // This binding is necessary to label the tabs in + // the TabbedPage. + this.SetBinding (ContentPage.TitleProperty, "Name"); + // BoxView to show the color. + BoxView boxView = new BoxView { + WidthRequest = 100, + HeightRequest = 100, + HorizontalOptions = LayoutOptions.Center + }; + boxView.SetBinding (BoxView.ColorProperty, "Color"); + + // Build the page + this.Content = boxView; + } + } +} + + +]]> + + + The example below creates a tabbed view with two instances. + + + + + + + + + Creates a new element with default values. + To be added. + + + To be added. + To be added. + To be added. + + + To be added. + To be added. + + + To be added. + To be added. + To be added. + + + To be added. + To be added. + + + An object for which to create a default page. + Creates a default page, suitable for display in this page, for an object. + A page that is titled with the string value of . + This returns a new object that has its property set to the value of when called on . + + + To be added. + To be added. + To be added. + To be added. + + + Called when the parent is set. + This method iterates up the hierarchy and writes a message to the debug listeners if it detects a . Application developers are advised that adding a to a may produce undesirable results. + + + TableIntent provides hints to the renderer about how a table will be used. + Using table intents will not effect the behavior of a table, and will only modify their visual appearance on screen, depending on the platform. Not all intents are unique on all platforms, however it is advisable to pick the intent which most closely represents your use case. + + + A table intended to contain an arbitrary number of similar data entries. + + + A table which is used to contain information that would normally be contained in a form. + + + A table intended to be used as a menu for selections. + + + A table containing a set of switches, toggles, or other modifiable configuration settings. + + + A that contains either a table section or the entire table. + To be added. + + + Constructs and initializes a new instance of the class. + To be added. + + + The title of the table. + Constructs and initializes a new instance of the class with a title. + To be added. + + + A logical and visible section of a . + To be added. + + + Creates a new with default values. + To be added. + + + To be added. + Creates a new with the title . + To be added. + + + Abstract base class defining a table section. + + + + + XAML for Xamarin.Forms supports the following property for the class: + + + Property + Value + + + Title + + A title for the section. + + + + + + + Creates a new object with default values. + To be added. + + + To be added. + Creates a new object with the specified . + To be added. + + + Gets or sets the title. + To be added. + To be added. + + + Backing store for the property. + To be added. + + + To be added. + + Table section that contains instances of type T that are rendered by Xamarin.Forms. + + + Sections are used to group cells in the screen and they are the + only valid direct child of the . Sections can contain + any of the standard s, including new s. + + + s embedded in a section are used to navigate to a new + deeper level. + + + You can assign a header and a footer either as strings (Header and Footer) + properties, or as Views to be shown (HeaderView and FooterView). Internally + this uses the same storage, so you can only show one or the other. + + Subtypes of are and , as shown in the following diagram: + + + + + + + + Constructs a new instance with an empty title. + + To be added. + + + To be added. + + Constructs a new instance with the specified . + + To be added. + + + The items to add. + Adds a list of items to this object. + To be added. + + + The item to add. + Adds an item to this object. + To be added. + + + Removes all items in this . + To be added. + + + Event that is raised when one or more items is added to or removed from this object. + To be added. + + + The object for which to determine whether or not this object has a reference. + Returns a Boolean value that indicates whether or not this has a reference to a particular object. + + if this object contains a reference to . Otherwise, . + To be added. + + + To be added. + To be added. + Copies the elements of the current collection to an , starting at the specified index. + To be added. + + + Gets the number of items in this object. + The number of items in this object. + To be added. + + + Returns an enumerator that iterates through the items in this object. + To be added. + To be added. + + + The instance for which to find its index. + Returns the index of the first occurrence of in this object. + The index of the first occurrence of in this object. + To be added. + + + The position at which to insert . + The item to insert. + Inserts an item into this object at the specified position. + To be added. + + + The location of the item to return. + Returns the item that is stored at the location in this object that is specified by . + To be added. + To be added. + + + Calls the method, passing the new binding context, on each of the items in this object. + To be added. + + + To be added. + Removes a specified item from this object. + + , if item was removed from the current collection; if item was not found in the current collection.. + To be added. + + + The position in this object from which to remove an item. + Removes a specified item from this object at the position that is specified by . + To be added. + + + Returns ; The collection of objects in this can be changed. + + ; The collection of objects in this object can be changed. + To be added. + + + Returns an enumerator that iterates through the collection of objects in this object. + To be added. + To be added. + + + A that holds rows of elements. + + A has a as its property. The is a type of . + The following example shows a basic table with two sections. + + + + + + + XAML for Xamarin.Forms supports the following properties for the class: + + + Property + Value + + + HasUnevenRows + + + true or false, to indicate whether rows in the table view will specify their own height. + + + + Intent + + + Data, Form, Menu, or Settings. + + + + RowHeight + + + Horizontal or Vertical, to indicate the scroll direction. + + + + + + + Initializes a new instance. + To be added. + + + To be added. + Initializes a new instance. + To be added. + + + Gets or sets a value that indicates whether the rows that are contained in this can have uneven rows. + To be added. + + When the property is , application developers can set the properties to control the height of items in the table. When the property is , the property is ignored. When the property is , app developers can set the property to set the height of all Cells, and their individual properties are ignored. + + Developers must specify row heights on the iOS platform, even when is . + + + + + Backing store for the HasUnevenRows property. + To be added. + + + Gets or sets the intent of the table. + To be added. + To be added. + + + To be added. + To be added. + To be added. + To be added. + + + Method that is called when the binding context changes. + To be added. + + + Method that is called when the model changes. + To be added. + + + To be added. + To be added. + Method that is called when a size request is made. + To be added. + To be added. + + + Gets or sets the root of the table. + To be added. + To be added. + + + An integer that describes the height of the items in the list. This is ignored if HasUnevenRows is true. + To be added. + To be added. + + + Backing store for the row height property. + To be added. + + + To be added. + To be added. + To be added. + + + Provides tap gesture recognition and events. + Can be used to recognize single and multiple tap gestures. + + + Initializes a new instance of a TapGestureRecognizer object. + + + + An action whose first argument is the View the recognizer is associated with and whose second argument is the callback parameter. + Initializes a new instance of a TapGestureRecognizer object with a parameterized callback. + + + + An action whose first argument is the View the recognizer is associated with. + Initializes a new instance of a TapGestureRecognizer object with a callback. + + + + The Command to invoke when the gesture has been triggered by the user. This is a bindable property. + To be added. + The object passed to the Command will be the contents of + + + An object to be passed to the TappedCallback. This is a bindable property. + To be added. + To be added. + + + Identifies the CommandParameter bindable property. + + + + Identifies the Command bindable property. + + + + The number of taps required to trigger the callback. This is a bindable property. + The number of taps to recognize. The default value is 1. + + + + Identifies the NumberOfTapsRequired bindable property. + To be added. + + + Event that is raised when the user taps. + To be added. + + + The action to invoke when the gesture has been triggered by the user. This is a bindable property. + An action that will be invoked. + The object passed to the callback will be the contents of . + + + An object to be passed to the TappedCallback. This is a bindable property. + An object. + The primary use case for this property is Xaml bindings. + + + Identifies the TappedCallbackParameter bindable property. + + + + Identifies the TappedCallback bindable property. + + + + Arguments for the event. + To be added. + + + To be added. + Creates a new object with the supplied parameter. + To be added. + + + Gets the parameter object for this object. + To be added. + To be added. + + + Indicates the type of device Forms is working on. + + + + Indicates that Forms is running on a UWP app on Windows 10. + + + Indicates that the width of the iPhone, iPod Touch, Windows Phone, or Android device on which Forms is running is narrower than 600 dips. + + + Indicates that the width of the iPad, Windows 8.1, or Android device on which Forms is running is wider than 600 dips. + + + (Unused) Indicates that Forms is running on an unsupported device. + + + Indicates the kind of OS Forms is currently working on. + + + + Indicates that Forms is running on a Google Android OS. + + + Indicates that Forms is running on an Apple iOS OS. + + + (Unused) Indicates that Forms is running on an undefined platform. + + + Indicates that forms is running on the Windows platform. + + + Indicates that Forms is running on a Microsoft WinPhone OS. + + + Binds a template property to the parent of the view that owns a . + + Control templates provide reusable styling and functionality for common UI elements in an application. They do this by providing a common set of properties that bind to the parents of the View that owns the View to which the control template is bound. + + Application developers can assign these properties through XAML, as in the following example: + + + + +