diff options
Diffstat (limited to 'bitmap.h')
-rw-r--r-- | bitmap.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/bitmap.h b/bitmap.h new file mode 100644 index 0000000..09696f5 --- /dev/null +++ b/bitmap.h @@ -0,0 +1,22 @@ +/* + * $Id: bitmap.h,v 1.1.1.1 2004/05/23 00:08:03 lordjaxom Exp $ + */ + +#ifndef VDR_TEXT2SKIN_BITMAP_H +#define VDR_TEXT2SKIN_BITMAP_H + +#include <vdr/osd.h> + +class cText2SkinBitmap: public cBitmap { +public: + cText2SkinBitmap(void); + cText2SkinBitmap(const char *Filename); + virtual ~cText2SkinBitmap(); + + bool Load(const char *Filename); +#ifdef HAVE_IMLIB + bool LoadPng(const char *Filename); +#endif +}; + +#endif // VDR_TEXT2SKIN_BITMAP_H |