1 /*****************************************************************************
2 * vlc_text_style.h: text_style_t definition and helpers.
3 *****************************************************************************
4 * Copyright (C) 1999-2010 VLC authors and VideoLAN
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
35 * A text style is used to specify the formatting of text.
36 * A font renderer can use the supplied information to render the
41 char * psz_fontname
; /**< The name of the font */
42 char * psz_monofontname
; /**< The name of the mono font */
43 int i_font_size
; /**< The font size in pixels */
44 int i_font_color
; /**< The color of the text 0xRRGGBB
45 (native endianness) */
46 unsigned i_font_alpha
; /**< The transparency of the text.
48 0xFF fully transparent */
49 int i_style_flags
; /**< Formatting style flags */
50 int i_outline_color
; /**< The color of the outline 0xRRGGBB */
51 int i_outline_alpha
; /**< The transparency of the outline.
53 0xFF fully transparent */
54 int i_shadow_color
; /**< The color of the shadow 0xRRGGBB */
55 int i_shadow_alpha
; /**< The transparency of the shadow.
57 0xFF fully transparent */
58 int i_background_color
;/**< The color of the background 0xRRGGBB */
59 int i_background_alpha
;/**< The transparency of the background.
61 0xFF fully transparent */
62 int i_karaoke_background_color
;/**< Background color for karaoke 0xRRGGBB */
63 int i_karaoke_background_alpha
;/**< The transparency of the karaoke bg.
65 0xFF fully transparent */
66 int i_outline_width
; /**< The width of the outline in pixels */
67 int i_shadow_width
; /**< The width of the shadow in pixels */
68 int i_spacing
; /**< The spaceing between glyphs in pixels */
71 /* Style flags for \ref text_style_t */
73 #define STYLE_ITALIC 2
74 #define STYLE_OUTLINE 4
75 #define STYLE_SHADOW 8
76 #define STYLE_BACKGROUND 16
77 #define STYLE_UNDERLINE 32
78 #define STYLE_STRIKEOUT 64
79 #define STYLE_HALFWIDTH 128
81 #define STYLE_DEFAULT_FONT_SIZE 22
84 * Create a default text style
86 VLC_API text_style_t
* text_style_New( void );
89 * Copy a text style into another
91 VLC_API text_style_t
* text_style_Copy( text_style_t
*, const text_style_t
* );
94 * Duplicate a text style
96 VLC_API text_style_t
* text_style_Duplicate( const text_style_t
* );
99 * Delete a text style created by text_style_New or text_style_Duplicate
101 VLC_API
void text_style_Delete( text_style_t
* );
107 #endif /* VLC_TEXT_STYLE_H */