diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2002-09-29 13:40:45 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2002-09-29 13:40:45 +0200 |
commit | fc668608474ed16f015f71e57366f6bd2c5d8c8d (patch) | |
tree | cc94791b1001e240ded1dc7afdae8ed0e0c1a3b7 /interface.h | |
parent | f3af8e065a6022ca7234bd6c60e061d2064a6dff (diff) | |
download | vdr-fc668608474ed16f015f71e57366f6bd2c5d8c8d.tar.gz vdr-fc668608474ed16f015f71e57366f6bd2c5d8c8d.tar.bz2 |
Made remote controls plugin aware
Diffstat (limited to 'interface.h')
-rw-r--r-- | interface.h | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/interface.h b/interface.h index 137c7d48..6344c5bd 100644 --- a/interface.h +++ b/interface.h @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: interface.h 1.27 2002/06/22 14:39:48 kls Exp $ + * $Id: interface.h 1.28 2002/09/29 10:46:50 kls Exp $ */ #ifndef __INTERFACE_H @@ -22,12 +22,9 @@ private: int width, height; int open; int cols[MaxCols]; - eKeys keyFromWait; bool interrupted; cSVDRP *SVDRP; - cRcIoBase *rcIo; - unsigned int GetCh(bool Wait = true, bool *Repeat = NULL, bool *Release = NULL); - void QueryKeys(void); + void QueryKeys(cRemote *Remote); void HelpButton(int Index, const char *Text, eDvbColor FgColor, eDvbColor BgColor); eKeys Wait(int Seconds = 0, bool KeepChar = false); public: @@ -40,7 +37,6 @@ public: int Width(void) { return width; } int Height(void) { return height; } eKeys GetKey(bool Wait = true); - void PutKey(eKeys Key); void Clear(void); void ClearEol(int x, int y, eDvbColor Color = clrBackground); void Fill(int x, int y, int w, int h, eDvbColor color = clrBackground); @@ -59,9 +55,6 @@ public: bool Confirm(const char *s, int Seconds = 10, bool WaitForTimeout = false); void Help(const char *Red, const char *Green = NULL, const char *Yellow = NULL, const char *Blue = NULL); void LearnKeys(void); - void DisplayChannelNumber(int Number); - void DisplayRecording(int Index, bool On); - bool Recording(void); }; extern cInterface *Interface; |