summaryrefslogtreecommitdiff
path: root/mymenusetup.h
diff options
context:
space:
mode:
authorMartin Prochnow <nordlicht@martins-kabuff.de>2006-04-11 19:12:01 +0200
committerAndreas Mair <andreas@vdr-developer.org>2006-04-11 19:12:01 +0200
commit82bfd4c15949019ede37b2b04be79659c5c65dbe (patch)
tree5deb5bf0d98cbee6c5ee17bb9323d0748ed567a7 /mymenusetup.h
parentc849f2898257df19fddb97ac99c392c410f120d1 (diff)
downloadvdr-plugin-extrecmenu-82bfd4c15949019ede37b2b04be79659c5c65dbe.tar.gz
vdr-plugin-extrecmenu-82bfd4c15949019ede37b2b04be79659c5c65dbe.tar.bz2
Version 0.9v0.9
- removed myDvbPlayer, use VDR's cDvbPlayer instead - made adjustments to work with BigPatch-VDRs (JumpPlay-patch) - added option for sort recordings - moved editing of priority and lifetime to its own submenu - removed option to select alternative dvd marker, the icon is now default - added default values for setup options - moved content of patches/ and tools/ to contrib/ and added a small README - new version of 'dvdarchive.sh'; thanks to vejoun from vdr-portal.de - fixed problem with archive dvd recordings at the base dir; thanks to Mase from vdr-portal.de for reporting
Diffstat (limited to 'mymenusetup.h')
-rw-r--r--mymenusetup.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/mymenusetup.h b/mymenusetup.h
index bd6f1a1..8813ac9 100644
--- a/mymenusetup.h
+++ b/mymenusetup.h
@@ -3,15 +3,16 @@
class mySetup
{
public:
+ mySetup();
int ShowRecDate;
int ShowRecTime;
int ShowRecLength;
int HideMainMenuEntry;
int ReplaceOrgRecMenu;
int PatchNew;
- int PatchDvd;
int ShowDvdNr;
int ShowNewRecs;
+ int SortRecords;
bool wasdvd; // needed for dvdarchive-patch functionality
};
@@ -20,15 +21,16 @@ 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 patchdvd;
int showdvdnr;
int shownewrecs;
+ int sortrecords;
protected:
virtual void Store();
public: