From: tscholb Date: Thu, 1 Aug 2019 06:08:38 +0000 (+0900) Subject: [NUI] Change API for Window Creation (#957) X-Git-Tag: submit/tizen/20190802.005202~1^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=67154da747de2984bb7fa1bbede6d04412d240a6;p=platform%2Fcore%2Fcsapi%2Ftizenfx.git [NUI] Change API for Window Creation (#957) --- 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(); }