Mercurial > mplayer.hg
annotate gui/skin/font.h @ 26718:051b2632f121
consistency cosmetics: Move some parts of file headers around; typo fixes.
author | diego |
---|---|
date | Mon, 12 May 2008 17:33:35 +0000 |
parents | b0a7b35b78d2 |
children | 9e739bdb049c |
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 | |
45 extern int fntAddNewFont( char * name ); | |
46 extern void fntFreeFont( void ); | |
47 extern int fntFindID( char * name ); | |
48 extern int fntTextHeight( int id,char * str ); | |
49 extern int fntTextWidth( int id,char * str ); | |
50 | |
51 extern int fntRead( char * path,char * fname ); | |
52 extern txSample * fntRender( wItem * item,int px,const char * fmt,... ); | |
53 | |
26029 | 54 #endif /* MPLAYER_GUI_FONT_H */ |