2004-10-29 20:33:07 +00:00
|
|
|
using System;
|
|
|
|
using System.Reflection;
|
|
|
|
using System.Runtime.InteropServices;
|
|
|
|
|
2005-01-07 21:29:38 +00:00
|
|
|
namespace Gnome
|
2004-10-29 20:33:07 +00:00
|
|
|
{
|
2005-01-07 21:29:38 +00:00
|
|
|
public class PanelAppletFactory
|
2004-10-29 20:33:07 +00:00
|
|
|
{
|
2005-01-07 21:29:38 +00:00
|
|
|
private PanelAppletFactory () {}
|
2004-10-29 20:33:07 +00:00
|
|
|
|
|
|
|
private static string _IID;
|
|
|
|
private static string _factoryIID;
|
2005-01-07 21:29:38 +00:00
|
|
|
private static GnomeSharp.PanelAppletFactoryCallbackWrapper cb_wrapper;
|
2004-10-29 20:33:07 +00:00
|
|
|
|
|
|
|
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);
|
|
|
|
|
2005-01-07 21:29:38 +00:00
|
|
|
cb_wrapper = new GnomeSharp.PanelAppletFactoryCallbackWrapper (new PanelAppletFactoryCallback (Creation), null);
|
2004-10-29 20:33:07 +00:00
|
|
|
_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")]
|
2005-01-07 21:29:38 +00:00
|
|
|
static extern int panel_applet_factory_main(string iid, IntPtr applet_type, GnomeSharp.PanelAppletFactoryCallbackNative cb, IntPtr data);
|
2004-10-29 20:33:07 +00:00
|
|
|
}
|
|
|
|
}
|