summaryrefslogtreecommitdiff
path: root/menu.h
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2000-04-30 11:15:16 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2000-04-30 11:15:16 +0200
commitf7ac74ede445b099e8fa97a15674f2b4ecde279a (patch)
tree508f111a8996e2d0fddab37bbe5251f69f39b2eb /menu.h
parent49ce70fdb39d1505d593da179f52c8f1f0bdcfb1 (diff)
downloadvdr-f7ac74ede445b099e8fa97a15674f2b4ecde279a.tar.gz
vdr-f7ac74ede445b099e8fa97a15674f2b4ecde279a.tar.bz2
Instant recording can now be stopped via the menu
Diffstat (limited to 'menu.h')
-rw-r--r--menu.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/menu.h b/menu.h
index 6b647a8a..47bc993b 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.7 2000/04/29 17:54:55 kls Exp $
+ * $Id: menu.h 1.8 2000/04/30 10:58:49 kls Exp $
*/
#ifndef _MENU_H
@@ -14,17 +14,20 @@
class cMenuMain : public cOsdMenu {
public:
- cMenuMain(void);
+ cMenuMain(bool Recording);
virtual eOSState ProcessKey(eKeys Key);
};
class cRecordControl : public cOsdBase {
private:
cTimer *timer;
+ bool isInstant;
public:
cRecordControl(cTimer *Timer = NULL);
virtual ~cRecordControl();
virtual eOSState ProcessKey(eKeys Key);
+ void Stop(bool KeepInstant = false);
+ bool IsInstant(void) { return isInstant; }
};
class cReplayControl : public cOsdBase {