summaryrefslogtreecommitdiff
path: root/timer.c
diff options
context:
space:
mode:
authorJürgen Schmitz <vdr@dolze.de>2004-11-23 20:15:00 +0100
committerJürgen Schmitz <vdr@dolze.de>2004-11-23 20:15:00 +0100
commit83720d70112490b379cdc230bfb4e4f6a2fe6bff (patch)
tree1fb401c4ee7e7da6a19453a2ad06ddf81b134414 /timer.c
parent4a5845aee69c23fa52f660be1caff00c96d9fc38 (diff)
downloadvdr-plugin-tvonscreen-83720d70112490b379cdc230bfb4e4f6a2fe6bff.tar.gz
vdr-plugin-tvonscreen-83720d70112490b379cdc230bfb4e4f6a2fe6bff.tar.bz2
Version 0.7.0
Diffstat (limited to 'timer.c')
-rw-r--r--timer.c30
1 files changed, 30 insertions, 0 deletions
diff --git a/timer.c b/timer.c
new file mode 100644
index 0000000..37e2179
--- /dev/null
+++ b/timer.c
@@ -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);
+}