Пример #1
0
 public TreeViewSearchPositionFuncWrapper(Gtk.TreeViewSearchPositionFunc managed)
 {
     this.managed = managed;
     if (managed != null)
     {
         NativeDelegate = new TreeViewSearchPositionFuncNative(NativeCallback);
     }
 }
		public static Gtk.TreeViewSearchPositionFunc GetManagedDelegate (TreeViewSearchPositionFuncNative native)
		{
			if (native == null)
				return null;
			TreeViewSearchPositionFuncWrapper wrapper = (TreeViewSearchPositionFuncWrapper) native.Target;
			if (wrapper == null)
				return null;
			return wrapper.managed;
		}
Пример #3
0
        public static Gtk.TreeViewSearchPositionFunc GetManagedDelegate(TreeViewSearchPositionFuncNative native)
        {
            if (native == null)
            {
                return(null);
            }
            TreeViewSearchPositionFuncWrapper wrapper = (TreeViewSearchPositionFuncWrapper)native.Target;

            if (wrapper == null)
            {
                return(null);
            }
            return(wrapper.managed);
        }
Пример #4
0
 internal TreeViewSearchPositionFuncInvoker(TreeViewSearchPositionFuncNative native_cb, IntPtr data, GLib.DestroyNotify notify)
 {
     this.native_cb = native_cb;
     __data         = data;
     __notify       = notify;
 }
Пример #5
0
 internal TreeViewSearchPositionFuncInvoker(TreeViewSearchPositionFuncNative native_cb, IntPtr data) : this(native_cb, data, null)
 {
 }
Пример #6
0
 internal TreeViewSearchPositionFuncInvoker(TreeViewSearchPositionFuncNative native_cb) : this(native_cb, IntPtr.Zero, null)
 {
 }
		public TreeViewSearchPositionFuncWrapper (Gtk.TreeViewSearchPositionFunc managed)
		{
			this.managed = managed;
			if (managed != null)
				NativeDelegate = new TreeViewSearchPositionFuncNative (NativeCallback);
		}
		internal TreeViewSearchPositionFuncInvoker (TreeViewSearchPositionFuncNative native_cb, IntPtr data, GLib.DestroyNotify notify)
		{
			this.native_cb = native_cb;
			__data = data;
			__notify = notify;
		}
		internal TreeViewSearchPositionFuncInvoker (TreeViewSearchPositionFuncNative native_cb, IntPtr data) : this (native_cb, data, null) {}
		internal TreeViewSearchPositionFuncInvoker (TreeViewSearchPositionFuncNative native_cb) : this (native_cb, IntPtr.Zero, null) {}