Ejemplo n.º 1
0
 public TextCharPredicateWrapper(Gtk.TextCharPredicate managed)
 {
     this.managed = managed;
     if (managed != null)
     {
         NativeDelegate = new TextCharPredicateNative(NativeCallback);
     }
 }
		public static Gtk.TextCharPredicate GetManagedDelegate (TextCharPredicateNative native)
		{
			if (native == null)
				return null;
			TextCharPredicateWrapper wrapper = (TextCharPredicateWrapper) native.Target;
			if (wrapper == null)
				return null;
			return wrapper.managed;
		}
Ejemplo n.º 3
0
        public static Gtk.TextCharPredicate GetManagedDelegate(TextCharPredicateNative native)
        {
            if (native == null)
            {
                return(null);
            }
            TextCharPredicateWrapper wrapper = (TextCharPredicateWrapper)native.Target;

            if (wrapper == null)
            {
                return(null);
            }
            return(wrapper.managed);
        }
Ejemplo n.º 4
0
 internal TextCharPredicateInvoker(TextCharPredicateNative native_cb, IntPtr data, GLib.DestroyNotify notify)
 {
     this.native_cb = native_cb;
     __data         = data;
     __notify       = notify;
 }
Ejemplo n.º 5
0
 internal TextCharPredicateInvoker(TextCharPredicateNative native_cb, IntPtr data) : this(native_cb, data, null)
 {
 }
Ejemplo n.º 6
0
 internal TextCharPredicateInvoker(TextCharPredicateNative native_cb) : this(native_cb, IntPtr.Zero, null)
 {
 }
		public TextCharPredicateWrapper (Gtk.TextCharPredicate managed)
		{
			this.managed = managed;
			if (managed != null)
				NativeDelegate = new TextCharPredicateNative (NativeCallback);
		}
		internal TextCharPredicateInvoker (TextCharPredicateNative native_cb, IntPtr data, GLib.DestroyNotify notify)
		{
			this.native_cb = native_cb;
			__data = data;
			__notify = notify;
		}
		internal TextCharPredicateInvoker (TextCharPredicateNative native_cb, IntPtr data) : this (native_cb, data, null) {}
		internal TextCharPredicateInvoker (TextCharPredicateNative native_cb) : this (native_cb, IntPtr.Zero, null) {}