blob: 7dde4bbd9358fff7c772261a7311fae21336015c (
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
|
#include <vdr/menu.h>
class mySetup
{
public:
int ShowRecDate;
int ShowRecTime;
int ShowRecLength;
int HideMainMenuEntry;
};
extern mySetup mysetup;
class myMenuSetup:public cMenuSetupPage
{
private:
int showrecdate;
int showrectime;
int showreclength;
int hidemainmenuentry;
protected:
virtual void Store();
public:
myMenuSetup();
};
|