2000-07-08 21:51:42 +02:00
|
|
|
/***************************************************************************/
|
|
|
|
/* */
|
2000-10-28 19:10:06 +02:00
|
|
|
/* t1objs.h */
|
2000-07-08 21:51:42 +02:00
|
|
|
/* */
|
2000-10-28 19:10:06 +02:00
|
|
|
/* Type 1 objects manager (specification). */
|
2000-07-08 21:51:42 +02:00
|
|
|
/* */
|
|
|
|
/* Copyright 1996-2000 by */
|
|
|
|
/* David Turner, Robert Wilhelm, and Werner Lemberg. */
|
|
|
|
/* */
|
|
|
|
/* This file is part of the FreeType project, and may only be used, */
|
|
|
|
/* modified, and distributed under the terms of the FreeType project */
|
|
|
|
/* license, LICENSE.TXT. By continuing to use, modify, or distribute */
|
|
|
|
/* this file you indicate that you have read the license and */
|
|
|
|
/* understand and accept it fully. */
|
|
|
|
/* */
|
|
|
|
/***************************************************************************/
|
|
|
|
|
2000-01-27 15:02:04 +01:00
|
|
|
|
2000-12-09 01:45:38 +01:00
|
|
|
#ifndef __T1OBJS_H__
|
|
|
|
#define __T1OBJS_H__
|
2000-01-27 15:02:04 +01:00
|
|
|
|
2000-12-08 17:17:16 +01:00
|
|
|
|
2000-12-08 03:42:29 +01:00
|
|
|
#include <ft2build.h>
|
|
|
|
#include FT_INTERNAL_OBJECTS_H
|
|
|
|
#include FT_CONFIG_CONFIG_H
|
|
|
|
#include FT_INTERNAL_TYPE1_TYPES_H
|
2000-01-27 15:02:04 +01:00
|
|
|
|
2000-12-08 17:17:16 +01:00
|
|
|
|
2000-12-08 03:42:29 +01:00
|
|
|
FT_BEGIN_HEADER
|
2000-01-27 15:02:04 +01:00
|
|
|
|
2000-12-08 17:17:16 +01:00
|
|
|
|
2000-01-27 15:02:04 +01:00
|
|
|
/* The following structures must be defined by the hinter */
|
2000-10-28 19:10:06 +02:00
|
|
|
typedef struct T1_Size_Hints_ T1_Size_Hints;
|
|
|
|
typedef struct T1_Glyph_Hints_ T1_Glyph_Hints;
|
2000-01-27 15:02:04 +01:00
|
|
|
|
2000-07-08 21:51:42 +02:00
|
|
|
|
|
|
|
/*************************************************************************/
|
|
|
|
/* */
|
|
|
|
/* <Type> */
|
2000-10-28 19:10:06 +02:00
|
|
|
/* T1_Driver */
|
2000-07-08 21:51:42 +02:00
|
|
|
/* */
|
|
|
|
/* <Description> */
|
|
|
|
/* A handle to a Type 1 driver object. */
|
|
|
|
/* */
|
2000-10-28 19:10:06 +02:00
|
|
|
typedef struct T1_DriverRec_ *T1_Driver;
|
2000-01-27 15:02:04 +01:00
|
|
|
|
|
|
|
|
2000-07-08 21:51:42 +02:00
|
|
|
/*************************************************************************/
|
|
|
|
/* */
|
|
|
|
/* <Type> */
|
2000-10-28 19:10:06 +02:00
|
|
|
/* T1_Size */
|
2000-07-08 21:51:42 +02:00
|
|
|
/* */
|
|
|
|
/* <Description> */
|
|
|
|
/* A handle to a Type 1 size object. */
|
|
|
|
/* */
|
2000-10-28 19:10:06 +02:00
|
|
|
typedef struct T1_SizeRec_* T1_Size;
|
2000-01-27 15:02:04 +01:00
|
|
|
|
|
|
|
|
2000-07-08 21:51:42 +02:00
|
|
|
/*************************************************************************/
|
|
|
|
/* */
|
|
|
|
/* <Type> */
|
2000-10-28 19:10:06 +02:00
|
|
|
/* T1_GlyphSlot */
|
2000-07-08 21:51:42 +02:00
|
|
|
/* */
|
|
|
|
/* <Description> */
|
|
|
|
/* A handle to a Type 1 glyph slot object. */
|
|
|
|
/* */
|
2000-10-28 19:10:06 +02:00
|
|
|
typedef struct T1_GlyphSlotRec_* T1_GlyphSlot;
|
2000-01-27 15:02:04 +01:00
|
|
|
|
|
|
|
|
2000-07-08 21:51:42 +02:00
|
|
|
/*************************************************************************/
|
|
|
|
/* */
|
|
|
|
/* <Type> */
|
2000-10-28 19:10:06 +02:00
|
|
|
/* T1_CharMap */
|
2000-07-08 21:51:42 +02:00
|
|
|
/* */
|
|
|
|
/* <Description> */
|
|
|
|
/* A handle to a Type 1 character mapping object. */
|
|
|
|
/* */
|
|
|
|
/* <Note> */
|
|
|
|
/* The Type 1 format doesn't use a charmap but an encoding table. */
|
|
|
|
/* The driver is responsible for making up charmap objects */
|
|
|
|
/* corresponding to these tables. */
|
|
|
|
/* */
|
2000-10-28 19:10:06 +02:00
|
|
|
typedef struct T1_CharMapRec_* T1_CharMap;
|
2000-01-27 15:02:04 +01:00
|
|
|
|
|
|
|
|
2000-07-08 21:51:42 +02:00
|
|
|
/*************************************************************************/
|
|
|
|
/* */
|
|
|
|
/* HERE BEGINS THE TYPE1 SPECIFIC STUFF */
|
|
|
|
/* */
|
|
|
|
/*************************************************************************/
|
2000-01-27 15:02:04 +01:00
|
|
|
|
2000-05-17 01:44:38 +02:00
|
|
|
|
2000-07-08 21:51:42 +02:00
|
|
|
/*************************************************************************/
|
|
|
|
/* */
|
|
|
|
/* <Type> */
|
2000-10-28 19:10:06 +02:00
|
|
|
/* T1_SizeRec */
|
2000-07-08 21:51:42 +02:00
|
|
|
/* */
|
|
|
|
/* <Description> */
|
|
|
|
/* Type 1 size record. */
|
|
|
|
/* */
|
2000-10-28 19:10:06 +02:00
|
|
|
typedef struct T1_SizeRec_
|
2000-01-27 15:02:04 +01:00
|
|
|
{
|
|
|
|
FT_SizeRec root;
|
2000-06-16 21:34:52 +02:00
|
|
|
FT_Bool valid;
|
2000-10-28 19:10:06 +02:00
|
|
|
T1_Size_Hints* hints; /* defined in the hinter. This allows */
|
2000-01-27 15:02:04 +01:00
|
|
|
/* us to experiment with different */
|
|
|
|
/* hinting schemes without having to */
|
2000-10-28 19:10:06 +02:00
|
|
|
/* change `t1objs' each time. */
|
|
|
|
} T1_SizeRec;
|
2000-01-27 15:02:04 +01:00
|
|
|
|
|
|
|
|
2000-07-08 21:51:42 +02:00
|
|
|
/*************************************************************************/
|
|
|
|
/* */
|
|
|
|
/* <Type> */
|
2000-10-28 19:10:06 +02:00
|
|
|
/* T1_GlyphSlotRec */
|
2000-07-08 21:51:42 +02:00
|
|
|
/* */
|
|
|
|
/* <Description> */
|
|
|
|
/* Type 1 glyph slot record. */
|
|
|
|
/* */
|
2000-10-28 19:10:06 +02:00
|
|
|
typedef struct T1_GlyphSlotRec_
|
2000-01-27 15:02:04 +01:00
|
|
|
{
|
|
|
|
FT_GlyphSlotRec root;
|
|
|
|
|
2000-06-16 21:34:52 +02:00
|
|
|
FT_Bool hint;
|
|
|
|
FT_Bool scaled;
|
2000-05-17 01:44:38 +02:00
|
|
|
|
2000-06-16 21:34:52 +02:00
|
|
|
FT_Int max_points;
|
|
|
|
FT_Int max_contours;
|
2000-01-27 15:02:04 +01:00
|
|
|
|
|
|
|
FT_Fixed x_scale;
|
|
|
|
FT_Fixed y_scale;
|
|
|
|
|
2000-10-28 19:10:06 +02:00
|
|
|
T1_Glyph_Hints* hints; /* defined in the hinter */
|
2000-01-27 15:02:04 +01:00
|
|
|
|
2000-10-28 19:10:06 +02:00
|
|
|
} T1_GlyphSlotRec;
|
2000-01-27 15:02:04 +01:00
|
|
|
|
|
|
|
|
2001-06-28 09:17:51 +02:00
|
|
|
FT_LOCAL FT_Error
|
|
|
|
T1_Init_Face( FT_Stream stream,
|
|
|
|
T1_Face face,
|
|
|
|
FT_Int face_index,
|
|
|
|
FT_Int num_params,
|
|
|
|
FT_Parameter* params );
|
2000-01-27 15:02:04 +01:00
|
|
|
|
2001-06-28 09:17:51 +02:00
|
|
|
FT_LOCAL void
|
|
|
|
T1_Done_Face( T1_Face face );
|
2000-01-27 15:02:04 +01:00
|
|
|
|
2001-06-28 09:17:51 +02:00
|
|
|
FT_LOCAL FT_Error
|
|
|
|
T1_Init_Driver( T1_Driver driver );
|
2000-01-27 15:02:04 +01:00
|
|
|
|
2001-06-28 09:17:51 +02:00
|
|
|
FT_LOCAL void
|
|
|
|
T1_Done_Driver( T1_Driver driver );
|
2000-01-27 15:02:04 +01:00
|
|
|
|
2000-07-08 21:51:42 +02:00
|
|
|
|
2000-12-08 03:42:29 +01:00
|
|
|
FT_END_HEADER
|
2000-01-27 15:02:04 +01:00
|
|
|
|
2000-12-09 01:45:38 +01:00
|
|
|
#endif /* __T1OBJS_H__ */
|
2000-01-27 15:02:04 +01:00
|
|
|
|
|
|
|
|
|
|
|
/* END */
|