]> git.sesse.net Git - vlc/blob - modules/gui/skins2/src/ft2_font.hpp
4bcf11637411db30d2e9193ef592566a0ce8e97a
[vlc] / modules / gui / skins2 / src / ft2_font.hpp
1 /*****************************************************************************
2  * ft2_font.hpp
3  *****************************************************************************
4  * Copyright (C) 2003 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Cyril Deguet     <asmax@via.ecp.fr>
8  *          Olivier Teulière <ipkiss@via.ecp.fr>
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version.
14  *
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 General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
23  *****************************************************************************/
24
25 #ifndef FT2_FONT_HPP
26 #define FT2_FONT_HPP
27
28 #include <ft2build.h>
29 #include FT_FREETYPE_H
30 #include FT_GLYPH_H
31 #include <string>
32 #include <map>
33
34 #include "generic_font.hpp"
35
36 class UString;
37
38
39 /// Freetype2 font
40 class FT2Font: public GenericFont
41 {
42     public:
43         FT2Font( intf_thread_t *pIntf, const string &rName, int size );
44         virtual ~FT2Font();
45
46         /// Initalize the object. Returns false if it failed
47         virtual bool init();
48
49         /// Render a string on a bitmap.
50         /// If maxWidth != -1, the text is truncated with '...'
51         virtual GenericBitmap *drawString( const UString &rString,
52             uint32_t color, int maxWidth = -1 ) const;
53
54         /// Get the text height
55         virtual int getSize() const { return m_height; }
56
57     private:
58         typedef struct
59         {
60             FT_Glyph m_glyph;
61             FT_BBox m_size;
62             int m_index;
63             int m_advance;
64         } Glyph_t;
65         typedef map<uint32_t,Glyph_t> GlyphMap_t;
66
67         /// File name
68         const string m_name;
69         /// Buffer to store the font
70         void *m_buffer;
71         /// Pixel size of the font
72         int m_size;
73         /// Handle to FT library
74         FT_Library m_lib;
75         /// Font face
76         FT_Face m_face;
77         /// Font metrics
78         int m_height, m_ascender, m_descender;
79         /// Glyph cache
80         mutable GlyphMap_t m_glyphCache;
81
82         /// Get the glyph corresponding to the given code
83         Glyph_t &getGlyph( uint32_t code ) const;
84 };
85
86
87 #endif