mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-25 15:05:36 +00:00
e83c55a242
* */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
27 lines
736 B
Plaintext
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;
|
|
}
|
|
}
|
|
|