summaryrefslogtreecommitdiff
path: root/menu.h
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2000-04-30 10:22:13 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2000-04-30 10:22:13 +0200
commit49ce70fdb39d1505d593da179f52c8f1f0bdcfb1 (patch)
tree15ebe1aa13b6dad2d3092d70ad1373887038f429 /menu.h
parentf13ded672b7fe1836299ca6d7fc2910c0c9c1109 (diff)
downloadvdr-49ce70fdb39d1505d593da179f52c8f1f0bdcfb1.tar.gz
vdr-49ce70fdb39d1505d593da179f52c8f1f0bdcfb1.tar.bz2
Better encapsulation of record control
Diffstat (limited to 'menu.h')
-rw-r--r--menu.h11
1 files changed, 10 insertions, 1 deletions
diff --git a/menu.h b/menu.h
index a5317f36..6b647a8a 100644
--- a/menu.h
+++ b/menu.h
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: menu.h 1.6 2000/04/29 15:38:39 kls Exp $
+ * $Id: menu.h 1.7 2000/04/29 17:54:55 kls Exp $
*/
#ifndef _MENU_H
@@ -18,6 +18,15 @@ public:
virtual eOSState ProcessKey(eKeys Key);
};
+class cRecordControl : public cOsdBase {
+private:
+ cTimer *timer;
+public:
+ cRecordControl(cTimer *Timer = NULL);
+ virtual ~cRecordControl();
+ virtual eOSState ProcessKey(eKeys Key);
+ };
+
class cReplayControl : public cOsdBase {
private:
bool visible, shown;