2001-09-19 02:04:57 +00:00
|
|
|
// Object.cs - GObject class wrapper implementation
|
|
|
|
//
|
2003-07-23 17:19:21 +00:00
|
|
|
// Authors: Mike Kestner <mkestner@speakeasy.net>
|
2001-09-19 02:04:57 +00:00
|
|
|
//
|
2004-05-27 16:35:21 +00:00
|
|
|
// Copyright (c) 2001-2003 Mike Kestner
|
|
|
|
// Copyright (c) 2004 Novell, Inc.
|
2004-06-25 18:42:19 +00:00
|
|
|
//
|
|
|
|
// This program is free software; you can redistribute it and/or
|
|
|
|
// modify it under the terms of version 2 of the Lesser GNU General
|
|
|
|
// Public License as published by the Free Software Foundation.
|
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
// Lesser General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Lesser General Public
|
|
|
|
// License along with this program; if not, write to the
|
|
|
|
// Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
// Boston, MA 02111-1307, USA.
|
|
|
|
|
2004-03-16 19:43:04 +00:00
|
|
|
|
2001-09-19 11:37:15 +00:00
|
|
|
namespace GLib {
|
2001-09-19 02:04:57 +00:00
|
|
|
|
|
|
|
using System;
|
2001-09-20 04:03:27 +00:00
|
|
|
using System.Collections;
|
2001-09-19 11:37:15 +00:00
|
|
|
using System.ComponentModel;
|
2002-12-25 00:36:00 +00:00
|
|
|
using System.Reflection;
|
2001-09-19 02:04:57 +00:00
|
|
|
using System.Runtime.InteropServices;
|
|
|
|
|
2002-09-04 05:25:58 +00:00
|
|
|
public class Object : IWrapper, IDisposable {
|
2001-09-27 18:39:53 +00:00
|
|
|
|
|
|
|
IntPtr _obj;
|
2002-09-04 05:25:58 +00:00
|
|
|
bool disposed = false;
|
2003-07-04 07:13:19 +00:00
|
|
|
Hashtable data;
|
2001-09-27 18:39:53 +00:00
|
|
|
static Hashtable Objects = new Hashtable();
|
2003-03-15 20:49:37 +00:00
|
|
|
static Queue PendingDestroys = new Queue ();
|
|
|
|
static bool idle_queued;
|
2001-09-27 18:39:53 +00:00
|
|
|
|
2002-09-04 05:25:58 +00:00
|
|
|
~Object ()
|
|
|
|
{
|
|
|
|
Dispose ();
|
|
|
|
}
|
|
|
|
|
2003-07-23 17:19:21 +00:00
|
|
|
[DllImport("libgobject-2.0-0.dll")]
|
|
|
|
static extern void g_object_unref (IntPtr raw);
|
|
|
|
|
2003-03-15 20:49:37 +00:00
|
|
|
static bool PerformQueuedUnrefs ()
|
|
|
|
{
|
|
|
|
Object [] objects;
|
|
|
|
|
|
|
|
lock (PendingDestroys){
|
|
|
|
objects = new Object [PendingDestroys.Count];
|
|
|
|
PendingDestroys.CopyTo (objects, 0);
|
|
|
|
PendingDestroys.Clear ();
|
|
|
|
}
|
|
|
|
lock (typeof (Object))
|
|
|
|
idle_queued = false;
|
|
|
|
|
|
|
|
foreach (Object o in objects){
|
|
|
|
if (o._obj == IntPtr.Zero)
|
|
|
|
continue;
|
2003-12-03 20:23:25 +00:00
|
|
|
|
2003-07-23 17:19:21 +00:00
|
|
|
g_object_unref (o._obj);
|
2003-03-15 20:49:37 +00:00
|
|
|
o._obj = IntPtr.Zero;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2002-09-04 05:25:58 +00:00
|
|
|
public void Dispose ()
|
|
|
|
{
|
|
|
|
if (disposed)
|
|
|
|
return;
|
|
|
|
|
|
|
|
disposed = true;
|
2003-03-23 18:05:36 +00:00
|
|
|
Objects.Remove (_obj);
|
2003-03-15 20:49:37 +00:00
|
|
|
lock (PendingDestroys){
|
|
|
|
PendingDestroys.Enqueue (this);
|
|
|
|
lock (typeof (Object)){
|
|
|
|
if (!idle_queued){
|
|
|
|
Idle.Add (new IdleHandler (PerformQueuedUnrefs));
|
|
|
|
idle_queued = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
GC.SuppressFinalize (this);
|
2002-09-04 05:25:58 +00:00
|
|
|
}
|
|
|
|
|
2003-02-22 04:34:56 +00:00
|
|
|
[DllImport("libgobject-2.0-0.dll")]
|
2002-09-12 05:21:16 +00:00
|
|
|
static extern void g_object_ref (IntPtr raw);
|
|
|
|
|
2003-07-23 17:19:21 +00:00
|
|
|
public static Object GetObject(IntPtr o, bool owned_ref)
|
2001-09-19 04:47:48 +00:00
|
|
|
{
|
2003-07-23 17:19:21 +00:00
|
|
|
Object obj;
|
|
|
|
WeakReference weak_ref = Objects[o] as WeakReference;
|
|
|
|
if (weak_ref != null && weak_ref.IsAlive) {
|
|
|
|
obj = weak_ref.Target as GLib.Object;
|
|
|
|
if (owned_ref)
|
|
|
|
g_object_unref (obj._obj);
|
|
|
|
return obj;
|
2003-04-09 17:50:51 +00:00
|
|
|
}
|
|
|
|
|
2004-05-28 16:59:21 +00:00
|
|
|
obj = GLib.ObjectManager.CreateObject(o);
|
2003-07-23 17:19:21 +00:00
|
|
|
if (obj == null)
|
|
|
|
return null;
|
|
|
|
|
|
|
|
if (!owned_ref)
|
|
|
|
g_object_ref (obj.Handle);
|
|
|
|
Objects [o] = new WeakReference (obj);
|
|
|
|
return obj;
|
2001-09-19 02:04:57 +00:00
|
|
|
}
|
2001-09-20 04:03:27 +00:00
|
|
|
|
2003-12-10 22:56:49 +00:00
|
|
|
public static Object GetObject(IntPtr o)
|
|
|
|
{
|
|
|
|
return GetObject (o, false);
|
|
|
|
}
|
|
|
|
|
2003-12-30 22:09:42 +00:00
|
|
|
private static void ConnectDefaultHandlers (GType gtype, System.Type t)
|
|
|
|
{
|
2004-06-05 01:01:07 +00:00
|
|
|
foreach (MethodInfo minfo in t.GetMethods(BindingFlags.Instance | BindingFlags.NonPublic | BindingFlags.Public | BindingFlags.DeclaredOnly)) {
|
2003-12-30 22:09:42 +00:00
|
|
|
MethodInfo baseinfo = minfo.GetBaseDefinition ();
|
|
|
|
if (baseinfo == minfo)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
foreach (object attr in baseinfo.GetCustomAttributes (true)) {
|
|
|
|
if (attr.ToString () != "GLib.DefaultSignalHandlerAttribute")
|
|
|
|
continue;
|
|
|
|
|
|
|
|
DefaultSignalHandlerAttribute sigattr = attr as DefaultSignalHandlerAttribute;
|
|
|
|
MethodInfo connector = sigattr.Type.GetMethod (sigattr.ConnectionMethod, BindingFlags.Static | BindingFlags.NonPublic);
|
|
|
|
object[] parms = new object [1];
|
|
|
|
parms [0] = gtype;
|
|
|
|
connector.Invoke (null, parms);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2004-03-12 21:18:11 +00:00
|
|
|
[DllImport("glibsharpglue")]
|
2003-12-15 16:59:25 +00:00
|
|
|
static extern IntPtr gtksharp_register_type (string name, IntPtr parent_type);
|
2002-12-25 00:36:00 +00:00
|
|
|
|
2004-05-17 17:52:00 +00:00
|
|
|
protected static GType RegisterGType (System.Type t)
|
2002-12-25 00:36:00 +00:00
|
|
|
{
|
2004-05-07 13:42:59 +00:00
|
|
|
GType parent_gtype = LookupGType (t.BaseType);
|
|
|
|
string name = t.FullName.Replace(".", "_");
|
2004-05-28 16:59:21 +00:00
|
|
|
GLib.ObjectManager.RegisterType (name, t.FullName, t.Assembly.GetName().Name);
|
2003-12-30 22:09:42 +00:00
|
|
|
GType gtype = new GType (gtksharp_register_type (name, parent_gtype.Val));
|
|
|
|
ConnectDefaultHandlers (gtype, t);
|
2004-04-07 19:15:01 +00:00
|
|
|
g_types[t] = gtype;
|
2003-12-30 22:09:42 +00:00
|
|
|
return gtype;
|
2002-12-25 00:36:00 +00:00
|
|
|
}
|
|
|
|
|
2004-04-07 19:15:01 +00:00
|
|
|
|
|
|
|
static Hashtable g_types = new Hashtable ();
|
2004-05-07 13:42:59 +00:00
|
|
|
|
2004-05-17 17:52:00 +00:00
|
|
|
protected GType LookupGType ()
|
2004-05-07 13:42:59 +00:00
|
|
|
{
|
|
|
|
return LookupGType (GetType ());
|
|
|
|
}
|
|
|
|
|
2004-05-14 20:25:57 +00:00
|
|
|
protected static GType LookupGType (System.Type t)
|
2004-04-07 19:15:01 +00:00
|
|
|
{
|
2004-05-07 13:42:59 +00:00
|
|
|
if (g_types.Contains (t))
|
2004-04-07 19:15:01 +00:00
|
|
|
return (GType) g_types [t];
|
|
|
|
|
|
|
|
PropertyInfo pi = t.GetProperty ("GType", BindingFlags.DeclaredOnly | BindingFlags.Static | BindingFlags.Public);
|
|
|
|
if (pi != null)
|
|
|
|
return (GType) pi.GetValue (null, null);
|
|
|
|
|
|
|
|
return RegisterGType (t);
|
|
|
|
}
|
2002-02-03 03:44:10 +00:00
|
|
|
|
2004-05-17 17:52:00 +00:00
|
|
|
protected Object (IntPtr raw)
|
2002-02-03 03:44:10 +00:00
|
|
|
{
|
2002-02-19 19:46:44 +00:00
|
|
|
Raw = raw;
|
2002-02-03 03:44:10 +00:00
|
|
|
}
|
2001-09-19 02:04:57 +00:00
|
|
|
|
2003-02-22 04:34:56 +00:00
|
|
|
[DllImport("libgobject-2.0-0.dll")]
|
2003-12-15 16:59:25 +00:00
|
|
|
static extern IntPtr g_object_new (IntPtr gtype, IntPtr dummy);
|
2002-12-25 00:36:00 +00:00
|
|
|
|
2003-12-15 16:59:25 +00:00
|
|
|
protected Object (GType gtype)
|
2002-12-25 00:36:00 +00:00
|
|
|
{
|
2003-12-15 16:59:25 +00:00
|
|
|
Raw = g_object_new (gtype.Val, IntPtr.Zero);
|
2002-12-25 00:36:00 +00:00
|
|
|
}
|
|
|
|
|
2004-05-07 13:42:59 +00:00
|
|
|
[DllImport("glibsharpglue")]
|
|
|
|
static extern IntPtr gtksharp_object_newv (IntPtr gtype, int n_params, string[] names, GLib.Value[] vals);
|
|
|
|
|
|
|
|
protected void CreateNativeObject (string[] names, GLib.Value[] vals)
|
|
|
|
{
|
|
|
|
Raw = gtksharp_object_newv (LookupGType ().Val, names.Length, names, vals);
|
|
|
|
}
|
|
|
|
|
2002-11-10 10:09:05 +00:00
|
|
|
protected virtual IntPtr Raw {
|
2001-09-19 11:37:15 +00:00
|
|
|
get {
|
2001-09-19 02:04:57 +00:00
|
|
|
return _obj;
|
|
|
|
}
|
2001-09-19 11:37:15 +00:00
|
|
|
set {
|
2001-09-19 02:04:57 +00:00
|
|
|
_obj = value;
|
2004-06-09 17:53:05 +00:00
|
|
|
if (value == IntPtr.Zero)
|
|
|
|
return;
|
|
|
|
Objects [value] = new WeakReference (this);
|
2001-09-19 02:04:57 +00:00
|
|
|
}
|
2002-11-10 10:09:05 +00:00
|
|
|
}
|
2001-09-19 02:04:57 +00:00
|
|
|
|
2004-03-12 21:18:11 +00:00
|
|
|
[DllImport("glibsharpglue")]
|
2003-12-15 16:59:25 +00:00
|
|
|
private static extern IntPtr gtksharp_get_type_id (IntPtr obj);
|
2002-11-10 10:09:05 +00:00
|
|
|
|
2004-05-27 16:35:21 +00:00
|
|
|
public static GLib.GType GType {
|
2002-08-09 03:56:27 +00:00
|
|
|
get {
|
2004-05-17 17:52:00 +00:00
|
|
|
return GType.Object;
|
2002-08-09 03:56:27 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-03-12 21:18:11 +00:00
|
|
|
[DllImport("glibsharpglue")]
|
2003-12-03 20:23:25 +00:00
|
|
|
static extern IntPtr gtksharp_get_type_name (IntPtr raw);
|
|
|
|
|
2004-05-17 17:52:00 +00:00
|
|
|
protected string TypeName {
|
2003-12-03 20:23:25 +00:00
|
|
|
get {
|
|
|
|
return Marshal.PtrToStringAnsi (gtksharp_get_type_name (Raw));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-05-17 17:52:00 +00:00
|
|
|
internal GLib.GType NativeType {
|
2004-04-12 15:54:57 +00:00
|
|
|
get {
|
2004-05-18 05:06:10 +00:00
|
|
|
return LookupGType ();
|
2004-04-12 15:54:57 +00:00
|
|
|
}
|
2002-11-18 18:55:39 +00:00
|
|
|
}
|
|
|
|
|
2001-10-07 00:41:52 +00:00
|
|
|
public IntPtr Handle {
|
|
|
|
get {
|
|
|
|
return _obj;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-03-16 19:43:04 +00:00
|
|
|
Hashtable before_signals;
|
|
|
|
protected Hashtable BeforeSignals {
|
|
|
|
get {
|
|
|
|
if (before_signals == null)
|
|
|
|
before_signals = new Hashtable ();
|
|
|
|
return before_signals;
|
|
|
|
}
|
|
|
|
}
|
2001-09-27 18:39:53 +00:00
|
|
|
|
2004-03-16 19:43:04 +00:00
|
|
|
Hashtable after_signals;
|
|
|
|
protected Hashtable AfterSignals {
|
2001-09-19 11:37:15 +00:00
|
|
|
get {
|
2004-03-16 19:43:04 +00:00
|
|
|
if (after_signals == null)
|
|
|
|
after_signals = new Hashtable ();
|
|
|
|
return after_signals;
|
2001-09-19 02:04:57 +00:00
|
|
|
}
|
|
|
|
}
|
2001-09-19 04:47:48 +00:00
|
|
|
|
2004-03-16 19:43:04 +00:00
|
|
|
EventHandlerList before_handlers;
|
|
|
|
protected EventHandlerList BeforeHandlers {
|
|
|
|
get {
|
|
|
|
if (before_handlers == null)
|
|
|
|
before_handlers = new EventHandlerList ();
|
|
|
|
return before_handlers;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
EventHandlerList after_handlers;
|
|
|
|
protected EventHandlerList AfterHandlers {
|
|
|
|
get {
|
|
|
|
if (after_handlers == null)
|
|
|
|
after_handlers = new EventHandlerList ();
|
|
|
|
return after_handlers;
|
|
|
|
}
|
|
|
|
}
|
2001-10-31 01:31:05 +00:00
|
|
|
|
|
|
|
public override int GetHashCode ()
|
|
|
|
{
|
|
|
|
return Handle.GetHashCode ();
|
|
|
|
}
|
|
|
|
|
2003-07-04 07:13:19 +00:00
|
|
|
public Hashtable Data {
|
|
|
|
get {
|
|
|
|
if (data == null)
|
|
|
|
data = new Hashtable ();
|
|
|
|
|
|
|
|
return data;
|
|
|
|
}
|
2001-09-19 02:04:57 +00:00
|
|
|
}
|
2001-09-20 04:03:27 +00:00
|
|
|
|
2003-02-22 04:34:56 +00:00
|
|
|
[DllImport("libgobject-2.0-0.dll")]
|
2004-04-12 15:54:57 +00:00
|
|
|
static extern void g_object_get_property (IntPtr obj, string name, ref GLib.Value val);
|
2004-03-16 19:43:04 +00:00
|
|
|
|
2004-04-12 15:54:57 +00:00
|
|
|
protected GLib.Value GetProperty (string name)
|
2001-09-28 18:23:14 +00:00
|
|
|
{
|
2004-04-12 15:54:57 +00:00
|
|
|
Value val = new Value (this, name);
|
|
|
|
g_object_get_property (Raw, name, ref val);
|
|
|
|
return val;
|
2001-09-28 18:23:14 +00:00
|
|
|
}
|
|
|
|
|
2003-02-22 04:34:56 +00:00
|
|
|
[DllImport("libgobject-2.0-0.dll")]
|
2004-04-12 15:54:57 +00:00
|
|
|
static extern void g_object_set_property (IntPtr obj, string name, ref GLib.Value val);
|
2004-03-16 19:43:04 +00:00
|
|
|
|
2004-04-12 15:54:57 +00:00
|
|
|
protected void SetProperty (string name, GLib.Value val)
|
2002-01-12 02:08:16 +00:00
|
|
|
{
|
2004-04-12 15:54:57 +00:00
|
|
|
g_object_set_property (Raw, name, ref val);
|
2002-01-12 02:08:16 +00:00
|
|
|
}
|
|
|
|
|
2004-03-12 21:18:11 +00:00
|
|
|
[DllImport("glibsharpglue")]
|
2003-12-15 16:59:25 +00:00
|
|
|
static extern void gtksharp_override_virtual_method (IntPtr gtype, string name, Delegate cb);
|
|
|
|
|
|
|
|
protected static void OverrideVirtualMethod (GType gtype, string name, Delegate cb)
|
|
|
|
{
|
|
|
|
gtksharp_override_virtual_method (gtype.Val, name, cb);
|
|
|
|
}
|
2003-12-10 22:56:49 +00:00
|
|
|
|
2003-12-09 05:01:22 +00:00
|
|
|
[DllImport("libgobject-2.0-0.dll")]
|
2004-04-12 15:54:57 +00:00
|
|
|
protected static extern void g_signal_chain_from_overridden (IntPtr args, ref GLib.Value retval);
|
2003-12-09 05:01:22 +00:00
|
|
|
|
2004-03-12 21:18:11 +00:00
|
|
|
[DllImport("glibsharpglue")]
|
2002-09-01 04:46:38 +00:00
|
|
|
static extern bool gtksharp_is_object (IntPtr obj);
|
|
|
|
|
|
|
|
internal static bool IsObject (IntPtr obj)
|
|
|
|
{
|
|
|
|
return gtksharp_is_object (obj);
|
|
|
|
}
|
2002-11-10 10:09:05 +00:00
|
|
|
|
2004-03-12 21:18:11 +00:00
|
|
|
[DllImport("glibsharpglue")]
|
2002-11-10 10:09:05 +00:00
|
|
|
static extern int gtksharp_object_get_ref_count (IntPtr obj);
|
|
|
|
|
2004-05-17 17:52:00 +00:00
|
|
|
protected int RefCount {
|
2002-11-10 10:09:05 +00:00
|
|
|
get {
|
|
|
|
return gtksharp_object_get_ref_count (Handle);
|
|
|
|
}
|
|
|
|
}
|
2001-09-19 02:04:57 +00:00
|
|
|
}
|
|
|
|
}
|