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
|
|
|
|
2004-08-17 20:43:49 +00:00
|
|
|
[DllImport("libpango-1.0-0.dll")]
|
|
|
|
static extern void pango_layout_set_markup_with_accel (IntPtr raw, string markup, int length, uint accel_marker, out uint accel_char);
|
|
|
|
|
|
|
|
public void SetMarkupWithAccel (string markup, char accel_marker, out char accel_char)
|
|
|
|
{
|
|
|
|
uint ucs4_accel_char;
|
|
|
|
pango_layout_set_markup_with_accel (Handle, markup, -1, GLib.Marshaller.CharToGUnichar (accel_marker), out ucs4_accel_char);
|
|
|
|
accel_char = GLib.Marshaller.GUnicharToChar (ucs4_accel_char);
|
|
|
|
}
|
|
|
|
|
|
|
|
[DllImport("libglib-2.0-0.dll")]
|
|
|
|
static extern void g_free (IntPtr raw);
|
|
|
|
|
|
|
|
[DllImport("libpango-1.0-0.dll")]
|
|
|
|
static extern void pango_layout_get_log_attrs (IntPtr raw, out IntPtr attrs, out int n_attrs);
|
|
|
|
|
|
|
|
public LogAttr [] LogAttrs {
|
|
|
|
get {
|
|
|
|
int count;
|
|
|
|
IntPtr array_ptr;
|
|
|
|
pango_layout_get_log_attrs (Handle, out array_ptr, out count);
|
|
|
|
if (array_ptr == IntPtr.Zero)
|
|
|
|
return new LogAttr [0];
|
|
|
|
LogAttr [] result = new LogAttr [count];
|
|
|
|
for (int i = 0; i < count; i++) {
|
|
|
|
IntPtr fam_ptr = Marshal.ReadIntPtr (new IntPtr ((int)array_ptr + i * IntPtr.Size));
|
|
|
|
result [i] = LogAttr.New (fam_ptr);
|
|
|
|
}
|
|
|
|
|
|
|
|
g_free (array_ptr);
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-08-18 16:18:26 +00:00
|
|
|
[DllImport ("libpango-1.0-0.dll")]
|
|
|
|
static extern void pango_layout_set_text (IntPtr raw, string text, int length);
|
|
|
|
|
|
|
|
public void SetText (string text) {
|
|
|
|
pango_layout_set_text (Handle, text, -1);
|
|
|
|
}
|
|
|
|
|
|
|
|
[DllImport ("libpango-1.0-0.dll")]
|
|
|
|
static extern void pango_layout_set_markup (IntPtr raw, string markup, int length);
|
|
|
|
|
|
|
|
public void SetMarkup (string markup) {
|
|
|
|
pango_layout_set_markup (Handle, markup, -1);
|
|
|
|
}
|