2012-08-05 15:51:13 +00:00
|
|
|
// Pango.AttrList.cs - Pango AttrList customizations
|
2008-03-15 03:15:32 +00:00
|
|
|
//
|
|
|
|
// Authors: Mike Kestner <mkestner@novell.com>
|
|
|
|
//
|
|
|
|
// Copyright (c) 2008 Novell, Inc.
|
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
|
2012-08-05 15:51:13 +00:00
|
|
|
namespace Pango {
|
|
|
|
|
|
|
|
using System;
|
|
|
|
using System.Runtime.InteropServices;
|
|
|
|
|
|
|
|
public partial class AttrList {
|
2019-10-02 15:28:33 +00:00
|
|
|
[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
|
2018-01-17 20:31:39 +00:00
|
|
|
delegate IntPtr d_pango_attribute_copy(IntPtr raw);
|
2018-01-18 21:54:45 +00:00
|
|
|
static d_pango_attribute_copy pango_attribute_copy = FuncLoader.LoadFunction<d_pango_attribute_copy>(FuncLoader.GetProcAddress(GLibrary.Load(Library.Pango), "pango_attribute_copy"));
|
2019-10-02 15:28:33 +00:00
|
|
|
[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
|
2018-01-17 20:31:39 +00:00
|
|
|
delegate void d_pango_attr_list_insert(IntPtr raw, IntPtr attr);
|
2018-01-18 21:54:45 +00:00
|
|
|
static d_pango_attr_list_insert pango_attr_list_insert = FuncLoader.LoadFunction<d_pango_attr_list_insert>(FuncLoader.GetProcAddress(GLibrary.Load(Library.Pango), "pango_attr_list_insert"));
|
2008-03-15 03:15:32 +00:00
|
|
|
|
|
|
|
public void Insert (Pango.Attribute attr)
|
|
|
|
{
|
|
|
|
pango_attr_list_insert (Handle, pango_attribute_copy (attr.Handle));
|
|
|
|
}
|
2019-10-02 15:28:33 +00:00
|
|
|
[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
|
2018-01-17 20:31:39 +00:00
|
|
|
delegate void d_pango_attr_list_insert_before(IntPtr raw, IntPtr attr);
|
2018-01-18 21:54:45 +00:00
|
|
|
static d_pango_attr_list_insert_before pango_attr_list_insert_before = FuncLoader.LoadFunction<d_pango_attr_list_insert_before>(FuncLoader.GetProcAddress(GLibrary.Load(Library.Pango), "pango_attr_list_insert_before"));
|
2008-03-15 03:15:32 +00:00
|
|
|
|
|
|
|
public void InsertBefore (Pango.Attribute attr)
|
|
|
|
{
|
|
|
|
pango_attr_list_insert_before (Handle, pango_attribute_copy (attr.Handle));
|
|
|
|
}
|
2012-08-05 15:51:13 +00:00
|
|
|
}
|
|
|
|
}
|
2019-10-02 15:28:33 +00:00
|
|
|
|