vdr/font.h

42 lines
875 B
C
Raw Normal View History

2000-10-03 10:34:48 +02:00
/*
* font.h: Font handling for the DVB On Screen Display
*
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
2000-11-18 15:46:00 +01:00
* $Id: font.h 1.2 2000/11/18 14:51:45 kls Exp $
2000-10-03 10:34:48 +02:00
*/
#ifndef __FONT_H
#define __FONT_H
enum eDvbFont {
fontOsd,
2000-11-18 15:46:00 +01:00
fontFix,
2000-10-03 10:34:48 +02:00
/* TODO as soon as we have the font files...
fontTtxSmall,
fontTtxLarge,
*/
};
class cFont {
public:
enum { NUMCHARS = 256 };
typedef unsigned long tPixelData;
struct tCharData {
tPixelData width, height;
tPixelData lines[1];
};
private:
const tCharData *data[NUMCHARS];
public:
cFont(eDvbFont Font);
int Width(unsigned char c) { return data[c]->width; }
int Width(const char *s);
int Height(unsigned char c) { return data[c]->height; }
int Height(const char *s);
const tCharData *CharData(unsigned char c) { return data[c]; }
};
#endif //__FONT_H