Esempio n. 1
0
 public ListBoxForeachFuncWrapper(Gtk.ListBoxForeachFunc managed)
 {
     this.managed = managed;
     if (managed != null)
     {
         NativeDelegate = new ListBoxForeachFuncNative(NativeCallback);
     }
 }
Esempio n. 2
0
        public static Gtk.ListBoxForeachFunc GetManagedDelegate(ListBoxForeachFuncNative native)
        {
            if (native == null)
            {
                return(null);
            }
            ListBoxForeachFuncWrapper wrapper = (ListBoxForeachFuncWrapper)native.Target;

            if (wrapper == null)
            {
                return(null);
            }
            return(wrapper.managed);
        }
Esempio n. 3
0
 internal ListBoxForeachFuncInvoker(ListBoxForeachFuncNative native_cb, IntPtr data) : this(native_cb, data, null)
 {
 }
Esempio n. 4
0
 internal ListBoxForeachFuncInvoker(ListBoxForeachFuncNative native_cb, IntPtr data, GLib.DestroyNotify notify)
 {
     this.native_cb = native_cb;
     __data         = data;
     __notify       = notify;
 }
Esempio n. 5
0
 internal ListBoxForeachFuncInvoker(ListBoxForeachFuncNative native_cb) : this(native_cb, IntPtr.Zero, null)
 {
 }