123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113 |
- {
- Pango - an open-source framework for the layout and rendering of
- internationalized text.
- Copyright (C) 1999 Red Hat Software
- This library is free software; you can redistribute it and/or
- modify it under the terms of the GNU Library General Public
- License as published by the Free Software Foundation; either
- version 2 of the License, or (at your option) any later version.
- This library 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
- Library General Public License for more details.
- You should have received a copy of the GNU Library General Public
- License along with this library; if not, write to the
- Free Software Foundation, Inc., 59 Temple Place - Suite 330,
- Boston, MA 02111-1307, USA.
- }
- unit pango; // keep unit name lowercase for kylix
- {$IFDEF FPC}
- {$mode objfpc}
- {$ENDIF}
- {$IFDEF VER140}
- {$DEFINE KYLIX}
- {$ENDIF}
- interface
- uses glib2;
- {$DEFINE PANGO_ENABLE_ENGINE}
- {$DEFINE PANGO_ENABLE_BACKEND}
- const
- {$ifdef win32}
- {$define pangowin}
- pangolib = 'libpango-1.0-0.dll';
- {$IFDEF FPC}
- {$smartlink on}
- {$ENDIF}
- {$else}
- {$ifdef UseCustomLibs}
- pangolib = '';
- {$else}
- pangolib = 'libpango-1.0.so.0';
- {$endif}
- {$endif}
- {$IFNDEF KYLIX}
- {$PACKRECORDS C}
- {$ELSE}
- {$ALIGN 4}
- {$WEAKPACKAGEUNIT}
- {$WARNINGS OFF}
- {$ENDIF}
- {$DEFINE read_forward_definitions}
- type
- // internal types:
- PPangoFontDescription = ^TPangoFontDescription;
- TPangoFontDescription = pointer;
- PPangoAttrList = ^TPangoAttrList;
- TPangoAttrList = pointer;
- PPangoAttrIterator = ^TPangoAttrIterator;
- TPangoAttrIterator = pointer;
- PPangoLayout = ^TPangoLayout;
- TPangoLayout = pointer;
- PPangoLayoutClass = ^TPangoLayoutClass;
- TPangoLayoutClass = pointer;
- PPangoLayoutIter = ^TPangoLayoutIter;
- TPangoLayoutIter = pointer;
- PPangoContext = ^TPangoContext;
- TPangoContext = pointer;
- PPangoContextClass = ^TPangoContextClass;
- TPangoContextClass = pointer;
- PPangoFontsetSimple = ^TPangoFontsetSimple;
- TPangoFontsetSimple = pointer;
- PPangoTabArray = ^TPangoTabArray;
- TPangoTabArray = pointer;
- {$include pangoincludes.inc}
- {$UNDEF read_forward_definitions}
- {$DEFINE read_interface_types}
- {$include pangoincludes.inc}
- {$UNDEF read_interface_types}
- {$DEFINE read_interface_functions}
- {$include pangoincludes.inc}
- {$UNDEF read_interface_functions}
- implementation
- {$DEFINE read_implementation}
- {$include pangoincludes.inc}
- {$UNDEF read_implementation}
- end.
|