Ryujinx-GtkSharp/gnome/glue/canvas.c
Mike Kestner b9cee94a37 2004-05-07 Mike Kestner <mkestner@ximian.com>
* 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
2004-05-08 02:14:19 +00:00

17 lines
367 B
C

/* canvas.c : Glue for accessing fields in a GnomeCanvas
*
* Author: Mike Kestner (mkestner@ximian.com)
*
* Copyright (C) 2004 Novell, Inc.
*/
#include <libgnomecanvas/gnome-canvas.h>
gdouble gnomesharp_canvas_get_pixels_per_unit (GnomeCanvas *canvas);
gdouble
gnomesharp_canvas_get_pixels_per_unit (GnomeCanvas *canvas)
{
return canvas->pixels_per_unit;
}