summaryrefslogtreecommitdiff
path: root/PLUGINS/src/dvbhddevice/hdffosd.h
blob: 533897e3cc9cc92a5d2142bec106bc01512cfdc4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/*
 * hdffosd.h: Implementation of the DVB HD Full Featured On Screen Display
 *
 * See the README file for copyright information and how to reach the author.
 *
 * $Id: hdffosd.h 1.2 2011/01/30 15:27:48 kls Exp $
 */

#ifndef _HDFF_OSD_H_
#define _HDFF_OSD_H_

#include <vdr/osd.h>

#include "hdffcmd.h"

class cHdffOsdProvider : public cOsdProvider
{
private:
    HDFF::cHdffCmdIf * mHdffCmdIf;
public:
    cHdffOsdProvider(HDFF::cHdffCmdIf * pHdffCmdIf);
    virtual cOsd *CreateOsd(int Left, int Top, uint Level);
    virtual bool ProvidesTrueColor(void);
};

#endif