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

            if (wrapper == null)
            {
                return(null);
            }
            return(wrapper.managed);
        }
Esempio n. 3
0
 internal EntryCompletionMatchFuncInvoker(EntryCompletionMatchFuncNative native_cb, IntPtr data, GLib.DestroyNotify notify)
 {
     this.native_cb = native_cb;
     __data         = data;
     __notify       = notify;
 }
Esempio n. 4
0
 internal EntryCompletionMatchFuncInvoker(EntryCompletionMatchFuncNative native_cb) : this(native_cb, IntPtr.Zero, null)
 {
 }
Esempio n. 5
0
 internal EntryCompletionMatchFuncInvoker(EntryCompletionMatchFuncNative native_cb, IntPtr data) : this(native_cb, data, null)
 {
 }
		public static Gtk.EntryCompletionMatchFunc GetManagedDelegate (EntryCompletionMatchFuncNative native)
		{
			if (native == null)
				return null;
			EntryCompletionMatchFuncWrapper wrapper = (EntryCompletionMatchFuncWrapper) native.Target;
			if (wrapper == null)
				return null;
			return wrapper.managed;
		}
		public EntryCompletionMatchFuncWrapper (Gtk.EntryCompletionMatchFunc managed)
		{
			this.managed = managed;
			if (managed != null)
				NativeDelegate = new EntryCompletionMatchFuncNative (NativeCallback);
		}
		internal EntryCompletionMatchFuncInvoker (EntryCompletionMatchFuncNative native_cb, IntPtr data, GLib.DestroyNotify notify)
		{
			this.native_cb = native_cb;
			__data = data;
			__notify = notify;
		}
		internal EntryCompletionMatchFuncInvoker (EntryCompletionMatchFuncNative native_cb, IntPtr data) : this (native_cb, data, null) {}
		internal EntryCompletionMatchFuncInvoker (EntryCompletionMatchFuncNative native_cb) : this (native_cb, IntPtr.Zero, null) {}