MHEG5 1.0
DTVKit MHEG5 1.0 API Documentation
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
mg_drawtext.h
Go to the documentation of this file.
1 /*******************************************************************************
2  * Copyright © 2014 The DTVKit Open Software Foundation Ltd (www.dtvkit.org)
3  * Copyright © 2008 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_DRAWTEXT_H
26 #define _MG_DRAWTEXT_H
27 
28 #include "mg_osd.h"
29 #include "mg_fontapi.h"
30 #include "dtvstring.h"
31 
32 #define FONT_STYLE_PLAIN 0x00
33 #define FONT_STYLE_SQUARE 0x10
34 #define FONT_STYLE_NO_SCALE 0x80
35 
36 /* Justification */
37 #define JUSTIFY_H_START 0x00
38 #define JUSTIFY_H_END 0x01
39 #define JUSTIFY_H_CENTRE 0x02
40 #define JUSTIFY_H_JUSTIFIED 0x03
41 /* wrap words when reach line limit */
42 #define WRAP_WORDS 0x04
43 /* wrap on every character - vertical orientation*/
44 #define WRAP_VERTICAL 0x08
45 
46 #define JFY_HZ_MASK 0x03
47 #define JFY_WRAP_MASK 0x0c
48 #define JFY_HZ_WRAP_MASK 0x0f
49 
50 #define JUSTIFY_V_START 0x00
51 #define JUSTIFY_V_END 0x10
52 #define JUSTIFY_V_CENTRE 0x20
53 #define JUSTIFY_V_JUSTIFIED 0x30
54 #define JUSTIFY_VERTI_MASK 0x30
55 
56 /* #define OBSCURE_INPUT 0x40 */
57 
58 /* Characters used for Entryfield obscured input and cursor */
59 #define OBSCURED_INPUT_CHAR ('*')
60 #define ENTRY_INSERT_CHAR ('_')
61 #define ENTRY_OVERWRITE_CHAR ('<')
62 
63 #define HK_FNT_MAGIC 0xFEFF
64 
65 typedef struct
66 {
71 } VRect, *pVRect;
72 
73 /* 'TextString' is structure referencing unicode strings */
74 typedef struct _TextString
75 {
77  U16BIT *data; /*unicode data*/
79 
80 typedef struct _HyperAttribs
81 {
82  /* hypertext specific colours - can be changed by "body attrib" in text*/
86  S16BIT focus_position; /*zero when not interacting*/
87  S16BIT number_of_links; /*MG_drawText returns number of links found in text*/
88  /*default below to zero*/
90  U8BIT anchor_wrap; /*MG_drawText returns with value (set by "body attrib" in text)*/
91  U8BIT save_colour; /*temp var*/
92  /* U8BIT interacting; *not used*/
94 
95 typedef struct s_FontProp
96 {
97  S16BIT index; /* value returned by MG_FontLoadFile() */
98  U8BIT size; /* vertical point size */
99  U8BIT style; /* plain/square */
100 } S_FontProp;
101 
102 typedef struct _DrawTextAttrib
103 {
104  pHyperAttribs p_ha; /* Pointer to Hypertext attributes (default: NULL) */
108  S16BIT entry_point; /* position of 'caret' for Entryfield text box (default: -1) */
109  S16BIT letter_space; /* extra spacing between chars in 1/256 points */
111  U8BIT line_space; /* line spacing in points */
112  U8BIT justify; /* horz and vert and wrapping */
113  union
114  {
117  } font;
120 
121 
130 void* MG_DrawText( const TextString unistr, pDrawTextAttrib attrib, const VRect txt_box );
131 
139 S16BIT MG_TextWidth( const TextString unistr, pDrawTextAttrib attrib );
140 
148 void MG_DrawScreenText( const TextString unistr, pDrawTextAttrib attrib, S_SURFACE *canvas );
149 
150 #endif /*_MG_DRAWTEXT_H*/
struct _HyperAttribs * pHyperAttribs
Define MHEG5 String type.
S_STRING font_name
Definition: mg_drawtext.h:118
U8BIT anchor_wrap
Definition: mg_drawtext.h:90
struct _DrawTextAttrib DrawTextAttrib
struct _DrawTextAttrib * pDrawTextAttrib
H_FontSize hdl
Definition: mg_drawtext.h:115
OSDColor visit_colour
Definition: mg_drawtext.h:85
U32BIT OSDColor
Definition: osdtypes.h:41
Definition: dtvstring.h:28
struct _TextString TextString
S16BIT letter_space
Definition: mg_drawtext.h:109
int16_t S16BIT
Definition: techtype.h:96
S16BIT entry_point
Definition: mg_drawtext.h:108
S16BIT top
Definition: mg_drawtext.h:68
U32BIT character_set
Definition: mg_drawtext.h:107
uint8_t U8BIT
Definition: techtype.h:93
pHyperAttribs p_ha
Definition: mg_drawtext.h:104
S16BIT MG_TextWidth(const TextString unistr, pDrawTextAttrib attrib)
Definition: mg_drawtext.c:2123
U8BIT justify
Definition: mg_drawtext.h:112
U8BIT save_colour
Definition: mg_drawtext.h:91
Definition: mg_drawtext.h:74
U16BIT caret
Definition: mg_drawtext.h:110
U16BIT len
Definition: mg_drawtext.h:76
Interface to OSD.
struct _TextString * pTextString
OSDColor back_colour
Definition: mg_drawtext.h:106
struct VRect * pVRect
Definition: mg_drawtext.h:95
U8BIT size
Definition: mg_drawtext.h:98
Definition: mg_drawtext.h:80
S_FontProp fp
Definition: mg_drawtext.h:116
OSDColor active_colour
Definition: mg_drawtext.h:84
uint16_t U16BIT
Definition: techtype.h:95
OSDColor fore_colour
Definition: mg_drawtext.h:105
Font file handling with the Freetype.
struct _HyperAttribs HyperAttribs
U16BIT width
Definition: mg_drawtext.h:69
S16BIT left
Definition: mg_drawtext.h:67
S16BIT focus_position
Definition: mg_drawtext.h:86
void * MG_DrawText(const TextString unistr, pDrawTextAttrib attrib, const VRect txt_box)
Create Surface and draw text string on it and terminate freetype library.
Definition: mg_drawtext.c:2274
Definition: mg_font.h:77
U16BIT * data
Definition: mg_drawtext.h:77
OSDColor link_colour
Definition: mg_drawtext.h:83
U16BIT height
Definition: mg_drawtext.h:70
struct s_FontProp S_FontProp
U8BIT line_space
Definition: mg_drawtext.h:111
U8BIT style
Definition: mg_drawtext.h:99
union _DrawTextAttrib::@12 font
Definition: mg_drawtext.h:102
Definition: mg_drawtext.h:65
Definition: mg_osd.h:47
uint32_t U32BIT
Definition: techtype.h:97
S16BIT number_of_links
Definition: mg_drawtext.h:87
S16BIT index
Definition: mg_drawtext.h:97
U8BIT markup_state
Definition: mg_drawtext.h:89
void MG_DrawScreenText(const TextString unistr, pDrawTextAttrib attrib, S_SURFACE *canvas)
Single line text string drawn on existing Surface.
Definition: mg_drawtext.c:2177