diff options
author | Martin Prochnow <nordlicht@martins-kabuff.de> | 2007-10-08 20:36:03 +0200 |
---|---|---|
committer | Andreas Mair <andreas@vdr-developer.org> | 2007-10-08 20:36:03 +0200 |
commit | 57e0533f20b14e208e41e56f80fd15b3d18f90f1 (patch) | |
tree | 2e75d86377b4fbc29c9fd76fabd2a5e291a9f204 /myreplaycontrol.h | |
parent | 8adfaaf81b104b8e981026da593e40f9d780c251 (diff) | |
download | vdr-plugin-extrecmenu-57e0533f20b14e208e41e56f80fd15b3d18f90f1.tar.gz vdr-plugin-extrecmenu-57e0533f20b14e208e41e56f80fd15b3d18f90f1.tar.bz2 |
Version 1.0v1.0
- it is now possible to cancel a moving-between-filesystems-process
- applied changes for MainMenuHooksPatch
- added MainMenuHooksPatch to contrib/-dir; removed old one, which is now obsolete
- free disk space is shown for the filesystem of the current directory (can be switched of in plugin's setup menu)
- added support for hidding PIN-protected recordings in co-work with PIN-Plugin
- added queue for moving recordings between filesystems
- added cutter queue
- added #ifdef's to switch of font patching for vdr >= 1.5.3
- added setup option to switch of font patching
Diffstat (limited to 'myreplaycontrol.h')
-rw-r--r-- | myreplaycontrol.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/myreplaycontrol.h b/myreplaycontrol.h index 2819dd1..85bc179 100644 --- a/myreplaycontrol.h +++ b/myreplaycontrol.h @@ -1,8 +1,9 @@ class myReplayControl:public cReplayControl { + private: + bool timesearchactive; public: - static char *Cut; - static char *Cutted; - eOSState ProcessKey(eKeys Key); - ~myReplayControl(); + myReplayControl(); + ~myReplayControl(); + eOSState ProcessKey(eKeys Key); }; |