b9cee94a37
* gnome/Canvas.custom : PixelsPerUnit prop. * gnome/Gnome.metadata : hide Canvas.SetPixelsPerUnit. * gnome/glue/Makefile.am : get_pixels_per_unit. * gnome/glue/canvas.c : get_pixels_per_unit. * gtk/Container.custom : OnForall virtual method impl. * gtk/glue/Makefile.am : add container.c * gtk/glue/container.c : virtual method glue for forall. * gtk/glue/makefile.win32 : add container.o svn path=/trunk/gtk-sharp/; revision=26962
30 lines
875 B
C
30 lines
875 B
C
/* container.c : Glue for GtkContainer
|
|
*
|
|
* Author: Mike Kestner (mkestner@ximian.com)
|
|
*
|
|
* Copyright (C) 2004 Novell, Inc.
|
|
*/
|
|
|
|
#include <gtk/gtkcontainer.h>
|
|
|
|
void gtksharp_container_base_forall (GtkContainer *container, gboolean include_internals, GtkCallback cb, gpointer data);
|
|
|
|
void
|
|
gtksharp_container_base_forall (GtkContainer *container, gboolean include_internals, GtkCallback cb, gpointer data)
|
|
{
|
|
GtkContainerClass *parent = g_type_class_peek_parent (G_OBJECT_GET_CLASS (container));
|
|
if (parent->forall)
|
|
(*parent->forall) (container, include_internals, cb, data);
|
|
}
|
|
|
|
void gtksharp_container_override_forall (GType gtype, gpointer cb);
|
|
|
|
void
|
|
gtksharp_container_override_forall (GType gtype, gpointer cb)
|
|
{
|
|
GtkContainerClass *klass = g_type_class_peek (gtype);
|
|
if (!klass)
|
|
klass = g_type_class_ref (gtype);
|
|
((GtkContainerClass *) klass)->forall = cb;
|
|
}
|
|
|