Reindent
[mplayer/glamo.git] / gui / skin / font.h
blob46c3b36acc408e8e083049508d7a0595d86d424d
1 /*
2 * This file is part of MPlayer.
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.
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.
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.
19 #ifndef MPLAYER_GUI_FONT_H
20 #define MPLAYER_GUI_FONT_H
22 #include "gui/bitmap.h"
23 #include "gui/app.h"
25 #define fntAlignLeft 0
26 #define fntAlignCenter 1
27 #define fntAlignRight 2
29 typedef struct
31 int x,y; // location
32 int sx,sy; // size
33 } fntChar;
35 typedef struct
37 fntChar Fnt[256];
38 txSample Bitmap;
39 char name[128];
40 } bmpFont;
42 extern txSample Bitmap;
43 extern bmpFont * Fonts[26];
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 );
51 int fntRead( char * path, char * fname );
52 txSample * fntRender( wItem * item, int px, const char * fmt, ... );
54 #endif /* MPLAYER_GUI_FONT_H */