diff options
Diffstat (limited to 'ovgosd.h')
-rw-r--r-- | ovgosd.h | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/ovgosd.h b/ovgosd.h new file mode 100644 index 0000000..d4a7c0d --- /dev/null +++ b/ovgosd.h @@ -0,0 +1,52 @@ +/* + * See the README file for copyright information and how to reach the author. + * + * $Id$ + */ + +#ifndef OVG_OSD_H +#define OVG_OSD_H + +#include <vdr/osd.h> + +class cOvg; + +class cRpiOsdProvider : public cOsdProvider +{ + +public: + + cRpiOsdProvider(); + ~cRpiOsdProvider(); + +protected: + + virtual cOsd *CreateOsd(int Left, int Top, uint Level); + virtual bool ProvidesTrueColor(void) { return true; } + virtual int StoreImageData(const cImage &Image) { return 0; } + virtual void DropImageData(int ImageHandle) {} + +private: + + cOvg *m_ovg; +}; + + +class cOvgOsd : public cOsd +{ + +public: + + cOvgOsd(int Left, int Top, uint Level, cOvg *ovg); + virtual ~cOvgOsd(); + + virtual void Flush(void); + +private: + + cOvg *m_ovg; + +}; + +#endif + |