blob: bd6f1a130217a51625ff4e357da983c18e709479 (
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
31
32
33
34
35
36
|
#include <vdr/menu.h>
class mySetup
{
public:
int ShowRecDate;
int ShowRecTime;
int ShowRecLength;
int HideMainMenuEntry;
int ReplaceOrgRecMenu;
int PatchNew;
int PatchDvd;
int ShowDvdNr;
int ShowNewRecs;
bool wasdvd; // needed for dvdarchive-patch functionality
};
extern mySetup mysetup;
class myMenuSetup:public cMenuSetupPage
{
private:
int showrecdate;
int showrectime;
int showreclength;
int hidemainmenuentry;
int replaceorgrecmenu;
int patchnew;
int patchdvd;
int showdvdnr;
int shownewrecs;
protected:
virtual void Store();
public:
myMenuSetup();
};
|