blob: 9169dc0a8dd9d3b12eaf0bea3e4b8432aa00f883 (
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
|
#ifndef __OSDMENU_H__
#define __OSDMENU_H__
#include <vdr/menu.h>
#include <vdr/status.h>
class myOsdMenu : public cOsdMenu
{
private:
int Gamma, Brightness, Smooth;
int ProfileIndex;
int LastGamma, LastBrightness, LastSmooth;
int LastStatus, LastMode;
int LastProfileIndex;
cStringList Profiles;
void MySetHelp(void);
public:
myOsdMenu();
~myOsdMenu();
virtual eOSState ProcessKey(eKeys Key);
};
#endif
|