blob: e58beeb3eca977e1ed190cee73ef2f3286eb830e (
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
27
28
29
30
|
/*
* rtplusosd.h
*
* Created on: 27.05.2018
* Author: uli
*/
#ifndef __RTPLUSOSD_H_
#define __RTPLUSOSD_H_
#include <vdr/osdbase.h>
class cRTplusOsd : public cOsdMenu, public cCharSetConv {
private:
int bcount;
int helpmode;
const char *listtyp[7];
char *btext[7];
int rtptyp(char *btext);
void rtp_fileprint(void);
public:
cRTplusOsd(void);
virtual ~cRTplusOsd();
virtual void Load(void);
virtual void Update(void);
virtual eOSState ProcessKey(eKeys Key);
};
#endif /* RTPLUSOSD_H_ */
|