public KeySnoopFuncWrapper(Gtk.KeySnoopFunc managed)
 {
     this.managed = managed;
     if (managed != null)
     {
         NativeDelegate = new KeySnoopFuncNative(NativeCallback);
     }
 }
		public static Gtk.KeySnoopFunc GetManagedDelegate (KeySnoopFuncNative native)
		{
			if (native == null)
				return null;
			KeySnoopFuncWrapper wrapper = (KeySnoopFuncWrapper) native.Target;
			if (wrapper == null)
				return null;
			return wrapper.managed;
		}
        public static Gtk.KeySnoopFunc GetManagedDelegate(KeySnoopFuncNative native)
        {
            if (native == null)
            {
                return(null);
            }
            KeySnoopFuncWrapper wrapper = (KeySnoopFuncWrapper)native.Target;

            if (wrapper == null)
            {
                return(null);
            }
            return(wrapper.managed);
        }
 internal KeySnoopFuncInvoker(KeySnoopFuncNative native_cb, IntPtr data, GLib.DestroyNotify notify)
 {
     this.native_cb = native_cb;
     __data         = data;
     __notify       = notify;
 }
 internal KeySnoopFuncInvoker(KeySnoopFuncNative native_cb, IntPtr data) : this(native_cb, data, null)
 {
 }
 internal KeySnoopFuncInvoker(KeySnoopFuncNative native_cb) : this(native_cb, IntPtr.Zero, null)
 {
 }
		public KeySnoopFuncWrapper (Gtk.KeySnoopFunc managed)
		{
			this.managed = managed;
			if (managed != null)
				NativeDelegate = new KeySnoopFuncNative (NativeCallback);
		}
		internal KeySnoopFuncInvoker (KeySnoopFuncNative native_cb, IntPtr data, GLib.DestroyNotify notify)
		{
			this.native_cb = native_cb;
			__data = data;
			__notify = notify;
		}
		internal KeySnoopFuncInvoker (KeySnoopFuncNative native_cb, IntPtr data) : this (native_cb, data, null) {}
		internal KeySnoopFuncInvoker (KeySnoopFuncNative native_cb) : this (native_cb, IntPtr.Zero, null) {}