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

            if (wrapper == null)
            {
                return(null);
            }
            return(wrapper.managed);
        }
		public static Gtk.TreeModelForeachFunc GetManagedDelegate (TreeModelForeachFuncNative native)
		{
			if (native == null)
				return null;
			TreeModelForeachFuncWrapper wrapper = (TreeModelForeachFuncWrapper) native.Target;
			if (wrapper == null)
				return null;
			return wrapper.managed;
		}
		public TreeModelForeachFuncWrapper (Gtk.TreeModelForeachFunc managed)
		{
			this.managed = managed;
			if (managed != null)
				NativeDelegate = new TreeModelForeachFuncNative (NativeCallback);
		}
		internal TreeModelForeachFuncInvoker (TreeModelForeachFuncNative native_cb, IntPtr data, GLib.DestroyNotify notify)
		{
			this.native_cb = native_cb;
			__data = data;
			__notify = notify;
		}
		internal TreeModelForeachFuncInvoker (TreeModelForeachFuncNative native_cb, IntPtr data) : this (native_cb, data, null) {}
		internal TreeModelForeachFuncInvoker (TreeModelForeachFuncNative native_cb) : this (native_cb, IntPtr.Zero, null) {}
示例#8
0
 internal TreeModelForeachFuncInvoker(TreeModelForeachFuncNative native_cb, IntPtr data, GLib.DestroyNotify notify)
 {
     this.native_cb = native_cb;
     __data         = data;
     __notify       = notify;
 }
示例#9
0
 internal TreeModelForeachFuncInvoker(TreeModelForeachFuncNative native_cb, IntPtr data) : this(native_cb, data, null)
 {
 }
示例#10
0
 internal TreeModelForeachFuncInvoker(TreeModelForeachFuncNative native_cb) : this(native_cb, IntPtr.Zero, null)
 {
 }
示例#11
0
 public TreeModelForeachFuncWrapper(Gtk.TreeModelForeachFunc managed, object o) : base(o)
 {
     NativeDelegate = new TreeModelForeachFuncNative(NativeCallback);
     _managed       = managed;
 }