diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2000-11-01 15:41:33 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2000-11-01 15:41:33 +0100 |
commit | fb096c680f671d8b0a4b5a1e1dddf9aa96020061 (patch) | |
tree | 836a456002f52ea0be580686760171a8dec2d811 /menu.h | |
parent | 92d698d39cdeca0c2df175ec8295527353d20069 (diff) | |
download | vdr-fb096c680f671d8b0a4b5a1e1dddf9aa96020061.tar.gz vdr-fb096c680f671d8b0a4b5a1e1dddf9aa96020061.tar.bz2 |
Moved 'DisplayChannel' to menu.c; Yellow and Green function temporarily disabled
Diffstat (limited to 'menu.h')
-rw-r--r-- | menu.h | 16 |
1 files changed, 10 insertions, 6 deletions
@@ -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); }; |