]> git.wh0rd.org - fontconfig.git/blame_incremental - fontconfig/fcfreetype.h
Add FcFreeTypeQueryFace external API. Bug #7311.
[fontconfig.git] / fontconfig / fcfreetype.h
... / ...
CommitLineData
1/*
2 * $RCSId: xc/lib/fontconfig/fontconfig/fcfreetype.h,v 1.2 2002/02/15 06:01:27 keithp Exp $
3 *
4 * Copyright © 2001 Keith Packard
5 *
6 * Permission to use, copy, modify, distribute, and sell this software and its
7 * documentation for any purpose is hereby granted without fee, provided that
8 * the above copyright notice appear in all copies and that both that
9 * copyright notice and this permission notice appear in supporting
10 * documentation, and that the name of Keith Packard not be used in
11 * advertising or publicity pertaining to distribution of the software without
12 * specific, written prior permission. Keith Packard makes no
13 * representations about the suitability of this software for any purpose. It
14 * is provided "as is" without express or implied warranty.
15 *
16 * KEITH PACKARD DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
17 * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
18 * EVENT SHALL KEITH PACKARD BE LIABLE FOR ANY SPECIAL, INDIRECT OR
19 * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
20 * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
21 * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
22 * PERFORMANCE OF THIS SOFTWARE.
23 */
24
25#ifndef _FCFREETYPE_H_
26#define _FCFREETYPE_H_
27#include <ft2build.h>
28#include FT_FREETYPE_H
29
30#ifndef FcPublic
31#define FcPublic
32#endif
33
34_FCFUNCPROTOBEGIN
35
36FcPublic FT_UInt
37FcFreeTypeCharIndex (FT_Face face, FcChar32 ucs4);
38
39FcPublic FcCharSet *
40FcFreeTypeCharSetAndSpacing (FT_Face face, FcBlanks *blanks, int *spacing);
41
42FcPublic FcCharSet *
43FcFreeTypeCharSet (FT_Face face, FcBlanks *blanks);
44
45FcPublic FcResult
46FcPatternGetFTFace (const FcPattern *p, const char *object, int n, FT_Face *f);
47
48FcPublic FcBool
49FcPatternAddFTFace (FcPattern *p, const char *object, const FT_Face f);
50
51FcPublic FcPattern *
52FcFreeTypeQueryFace (const FT_Face face,
53 const FcChar8 *file,
54 int id,
55 FcBlanks *blanks);
56
57_FCFUNCPROTOEND
58
59#endif