vdr  2.4.1
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 4.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
Definition: dvbsdffosd.h:14
cDvbOsdProvider::cDvbOsdProvider
cDvbOsdProvider(int OsdDev)
Definition: dvbsdffosd.c:203
cOsd
The cOsd class is the interface to the "On Screen Display".
Definition: osd.h:724
cDvbOsdProvider::CreateOsd
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
cOsdProvider
Definition: osd.h:965
cDvbOsdProvider::osdDev
int osdDev
Definition: dvbsdffosd.h:16