Ryujinx-GtkSharp/pango/Layout.custom
Mike Kestner e83c55a242 2004-03-12 Mike Kestner <mkestner@ximian.com>
* */Makefile.am : automakify the build
	* */Makefile.in : kill
	* *.custom : remove System.Drawing dependencies
	* *.cs : remove System.Drawing dependencies
	* *-api.xml : mv to *-api.raw
	* glue/* : mv to lib specific gluelibs for glib, gdk, gtk, and glade.
	* gtk/gtk-symbols : alias GtkType to GType
	* sources/gtk-sharp-sources.xml : create .raw files. They are now
	transformed to .xml files by the metadata compilation step.

svn path=/trunk/gtk-sharp/; revision=23967
2004-03-12 21:18:11 +00:00

27 lines
736 B
Plaintext

// Pango.Layout.custom - Pango Layout class customizations
//
// Authors: Pedro Abelleira Seco <pedroabelleira@yahoo.es>
// Mike Kestner <mkestner@ximian.com>
//
// Copyright (c) 2004 Novell, Inc.
//
// This code is inserted after the automatically generated code.
[DllImport("libpango-1.0-0.dll")]
static extern IntPtr pango_layout_get_lines(IntPtr raw);
public LayoutLine[] Lines {
get {
IntPtr list_ptr = pango_layout_get_lines(Handle);
if (list_ptr == IntPtr.Zero)
return new LayoutLine [0];
GLib.SList list = new GLib.SList(list_ptr, typeof (Pango.LayoutLine));
LayoutLine[] result = new LayoutLine [list.Count];
int i = 0;
foreach (LayoutLine line in list)
result [i] = line;
return result;
}
}