From 67154da747de2984bb7fa1bbede6d04412d240a6 Mon Sep 17 00:00:00 2001 From: tscholb Date: Thu, 1 Aug 2019 15:08:38 +0900 Subject: [PATCH] [NUI] Change API for Window Creation (#957) --- src/Tizen.NUI/src/public/Window.cs | 50 ++---------------------------- 1 file changed, 2 insertions(+), 48 deletions(-) diff --git a/src/Tizen.NUI/src/public/Window.cs b/src/Tizen.NUI/src/public/Window.cs index 0f159b729..bf4a2a8d4 100755 --- a/src/Tizen.NUI/src/public/Window.cs +++ b/src/Tizen.NUI/src/public/Window.cs @@ -71,57 +71,11 @@ namespace Tizen.NUI /// This creates an extra window in addition to the default main window
/// /// The position and size of the Window. - /// The Window title. - /// Whether Window is transparent. + /// Whether Window is translucent. /// A new Window. /// 6 [EditorBrowsable(EditorBrowsableState.Never)] - public Window(Rectangle windowPosition, string name, bool isTransparent) : this(Interop.Window.Window_New__SWIG_0(Rectangle.getCPtr(windowPosition), name, isTransparent), true) - { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - /// - /// Creates a new Window.
- /// This creates an extra window in addition to the default main window
- ///
- /// The position and size of the Window. - /// The Window title. - /// A new Window. - /// 6 - [EditorBrowsable(EditorBrowsableState.Never)] - public Window(Rectangle windowPosition, string name) : this(Interop.Window.Window_New__SWIG_1(Rectangle.getCPtr(windowPosition), name), true) - { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - /// - /// Creates a new Window.
- /// This creates an extra window in addition to the default main window
- ///
- /// The position and size of the Window. - /// The Window title. - /// The Window class name. - /// Whether Window is transparent. - /// A new Window. - /// 6 - [EditorBrowsable(EditorBrowsableState.Never)] - public Window(Rectangle windowPosition, string name, string className, bool isTransparent) : this(Interop.Window.Window_New__SWIG_2(Rectangle.getCPtr(windowPosition), name, className, isTransparent), true) - { - if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); - } - - /// - /// Creates a new Window.
- /// This creates an extra window in addition to the default main window
- ///
- /// The position and size of the Window. - /// The Window title. - /// The Window class name. - /// A new Window. - /// 6 - [EditorBrowsable(EditorBrowsableState.Never)] - public Window(Rectangle windowPosition, string name, string className) : this(Interop.Window.Window_New__SWIG_3(Rectangle.getCPtr(windowPosition), name, className), true) + 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(); } -- 2.34.1