diff options
| author | Jürgen Schmitz <vdr@dolze.de> | 2004-11-23 20:15:00 +0100 |
|---|---|---|
| committer | Jürgen Schmitz <vdr@dolze.de> | 2004-11-23 20:15:00 +0100 |
| commit | 83720d70112490b379cdc230bfb4e4f6a2fe6bff (patch) | |
| tree | 1fb401c4ee7e7da6a19453a2ad06ddf81b134414 /timer.c | |
| parent | 4a5845aee69c23fa52f660be1caff00c96d9fc38 (diff) | |
| download | vdr-plugin-tvonscreen-83720d70112490b379cdc230bfb4e4f6a2fe6bff.tar.gz vdr-plugin-tvonscreen-83720d70112490b379cdc230bfb4e4f6a2fe6bff.tar.bz2 | |
Version 0.7.0
Diffstat (limited to 'timer.c')
| -rw-r--r-- | timer.c | 30 |
1 files changed, 30 insertions, 0 deletions
@@ -0,0 +1,30 @@ +/* + * timer.c + * + * See the README file for copyright information and how to reach the author. + * + * $Id: timer.c,v 1.2 2004/11/23 14:21:24 schmitzj Exp $ + * + */ + +#include "magazine.h" + +tvOcMenuEvent:: +#if VDRVERSNUM >= 10300 + tvOcMenuEvent(const class cEvent *EventInfo) +#else + tvOcMenuEvent(const class cEventInfo *EventInfo) +#endif + : cMenuEvent(EventInfo,false) +{ + helpLine(); +} + +void tvOcMenuEvent::printMsg(const char *s) +{ + SetStatus(s); +} +void tvOcMenuEvent::helpLine(bool full) +{ + SetHelp(tr("Record"), tr("Search"), full?tr("AutoTimer"):NULL, NULL); +} |
