vdr
1.7.27
|
00001 /* 00002 * hdffosd.h: Implementation of the DVB HD Full Featured On Screen Display 00003 * 00004 * See the README file for copyright information and how to reach the author. 00005 * 00006 * $Id: hdffosd.h 1.2 2011/01/30 15:27:48 kls Exp $ 00007 */ 00008 00009 #ifndef _HDFF_OSD_H_ 00010 #define _HDFF_OSD_H_ 00011 00012 #include <vdr/osd.h> 00013 00014 #include "hdffcmd.h" 00015 00016 class cHdffOsdProvider : public cOsdProvider 00017 { 00018 private: 00019 HDFF::cHdffCmdIf * mHdffCmdIf; 00020 public: 00021 cHdffOsdProvider(HDFF::cHdffCmdIf * pHdffCmdIf); 00022 virtual cOsd *CreateOsd(int Left, int Top, uint Level); 00023 virtual bool ProvidesTrueColor(void); 00024 }; 00025 00026 #endif