MHEG5 1.0
DTVKit MHEG5 1.0 API Documentation
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
mg_fontapi.h
Go to the documentation of this file.
1 /*******************************************************************************
2  * Copyright © 2014 The DTVKit Open Software Foundation Ltd (www.dtvkit.org)
3  * Copyright © 2010 Ocean Blue Software Ltd
4  *
5  * This file is part of a DTVKit Software Component
6  * You are permitted to copy, modify or distribute this file subject to the terms
7  * of the DTVKit 1.0 Licence which can be found in licence.txt or at www.dtvkit.org
8  *
9  * THIS CODE AND INFORMATION ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND,
10  * EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED WARRANTIES
11  * OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR PURPOSE.
12  *
13  * If you or your organisation is not a member of DTVKit then you have access
14  * to this source code outside of the terms of the licence agreement
15  * and you are expected to delete this and any associated files immediately.
16  * Further information on DTVKit, membership and terms can be found at www.dtvkit.org
17  *******************************************************************************/
25 #ifndef _MG_FONTAPI_H
26 #define _MG_FONTAPI_H
27 
28 
29 #include "techtype.h"
30 
31 typedef struct sFontSize *H_FontSize;
32 
33 typedef struct s_FontMetrics
34 {
41 
48 
54 void MG_SetMaxFonts(U16BIT max);
55 
62 void MG_FontExit(void);
63 
70 S16BIT MG_FontLoadFile( const U8BIT *data, U32BIT length );
71 
78 H_FontSize MG_AllocateFont(S16BIT fnt_index, U8BIT fnt_size, U8BIT fnt_style);
79 
86 void MG_ReleaseFont( H_FontSize f_sz );
87 
93 void MG_GetFontMetrics( H_FontSize f_sz, S_FontMetrics *pMetrics );
94 
100 void MG_FontFreeFile( S16BIT font_index );
101 
102 #endif /*_MG_FONTAPI_H*/
S32BIT descent
Definition: mg_fontapi.h:36
struct s_FontMetrics S_FontMetrics
void MG_GetFontMetrics(H_FontSize f_sz, S_FontMetrics *pMetrics)
Get font Metrics.
Definition: mg_font.c:569
void MG_FontExit(void)
Free all data associated with built-in font and terminate freetype library.
Definition: mg_font.c:185
const char * data
Definition: mh5gate.c:65
void MG_FontFreeFile(S16BIT font_index)
free memory associated with file
Definition: mg_font.c:376
H_FontSize MG_AllocateFont(S16BIT fnt_index, U8BIT fnt_size, U8BIT fnt_style)
Allocate font of particular size from font file.
Definition: mg_font.c:482
S32BIT ascent
Definition: mg_fontapi.h:35
struct sFontSize * H_FontSize
Definition: mg_fontapi.h:31
int16_t S16BIT
Definition: techtype.h:96
void MG_SetMaxFonts(U16BIT max)
Set Max allowable fonts for profile.
Definition: mg_font.c:164
S32BIT height
Definition: mg_fontapi.h:37
uint8_t U8BIT
Definition: techtype.h:93
BOOLEAN MG_FontInit(BOOLEAN isHD)
Initialise freetype library and load "built-in" font.
Definition: mg_font.c:92
Definition: mg_fontapi.h:33
S32BIT maxWidth
Definition: mg_fontapi.h:39
int32_t S32BIT
Definition: techtype.h:98
uint16_t U16BIT
Definition: techtype.h:95
System Wide Global Technical Data Type Definitions.
Definition: mg_font.h:77
S16BIT MG_FontLoadFile(const U8BIT *data, U32BIT length)
Load font data file into memory for freetype.
Definition: mg_font.c:210
U8BIT BOOLEAN
Definition: techtype.h:112
S32BIT minWidth
Definition: mg_fontapi.h:38
uint32_t U32BIT
Definition: techtype.h:97
void MG_ReleaseFont(H_FontSize f_sz)
Allocate font of particular size from font file.
Definition: mg_font.c:503