blob: cc6860b260d2a54f12e79ae17de479d520bce4eb [file] [log] [blame]
Werner Lembergf13516c2005-03-03 17:09:08 +00001/***************************************************************************/
2/* */
3/* afglobal.h */
4/* */
5/* Auto-fitter routines to compute global hinting values */
6/* (specification). */
7/* */
Werner Lemberg90f04872011-03-28 15:41:49 +02008/* Copyright 2003-2005, 2007, 2009, 2011 by */
Werner Lembergf13516c2005-03-03 17:09:08 +00009/* David Turner, Robert Wilhelm, and Werner Lemberg. */
10/* */
11/* This file is part of the FreeType project, and may only be used, */
12/* modified, and distributed under the terms of the FreeType project */
13/* license, LICENSE.TXT. By continuing to use, modify, or distribute */
14/* this file you indicate that you have read the license and */
15/* understand and accept it fully. */
16/* */
17/***************************************************************************/
18
19
Werner Lemberg90f04872011-03-28 15:41:49 +020020#ifndef __AFGLOBAL_H__
21#define __AFGLOBAL_H__
David Turnerff9d2412003-11-23 21:39:51 +000022
Werner Lembergf13516c2005-03-03 17:09:08 +000023
David Turnerff9d2412003-11-23 21:39:51 +000024#include "aftypes.h"
25
Werner Lembergf13516c2005-03-03 17:09:08 +000026
David Turnerff9d2412003-11-23 21:39:51 +000027FT_BEGIN_HEADER
28
Werner Lembergf13516c2005-03-03 17:09:08 +000029
30 /************************************************************************/
31 /************************************************************************/
32 /***** *****/
33 /***** F A C E G L O B A L S *****/
34 /***** *****/
35 /************************************************************************/
36 /************************************************************************/
David Turnerff9d2412003-11-23 21:39:51 +000037
38
Werner Lembergf13516c2005-03-03 17:09:08 +000039 /*
40 * model the global hints data for a given face, decomposed into
41 * script-specific items
42 */
David Turnerff9d2412003-11-23 21:39:51 +000043 typedef struct AF_FaceGlobalsRec_* AF_FaceGlobals;
David Turner8ccb4552004-01-16 09:51:00 +000044
David Turnerff9d2412003-11-23 21:39:51 +000045
46 FT_LOCAL( FT_Error )
47 af_face_globals_new( FT_Face face,
48 AF_FaceGlobals *aglobals );
49
David Turnerff9d2412003-11-23 21:39:51 +000050 FT_LOCAL( FT_Error )
51 af_face_globals_get_metrics( AF_FaceGlobals globals,
52 FT_UInt gindex,
David Turnerb7920172007-06-11 05:37:35 +000053 FT_UInt options,
David Turnerff9d2412003-11-23 21:39:51 +000054 AF_ScriptMetrics *ametrics );
55
56 FT_LOCAL( void )
57 af_face_globals_free( AF_FaceGlobals globals );
58
Werner Lemberg8b84c9d2009-04-27 19:40:35 +020059 FT_LOCAL_DEF( FT_Bool )
60 af_face_globals_is_digit( AF_FaceGlobals globals,
61 FT_UInt gindex );
62
63 /* */
David Turner8ccb4552004-01-16 09:51:00 +000064
Werner Lembergf13516c2005-03-03 17:09:08 +000065
David Turnerff9d2412003-11-23 21:39:51 +000066FT_END_HEADER
67
Werner Lemberg90f04872011-03-28 15:41:49 +020068#endif /* __AFGLOBAL_H__ */
Werner Lembergf13516c2005-03-03 17:09:08 +000069
70
71/* END */