2001-09-19 02:04:57 +00:00
|
|
|
// Object.cs - GObject class wrapper implementation
|
|
|
|
//
|
|
|
|
// Author: Bob Smith <bob@thestuff.net>
|
|
|
|
//
|
|
|
|
// (c) 2001 Bob Smith
|
|
|
|
|
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;
|
|
|
|
|
|
|
|
public class Object {
|
2001-09-20 04:03:27 +00:00
|
|
|
protected static Hashtable Objects = new Hashtable();
|
2001-09-19 04:47:48 +00:00
|
|
|
public static Object GetObject(IntPtr o)
|
|
|
|
{
|
2001-09-21 16:24:46 +00:00
|
|
|
Object obj = (Object)Objects[(int)o];
|
|
|
|
if (obj != null) return obj;
|
|
|
|
return new Object(o); //FIXME: Cast up when we know how.
|
2001-09-19 04:47:48 +00:00
|
|
|
}
|
2001-09-20 04:03:27 +00:00
|
|
|
|
2001-09-19 02:04:57 +00:00
|
|
|
public Object(IntPtr o)
|
|
|
|
{
|
2001-09-20 04:03:27 +00:00
|
|
|
RawObject = o;
|
2001-09-19 02:04:57 +00:00
|
|
|
}
|
2001-09-20 04:03:27 +00:00
|
|
|
|
2001-09-19 11:37:15 +00:00
|
|
|
private IntPtr _obj;
|
2001-09-19 02:04:57 +00:00
|
|
|
|
2001-09-19 11:37:15 +00:00
|
|
|
protected IntPtr RawObject
|
2001-09-19 02:04:57 +00:00
|
|
|
{
|
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-21 16:24:46 +00:00
|
|
|
if ((Object)Objects[(int)value] != null) Objects.Remove((int)value);
|
|
|
|
Objects[(int)value] = this;
|
2001-09-19 02:04:57 +00:00
|
|
|
_obj = value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-09-19 04:47:48 +00:00
|
|
|
private EventHandlerList _events;
|
2001-09-19 02:04:57 +00:00
|
|
|
protected EventHandlerList Events
|
|
|
|
{
|
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-09-20 04:03:27 +00:00
|
|
|
|
2001-09-19 11:37:15 +00:00
|
|
|
[DllImport("gobject-1.3")]
|
2001-09-19 02:04:57 +00:00
|
|
|
static extern IntPtr g_object_get_data (
|
2001-09-20 04:03:27 +00:00
|
|
|
IntPtr obj,
|
2001-09-19 02:04:57 +00:00
|
|
|
String key );
|
2001-09-20 04:03:27 +00:00
|
|
|
|
|
|
|
public IntPtr GetRawData (String key)
|
|
|
|
{
|
|
|
|
return g_object_get_data (_obj, key);
|
|
|
|
}
|
|
|
|
|
2001-09-19 11:37:15 +00:00
|
|
|
[DllImport("gobject-1.3")]
|
2001-09-19 02:04:57 +00:00
|
|
|
static extern void g_object_set_data (
|
2001-09-20 04:03:27 +00:00
|
|
|
IntPtr obj,
|
2001-09-19 02:04:57 +00:00
|
|
|
String key,
|
|
|
|
IntPtr data );
|
|
|
|
|
2001-09-20 04:03:27 +00:00
|
|
|
public void SetRawData (String key, IntPtr value)
|
2001-09-19 02:04:57 +00:00
|
|
|
{
|
2001-09-20 04:03:27 +00:00
|
|
|
g_object_set_data (_obj, key, value);
|
2001-09-19 02:04:57 +00:00
|
|
|
}
|
2001-09-20 04:03:27 +00:00
|
|
|
|
|
|
|
/* [DllImport("gtk-1.3")]
|
2001-09-19 04:47:48 +00:00
|
|
|
static extern void g_object_set_data_full (
|
2001-09-20 04:03:27 +00:00
|
|
|
IntPtr obj,
|
2001-09-19 04:47:48 +00:00
|
|
|
String key,
|
|
|
|
IntPtr data,
|
|
|
|
DestroyNotify destroy );
|
2001-09-19 02:04:57 +00:00
|
|
|
|
|
|
|
|
|
|
|
void (*GObjectGetPropertyFunc) (GObject *object,
|
|
|
|
guint property_id,
|
|
|
|
GValue *value,
|
|
|
|
GParamSpec *pspec);
|
|
|
|
void (*GObjectSetPropertyFunc) (GObject *object,
|
|
|
|
guint property_id,
|
|
|
|
const GValue *value,
|
|
|
|
GParamSpec *pspec);
|
|
|
|
void (*GObjectFinalizeFunc) (GObject *object);
|
|
|
|
#define G_TYPE_IS_OBJECT (type)
|
|
|
|
#define G_OBJECT (object)
|
|
|
|
#define G_IS_OBJECT (object)
|
|
|
|
#define G_OBJECT_CLASS (class)
|
|
|
|
#define G_IS_OBJECT_CLASS (class)
|
|
|
|
#define G_OBJECT_GET_CLASS (object)
|
|
|
|
#define G_OBJECT_TYPE (object)
|
|
|
|
#define G_OBJECT_TYPE_NAME (object)
|
|
|
|
#define G_OBJECT_CLASS_TYPE (class)
|
|
|
|
#define G_OBJECT_CLASS_NAME (class)
|
|
|
|
#define G_VALUE_HOLDS_OBJECT (value)
|
|
|
|
void g_object_class_install_property (GObjectClass *oclass,
|
|
|
|
guint property_id,
|
|
|
|
GParamSpec *pspec);
|
|
|
|
GParamSpec* g_object_class_find_property (GObjectClass *oclass,
|
|
|
|
const gchar *property_name);
|
|
|
|
GParamSpec** g_object_class_list_properties (GObjectClass *oclass,
|
|
|
|
guint *n_properties);
|
|
|
|
gpointer g_object_new (GType object_type,
|
|
|
|
const gchar *first_property_name,
|
|
|
|
...);
|
|
|
|
gpointer g_object_newv (GType object_type,
|
|
|
|
guint n_parameters,
|
|
|
|
GParameter *parameters);
|
|
|
|
gpointer g_object_ref (gpointer object);
|
|
|
|
void g_object_unref (gpointer object);
|
|
|
|
void g_object_weak_ref (GObject *object,
|
|
|
|
GWeakNotify notify,
|
|
|
|
gpointer data);
|
|
|
|
void g_object_weak_unref (GObject *object,
|
|
|
|
GWeakNotify notify,
|
|
|
|
gpointer data);
|
|
|
|
void g_object_add_weak_pointer (GObject *object,
|
|
|
|
gpointer *weak_pointer_location);
|
|
|
|
void g_object_remove_weak_pointer (GObject *object,
|
|
|
|
gpointer *weak_pointer_location);
|
|
|
|
gpointer g_object_connect (gpointer object,
|
|
|
|
const gchar *signal_spec,
|
|
|
|
...);
|
|
|
|
void g_object_disconnect (gpointer object,
|
|
|
|
const gchar *signal_spec,
|
|
|
|
...);
|
|
|
|
void g_object_set (gpointer object,
|
|
|
|
const gchar *first_property_name,
|
|
|
|
...);
|
|
|
|
void g_object_get (gpointer object,
|
|
|
|
const gchar *first_property_name,
|
|
|
|
...);
|
|
|
|
void g_object_notify (GObject *object,
|
|
|
|
const gchar *property_name);
|
|
|
|
void g_object_freeze_notify (GObject *object);
|
|
|
|
void g_object_thaw_notify (GObject *object);
|
|
|
|
void g_object_set_data_full (GObject *object,
|
|
|
|
const gchar *key,
|
|
|
|
gpointer data,
|
|
|
|
GDestroyNotify destroy);
|
|
|
|
gpointer g_object_steal_data (GObject *object,
|
|
|
|
const gchar *key);
|
|
|
|
gpointer g_object_get_qdata (GObject *object,
|
|
|
|
GQuark quark);
|
|
|
|
void g_object_set_qdata (GObject *object,
|
|
|
|
GQuark quark,
|
|
|
|
gpointer data);
|
|
|
|
void g_object_set_qdata_full (GObject *object,
|
|
|
|
GQuark quark,
|
|
|
|
gpointer data,
|
|
|
|
GDestroyNotify destroy);
|
|
|
|
gpointer g_object_steal_qdata (GObject *object,
|
|
|
|
GQuark quark);
|
|
|
|
void g_object_set_property (GObject *object,
|
|
|
|
const gchar *property_name,
|
|
|
|
const GValue *value);
|
|
|
|
void g_object_get_property (GObject *object,
|
|
|
|
const gchar *property_name,
|
|
|
|
GValue *value);
|
|
|
|
GObject* g_object_new_valist (GType object_type,
|
|
|
|
const gchar *first_property_name,
|
|
|
|
va_list var_args);
|
|
|
|
void g_object_set_valist (GObject *object,
|
|
|
|
const gchar *first_property_name,
|
|
|
|
va_list var_args);
|
|
|
|
void g_object_get_valist (GObject *object,
|
|
|
|
const gchar *first_property_name,
|
|
|
|
va_list var_args);
|
|
|
|
void g_object_watch_closure (GObject *object,
|
|
|
|
GClosure *closure);
|
|
|
|
void g_object_run_dispose (GObject *object);
|
|
|
|
void g_value_set_object (GValue *value,
|
|
|
|
gpointer v_object);
|
|
|
|
gpointer g_value_get_object (const GValue *value);
|
|
|
|
GObject* g_value_dup_object (const GValue *value);
|
|
|
|
#define G_OBJECT_WARN_INVALID_PROPERTY_ID(object, property_id, pspec)
|
|
|
|
*/
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|