diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2003-12-22 13:29:24 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2003-12-22 13:29:24 +0100 |
commit | 7ff59171e3f907a5584b72f0f8588ed65f22c0bd (patch) | |
tree | 801b1b65840c50a4f1d8abea806fa5c180051df1 /menu.h | |
parent | 84b99ea81095f421ec049dd6b5bd5f0f2fe679c1 (diff) | |
download | vdr-7ff59171e3f907a5584b72f0f8588ed65f22c0bd.tar.gz vdr-7ff59171e3f907a5584b72f0f8588ed65f22c0bd.tar.bz2 |
Changed section handling; replaced 'libdtv' with 'libsi'
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); |