//------------------------------------------------------------------------------ // // // This file was automatically generated by SWIG (http://www.swig.org). // Version 3.0.12 // // Do not make changes to this file unless you know what you are doing--modify // the SWIG interface file instead. //------------------------------------------------------------------------------ using System; using System.ComponentModel; namespace Tizen.NUI { /// /// WidgetViewSignal /// /// 3 [Obsolete("Deprecated in API6, Will be removed in API9, " + "Please use WidgetView.WidgetAdded, WidgetDeleted events instead!")] [EditorBrowsable(EditorBrowsableState.Never)] public class WidgetViewSignal : Disposable { private global::System.Runtime.InteropServices.HandleRef swigCPtr; /// /// swigCMemOwn /// /// 3 [Obsolete("Deprecated in API6, Will be removed in API9, " + "Please use WidgetView.WidgetAdded, WidgetDeleted events instead!")] [EditorBrowsable(EditorBrowsableState.Never)] protected bool swigCMemOwn; internal WidgetViewSignal(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(WidgetViewSignal obj) { return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; } /// /// Dispose /// /// 3 [Obsolete("Deprecated in API6, Will be removed in API9, " + "Please use WidgetView.WidgetAdded, WidgetDeleted events instead!")] [EditorBrowsable(EditorBrowsableState.Never)] protected override void Dispose(DisposeTypes type) { if (disposed) { return; } if (swigCPtr.Handle != global::System.IntPtr.Zero) { if (swigCMemOwn) { swigCMemOwn = false; Interop.WidgetView.delete_WidgetViewSignal(swigCPtr); } swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero); } base.Dispose(type); } /// /// Queries whether there are any connected slots. /// /// True if there are any slots connected to the signal /// 3 [Obsolete("Deprecated in API6, Will be removed in API9, " + "Please use WidgetView.WidgetAdded, WidgetDeleted events instead!")] [EditorBrowsable(EditorBrowsableState.Never)] public bool Empty() { bool ret = Interop.WidgetView.WidgetViewSignal_Empty(swigCPtr); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } /// /// Queries the number of slots. /// /// The number of slots connected to this signal /// 3 [Obsolete("Deprecated in API6, Will be removed in API9, " + "Please use WidgetView.WidgetAdded, WidgetDeleted events instead!")] [EditorBrowsable(EditorBrowsableState.Never)] public uint GetConnectionCount() { uint ret = Interop.WidgetView.WidgetViewSignal_GetConnectionCount(swigCPtr); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } /// /// Connects a function. /// /// The function to connect /// 3 [Obsolete("Deprecated in API6, Will be removed in API9, " + "Please use WidgetView.WidgetAdded, WidgetDeleted events instead!")] [EditorBrowsable(EditorBrowsableState.Never)] public void Connect(System.Delegate func) { System.IntPtr ip = System.Runtime.InteropServices.Marshal.GetFunctionPointerForDelegate(func); { Interop.WidgetView.WidgetViewSignal_Connect(swigCPtr, new System.Runtime.InteropServices.HandleRef(this, ip)); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } } /// /// Disconnects a function. /// /// The function to disconnect /// 3 [Obsolete("Deprecated in API6, Will be removed in API9, " + "Please use WidgetView.WidgetAdded, WidgetDeleted events instead!")] [EditorBrowsable(EditorBrowsableState.Never)] public void Disconnect(System.Delegate func) { System.IntPtr ip = System.Runtime.InteropServices.Marshal.GetFunctionPointerForDelegate(func); { Interop.WidgetView.WidgetViewSignal_Disconnect(swigCPtr, new System.Runtime.InteropServices.HandleRef(this, ip)); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } } /// /// Connects a member function. /// /// The member function to connect /// 3 [Obsolete("Deprecated in API6, Will be removed in API9, " + "Please use WidgetView.WidgetAdded, WidgetDeleted events instead!")] [EditorBrowsable(EditorBrowsableState.Never)] public void Emit(WidgetView arg) { Interop.WidgetView.WidgetViewSignal_Emit(swigCPtr, WidgetView.getCPtr(arg)); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } /// /// The contructor. /// /// 3 [Obsolete("Deprecated in API6, Will be removed in API9, " + "Please use WidgetView.WidgetAdded, WidgetDeleted events instead!")] [EditorBrowsable(EditorBrowsableState.Never)] public WidgetViewSignal() : this(Interop.WidgetView.new_WidgetViewSignal(), true) { if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } } }