2002-02-15 00:34:13 +01:00
|
|
|
/*
|
2008-08-12 22:34:24 +02:00
|
|
|
* fontconfig/fontconfig/fcfreetype.h
|
2002-02-15 00:34:13 +01:00
|
|
|
*
|
2004-12-07 02:14:46 +01:00
|
|
|
* Copyright © 2001 Keith Packard
|
2002-02-15 00:34:13 +01:00
|
|
|
*
|
|
|
|
* Permission to use, copy, modify, distribute, and sell this software and its
|
|
|
|
* documentation for any purpose is hereby granted without fee, provided that
|
|
|
|
* the above copyright notice appear in all copies and that both that
|
|
|
|
* copyright notice and this permission notice appear in supporting
|
2010-11-10 22:45:42 +01:00
|
|
|
* documentation, and that the name of the author(s) not be used in
|
2002-02-15 00:34:13 +01:00
|
|
|
* advertising or publicity pertaining to distribution of the software without
|
2010-11-10 22:45:42 +01:00
|
|
|
* specific, written prior permission. The authors make no
|
2002-02-15 00:34:13 +01:00
|
|
|
* representations about the suitability of this software for any purpose. It
|
|
|
|
* is provided "as is" without express or implied warranty.
|
|
|
|
*
|
2009-03-12 21:00:08 +01:00
|
|
|
* THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
|
2002-02-15 00:34:13 +01:00
|
|
|
* INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
|
2009-03-12 21:00:08 +01:00
|
|
|
* EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR
|
2002-02-15 00:34:13 +01:00
|
|
|
* CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
|
|
|
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
|
|
|
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
|
|
* PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _FCFREETYPE_H_
|
|
|
|
#define _FCFREETYPE_H_
|
2003-11-18 08:53:04 +01:00
|
|
|
#include <ft2build.h>
|
|
|
|
#include FT_FREETYPE_H
|
2002-02-15 00:34:13 +01:00
|
|
|
|
2006-09-04 09:47:07 +02:00
|
|
|
#ifndef FcPublic
|
|
|
|
#define FcPublic
|
|
|
|
#endif
|
|
|
|
|
2003-07-20 19:14:47 +02:00
|
|
|
_FCFUNCPROTOBEGIN
|
|
|
|
|
2006-09-04 09:47:07 +02:00
|
|
|
FcPublic FT_UInt
|
2002-02-15 00:34:13 +01:00
|
|
|
FcFreeTypeCharIndex (FT_Face face, FcChar32 ucs4);
|
|
|
|
|
2006-09-04 09:47:07 +02:00
|
|
|
FcPublic FcCharSet *
|
2003-03-28 18:08:35 +01:00
|
|
|
FcFreeTypeCharSetAndSpacing (FT_Face face, FcBlanks *blanks, int *spacing);
|
|
|
|
|
2006-09-04 09:47:07 +02:00
|
|
|
FcPublic FcCharSet *
|
2002-02-15 00:34:13 +01:00
|
|
|
FcFreeTypeCharSet (FT_Face face, FcBlanks *blanks);
|
|
|
|
|
2006-09-04 09:47:07 +02:00
|
|
|
FcPublic FcResult
|
2002-10-11 19:53:03 +02:00
|
|
|
FcPatternGetFTFace (const FcPattern *p, const char *object, int n, FT_Face *f);
|
2002-06-01 01:21:25 +02:00
|
|
|
|
2006-09-04 09:47:07 +02:00
|
|
|
FcPublic FcBool
|
2002-06-01 01:21:25 +02:00
|
|
|
FcPatternAddFTFace (FcPattern *p, const char *object, const FT_Face f);
|
|
|
|
|
2006-12-02 22:22:27 +01:00
|
|
|
FcPublic FcPattern *
|
|
|
|
FcFreeTypeQueryFace (const FT_Face face,
|
|
|
|
const FcChar8 *file,
|
2017-09-13 09:27:03 +02:00
|
|
|
unsigned int id,
|
2006-12-02 22:22:27 +01:00
|
|
|
FcBlanks *blanks);
|
|
|
|
|
2003-07-20 19:14:47 +02:00
|
|
|
_FCFUNCPROTOEND
|
|
|
|
|
2002-02-15 00:34:13 +01:00
|
|
|
#endif
|