summaryrefslogtreecommitdiff
path: root/PLUGINS/src/dvbhddevice/hdffosd.h
diff options
context:
space:
mode:
Diffstat (limited to 'PLUGINS/src/dvbhddevice/hdffosd.h')
-rw-r--r--PLUGINS/src/dvbhddevice/hdffosd.h26
1 files changed, 26 insertions, 0 deletions
diff --git a/PLUGINS/src/dvbhddevice/hdffosd.h b/PLUGINS/src/dvbhddevice/hdffosd.h
new file mode 100644
index 0000000..533897e
--- /dev/null
+++ b/PLUGINS/src/dvbhddevice/hdffosd.h
@@ -0,0 +1,26 @@
+/*
+ * hdffosd.h: Implementation of the DVB HD Full Featured On Screen Display
+ *
+ * See the README file for copyright information and how to reach the author.
+ *
+ * $Id: hdffosd.h 1.2 2011/01/30 15:27:48 kls Exp $
+ */
+
+#ifndef _HDFF_OSD_H_
+#define _HDFF_OSD_H_
+
+#include <vdr/osd.h>
+
+#include "hdffcmd.h"
+
+class cHdffOsdProvider : public cOsdProvider
+{
+private:
+ HDFF::cHdffCmdIf * mHdffCmdIf;
+public:
+ cHdffOsdProvider(HDFF::cHdffCmdIf * pHdffCmdIf);
+ virtual cOsd *CreateOsd(int Left, int Top, uint Level);
+ virtual bool ProvidesTrueColor(void);
+};
+
+#endif