2000-05-26 19:13:23 +02:00
|
|
|
/***************************************************************************/
|
|
|
|
/* */
|
|
|
|
/* ftmm.h */
|
|
|
|
/* */
|
2000-07-14 08:16:47 +02:00
|
|
|
/* FreeType Multiple Master font interface (specification). */
|
2000-05-26 19:13:23 +02:00
|
|
|
/* */
|
|
|
|
/* Copyright 1996-2000 by */
|
|
|
|
/* David Turner, Robert Wilhelm, and Werner Lemberg. */
|
|
|
|
/* */
|
2000-07-10 23:41:32 +02:00
|
|
|
/* This file is part of the FreeType project, and may only be used, */
|
|
|
|
/* modified, and distributed under the terms of the FreeType project */
|
2000-05-26 19:13:23 +02:00
|
|
|
/* 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-07-10 23:41:32 +02:00
|
|
|
|
2000-12-01 00:12:33 +01:00
|
|
|
#ifndef __FTMM_H__
|
|
|
|
#define __FTMM_H__
|
2000-05-26 19:13:23 +02:00
|
|
|
|
2000-12-04 23:53:55 +01:00
|
|
|
#include <ft2build.h>
|
2000-12-01 00:12:33 +01:00
|
|
|
#include FT_TYPE1_TABLES_H
|
2000-05-26 19:13:23 +02:00
|
|
|
|
2000-12-01 00:12:33 +01:00
|
|
|
FT_BEGIN_HEADER
|
2000-07-10 23:41:32 +02:00
|
|
|
|
|
|
|
/*************************************************************************/
|
|
|
|
/* */
|
|
|
|
/* <Struct> */
|
|
|
|
/* FT_MM_Axis */
|
|
|
|
/* */
|
|
|
|
/* <Description> */
|
|
|
|
/* A simple structure used to model a given axis in design space for */
|
|
|
|
/* Multiple Masters fonts. */
|
|
|
|
/* */
|
|
|
|
/* <Fields> */
|
|
|
|
/* name :: The axis's name. */
|
|
|
|
/* */
|
|
|
|
/* minimum :: The axis's minimum design coordinate. */
|
|
|
|
/* */
|
|
|
|
/* maximum :: The axis's maximum design coordinate. */
|
|
|
|
/* */
|
|
|
|
typedef struct FT_MM_Axis_
|
2000-05-26 19:13:23 +02:00
|
|
|
{
|
|
|
|
FT_String* name;
|
|
|
|
FT_Long minimum;
|
|
|
|
FT_Long maximum;
|
2000-07-14 08:16:47 +02:00
|
|
|
|
2000-05-26 19:13:23 +02:00
|
|
|
} FT_MM_Axis;
|
|
|
|
|
2000-07-10 23:41:32 +02:00
|
|
|
|
|
|
|
/*************************************************************************/
|
|
|
|
/* */
|
|
|
|
/* <Struct> */
|
|
|
|
/* FT_Multi_Master */
|
|
|
|
/* */
|
|
|
|
/* <Description> */
|
|
|
|
/* A structure used to model the axes and space of a Multiple Masters */
|
|
|
|
/* font. */
|
|
|
|
/* */
|
|
|
|
/* <Fields> */
|
|
|
|
/* num_axis :: Number of axes. Cannot exceed 4. */
|
|
|
|
/* */
|
|
|
|
/* num_designs :: Number of designs; should ne normally 2^num_axis */
|
|
|
|
/* even though the Type 1 specification strangely */
|
|
|
|
/* allows for intermediate designs to be present. This */
|
|
|
|
/* number cannot exceed 16. */
|
|
|
|
/* */
|
|
|
|
/* axis :: A table of axis descriptors. */
|
|
|
|
/* */
|
|
|
|
typedef struct FT_Multi_Master_
|
2000-05-26 19:13:23 +02:00
|
|
|
{
|
|
|
|
FT_UInt num_axis;
|
|
|
|
FT_UInt num_designs;
|
2000-07-10 23:41:32 +02:00
|
|
|
FT_MM_Axis axis[T1_MAX_MM_AXIS];
|
2000-07-14 08:16:47 +02:00
|
|
|
|
2000-05-26 19:13:23 +02:00
|
|
|
} FT_Multi_Master;
|
|
|
|
|
|
|
|
|
2000-07-10 23:41:32 +02:00
|
|
|
typedef FT_Error (*FT_Get_MM_Func)( FT_Face face,
|
|
|
|
FT_Multi_Master* master );
|
2000-07-14 08:16:47 +02:00
|
|
|
|
2000-07-10 23:41:32 +02:00
|
|
|
typedef FT_Error (*FT_Set_MM_Design_Func)( FT_Face face,
|
2000-05-26 19:13:23 +02:00
|
|
|
FT_UInt num_coords,
|
|
|
|
FT_Long* coords );
|
|
|
|
|
2000-07-10 23:41:32 +02:00
|
|
|
typedef FT_Error (*FT_Set_MM_Blend_Func)( FT_Face face,
|
|
|
|
FT_UInt num_coords,
|
|
|
|
FT_Long* coords );
|
|
|
|
|
|
|
|
|
|
|
|
/*************************************************************************/
|
|
|
|
/* */
|
|
|
|
/* <Function> */
|
|
|
|
/* FT_Get_Multi_Master */
|
|
|
|
/* */
|
|
|
|
/* <Description> */
|
|
|
|
/* Retrieves the Multiple Master descriptor of a given font. */
|
|
|
|
/* */
|
|
|
|
/* <Input> */
|
2000-11-06 05:33:56 +01:00
|
|
|
/* face :: A handle to the source face. */
|
2000-07-10 23:41:32 +02:00
|
|
|
/* */
|
|
|
|
/* <Output> */
|
2000-11-06 05:33:56 +01:00
|
|
|
/* amaster :: The Multiple Masters descriptor. */
|
2000-07-10 23:41:32 +02:00
|
|
|
/* */
|
|
|
|
/* <Return> */
|
|
|
|
/* FreeType error code. 0 means success. */
|
|
|
|
/* */
|
2000-11-04 02:55:49 +01:00
|
|
|
FT_EXPORT( FT_Error ) FT_Get_Multi_Master( FT_Face face,
|
2000-11-06 05:33:56 +01:00
|
|
|
FT_Multi_Master *amaster );
|
2000-07-10 23:41:32 +02:00
|
|
|
|
|
|
|
|
|
|
|
/*************************************************************************/
|
|
|
|
/* */
|
|
|
|
/* <Function> */
|
|
|
|
/* FT_Set_MM_Design_Coordinates */
|
|
|
|
/* */
|
|
|
|
/* <Description> */
|
|
|
|
/* For Multiple Masters fonts, choose an interpolated font design */
|
|
|
|
/* through design coordinates. */
|
|
|
|
/* */
|
2000-11-06 05:33:56 +01:00
|
|
|
/* <InOut> */
|
2000-07-10 23:41:32 +02:00
|
|
|
/* face :: A handle to the source face. */
|
|
|
|
/* */
|
2000-11-06 05:33:56 +01:00
|
|
|
/* <Input> */
|
2000-07-10 23:41:32 +02:00
|
|
|
/* num_coords :: The number of design coordinates (must be equal to */
|
|
|
|
/* the number of axes in the font). */
|
|
|
|
/* */
|
2000-11-06 05:33:56 +01:00
|
|
|
/* coords :: An array of design coordinates. */
|
2000-07-10 23:41:32 +02:00
|
|
|
/* */
|
|
|
|
/* <Return> */
|
|
|
|
/* FreeType error code. 0 means success. */
|
|
|
|
/* */
|
2000-11-04 02:55:49 +01:00
|
|
|
FT_EXPORT( FT_Error ) FT_Set_MM_Design_Coordinates(
|
2000-11-04 09:33:38 +01:00
|
|
|
FT_Face face,
|
|
|
|
FT_UInt num_coords,
|
|
|
|
FT_Long* coords );
|
2000-07-10 23:41:32 +02:00
|
|
|
|
|
|
|
|
|
|
|
/*************************************************************************/
|
|
|
|
/* */
|
|
|
|
/* <Function> */
|
|
|
|
/* FT_Set_MM_Blend_Coordinates */
|
|
|
|
/* */
|
|
|
|
/* <Description> */
|
|
|
|
/* For Multiple Masters fonts, choose an interpolated font design */
|
|
|
|
/* through normalized blend coordinates. */
|
|
|
|
/* */
|
2000-11-06 05:33:56 +01:00
|
|
|
/* <InOut> */
|
2000-07-10 23:41:32 +02:00
|
|
|
/* face :: A handle to the source face. */
|
|
|
|
/* */
|
2000-11-06 05:33:56 +01:00
|
|
|
/* <Input> */
|
2000-07-10 23:41:32 +02:00
|
|
|
/* num_coords :: The number of design coordinates (must be equal to */
|
|
|
|
/* the number of axes in the font). */
|
|
|
|
/* */
|
2000-11-06 05:33:56 +01:00
|
|
|
/* coords :: The design coordinates array (each element must be */
|
|
|
|
/* between 0 and 1.0). */
|
2000-07-10 23:41:32 +02:00
|
|
|
/* */
|
|
|
|
/* <Return> */
|
|
|
|
/* FreeType error code. 0 means success. */
|
|
|
|
/* */
|
2000-11-04 02:55:49 +01:00
|
|
|
FT_EXPORT( FT_Error ) FT_Set_MM_Blend_Coordinates(
|
2000-11-04 09:33:38 +01:00
|
|
|
FT_Face face,
|
|
|
|
FT_UInt num_coords,
|
|
|
|
FT_Fixed* coords );
|
2000-07-10 23:41:32 +02:00
|
|
|
|
2000-05-26 19:13:23 +02:00
|
|
|
|
2000-12-01 00:12:33 +01:00
|
|
|
FT_END_HEADER
|
2000-05-26 19:13:23 +02:00
|
|
|
|
2000-12-01 00:12:33 +01:00
|
|
|
#endif /* __FTMM_H__ */
|
2000-07-10 23:41:32 +02:00
|
|
|
|
|
|
|
|
2000-05-26 19:13:23 +02:00
|
|
|
/* END */
|