diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2012-12-08 11:05:39 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2012-12-08 11:05:39 +0100 |
commit | 83fe591f3254a8010e107739256ef0df780b219c (patch) | |
tree | 87ee41dbc77184af071f450ea29969579a53efb5 /timers.h | |
parent | bc0b67e6302a114e1efd2701aafa6ecd9282cc69 (diff) | |
download | vdr-83fe591f3254a8010e107739256ef0df780b219c.tar.gz vdr-83fe591f3254a8010e107739256ef0df780b219c.tar.bz2 |
The new functions SetItemEvent(), SetItemTimer(), SetItemChannel() and SetItemRecording() of the cSkinDisplayMenu class can be reimplemented by skin plugins to display these items in a more elaborate way than just a simple line of text1.7.33
Diffstat (limited to 'timers.h')
-rw-r--r-- | timers.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: timers.h 2.4 2012/06/02 12:10:00 kls Exp $ + * $Id: timers.h 2.5 2012/12/07 13:13:40 kls Exp $ */ #ifndef __TIMERS_H @@ -77,7 +77,7 @@ public: static time_t SetTime(time_t t, int SecondsFromMidnight); void SetFile(const char *File); bool Matches(time_t t = 0, bool Directly = false, int Margin = 0) const; - int Matches(const cEvent *Event, int *Overlap = NULL) const; + eTimerMatch Matches(const cEvent *Event, int *Overlap = NULL) const; bool Expired(void) const; time_t StartTime(void) const; time_t StopTime(void) const; @@ -116,7 +116,7 @@ public: cTimers(void); cTimer *GetTimer(cTimer *Timer); cTimer *GetMatch(time_t t); - cTimer *GetMatch(const cEvent *Event, int *Match = NULL); + cTimer *GetMatch(const cEvent *Event, eTimerMatch *Match = NULL); cTimer *GetNextActiveTimer(void); int BeingEdited(void) { return beingEdited; } void IncBeingEdited(void) { beingEdited++; } |