summaryrefslogtreecommitdiff
path: root/menu.h
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2000-09-10 14:56:18 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2000-09-10 14:56:18 +0200
commitbec30645904b01f95e789f720f47b769498cb4d2 (patch)
tree21cb9d204688a0675643d2f6e8e9508a08cb7719 /menu.h
parent61c87ad6c76431bdb774e02546e8718a9bb0f602 (diff)
downloadvdr-bec30645904b01f95e789f720f47b769498cb4d2.tar.gz
vdr-bec30645904b01f95e789f720f47b769498cb4d2.tar.bz2
Direct channel select displays digits and name on OSD
Diffstat (limited to 'menu.h')
-rw-r--r--menu.h13
1 files changed, 12 insertions, 1 deletions
diff --git a/menu.h b/menu.h
index 6ba080cb..8b4f82ef 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.9 2000/05/01 15:16:23 kls Exp $
+ * $Id: menu.h 1.10 2000/09/10 14:42:20 kls Exp $
*/
#ifndef _MENU_H
@@ -23,6 +23,17 @@ public:
virtual eOSState ProcessKey(eKeys Key);
};
+class cDirectChannelSelect : public cOsdBase {
+private:
+ int oldNumber;
+ int number;
+ int lastTime;
+public:
+ cDirectChannelSelect(eKeys FirstKey);
+ virtual ~cDirectChannelSelect();
+ virtual eOSState ProcessKey(eKeys Key);
+ };
+
class cRecordControl {
private:
cDvbApi *dvbApi;