Exemplo n.º 1
0
 public TreeViewRowSeparatorFuncWrapper(Gtk.TreeViewRowSeparatorFunc managed)
 {
     this.managed = managed;
     if (managed != null)
     {
         NativeDelegate = new TreeViewRowSeparatorFuncNative(NativeCallback);
     }
 }
Exemplo n.º 2
0
        public static Gtk.TreeViewRowSeparatorFunc GetManagedDelegate(TreeViewRowSeparatorFuncNative native)
        {
            if (native == null)
            {
                return(null);
            }
            TreeViewRowSeparatorFuncWrapper wrapper = (TreeViewRowSeparatorFuncWrapper)native.Target;

            if (wrapper == null)
            {
                return(null);
            }
            return(wrapper.managed);
        }
Exemplo n.º 3
0
 internal TreeViewRowSeparatorFuncInvoker(TreeViewRowSeparatorFuncNative native_cb, IntPtr data, GLib.DestroyNotify notify)
 {
     this.native_cb = native_cb;
     __data         = data;
     __notify       = notify;
 }
Exemplo n.º 4
0
 internal TreeViewRowSeparatorFuncInvoker(TreeViewRowSeparatorFuncNative native_cb) : this(native_cb, IntPtr.Zero, null)
 {
 }
Exemplo n.º 5
0
 internal TreeViewRowSeparatorFuncInvoker(TreeViewRowSeparatorFuncNative native_cb, IntPtr data) : this(native_cb, data, null)
 {
 }
		public static Gtk.TreeViewRowSeparatorFunc GetManagedDelegate (TreeViewRowSeparatorFuncNative native)
		{
			if (native == null)
				return null;
			TreeViewRowSeparatorFuncWrapper wrapper = (TreeViewRowSeparatorFuncWrapper) native.Target;
			if (wrapper == null)
				return null;
			return wrapper.managed;
		}
		public TreeViewRowSeparatorFuncWrapper (Gtk.TreeViewRowSeparatorFunc managed)
		{
			this.managed = managed;
			if (managed != null)
				NativeDelegate = new TreeViewRowSeparatorFuncNative (NativeCallback);
		}
		internal TreeViewRowSeparatorFuncInvoker (TreeViewRowSeparatorFuncNative native_cb, IntPtr data, GLib.DestroyNotify notify)
		{
			this.native_cb = native_cb;
			__data = data;
			__notify = notify;
		}
		internal TreeViewRowSeparatorFuncInvoker (TreeViewRowSeparatorFuncNative native_cb, IntPtr data) : this (native_cb, data, null) {}
		internal TreeViewRowSeparatorFuncInvoker (TreeViewRowSeparatorFuncNative native_cb) : this (native_cb, IntPtr.Zero, null) {}