// This file was generated by the Gtk# code generator. // Any changes made will be lost if regenerated. namespace AtkSharp { using System; using System.Runtime.InteropServices; #region Autogenerated code internal delegate int KeySnoopFuncNative(IntPtr evnt, IntPtr user_data); internal class KeySnoopFuncInvoker { KeySnoopFuncNative native_cb; IntPtr __data; GLib.DestroyNotify __notify; ~KeySnoopFuncInvoker () { if (__notify == null) return; __notify (__data); } internal KeySnoopFuncInvoker (KeySnoopFuncNative native_cb) : this (native_cb, IntPtr.Zero, null) {} internal KeySnoopFuncInvoker (KeySnoopFuncNative native_cb, IntPtr data) : this (native_cb, data, null) {} internal KeySnoopFuncInvoker (KeySnoopFuncNative native_cb, IntPtr data, GLib.DestroyNotify notify) { this.native_cb = native_cb; __data = data; __notify = notify; } internal Atk.KeySnoopFunc Handler { get { return new Atk.KeySnoopFunc(InvokeNative); } } int InvokeNative (Atk.KeyEventStruct evnt) { IntPtr native_evnt = GLib.Marshaller.StructureToPtrAlloc (evnt); int __result = native_cb (native_evnt, __data); Marshal.FreeHGlobal (native_evnt); return __result; } } internal class KeySnoopFuncWrapper { public int NativeCallback (IntPtr evnt, IntPtr user_data) { try { int __ret = managed (Atk.KeyEventStruct.New (evnt)); if (release_on_call) gch.Free (); return __ret; } catch (Exception e) { GLib.ExceptionManager.RaiseUnhandledException (e, true); // NOTREACHED: Above call does not return. throw; } } bool release_on_call = false; GCHandle gch; public void PersistUntilCalled () { release_on_call = true; gch = GCHandle.Alloc (this); } internal KeySnoopFuncNative NativeDelegate; Atk.KeySnoopFunc managed; public KeySnoopFuncWrapper (Atk.KeySnoopFunc managed) { this.managed = managed; if (managed != null) NativeDelegate = new KeySnoopFuncNative (NativeCallback); } public static Atk.KeySnoopFunc GetManagedDelegate (KeySnoopFuncNative native) { if (native == null) return null; KeySnoopFuncWrapper wrapper = (KeySnoopFuncWrapper) native.Target; if (wrapper == null) return null; return wrapper.managed; } } #endregion }