2002-11-10 10:09:05 +00:00
|
|
|
/* type.c : GType utilities
|
2002-08-08 04:48:41 +00:00
|
|
|
*
|
|
|
|
* Author: Mike Kestner <mkestner@speakeasy.net>
|
|
|
|
*
|
2004-06-25 18:42:19 +00:00
|
|
|
* Copyright (c) 2002 Mike Kestner
|
|
|
|
*
|
|
|
|
* 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.
|
2002-08-08 04:48:41 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <glib-object.h>
|
2002-12-25 00:36:00 +00:00
|
|
|
#include <stdio.h>
|
2002-08-08 04:48:41 +00:00
|
|
|
|
2003-03-22 17:37:43 +00:00
|
|
|
/* Forward declarations */
|
|
|
|
G_CONST_RETURN gchar *gtksharp_get_type_name (GObject *obj);
|
|
|
|
|
|
|
|
gboolean gtksharp_is_object (gpointer obj);
|
|
|
|
|
|
|
|
GType gtksharp_get_type_id (GObject *obj);
|
|
|
|
|
|
|
|
GType gtksharp_get_parent_type (GType typ);
|
|
|
|
|
|
|
|
G_CONST_RETURN gchar *gtksharp_get_type_name_for_id (GType typ);
|
|
|
|
|
|
|
|
GType gtksharp_register_type (gchar *name, GType parent);
|
2003-12-08 18:59:16 +00:00
|
|
|
|
|
|
|
void gtksharp_override_virtual_method (GType g_type, const gchar *name, GCallback callback);
|
2003-03-22 17:37:43 +00:00
|
|
|
/* */
|
|
|
|
|
|
|
|
G_CONST_RETURN gchar *
|
2002-08-08 04:48:41 +00:00
|
|
|
gtksharp_get_type_name (GObject *obj)
|
|
|
|
{
|
|
|
|
return G_OBJECT_TYPE_NAME (obj);
|
|
|
|
}
|
|
|
|
|
2002-09-01 04:46:38 +00:00
|
|
|
gboolean
|
|
|
|
gtksharp_is_object (gpointer obj)
|
|
|
|
{
|
|
|
|
return G_IS_OBJECT (obj);
|
|
|
|
}
|
2002-08-08 04:48:41 +00:00
|
|
|
|
2002-10-05 05:12:00 +00:00
|
|
|
GType
|
|
|
|
gtksharp_get_type_id (GObject *obj)
|
|
|
|
{
|
|
|
|
return G_TYPE_FROM_INSTANCE (obj);
|
|
|
|
}
|
|
|
|
|
|
|
|
GType
|
|
|
|
gtksharp_get_parent_type (GType typ)
|
|
|
|
{
|
|
|
|
return g_type_parent (typ);
|
|
|
|
}
|
|
|
|
|
2003-03-22 17:37:43 +00:00
|
|
|
G_CONST_RETURN gchar *
|
2002-10-05 05:12:00 +00:00
|
|
|
gtksharp_get_type_name_for_id (GType typ)
|
|
|
|
{
|
|
|
|
return g_type_name (typ);
|
|
|
|
}
|
2002-12-25 00:36:00 +00:00
|
|
|
|
|
|
|
GType
|
|
|
|
gtksharp_register_type (gchar *name, GType parent)
|
|
|
|
{
|
|
|
|
GTypeQuery query;
|
|
|
|
GTypeInfo info = {0, NULL, NULL, NULL, NULL, NULL, 0, 0, NULL, NULL };
|
|
|
|
|
|
|
|
g_type_query (parent, &query);
|
|
|
|
|
|
|
|
info.class_size = query.class_size;
|
|
|
|
info.instance_size = query.instance_size;
|
|
|
|
|
|
|
|
return g_type_register_static (parent, name, &info, 0);
|
|
|
|
}
|
2003-12-08 18:59:16 +00:00
|
|
|
|
|
|
|
void
|
|
|
|
gtksharp_override_virtual_method (GType g_type, const gchar *name, GCallback callback)
|
|
|
|
{
|
2004-01-20 16:06:19 +00:00
|
|
|
guint id;
|
|
|
|
GClosure *closure;
|
2003-12-30 22:09:42 +00:00
|
|
|
if (g_type_class_peek (g_type) == NULL)
|
|
|
|
g_type_class_ref (g_type);
|
2004-01-20 16:06:19 +00:00
|
|
|
id = g_signal_lookup (name, g_type);
|
|
|
|
closure = g_cclosure_new (callback, NULL, NULL);
|
2003-12-08 18:59:16 +00:00
|
|
|
g_signal_override_class_closure (id, g_type, closure);
|
|
|
|
}
|