示例#1
0
 public CellAllocCallbackWrapper(Gtk.CellAllocCallback managed)
 {
     this.managed = managed;
     if (managed != null)
     {
         NativeDelegate = new CellAllocCallbackNative(NativeCallback);
     }
 }
示例#2
0
        public static Gtk.CellAllocCallback GetManagedDelegate(CellAllocCallbackNative native)
        {
            if (native == null)
            {
                return(null);
            }
            CellAllocCallbackWrapper wrapper = (CellAllocCallbackWrapper)native.Target;

            if (wrapper == null)
            {
                return(null);
            }
            return(wrapper.managed);
        }
		public static Gtk.CellAllocCallback GetManagedDelegate (CellAllocCallbackNative native)
		{
			if (native == null)
				return null;
			CellAllocCallbackWrapper wrapper = (CellAllocCallbackWrapper) native.Target;
			if (wrapper == null)
				return null;
			return wrapper.managed;
		}
		public CellAllocCallbackWrapper (Gtk.CellAllocCallback managed)
		{
			this.managed = managed;
			if (managed != null)
				NativeDelegate = new CellAllocCallbackNative (NativeCallback);
		}
		internal CellAllocCallbackInvoker (CellAllocCallbackNative native_cb, IntPtr data, GLib.DestroyNotify notify)
		{
			this.native_cb = native_cb;
			__data = data;
			__notify = notify;
		}
		internal CellAllocCallbackInvoker (CellAllocCallbackNative native_cb, IntPtr data) : this (native_cb, data, null) {}
		internal CellAllocCallbackInvoker (CellAllocCallbackNative native_cb) : this (native_cb, IntPtr.Zero, null) {}
示例#8
0
 internal CellAllocCallbackInvoker(CellAllocCallbackNative native_cb, IntPtr data, GLib.DestroyNotify notify)
 {
     this.native_cb = native_cb;
     __data         = data;
     __notify       = notify;
 }
示例#9
0
 internal CellAllocCallbackInvoker(CellAllocCallbackNative native_cb, IntPtr data) : this(native_cb, data, null)
 {
 }
示例#10
0
 internal CellAllocCallbackInvoker(CellAllocCallbackNative native_cb) : this(native_cb, IntPtr.Zero, null)
 {
 }