diff options
Diffstat (limited to 'menu.h')
-rw-r--r-- | menu.h | 12 |
1 files changed, 7 insertions, 5 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: menu.h 1.57 2003/08/03 09:37:18 kls Exp $ + * $Id: menu.h 1.58 2003/12/21 15:27:07 kls Exp $ */ #ifndef __MENU_H @@ -12,6 +12,7 @@ #include "ci.h" #include "device.h" +#include "epg.h" #include "osd.h" #include "dvbplayer.h" #include "recorder.h" @@ -36,7 +37,8 @@ private: int lines; int lastTime; int number; - void DisplayChannel(const cChannel *Channel); + cChannel *channel; + void DisplayChannel(void); void DisplayInfo(void); void Refresh(void); public: @@ -113,10 +115,10 @@ private: cDevice *device; cTimer *timer; cRecorder *recorder; - const cEventInfo *eventInfo; + const cEvent *event; char *instantId; char *fileName; - bool GetEventInfo(void); + bool GetEvent(void); public: cRecordControl(cDevice *Device, cTimer *Timer = NULL, bool Pause = false); virtual ~cRecordControl(); @@ -151,7 +153,7 @@ private: bool visible, modeOnly, shown, displayFrames; int lastCurrent, lastTotal; time_t timeoutShow; - bool timeSearchActive, timeSearchHide; + bool timeSearchActive, timeSearchHide; int timeSearchTime, timeSearchPos; void TimeSearchDisplay(void); void TimeSearchProcess(eKeys Key); |