diff options
author | Martin Prochnow <nordlicht@martins-kabuff.de> | 2006-06-12 10:10:21 +0200 |
---|---|---|
committer | Andreas Mair <andreas@vdr-developer.org> | 2006-06-12 10:10:21 +0200 |
commit | 75cebc37f280719c40824a6f76b43018f6c71d16 (patch) | |
tree | cf895fdf24e8c3b2c3315edb5c7306f4e7c01f1b /mymenurecordings.h | |
parent | 40d2369b12da350f684f5364a00c3501a6c038e6 (diff) | |
download | vdr-plugin-extrecmenu-75cebc37f280719c40824a6f76b43018f6c71d16.tar.gz vdr-plugin-extrecmenu-75cebc37f280719c40824a6f76b43018f6c71d16.tar.bz2 |
Version 0.12v0.12
- reworked layout
- added possibility to set sorting mode for each directory
- if you use the PIN-plugin, ExtRecMenu works together with it to protect recordings
- fixed a very annoying bug which prevent renaming and moving recordings which have special chars in their names if VDR is compiled with VFAT=1 or startet with the option --vfat
Diffstat (limited to 'mymenurecordings.h')
-rw-r--r-- | mymenurecordings.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/mymenurecordings.h b/mymenurecordings.h index 8f17f69..694f112 100644 --- a/mymenurecordings.h +++ b/mymenurecordings.h @@ -1,5 +1,3 @@ -#define MB_PER_MINUTE 25.75 // this is just an estimate! - // --- myMenuRecordingsItem --------------------------------------------------- class myMenuRecordingsItem:public cOsdItem { @@ -12,7 +10,6 @@ class myMenuRecordingsItem:public cOsdItem char *title; char *name; const char *filename; - char *id; // this is the unique name that identifies a recording public: myMenuRecordingsItem(cRecording *Recording,int Level); ~myMenuRecordingsItem(); @@ -23,7 +20,6 @@ class myMenuRecordingsItem:public cOsdItem bool IsDVD(){return isdvd;} bool IsVideoDVD(){return isvideodvd;} char *DvdNr(){return dvdnr;} - const char *ID(){return id;} }; // --- myMenuRecordings ------------------------------------------------------- @@ -48,6 +44,7 @@ class myMenuRecordings:public cOsdMenu eOSState Info(); eOSState Details(); eOSState Commands(eKeys Key=kNone); + eOSState ChangeSorting(); public: myMenuRecordings(const char *Base=NULL,int Level=0); ~myMenuRecordings(); |