Ejemplo n.º 1
0
 public FocusHandlerWrapper(Atk.FocusHandler managed)
 {
     this.managed = managed;
     if (managed != null)
     {
         NativeDelegate = new FocusHandlerNative(NativeCallback);
     }
 }
		public static Atk.FocusHandler GetManagedDelegate (FocusHandlerNative native)
		{
			if (native == null)
				return null;
			FocusHandlerWrapper wrapper = (FocusHandlerWrapper) native.Target;
			if (wrapper == null)
				return null;
			return wrapper.managed;
		}
Ejemplo n.º 3
0
        public static Atk.FocusHandler GetManagedDelegate(FocusHandlerNative native)
        {
            if (native == null)
            {
                return(null);
            }
            FocusHandlerWrapper wrapper = (FocusHandlerWrapper)native.Target;

            if (wrapper == null)
            {
                return(null);
            }
            return(wrapper.managed);
        }
		public FocusHandlerWrapper (Atk.FocusHandler managed)
		{
			this.managed = managed;
			if (managed != null)
				NativeDelegate = new FocusHandlerNative (NativeCallback);
		}
		internal FocusHandlerInvoker (FocusHandlerNative native_cb, IntPtr data, GLib.DestroyNotify notify)
		{
			this.native_cb = native_cb;
			__data = data;
			__notify = notify;
		}
		internal FocusHandlerInvoker (FocusHandlerNative native_cb, IntPtr data) : this (native_cb, data, null) {}
		internal FocusHandlerInvoker (FocusHandlerNative native_cb) : this (native_cb, IntPtr.Zero, null) {}
Ejemplo n.º 8
0
 internal FocusHandlerInvoker(FocusHandlerNative native_cb, IntPtr data, GLib.DestroyNotify notify)
 {
     this.native_cb = native_cb;
     __data         = data;
     __notify       = notify;
 }
Ejemplo n.º 9
0
 internal FocusHandlerInvoker(FocusHandlerNative native_cb, IntPtr data) : this(native_cb, data, null)
 {
 }
Ejemplo n.º 10
0
 internal FocusHandlerInvoker(FocusHandlerNative native_cb) : this(native_cb, IntPtr.Zero, null)
 {
 }