summaryrefslogtreecommitdiff
path: root/bitmap.h
diff options
context:
space:
mode:
authorlordjaxom <lordjaxom>2004-05-23 00:35:46 +0000
committerlordjaxom <lordjaxom>2004-05-23 00:35:46 +0000
commitd309055320433e5fd899de53dc688d679609e6db (patch)
treeee3c3c97b3881f1e35e0da745b9571d11c0b6ac2 /bitmap.h
downloadvdr-plugin-text2skin-d309055320433e5fd899de53dc688d679609e6db.tar.gz
vdr-plugin-text2skin-d309055320433e5fd899de53dc688d679609e6db.tar.bz2
- Initial revision.v0.0.1-pre1
Diffstat (limited to 'bitmap.h')
-rw-r--r--bitmap.h22
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