blob: 164de87d3fd4a6fa845b57c5e53e6c762d39d041 (
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
37
38
39
40
|
#include <vdr/menu.h>
class mySetup
{
public:
mySetup();
int ShowRecDate;
int ShowRecTime;
int ShowRecLength;
int HideMainMenuEntry;
int ReplaceOrgRecMenu;
int PatchNew;
int ShowDvdNr;
int ShowNewRecs;
int SortRecords;
int JumpRec;
bool wasdvd; // needed for dvdarchive-patch functionality
};
extern mySetup mysetup;
class myMenuSetup:public cMenuSetupPage
{
private:
const char *sortrecordstext[4];
int showrecdate;
int showrectime;
int showreclength;
int hidemainmenuentry;
int replaceorgrecmenu;
int patchnew;
int showdvdnr;
int shownewrecs;
int sortrecords;
int jumprec;
protected:
virtual void Store();
public:
myMenuSetup();
};
|