From 02a6b6a11259e7ef5f47bdfd9a8df81d2d709ef3 Mon Sep 17 00:00:00 2001 From: tscholb Date: Mon, 23 Sep 2019 14:33:58 +0900 Subject: [PATCH] [NUI]Changed the APIs related to MultiWIndow to public (#1020) --- src/Tizen.NUI/src/public/Window.cs | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/src/Tizen.NUI/src/public/Window.cs b/src/Tizen.NUI/src/public/Window.cs index e9e31f7..10710b5 100755 --- a/src/Tizen.NUI/src/public/Window.cs +++ b/src/Tizen.NUI/src/public/Window.cs @@ -74,7 +74,6 @@ namespace Tizen.NUI /// Whether Window is translucent. /// A new Window. /// 6 - [EditorBrowsable(EditorBrowsableState.Never)] public Window(Rectangle windowPosition = null , bool isTranslucent = false) : this(Interop.Window.Window_New__SWIG_0(Rectangle.getCPtr(windowPosition), "", isTranslucent), true) { if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); @@ -89,7 +88,6 @@ namespace Tizen.NUI /// Whether Window is translucent. /// A new Window. /// 6 - [EditorBrowsable(EditorBrowsableState.Never)] public Window(string name, Rectangle windowPosition = null, bool isTranslucent = false) : this(Interop.Window.Window_New__SWIG_0(Rectangle.getCPtr(windowPosition), name, isTranslucent), true) { if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); @@ -1219,8 +1217,6 @@ namespace Tizen.NUI /// /// The available orientation to add /// 6 - /// This will be public opened in tizen_5.5 after ACR done. Before ACR, need to be hidden as inhouse API. - [EditorBrowsable(EditorBrowsableState.Never)] public void AddAvailableOrientation(Window.WindowOrientation orientation) { Interop.Window.Window_AddAvailableOrientation(swigCPtr, (int)orientation); @@ -1232,8 +1228,6 @@ namespace Tizen.NUI /// /// The available orientation to remove. /// 6 - /// This will be public opened in tizen_5.5 after ACR done. Before ACR, need to be hidden as inhouse API. - [EditorBrowsable(EditorBrowsableState.Never)] public void RemoveAvailableOrientation(Window.WindowOrientation orientation) { Interop.Window.Window_RemoveAvailableOrientation(swigCPtr, (int)orientation); @@ -1245,8 +1239,6 @@ namespace Tizen.NUI /// /// The preferred orientation. /// 6 - /// This will be public opened in tizen_5.5 after ACR done. Before ACR, need to be hidden as inhouse API. - [EditorBrowsable(EditorBrowsableState.Never)] public void SetPreferredOrientation(Window.WindowOrientation orientation) { Interop.Window.Window_SetPreferredOrientation(swigCPtr, (int)orientation); @@ -1256,10 +1248,8 @@ namespace Tizen.NUI /// /// Gets the preferred orientation. /// - /// The parent window. /// 6 /// The preferred orientation if previously set, or none. - [EditorBrowsable(EditorBrowsableState.Never)] public Window.WindowOrientation GetPreferredOrientation() { Window.WindowOrientation ret = (Window.WindowOrientation)Interop.Window.Window_GetPreferredOrientation(swigCPtr); @@ -1509,8 +1499,6 @@ namespace Tizen.NUI /// /// The parent window. /// 6 - /// This will be public opened in tizen_5.5 after ACR done. Before ACR, need to be hidden as inhouse API. - [EditorBrowsable(EditorBrowsableState.Never)] public void SetParent(Window parent) { Interop.Window.SetParent(swigCPtr, Window.getCPtr(parent)); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); @@ -1521,8 +1509,6 @@ namespace Tizen.NUI /// After unsetting, the window is disconnected his parent window. /// /// 6 - /// This will be public opened in tizen_5.5 after ACR done. Before ACR, need to be hidden as inhouse API. - [EditorBrowsable(EditorBrowsableState.Never)] public void Unparent() { Interop.Window.Unparent(swigCPtr); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); @@ -1533,8 +1519,6 @@ namespace Tizen.NUI /// /// The parent window of the window. /// 6 - /// This will be public opened in tizen_5.5 after ACR done. Before ACR, need to be hidden as inhouse API. - [EditorBrowsable(EditorBrowsableState.Never)] public Window GetParent() { Window ret = new Window(Interop.Window.GetParent(swigCPtr), true); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); -- 2.7.4