2000-10-03 10:34:48 +02:00
|
|
|
/*
|
2002-05-10 14:55:53 +02:00
|
|
|
* dvbosd.h: Implementation of the DVB On Screen Display
|
2000-10-03 10:34:48 +02:00
|
|
|
*
|
|
|
|
* See the main source file 'vdr.c' for copyright information and
|
|
|
|
* how to reach the author.
|
|
|
|
*
|
2007-08-26 09:58:10 +02:00
|
|
|
* $Id: dvbosd.h 1.19 2007/08/25 13:49:34 kls Exp $
|
2000-10-03 10:34:48 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __DVBOSD_H
|
|
|
|
#define __DVBOSD_H
|
|
|
|
|
2004-05-16 10:35:36 +02:00
|
|
|
#include "osd.h"
|
2000-10-03 10:34:48 +02:00
|
|
|
|
2004-05-16 10:35:36 +02:00
|
|
|
class cDvbOsdProvider : public cOsdProvider {
|
|
|
|
private:
|
|
|
|
int osdDev;
|
|
|
|
public:
|
|
|
|
cDvbOsdProvider(int OsdDev);
|
2007-08-26 09:58:10 +02:00
|
|
|
virtual cOsd *CreateOsd(int Left, int Top, uint Level);
|
2000-10-03 10:34:48 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif //__DVBOSD_H
|