summaryrefslogtreecommitdiff
path: root/fbosd.h
diff options
context:
space:
mode:
Diffstat (limited to 'fbosd.h')
-rw-r--r--fbosd.h30
1 files changed, 30 insertions, 0 deletions
diff --git a/fbosd.h b/fbosd.h
new file mode 100644
index 0000000..22ba28c
--- /dev/null
+++ b/fbosd.h
@@ -0,0 +1,30 @@
+/*
+ * See the README file for copyright information and how to reach the author.
+ *
+ * $Id$
+ */
+
+#ifndef FB_OSD_H
+#define FB_OSD_H
+
+#include <vdr/osd.h>
+
+class cFbOsdProvider : public cOsdProvider
+{
+
+public:
+
+ cFbOsdProvider(const char* device);
+ ~cFbOsdProvider();
+
+protected:
+
+ virtual cOsd *CreateOsd(int Left, int Top, uint Level);
+ virtual bool ProvidesTrueColor(void) { return true; }
+
+private:
+
+ const char* m_device;
+};
+
+#endif