Mercurial > mplayer.hg
annotate gui/skin/font.h @ 31499:c0fdef79a5d5
Remove (or for now actually only disable) support for external libfaad.
It is pointless and actually does not even compile currently.
author | reimar |
---|---|
date | Sun, 27 Jun 2010 15:01:24 +0000 |
parents | 9e739bdb049c |
children | cc58a1e919d9 |
rev | line source |
---|---|
26458 | 1 /* |
2 * This file is part of MPlayer. | |
3 * | |
4 * MPlayer is free software; you can redistribute it and/or modify | |
5 * it under the terms of the GNU General Public License as published by | |
6 * the Free Software Foundation; either version 2 of the License, or | |
7 * (at your option) any later version. | |
8 * | |
9 * MPlayer is distributed in the hope that it will be useful, | |
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
12 * GNU General Public License for more details. | |
13 * | |
14 * You should have received a copy of the GNU General Public License along | |
15 * with MPlayer; if not, write to the Free Software Foundation, Inc., | |
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. | |
17 */ | |
18 | |
26029 | 19 #ifndef MPLAYER_GUI_FONT_H |
20 #define MPLAYER_GUI_FONT_H | |
23077 | 21 |
26365
10dfbc523184
Add gui/ prefix to some #include paths so that compilation from the
diego
parents:
26029
diff
changeset
|
22 #include "gui/bitmap.h" |
10dfbc523184
Add gui/ prefix to some #include paths so that compilation from the
diego
parents:
26029
diff
changeset
|
23 #include "gui/app.h" |
23077 | 24 |
25 #define fntAlignLeft 0 | |
26 #define fntAlignCenter 1 | |
27 #define fntAlignRight 2 | |
28 | |
29 typedef struct | |
30 { | |
31 int x,y; // location | |
32 int sx,sy; // size | |
33 } fntChar; | |
34 | |
35 typedef struct | |
36 { | |
37 fntChar Fnt[256]; | |
38 txSample Bitmap; | |
39 char name[128]; | |
40 } bmpFont; | |
41 | |
42 extern txSample Bitmap; | |
43 extern bmpFont * Fonts[26]; | |
44 | |
28051 | 45 int fntAddNewFont( char * name ); |
46 void fntFreeFont( void ); | |
47 int fntFindID( char * name ); | |
48 int fntTextHeight( int id, char * str ); | |
49 int fntTextWidth( int id, char * str ); | |
23077 | 50 |
28051 | 51 int fntRead( char * path, char * fname ); |
52 txSample * fntRender( wItem * item, int px, const char * fmt, ... ); | |
23077 | 53 |
26029 | 54 #endif /* MPLAYER_GUI_FONT_H */ |