blob: 740cd2547d715b6de19b0917bf41ff8b55fb8d40 (
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
41
42
43
|
#include <vdr/menu.h>
class mySetup
{
public:
mySetup();
int ShowRecDate;
int ShowRecTime;
int ShowRecLength;
int HideMainMenuEntry;
int ReplaceOrgRecMenu;
int PatchNew;
int ShowNewRecs;
int DescendSorting;
int GoLastReplayed;
int ReturnToPlugin;
int LimitBandwidth;
int UseVDRsRecInfoMenu;
};
extern mySetup mysetup;
class myMenuSetup:public cMenuSetupPage
{
private:
const char *sortingtypetexts[2];
int showrecdate;
int showrectime;
int showreclength;
int hidemainmenuentry;
int replaceorgrecmenu;
int patchnew;
int shownewrecs;
int descendsorting;
int golastreplayed;
int returntoplugin;
int limitbandwidth;
int usevdrsrecinfomenu;
protected:
virtual void Store();
public:
myMenuSetup();
};
|