2003-01-07 04:03:48 +00:00
|
|
|
// Pango.Layout.custom - Pango Layout class customizations
|
|
|
|
//
|
2004-02-24 18:00:40 +00:00
|
|
|
// Authors: Pedro Abelleira Seco <pedroabelleira@yahoo.es>
|
|
|
|
// Mike Kestner <mkestner@ximian.com>
|
|
|
|
//
|
|
|
|
// Copyright (c) 2004 Novell, Inc.
|
2003-01-07 04:03:48 +00:00
|
|
|
//
|
|
|
|
// This code is inserted after the automatically generated code.
|
2004-06-25 18:42:19 +00:00
|
|
|
//
|
|
|
|
// This program is free software; you can redistribute it and/or
|
|
|
|
// modify it under the terms of version 2 of the Lesser GNU General
|
|
|
|
// Public License as published by the Free Software Foundation.
|
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
// Lesser General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Lesser General Public
|
|
|
|
// License along with this program; if not, write to the
|
|
|
|
// Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
// Boston, MA 02111-1307, USA.
|
2003-01-07 04:03:48 +00:00
|
|
|
|
2004-02-24 18:00:40 +00:00
|
|
|
[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];
|
2004-06-07 18:59:16 +00:00
|
|
|
GLib.SList list = new GLib.SList(list_ptr, typeof (IntPtr));
|
2004-02-24 18:00:40 +00:00
|
|
|
LayoutLine[] result = new LayoutLine [list.Count];
|
2004-06-07 18:59:16 +00:00
|
|
|
for (int i = 0; i < list.Count; i++)
|
|
|
|
result[i] = new LayoutLine ((IntPtr)list[i]);
|
2004-02-24 18:00:40 +00:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
}
|
2003-01-07 04:03:48 +00:00
|
|
|
|