Moved 'DisplayChannel' to menu.c; Yellow and Green function temporarily disabled

This commit is contained in:
Klaus Schmidinger
2000-11-01 15:41:33 +01:00
parent 92d698d39c
commit fb096c680f
10 changed files with 176 additions and 221 deletions

16
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.12 2000/10/08 15:21:52 kls Exp $
* $Id: menu.h 1.13 2000/11/01 14:03:09 kls Exp $
*/
#ifndef _MENU_H
@@ -24,14 +24,18 @@ public:
virtual eOSState ProcessKey(eKeys Key);
};
class cDirectChannelSelect : public cOsdBase {
class cDisplayChannel : public cOsdBase {
private:
int oldNumber;
int number;
bool withInfo, group;
int lines;
int lastTime;
int oldNumber, number;
void DisplayChannel(const cChannel *Channel);
void DisplayInfo(void);
public:
cDirectChannelSelect(eKeys FirstKey);
virtual ~cDirectChannelSelect();
cDisplayChannel(int Number, bool Switched, bool Group = false);
cDisplayChannel(eKeys FirstKey);
virtual ~cDisplayChannel();
virtual eOSState ProcessKey(eKeys Key);
};