vdr  2.2.0
dvbsdffosd.h
Go to the documentation of this file.
1 /*
2  * dvbsdffosd.h: Implementation of the DVB SD Full Featured On Screen Display
3  *
4  * See the README file for copyright information and how to reach the author.
5  *
6  * $Id: dvbsdffosd.h 3.0 2012/12/03 13:43:55 kls Exp $
7  */
8 
9 #ifndef __DVBSDFFODF_H
10 #define __DVBSDFFODF_H
11 
12 #include <vdr/osd.h>
13 
14 class cDvbOsdProvider : public cOsdProvider {
15 private:
16  int osdDev;
17 public:
18  cDvbOsdProvider(int OsdDev);
19  virtual cOsd *CreateOsd(int Left, int Top, uint Level);
20  };
21 
22 #endif //__DVBSDFFODF_H
cDvbOsdProvider(int OsdDev)
Definition: dvbsdffosd.c:203
The cOsd class is the interface to the "On Screen Display".
Definition: osd.h:720
virtual cOsd * CreateOsd(int Left, int Top, uint Level)
Returns a pointer to a newly created cOsd object, which will be located at the given coordinates...
Definition: dvbsdffosd.c:208