mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-26 00:45:41 +00:00
13f42d0b30
* pango/AttrIterator.custom : manually implement SList method. * pango/GlyphItem.custom : manually implement SList method. * pango/Layout.custom : manually implement SList method. * pango/Pango.metadata : hide some SList methods. * pango/pango-api.xml : regen. svn path=/trunk/gtk-sharp/; revision=23410
35 lines
904 B
Plaintext
35 lines
904 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;
|
|
}
|
|
}
|
|
|
|
public System.Drawing.Size Size {
|
|
get {
|
|
int width, height;
|
|
GetSize (out width, out height);
|
|
return new System.Drawing.Size (width, height);
|
|
}
|
|
}
|
|
|