~ubuntu-branches/debian/sid/mplayer/sid

« back to all changes in this revision

Viewing changes to gui/skin/font.h

  • Committer: Bazaar Package Importer
  • Author(s): A Mennucc1
  • Date: 2009-03-23 10:05:45 UTC
  • mfrom: (4.1.4 sid)
  • Revision ID: james.westby@ubuntu.com-20090323100545-x8h79obawnnte7kk
Tags: 1.0~rc2+svn20090303-5
debian/control : move docbook-xml,docbook-xsl,xsltproc from 
Build-Depends-Indep to Build-Depends, since they are needed to run
configure

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
 
2
 
#ifndef GUI_FONT_H
3
 
#define GUI_FONT_H
4
 
 
5
 
#include "bitmap.h"
6
 
#include "app.h"
 
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
 
 
19
#ifndef MPLAYER_GUI_FONT_H
 
20
#define MPLAYER_GUI_FONT_H
 
21
 
 
22
#include "gui/bitmap.h"
 
23
#include "gui/app.h"
7
24
 
8
25
#define fntAlignLeft   0
9
26
#define fntAlignCenter 1
25
42
extern txSample   Bitmap;
26
43
extern bmpFont  * Fonts[26];
27
44
 
28
 
extern int  fntAddNewFont( char * name );
29
 
extern void fntFreeFont( void );
30
 
extern int  fntFindID( char * name );
31
 
extern int  fntTextHeight( int id,char * str );
32
 
extern int  fntTextWidth( int id,char * str );
33
 
 
34
 
extern int        fntRead( char * path,char * fname );
35
 
extern txSample * fntRender( wItem * item,int px,const char * fmt,... );
36
 
 
37
 
#endif
38
 
 
 
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 );
 
50
 
 
51
int        fntRead( char * path, char * fname );
 
52
txSample * fntRender( wItem * item, int px, const char * fmt, ... );
 
53
 
 
54
#endif /* MPLAYER_GUI_FONT_H */