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-06-21 Rachel Hestilow <hestilow@ximian.com>
* generator/ClassBase.cs: New base class for classes and interfaces.
* generator/InterfaceGen.cs: Inherit from ClassBase, generate declarations.
* generator/ObjectGen.cs: Move half of this into ClassBase.
* generator/Method.cs: Turn all applicable Get/Set functions into .NET
accessors. Remove redundant == overload and move into Equals, as
it was confusing "!= null".
* generator/Parameters.cs: Alter signature creation to accept "is_set"
option, add support for variable arguments. Add properties "Count",
"IsVarArgs", "VAType".
* generator/Ctor.cs: Fixup for changes in Parameters (indenting,
signature creation).
* generator/Signal.cs: Support generating declarations.
* generator/SymbolTable: Change GetObjectGen to GetClassGen.
* glib/IWrapper.cs: Move "Handle" declaration to here, so
both classes and interfaces can benefit from it.
* glib/Object.cs: Inherit from IWrapper.cs
* parser/Metadata.pm: Support attribute changes on constructors,
methods, signals, and paramater lists.
* parser/gapi2xml.pl: Parse init funcs for interfaces. Ignore "_"
functions here.
* parser/gapi_pp.pl: Remove boxed_type_register check, as it will
be caught in the init funcs.
* parser/Atk.metadata: Added.
* parser/Gtk.metadata: Add all needed signal/method collision
renames. Rename GtkEditable.Editable accessors to IsEditable,
as .NET does not like accessors with the same name as their
declaring type. Tag TreeStore constructor as varargs.
* samples/ButtonApp.cs: s/EmitAdd/Add.
* samples/Menu.cs: s/EmitAdd/Add, s/Activate/Activated.
svn path=/trunk/gtk-sharp/; revision=5394
2002-06-21 17:15:19 +00:00
|
|
|
public class Object : IWrapper {
|
2001-09-27 18:39:53 +00:00
|
|
|
|
|
|
|
// Private class and instance members
|
|
|
|
IntPtr _obj;
|
|
|
|
EventHandlerList _events;
|
|
|
|
Hashtable Data;
|
|
|
|
static Hashtable Objects = new Hashtable();
|
|
|
|
|
|
|
|
/// <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)
|
|
|
|
{
|
2001-09-21 16:24:46 +00:00
|
|
|
Object obj = (Object)Objects[(int)o];
|
|
|
|
if (obj != null) return obj;
|
2001-09-27 17:17:33 +00:00
|
|
|
return null; //FIXME: Call TypeParser here eventually.
|
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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
}
|
2002-06-21 Rachel Hestilow <hestilow@ximian.com>
* generator/ClassBase.cs: New base class for classes and interfaces.
* generator/InterfaceGen.cs: Inherit from ClassBase, generate declarations.
* generator/ObjectGen.cs: Move half of this into ClassBase.
* generator/Method.cs: Turn all applicable Get/Set functions into .NET
accessors. Remove redundant == overload and move into Equals, as
it was confusing "!= null".
* generator/Parameters.cs: Alter signature creation to accept "is_set"
option, add support for variable arguments. Add properties "Count",
"IsVarArgs", "VAType".
* generator/Ctor.cs: Fixup for changes in Parameters (indenting,
signature creation).
* generator/Signal.cs: Support generating declarations.
* generator/SymbolTable: Change GetObjectGen to GetClassGen.
* glib/IWrapper.cs: Move "Handle" declaration to here, so
both classes and interfaces can benefit from it.
* glib/Object.cs: Inherit from IWrapper.cs
* parser/Metadata.pm: Support attribute changes on constructors,
methods, signals, and paramater lists.
* parser/gapi2xml.pl: Parse init funcs for interfaces. Ignore "_"
functions here.
* parser/gapi_pp.pl: Remove boxed_type_register check, as it will
be caught in the init funcs.
* parser/Atk.metadata: Added.
* parser/Gtk.metadata: Add all needed signal/method collision
renames. Rename GtkEditable.Editable accessors to IsEditable,
as .NET does not like accessors with the same name as their
declaring type. Tag TreeStore constructor as varargs.
* samples/ButtonApp.cs: s/EmitAdd/Add.
* samples/Menu.cs: s/EmitAdd/Add, s/Activate/Activated.
svn path=/trunk/gtk-sharp/; revision=5394
2002-06-21 17:15:19 +00:00
|
|
|
set {
|
|
|
|
_obj = value;
|
|
|
|
}
|
2001-10-07 00:41:52 +00:00
|
|
|
}
|
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
|
|
|
/// <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
|
|
|
}
|
|
|
|
|
2001-09-19 02:04:57 +00:00
|
|
|
}
|
|
|
|
}
|