Direct channel select displays digits and name on OSD

This commit is contained in:
Klaus Schmidinger
2000-09-10 14:56:18 +02:00
parent 61c87ad6c7
commit bec3064590
7 changed files with 94 additions and 35 deletions

13
menu.h
View File

@@ -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;