mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-26 00:35:34 +00:00
7f3171c814
is now tracking Gnome 2.6. svn path=/trunk/gtk-sharp/; revision=35479
37 lines
1.2 KiB
C#
37 lines
1.2 KiB
C#
using System;
|
|
using System.Reflection;
|
|
using System.Runtime.InteropServices;
|
|
|
|
namespace PanelApplet
|
|
{
|
|
public class AppletFactory
|
|
{
|
|
private AppletFactory () { }
|
|
|
|
private static string _IID;
|
|
private static string _factoryIID;
|
|
private static PanelAppletSharp.FactoryCallbackWrapper cb_wrapper;
|
|
|
|
public static void Register (Type applet_type)
|
|
{
|
|
PanelApplet applet = (PanelApplet) Activator.CreateInstance (applet_type, BindingFlags.NonPublic | BindingFlags.Public | BindingFlags.Instance | BindingFlags.CreateInstance, null, new object[] {IntPtr.Zero}, null);
|
|
|
|
cb_wrapper = new PanelAppletSharp.FactoryCallbackWrapper (new FactoryCallback (Creation), null);
|
|
_IID = applet.IID;
|
|
_factoryIID = applet.FactoryIID;
|
|
panel_applet_factory_main(_factoryIID, GLib.Object.LookupGType (applet_type).Val, cb_wrapper.NativeDelegate, IntPtr.Zero);
|
|
}
|
|
|
|
private static bool Creation (PanelApplet applet, string iid)
|
|
{
|
|
if (_IID != iid)
|
|
return false;
|
|
applet.Creation ();
|
|
return true;
|
|
}
|
|
|
|
[DllImport("panel-applet-2")]
|
|
static extern int panel_applet_factory_main(string iid, IntPtr applet_type, PanelAppletSharp.FactoryCallbackNative cb, IntPtr data);
|
|
}
|
|
}
|