codec: atsc_a65: avoid crash
[vlc.git] / include / vlc_text_style.h
blobb3b07bf8cd0252c4aafe66ccbcac92eec725672a
1 /*****************************************************************************
2 * vlc_text_style.h: text_style_t definition and helpers.
3 *****************************************************************************
4 * Copyright (C) 1999-2010 VLC authors and VideoLAN
5 * $Id$
7 * Authors: Derk-Jan Hartman <hartman _AT_ videolan _DOT_ org>
8 * basOS G <noxelia 4t gmail , com>
10 * This program is free software; you can redistribute it and/or modify it
11 * under the terms of the GNU Lesser General Public License as published by
12 * the Free Software Foundation; either version 2.1 of the License, or
13 * (at your option) any later version.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU Lesser General Public License for more details.
20 * You should have received a copy of the GNU Lesser General Public License
21 * along with this program; if not, write to the Free Software Foundation,
22 * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
23 *****************************************************************************/
25 #ifndef VLC_TEXT_STYLE_H
26 #define VLC_TEXT_STYLE_H 1
28 #ifdef __cplusplus
29 extern "C" {
30 #endif
32 /**
33 * Text style
35 * A text style is used to specify the formatting of text.
36 * A font renderer can use the supplied information to render the
37 * text specified.
39 typedef struct
41 /* Family font names */
42 char * psz_fontname; /**< The name of the font */
43 char * psz_monofontname; /**< The name of the mono font */
45 uint16_t i_features; /**< Feature flags (means non default) */
46 uint16_t i_style_flags; /**< Formatting style flags */
48 /* Font style */
49 float f_font_relsize; /**< The font size in video height % */
50 int i_font_size; /**< The font size in pixels */
51 int i_font_color; /**< The color of the text 0xRRGGBB
52 (native endianness) */
53 uint8_t i_font_alpha; /**< The transparency of the text.*/
54 int i_spacing; /**< The spaceing between glyphs in pixels */
56 /* Outline */
57 int i_outline_color; /**< The color of the outline 0xRRGGBB */
58 uint8_t i_outline_alpha; /**< The transparency of the outline */
59 int i_outline_width; /**< The width of the outline in pixels */
61 /* Shadow */
62 int i_shadow_color; /**< The color of the shadow 0xRRGGBB */
63 uint8_t i_shadow_alpha; /**< The transparency of the shadow. */
64 int i_shadow_width; /**< The width of the shadow in pixels */
66 /* Background (and karaoke) */
67 int i_background_color;/**< The color of the background 0xRRGGBB */
68 uint8_t i_background_alpha;/**< The transparency of the background */
69 int i_karaoke_background_color;/**< Background color for karaoke 0xRRGGBB */
70 uint8_t i_karaoke_background_alpha;/**< The transparency of the karaoke bg */
72 /* Line breaking */
73 enum
75 STYLE_WRAP_DEFAULT = 0, /**< Breaks on whitespace or fallback on char */
76 STYLE_WRAP_CHAR, /**< Breaks at character level only */
77 STYLE_WRAP_NONE, /**< No line breaks (except explicit ones) */
78 } e_wrapinfo;
79 } text_style_t;
81 #define STYLE_ALPHA_OPAQUE 0xFF
82 #define STYLE_ALPHA_TRANSPARENT 0x00
84 /* Features flags for \ref i_features */
85 #define STYLE_NO_DEFAULTS 0x0
86 #define STYLE_FULLY_SET 0xFFFF
87 #define STYLE_HAS_FONT_COLOR (1 << 0)
88 #define STYLE_HAS_FONT_ALPHA (1 << 1)
89 #define STYLE_HAS_FLAGS (1 << 2)
90 #define STYLE_HAS_OUTLINE_COLOR (1 << 3)
91 #define STYLE_HAS_OUTLINE_ALPHA (1 << 4)
92 #define STYLE_HAS_SHADOW_COLOR (1 << 5)
93 #define STYLE_HAS_SHADOW_ALPHA (1 << 6)
94 #define STYLE_HAS_BACKGROUND_COLOR (1 << 7)
95 #define STYLE_HAS_BACKGROUND_ALPHA (1 << 8)
96 #define STYLE_HAS_K_BACKGROUND_COLOR (1 << 9)
97 #define STYLE_HAS_K_BACKGROUND_ALPHA (1 << 10)
98 #define STYLE_HAS_WRAP_INFO (1 << 11)
100 /* Style flags for \ref text_style_t */
101 #define STYLE_BOLD (1 << 0)
102 #define STYLE_ITALIC (1 << 1)
103 #define STYLE_OUTLINE (1 << 2)
104 #define STYLE_SHADOW (1 << 3)
105 #define STYLE_BACKGROUND (1 << 4)
106 #define STYLE_UNDERLINE (1 << 5)
107 #define STYLE_STRIKEOUT (1 << 6)
108 #define STYLE_HALFWIDTH (1 << 7)
109 #define STYLE_MONOSPACED (1 << 8)
110 #define STYLE_DOUBLEWIDTH (1 << 9)
112 #define STYLE_DEFAULT_FONT_SIZE 20
113 #define STYLE_DEFAULT_REL_FONT_SIZE 6.25
116 typedef struct text_segment_t text_segment_t;
118 * Text segment for subtitles
120 * This structure is used to store a formatted text, with mixed styles
121 * Every segment is comprised of one text and a unique style
123 * On style change, a new segment is created with the next part of text
124 * and the new style, and chained to the list
126 * Create with text_segment_New and clean the chain with
127 * text_segment_ChainDelete
129 struct text_segment_t {
130 char *psz_text; /**< text string of the segment */
131 text_style_t *style; /**< style applied to this segment */
132 text_segment_t *p_next; /**< next segment */
136 * Create a default text style
138 VLC_API text_style_t * text_style_New( void );
141 * Create a text style
143 * Set feature flags as argument if you want to set style defaults
145 VLC_API text_style_t * text_style_Create( int );
148 * Copy a text style into another
150 VLC_API text_style_t * text_style_Copy( text_style_t *, const text_style_t * );
153 * Duplicate a text style
155 VLC_API text_style_t * text_style_Duplicate( const text_style_t * );
158 * Merge two styles using non default values
160 * Set b_override to true if you also want to overwrite non-defaults
162 VLC_API void text_style_Merge( text_style_t *, const text_style_t *, bool b_override );
165 * Delete a text style created by text_style_New or text_style_Duplicate
167 VLC_API void text_style_Delete( text_style_t * );
170 * This function will create a new text segment.
172 * You should use text_segment_ChainDelete to destroy it, to clean all
173 * the linked segments, or text_segment_Delete to free a specic one
175 * This duplicates the string passed as argument
177 VLC_API text_segment_t *text_segment_New( const char * );
180 * This function will create a new text segment and duplicates the style passed as argument
182 * You should use text_segment_ChainDelete to destroy it, to clean all
183 * the linked segments, or text_segment_Delete to free a specic one
185 * This doesn't initialize the text.
187 VLC_API text_segment_t *text_segment_NewInheritStyle( const text_style_t* p_style );
190 * Delete a text segment and its content.
192 * This assumes the segment is not part of a chain
194 VLC_API void text_segment_Delete( text_segment_t * );
197 * This function will destroy a list of text segments allocated
198 * by text_segment_New.
200 * You may pass it NULL.
202 VLC_API void text_segment_ChainDelete( text_segment_t * );
205 * This function will copy a text_segment and its chain into a new one
207 * You may give it NULL, but it will return NULL.
209 VLC_API text_segment_t * text_segment_Copy( text_segment_t * );
211 static const struct {
212 const char *psz_name;
213 uint32_t i_value;
214 } p_html_colors[] = {
215 /* Official html colors */
216 { "Aqua", 0x00FFFF },
217 { "Black", 0x000000 },
218 { "Blue", 0x0000FF },
219 { "Fuchsia", 0xFF00FF },
220 { "Gray", 0x808080 },
221 { "Green", 0x008000 },
222 { "Lime", 0x00FF00 },
223 { "Maroon", 0x800000 },
224 { "Navy", 0x000080 },
225 { "Olive", 0x808000 },
226 { "Purple", 0x800080 },
227 { "Red", 0xFF0000 },
228 { "Silver", 0xC0C0C0 },
229 { "Teal", 0x008080 },
230 { "White", 0xFFFFFF },
231 { "Yellow", 0xFFFF00 },
233 /* Common ones */
234 { "AliceBlue", 0xF0F8FF },
235 { "AntiqueWhite", 0xFAEBD7 },
236 { "Aqua", 0x00FFFF },
237 { "Aquamarine", 0x7FFFD4 },
238 { "Azure", 0xF0FFFF },
239 { "Beige", 0xF5F5DC },
240 { "Bisque", 0xFFE4C4 },
241 { "Black", 0x000000 },
242 { "BlanchedAlmond", 0xFFEBCD },
243 { "Blue", 0x0000FF },
244 { "BlueViolet", 0x8A2BE2 },
245 { "Brown", 0xA52A2A },
246 { "BurlyWood", 0xDEB887 },
247 { "CadetBlue", 0x5F9EA0 },
248 { "Chartreuse", 0x7FFF00 },
249 { "Chocolate", 0xD2691E },
250 { "Coral", 0xFF7F50 },
251 { "CornflowerBlue", 0x6495ED },
252 { "Cornsilk", 0xFFF8DC },
253 { "Crimson", 0xDC143C },
254 { "Cyan", 0x00FFFF },
255 { "DarkBlue", 0x00008B },
256 { "DarkCyan", 0x008B8B },
257 { "DarkGoldenRod", 0xB8860B },
258 { "DarkGray", 0xA9A9A9 },
259 { "DarkGrey", 0xA9A9A9 },
260 { "DarkGreen", 0x006400 },
261 { "DarkKhaki", 0xBDB76B },
262 { "DarkMagenta", 0x8B008B },
263 { "DarkOliveGreen", 0x556B2F },
264 { "Darkorange", 0xFF8C00 },
265 { "DarkOrchid", 0x9932CC },
266 { "DarkRed", 0x8B0000 },
267 { "DarkSalmon", 0xE9967A },
268 { "DarkSeaGreen", 0x8FBC8F },
269 { "DarkSlateBlue", 0x483D8B },
270 { "DarkSlateGray", 0x2F4F4F },
271 { "DarkSlateGrey", 0x2F4F4F },
272 { "DarkTurquoise", 0x00CED1 },
273 { "DarkViolet", 0x9400D3 },
274 { "DeepPink", 0xFF1493 },
275 { "DeepSkyBlue", 0x00BFFF },
276 { "DimGray", 0x696969 },
277 { "DimGrey", 0x696969 },
278 { "DodgerBlue", 0x1E90FF },
279 { "FireBrick", 0xB22222 },
280 { "FloralWhite", 0xFFFAF0 },
281 { "ForestGreen", 0x228B22 },
282 { "Fuchsia", 0xFF00FF },
283 { "Gainsboro", 0xDCDCDC },
284 { "GhostWhite", 0xF8F8FF },
285 { "Gold", 0xFFD700 },
286 { "GoldenRod", 0xDAA520 },
287 { "Gray", 0x808080 },
288 { "Grey", 0x808080 },
289 { "Green", 0x008000 },
290 { "GreenYellow", 0xADFF2F },
291 { "HoneyDew", 0xF0FFF0 },
292 { "HotPink", 0xFF69B4 },
293 { "IndianRed", 0xCD5C5C },
294 { "Indigo", 0x4B0082 },
295 { "Ivory", 0xFFFFF0 },
296 { "Khaki", 0xF0E68C },
297 { "Lavender", 0xE6E6FA },
298 { "LavenderBlush", 0xFFF0F5 },
299 { "LawnGreen", 0x7CFC00 },
300 { "LemonChiffon", 0xFFFACD },
301 { "LightBlue", 0xADD8E6 },
302 { "LightCoral", 0xF08080 },
303 { "LightCyan", 0xE0FFFF },
304 { "LightGoldenRodYellow", 0xFAFAD2 },
305 { "LightGray", 0xD3D3D3 },
306 { "LightGrey", 0xD3D3D3 },
307 { "LightGreen", 0x90EE90 },
308 { "LightPink", 0xFFB6C1 },
309 { "LightSalmon", 0xFFA07A },
310 { "LightSeaGreen", 0x20B2AA },
311 { "LightSkyBlue", 0x87CEFA },
312 { "LightSlateGray", 0x778899 },
313 { "LightSlateGrey", 0x778899 },
314 { "LightSteelBlue", 0xB0C4DE },
315 { "LightYellow", 0xFFFFE0 },
316 { "Lime", 0x00FF00 },
317 { "LimeGreen", 0x32CD32 },
318 { "Linen", 0xFAF0E6 },
319 { "Magenta", 0xFF00FF },
320 { "Maroon", 0x800000 },
321 { "MediumAquaMarine", 0x66CDAA },
322 { "MediumBlue", 0x0000CD },
323 { "MediumOrchid", 0xBA55D3 },
324 { "MediumPurple", 0x9370D8 },
325 { "MediumSeaGreen", 0x3CB371 },
326 { "MediumSlateBlue", 0x7B68EE },
327 { "MediumSpringGreen", 0x00FA9A },
328 { "MediumTurquoise", 0x48D1CC },
329 { "MediumVioletRed", 0xC71585 },
330 { "MidnightBlue", 0x191970 },
331 { "MintCream", 0xF5FFFA },
332 { "MistyRose", 0xFFE4E1 },
333 { "Moccasin", 0xFFE4B5 },
334 { "NavajoWhite", 0xFFDEAD },
335 { "Navy", 0x000080 },
336 { "OldLace", 0xFDF5E6 },
337 { "Olive", 0x808000 },
338 { "OliveDrab", 0x6B8E23 },
339 { "Orange", 0xFFA500 },
340 { "OrangeRed", 0xFF4500 },
341 { "Orchid", 0xDA70D6 },
342 { "PaleGoldenRod", 0xEEE8AA },
343 { "PaleGreen", 0x98FB98 },
344 { "PaleTurquoise", 0xAFEEEE },
345 { "PaleVioletRed", 0xD87093 },
346 { "PapayaWhip", 0xFFEFD5 },
347 { "PeachPuff", 0xFFDAB9 },
348 { "Peru", 0xCD853F },
349 { "Pink", 0xFFC0CB },
350 { "Plum", 0xDDA0DD },
351 { "PowderBlue", 0xB0E0E6 },
352 { "Purple", 0x800080 },
353 { "RebeccaPurple", 0x663399 },
354 { "Red", 0xFF0000 },
355 { "RosyBrown", 0xBC8F8F },
356 { "RoyalBlue", 0x4169E1 },
357 { "SaddleBrown", 0x8B4513 },
358 { "Salmon", 0xFA8072 },
359 { "SandyBrown", 0xF4A460 },
360 { "SeaGreen", 0x2E8B57 },
361 { "SeaShell", 0xFFF5EE },
362 { "Sienna", 0xA0522D },
363 { "Silver", 0xC0C0C0 },
364 { "SkyBlue", 0x87CEEB },
365 { "SlateBlue", 0x6A5ACD },
366 { "SlateGray", 0x708090 },
367 { "SlateGrey", 0x708090 },
368 { "Snow", 0xFFFAFA },
369 { "SpringGreen", 0x00FF7F },
370 { "SteelBlue", 0x4682B4 },
371 { "Tan", 0xD2B48C },
372 { "Teal", 0x008080 },
373 { "Thistle", 0xD8BFD8 },
374 { "Tomato", 0xFF6347 },
375 { "Turquoise", 0x40E0D0 },
376 { "Violet", 0xEE82EE },
377 { "Wheat", 0xF5DEB3 },
378 { "White", 0xFFFFFF },
379 { "WhiteSmoke", 0xF5F5F5 },
380 { "Yellow", 0xFFFF00 },
381 { "YellowGreen", 0x9ACD32 },
383 { NULL, 0 }
387 * Returns an integer representation of an HTML color.
389 * @param psz_value An HTML color, which can be either:
390 * - A standard HTML color (red, cyan, ...) as defined in p_html_colors
391 * - An hexadecimal color, of the form [#][AA]RRGGBB
392 * @param ok If non-null, true will be stored in this pointer to signal
393 * a successful conversion
395 VLC_API unsigned int vlc_html_color( const char *psz_value, bool* ok );
397 #ifdef __cplusplus
399 #endif
401 #endif /* VLC_TEXT_STYLE_H */