Al-Qurtas-Islamic-bank-The-.../src/type1/t1objs.h

161 lines
3.4 KiB
C
Raw Normal View History

/****************************************************************************
*
* t1objs.h
*
* Type 1 objects manager (specification).
*
2022-01-11 10:54:10 +01:00
* Copyright (C) 1996-2022 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.
*
*/
#ifndef T1OBJS_H_
#define T1OBJS_H_
2000-12-08 17:17:16 +01:00
#include <ft2build.h>
#include <freetype/internal/ftobjs.h>
#include FT_CONFIG_CONFIG_H
#include <freetype/internal/t1types.h>
2000-12-08 17:17:16 +01:00
FT_BEGIN_HEADER
2000-12-08 17:17:16 +01:00
/* The following structures must be defined by the hinter */
typedef struct T1_Size_Hints_ T1_Size_Hints;
typedef struct T1_Glyph_Hints_ T1_Glyph_Hints;
/**************************************************************************
*
* @Type:
* T1_Size
*
* @Description:
* A handle to a Type 1 size object.
*/
typedef struct T1_SizeRec_* T1_Size;
/**************************************************************************
*
* @Type:
* T1_GlyphSlot
*
* @Description:
* A handle to a Type 1 glyph slot object.
*/
typedef struct T1_GlyphSlotRec_* T1_GlyphSlot;
/**************************************************************************
*
* @Type:
* T1_CharMap
*
* @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.
*/
typedef struct T1_CharMapRec_* T1_CharMap;
/**************************************************************************
*
* HERE BEGINS THE TYPE1 SPECIFIC STUFF
*
*/
2000-05-17 01:44:38 +02:00
/**************************************************************************
*
* @Type:
* T1_SizeRec
*
* @Description:
* Type 1 size record.
*/
typedef struct T1_SizeRec_
{
2001-10-18 13:49:26 +02:00
FT_SizeRec root;
} T1_SizeRec;
FT_LOCAL( void )
T1_Size_Done( FT_Size size );
FT_LOCAL( FT_Error )
T1_Size_Request( FT_Size size,
* include/freetype/freetype.h (FT_Select_Size): Rename the second argument from `idx' to `strike_index'. (FT_Size_Request_Type): Add FT_SIZE_REQUEST_TYPE_MAX to the end of this enum. * include/freetype/internal/ftobjs.h (FT_REQUEST_WIDTH, FT_REQUEST_HEIGHT): New macros to get the width and height of a request, in fractional pixels. * include/freetype/internal/ftobjs.h (FT_Select_Metrics, FT_Request_Metrics), src/base/ftobjs.c (FT_Select_Metrics, FT_Request_Metrics): New base functions to set the font metrics. They were part of FT_Select_Size/FT_Request_Size and are made independent functions so that metrics are not set again and again. * src/base/ftobjs.c (FT_Select_Size, FT_Request_Size): Metrics are set only when driver's size_select/size_request is NULL. That is, drivers should set the metrics themselves. (FT_Match_Size): Round before matching. This was what we did and it does cause some problems without rounding. * src/cff/cffobjs.c (cff_size_select), src/truetype/ttdriver.c (tt_size_select): Set the font metrics. s/index/strike_index/. The scaled metrics are always preferred over strikes' metrics, even when some strike is selected. This is done because the strikes' metrics are not reliable, e.g., the sign of the descender is wrong for some fonts. * src/cff/cffobjs.c (cff_size_request), src/truetype/ttdriver.c (tt_size_request): Set the font metrics. Call cff_size_select/tt_size_select when some strike is matched. * src/bdf/bdfdrivr.c, src/cff/cffobjs.c, src/cid/cidobjs.c, src/pcf/pcfdrivr.c, src/truetype/ttdriver.c, src/type1/t1objs.c, src/type1/t1objs.h, src/type42/t42objs.c, src/winfonts/winfnt.c: Set the font metrics. s/index/strike_index/. * src/tools/test_afm.c, src/psaux/psconv.c: Older versions of these files were committed. Just a catch-up. (PS_Conv_ToFixed): Remove the `goto'. (PS_Conv_ASCIIHexDecode, PS_Conv_EexecDecode): Speed up a little. * src/sfnt/ttsbit.c (tt_face_load_sbit_strikes, tt_face_load_strike_metrics), src/sfnt/ttsbit0.c (tt_face_load_sbit_strikes, tt_face_load_strike_metrics): The advertised metrics in `available_sizes' are different from those actually used.
2006-01-23 15:12:40 +01:00
FT_Size_Request req );
2001-10-18 13:49:26 +02:00
FT_LOCAL( FT_Error )
T1_Size_Init( FT_Size size );
2001-10-18 13:49:26 +02:00
/**************************************************************************
*
* @Type:
* T1_GlyphSlotRec
*
* @Description:
* Type 1 glyph slot record.
*/
typedef struct T1_GlyphSlotRec_
{
FT_GlyphSlotRec root;
FT_Bool hint;
FT_Bool scaled;
2000-05-17 01:44:38 +02:00
FT_Fixed x_scale;
FT_Fixed y_scale;
FT_Int max_points;
FT_Int max_contours;
} T1_GlyphSlotRec;
FT_LOCAL( FT_Error )
2001-10-18 13:49:26 +02:00
T1_Face_Init( FT_Stream stream,
FT_Face face,
2001-06-28 09:17:51 +02:00
FT_Int face_index,
FT_Int num_params,
FT_Parameter* params );
FT_LOCAL( void )
T1_Face_Done( FT_Face face );
2001-10-18 13:49:26 +02:00
FT_LOCAL( FT_Error )
T1_GlyphSlot_Init( FT_GlyphSlot slot );
FT_LOCAL( void )
T1_GlyphSlot_Done( FT_GlyphSlot slot );
FT_LOCAL( FT_Error )
T1_Driver_Init( FT_Module driver );
FT_LOCAL( void )
T1_Driver_Done( FT_Module driver );
FT_END_HEADER
#endif /* T1OBJS_H_ */
/* END */