Files
KioskApp/GtkSharp/Source/Libs/GioSharp/Generated/GLib/GLibSharp.CancellableSourceFuncNative.cs
2024-09-15 22:40:48 +02:00

95 lines
2.4 KiB
C#

// This file was generated by the Gtk# code generator.
// Any changes made will be lost if regenerated.
namespace GLibSharp {
using System;
using System.Runtime.InteropServices;
#region Autogenerated code
internal delegate bool CancellableSourceFuncNative(IntPtr cancellable, IntPtr user_data);
internal class CancellableSourceFuncInvoker {
CancellableSourceFuncNative native_cb;
IntPtr __data;
GLib.DestroyNotify __notify;
~CancellableSourceFuncInvoker ()
{
if (__notify == null)
return;
__notify (__data);
}
internal CancellableSourceFuncInvoker (CancellableSourceFuncNative native_cb) : this (native_cb, IntPtr.Zero, null) {}
internal CancellableSourceFuncInvoker (CancellableSourceFuncNative native_cb, IntPtr data) : this (native_cb, data, null) {}
internal CancellableSourceFuncInvoker (CancellableSourceFuncNative native_cb, IntPtr data, GLib.DestroyNotify notify)
{
this.native_cb = native_cb;
__data = data;
__notify = notify;
}
internal GLib.CancellableSourceFunc Handler {
get {
return new GLib.CancellableSourceFunc(InvokeNative);
}
}
bool InvokeNative (GLib.Cancellable cancellable)
{
bool __result = native_cb (cancellable == null ? IntPtr.Zero : cancellable.Handle, __data);
return __result;
}
}
internal class CancellableSourceFuncWrapper {
public bool NativeCallback (IntPtr cancellable, IntPtr user_data)
{
try {
bool __ret = managed (GLib.Object.GetObject(cancellable) as GLib.Cancellable);
if (release_on_call)
gch.Free ();
return __ret;
} catch (Exception e) {
GLib.ExceptionManager.RaiseUnhandledException (e, false);
return false;
}
}
bool release_on_call = false;
GCHandle gch;
public void PersistUntilCalled ()
{
release_on_call = true;
gch = GCHandle.Alloc (this);
}
internal CancellableSourceFuncNative NativeDelegate;
GLib.CancellableSourceFunc managed;
public CancellableSourceFuncWrapper (GLib.CancellableSourceFunc managed)
{
this.managed = managed;
if (managed != null)
NativeDelegate = new CancellableSourceFuncNative (NativeCallback);
}
public static GLib.CancellableSourceFunc GetManagedDelegate (CancellableSourceFuncNative native)
{
if (native == null)
return null;
CancellableSourceFuncWrapper wrapper = (CancellableSourceFuncWrapper) native.Target;
if (wrapper == null)
return null;
return wrapper.managed;
}
}
#endregion
}