2001-09-19 02:04:57 +00:00
|
|
|
// Object.cs - GObject class wrapper implementation
|
|
|
|
//
|
2001-09-27 17:17:33 +00:00
|
|
|
// Authors: Bob Smith <bob@thestuff.net>
|
|
|
|
// Mike Kestner <mkestner@speakeasy.net>
|
2001-09-19 02:04:57 +00:00
|
|
|
//
|
2001-09-27 17:17:33 +00:00
|
|
|
// (c) 2001 Bob Smith and Mike Kestner
|
2001-09-19 02:04:57 +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;
|
2001-09-19 02:04:57 +00:00
|
|
|
using System.Runtime.InteropServices;
|
|
|
|
|
2001-09-27 18:39:53 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Object Class
|
|
|
|
/// </summary>
|
|
|
|
///
|
|
|
|
/// <remarks>
|
|
|
|
/// Wrapper class for GObject.
|
|
|
|
/// </remarks>
|
|
|
|
|
2002-09-04 05:25:58 +00:00
|
|
|
public class Object : IWrapper, IDisposable {
|
2001-09-27 18:39:53 +00:00
|
|
|
|
|
|
|
// Private class and instance members
|
|
|
|
IntPtr _obj;
|
|
|
|
EventHandlerList _events;
|
2002-09-04 05:25:58 +00:00
|
|
|
bool disposed = false;
|
2001-09-27 18:39:53 +00:00
|
|
|
Hashtable Data;
|
|
|
|
static Hashtable Objects = new Hashtable();
|
|
|
|
|
2002-09-04 05:25:58 +00:00
|
|
|
~Object ()
|
|
|
|
{
|
|
|
|
Dispose ();
|
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Dispose Method
|
|
|
|
/// </summary>
|
|
|
|
///
|
|
|
|
/// <remarks>
|
|
|
|
/// Disposes of the raw object. Only override this if
|
|
|
|
/// the Raw object should not be unref'd when the object
|
|
|
|
/// is garbage collected.
|
|
|
|
/// </remarks>
|
|
|
|
|
|
|
|
public void Dispose ()
|
|
|
|
{
|
|
|
|
if (disposed)
|
|
|
|
return;
|
|
|
|
|
|
|
|
DisposeNative ();
|
|
|
|
disposed = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
[DllImport("gobject-2.0")]
|
|
|
|
static extern void g_object_unref (IntPtr raw);
|
2002-09-12 19:21:46 +00:00
|
|
|
|
2002-09-04 05:25:58 +00:00
|
|
|
protected virtual void DisposeNative ()
|
|
|
|
{
|
|
|
|
if (_obj == IntPtr.Zero)
|
|
|
|
return;
|
|
|
|
|
2002-09-12 19:21:46 +00:00
|
|
|
GC.SuppressFinalize (this);
|
2002-10-19 23:15:05 +00:00
|
|
|
g_object_unref (_obj);
|
2002-09-12 19:21:46 +00:00
|
|
|
_obj = IntPtr.Zero;
|
2002-09-04 05:25:58 +00:00
|
|
|
}
|
|
|
|
|
2002-09-12 05:21:16 +00:00
|
|
|
[DllImport("gobject-2.0")]
|
|
|
|
static extern void g_object_ref (IntPtr raw);
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Ref Method
|
|
|
|
/// </summary>
|
|
|
|
///
|
|
|
|
/// <remarks>
|
|
|
|
/// Increases the reference count on the native object.
|
|
|
|
/// This method is used by generated classes and structs,
|
|
|
|
/// and should not be used in user code.
|
|
|
|
/// </remarks>
|
|
|
|
public virtual void Ref ()
|
|
|
|
{
|
|
|
|
if (_obj == IntPtr.Zero)
|
|
|
|
return;
|
|
|
|
|
|
|
|
g_object_ref (_obj);
|
|
|
|
}
|
|
|
|
|
2001-09-27 18:39:53 +00:00
|
|
|
/// <summary>
|
|
|
|
/// GetObject Shared Method
|
|
|
|
/// </summary>
|
|
|
|
///
|
|
|
|
/// <remarks>
|
|
|
|
/// Used to obtain a CLI typed object associated with a
|
|
|
|
/// given raw object pointer. This method is primarily
|
|
|
|
/// used to wrap object references that are returned
|
|
|
|
/// by either the signal system or raw class methods that
|
|
|
|
/// return GObject references.
|
|
|
|
/// </remarks>
|
|
|
|
///
|
|
|
|
/// <returns>
|
|
|
|
/// The wrapper instance.
|
|
|
|
/// </returns>
|
|
|
|
|
2001-09-19 04:47:48 +00:00
|
|
|
public static Object GetObject(IntPtr o)
|
|
|
|
{
|
2002-10-15 04:07:24 +00:00
|
|
|
Object obj = (Object)Objects[o];
|
2001-09-21 16:24:46 +00:00
|
|
|
if (obj != null) return obj;
|
2002-08-08 04:48:41 +00:00
|
|
|
return GtkSharp.ObjectManager.CreateObject(o);
|
2001-09-19 02:04:57 +00:00
|
|
|
}
|
2001-09-20 04:03:27 +00:00
|
|
|
|
2002-02-03 03:44:10 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Object Constructor
|
|
|
|
/// </summary>
|
|
|
|
///
|
|
|
|
/// <remarks>
|
|
|
|
/// Dummy constructor needed for derived classes.
|
|
|
|
/// </remarks>
|
|
|
|
|
|
|
|
public Object () {}
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Object Constructor
|
|
|
|
/// </summary>
|
|
|
|
///
|
|
|
|
/// <remarks>
|
|
|
|
/// Creates an object from a raw object reference.
|
|
|
|
/// </remarks>
|
|
|
|
|
|
|
|
public Object (IntPtr raw)
|
|
|
|
{
|
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
|
|
|
|
2001-09-27 18:39:53 +00:00
|
|
|
/// <summary>
|
2002-02-19 19:46:44 +00:00
|
|
|
/// Raw Property
|
2001-09-27 18:39:53 +00:00
|
|
|
/// </summary>
|
|
|
|
///
|
|
|
|
/// <remarks>
|
|
|
|
/// The raw GObject reference associated with this wrapper.
|
2001-10-07 00:41:52 +00:00
|
|
|
/// Only subclasses of Object can access this read/write
|
|
|
|
/// property. For public read-only access, use the
|
|
|
|
/// Handle property.
|
2001-09-27 18:39:53 +00:00
|
|
|
/// </remarks>
|
|
|
|
|
2002-02-19 19:46:44 +00:00
|
|
|
protected 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-27 18:39:53 +00:00
|
|
|
Objects [value] = this;
|
2001-09-19 02:04:57 +00:00
|
|
|
_obj = value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-08-09 03:56:27 +00:00
|
|
|
/// <summary>
|
|
|
|
/// GType Property
|
|
|
|
/// </summary>
|
|
|
|
///
|
|
|
|
/// <remarks>
|
|
|
|
/// The type associated with this object class.
|
|
|
|
/// </remarks>
|
|
|
|
|
|
|
|
public static int GType {
|
|
|
|
get {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-10-07 00:41:52 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Handle Property
|
|
|
|
/// </summary>
|
|
|
|
///
|
|
|
|
/// <remarks>
|
|
|
|
/// The raw GObject reference associated with this object.
|
2002-02-19 19:46:44 +00:00
|
|
|
/// Subclasses can use Raw property for read/write
|
2001-10-07 00:41:52 +00:00
|
|
|
/// access.
|
|
|
|
/// </remarks>
|
|
|
|
|
|
|
|
public IntPtr Handle {
|
|
|
|
get {
|
|
|
|
return _obj;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-09-27 18:39:53 +00:00
|
|
|
/// <summary>
|
2002-01-12 02:08:16 +00:00
|
|
|
/// EventList Property
|
2001-09-27 18:39:53 +00:00
|
|
|
/// </summary>
|
|
|
|
///
|
|
|
|
/// <remarks>
|
|
|
|
/// A list object containing all the events for this
|
|
|
|
/// object indexed by the Gtk+ signal name.
|
|
|
|
/// </remarks>
|
|
|
|
|
2002-01-12 02:08:16 +00:00
|
|
|
protected EventHandlerList EventList {
|
2001-09-19 11:37:15 +00:00
|
|
|
get {
|
|
|
|
if (_events == null)
|
|
|
|
_events = new EventHandlerList ();
|
|
|
|
return _events;
|
2001-09-19 02:04:57 +00:00
|
|
|
}
|
|
|
|
}
|
2001-09-19 04:47:48 +00:00
|
|
|
|
2001-10-31 01:31:05 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Equals Method
|
|
|
|
/// </summary>
|
|
|
|
///
|
|
|
|
/// <remarks>
|
|
|
|
/// Checks equivalence of two Objects.
|
|
|
|
/// </remarks>
|
|
|
|
|
|
|
|
public override bool Equals (object o)
|
|
|
|
{
|
|
|
|
if (!(o is Object))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return (Handle == ((Object) o).Handle);
|
|
|
|
}
|
|
|
|
|
2002-10-19 20:03:51 +00:00
|
|
|
public static bool operator == (Object a, Object b)
|
|
|
|
{
|
|
|
|
return a.Equals (b);
|
|
|
|
}
|
|
|
|
|
|
|
|
public static bool operator != (Object a, Object b)
|
|
|
|
{
|
|
|
|
return !a.Equals (b);
|
|
|
|
}
|
|
|
|
|
2001-10-31 01:31:05 +00:00
|
|
|
/// <summary>
|
|
|
|
/// GetHashCode Method
|
|
|
|
/// </summary>
|
|
|
|
///
|
|
|
|
/// <remarks>
|
|
|
|
/// Calculates a hashing value.
|
|
|
|
/// </remarks>
|
|
|
|
|
|
|
|
public override int GetHashCode ()
|
|
|
|
{
|
|
|
|
return Handle.GetHashCode ();
|
|
|
|
}
|
|
|
|
|
2001-09-27 18:39:53 +00:00
|
|
|
/// <summary>
|
|
|
|
/// GetData Method
|
|
|
|
/// </summary>
|
|
|
|
///
|
|
|
|
/// <remarks>
|
|
|
|
/// Accesses arbitrary data storage on the Object.
|
|
|
|
/// </remarks>
|
2001-09-20 04:03:27 +00:00
|
|
|
|
2002-06-05 21:59:10 +00:00
|
|
|
public object GetData (string key)
|
2001-09-20 04:03:27 +00:00
|
|
|
{
|
2001-09-27 18:39:53 +00:00
|
|
|
if (Data == null)
|
2002-06-05 21:59:10 +00:00
|
|
|
return String.Empty;
|
2001-09-27 18:39:53 +00:00
|
|
|
|
|
|
|
return Data [key];
|
2001-09-20 04:03:27 +00:00
|
|
|
}
|
|
|
|
|
2001-09-27 18:39:53 +00:00
|
|
|
/// <summary>
|
|
|
|
/// SetData Method
|
|
|
|
/// </summary>
|
|
|
|
///
|
|
|
|
/// <remarks>
|
|
|
|
/// Stores arbitrary data on the Object.
|
|
|
|
/// </remarks>
|
2001-09-19 02:04:57 +00:00
|
|
|
|
2002-06-05 21:59:10 +00:00
|
|
|
public void SetData (string key, object val)
|
2001-09-19 02:04:57 +00:00
|
|
|
{
|
2001-09-27 18:39:53 +00:00
|
|
|
if (Data == null)
|
|
|
|
Data = new Hashtable ();
|
|
|
|
|
|
|
|
Data [key] = val;
|
2001-09-19 02:04:57 +00:00
|
|
|
}
|
2001-09-20 04:03:27 +00:00
|
|
|
|
2002-06-23 18:49:33 +00:00
|
|
|
[DllImport("gobject-2.0")]
|
|
|
|
static extern void g_object_get_property (
|
|
|
|
IntPtr obj, string name, IntPtr val);
|
|
|
|
|
2001-09-28 18:23:14 +00:00
|
|
|
/// <summary>
|
|
|
|
/// GetProperty Method
|
|
|
|
/// </summary>
|
|
|
|
///
|
|
|
|
/// <remarks>
|
2002-05-02 21:57:41 +00:00
|
|
|
/// Accesses a Value Property.
|
2001-09-28 18:23:14 +00:00
|
|
|
/// </remarks>
|
|
|
|
|
2002-06-05 21:59:10 +00:00
|
|
|
public void GetProperty (String name, GLib.Value val)
|
2001-09-28 18:23:14 +00:00
|
|
|
{
|
2002-06-05 21:59:10 +00:00
|
|
|
g_object_get_property (Raw, name, val.Handle);
|
2001-09-28 18:23:14 +00:00
|
|
|
}
|
|
|
|
|
2002-06-23 18:49:33 +00:00
|
|
|
[DllImport("gobject-2.0")]
|
|
|
|
static extern void g_object_set_property (
|
|
|
|
IntPtr obj, string name, IntPtr val);
|
|
|
|
|
2002-01-12 02:08:16 +00:00
|
|
|
/// <summary>
|
|
|
|
/// SetProperty Method
|
|
|
|
/// </summary>
|
|
|
|
///
|
|
|
|
/// <remarks>
|
2002-05-02 21:57:41 +00:00
|
|
|
/// Accesses a Value Property.
|
2002-01-12 02:08:16 +00:00
|
|
|
/// </remarks>
|
|
|
|
|
2002-05-02 21:57:41 +00:00
|
|
|
public void SetProperty (String name, GLib.Value val)
|
2002-01-12 02:08:16 +00:00
|
|
|
{
|
2002-05-02 21:57:41 +00:00
|
|
|
g_object_set_property (Raw, name, val.Handle);
|
2002-01-12 02:08:16 +00:00
|
|
|
}
|
|
|
|
|
2002-09-01 04:46:38 +00:00
|
|
|
[DllImport("gtksharpglue")]
|
|
|
|
static extern bool gtksharp_is_object (IntPtr obj);
|
|
|
|
|
|
|
|
internal static bool IsObject (IntPtr obj)
|
|
|
|
{
|
|
|
|
return gtksharp_is_object (obj);
|
|
|
|
}
|
2001-09-19 02:04:57 +00:00
|
|
|
}
|
|
|
|
}
|