mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-26 01:05:33 +00:00
69e51261af
* glib/DelegateWrapper.cs: Remove 'RemoveIfNotAlive' and revamp the memory management to use destroy notification. * generator/CallbackGen.cs: Do not generate the call to RemoveIfNotAlive. * gtk/GtkSharp.GtkClipboardGetFuncNative, GtkSharp.GtkClipboardClearFuncNative: Do not call RemoveIfNotAlive. svn path=/trunk/gtk-sharp/; revision=18163
32 lines
956 B
C#
32 lines
956 B
C#
|
|
namespace GtkSharp {
|
|
|
|
using System;
|
|
using System.Collections;
|
|
public delegate void GtkClipboardClearFuncNative(IntPtr clipboard, uint objid);
|
|
|
|
public class GtkClipboardClearFuncWrapper : GLib.DelegateWrapper {
|
|
|
|
public void NativeCallback (IntPtr clipboard, uint objid)
|
|
{
|
|
object[] _args = new object[2];
|
|
_args[0] = (Gtk.Clipboard) GLib.Object.GetObject(clipboard, false);
|
|
if (_args[0] == null)
|
|
_args[0] = new Gtk.Clipboard(clipboard);
|
|
_args[1] = Gtk.Clipboard.clipboard_objects[objid];
|
|
_managed ((Gtk.Clipboard) _args[0], _args[1]);
|
|
Gtk.Clipboard.clipboard_objects.Remove (objid);
|
|
}
|
|
|
|
public GtkClipboardClearFuncNative NativeDelegate;
|
|
protected Gtk.ClipboardClearFunc _managed;
|
|
|
|
public GtkClipboardClearFuncWrapper (Gtk.ClipboardClearFunc managed, object o) : base (o)
|
|
{
|
|
NativeDelegate = new GtkClipboardClearFuncNative (NativeCallback);
|
|
_managed = managed;
|
|
}
|
|
}
|
|
|
|
}
|