mirror of
https://github.com/vdr-projects/vdr.git
synced 2025-03-01 10:50:46 +00:00
- Remote control data is now received in a separate thread, which makes things a lot smoother. - Repeat and release of remote control keys is now explicitly distinguished. - In replay mode the search forward/back and skip functions now have two modes: Pressing the key shortly and releasing it starts the function, and pressing it again stops it. Pressing and holding down the key starts the function and releasing the key stops it. - The '@' character that marks an "instant recording" can now be turned off in the "Setup" menu (thanks to Matthias Schniedermeyer). - Pressing the "Back" button while replaying now stops replaying and brings up the "Recordings" menu (suggested by Carsten Koch). This can be used to easily delete a recording after watching it, or to switch to a different recording. - The "Recordings" menu now places the cursor on the last replayed recording, if that file still exists. - The "Blue" button in the "Main" menu can now be used to "Resume" a previously stopped replay session (suggested by Martin Hammerschmid). - The low and high LNB frequencies can now be changed in the "Setup" menu.
58 lines
1.8 KiB
C++
58 lines
1.8 KiB
C++
/*
|
|
* interface.h: Abstract user interface layer
|
|
*
|
|
* See the main source file 'vdr.c' for copyright information and
|
|
* how to reach the author.
|
|
*
|
|
* $Id: interface.h 1.16 2000/10/08 12:15:49 kls Exp $
|
|
*/
|
|
|
|
#ifndef __INTERFACE_H
|
|
#define __INTERFACE_H
|
|
|
|
#include "config.h"
|
|
#include "dvbapi.h"
|
|
#include "remote.h"
|
|
#include "svdrp.h"
|
|
|
|
class cInterface {
|
|
public:
|
|
enum { MaxCols = 5 };
|
|
private:
|
|
int open;
|
|
int cols[MaxCols];
|
|
eKeys keyFromWait;
|
|
cSVDRP *SVDRP;
|
|
cRcIoBase *rcIo;
|
|
unsigned int GetCh(bool Wait = true, bool *Repeat = NULL, bool *Release = NULL);
|
|
void QueryKeys(void);
|
|
void HelpButton(int Index, const char *Text, eDvbColor FgColor, eDvbColor BgColor);
|
|
eKeys Wait(int Seconds = 1, bool KeepChar = false);
|
|
public:
|
|
cInterface(int SVDRPport = 0);
|
|
~cInterface();
|
|
void Open(int NumCols = MenuColumns, int NumLines = MenuLines);
|
|
void Close(void);
|
|
eKeys GetKey(bool Wait = true);
|
|
void PutKey(eKeys Key);
|
|
void Clear(void);
|
|
void ClearEol(int x, int y, eDvbColor Color = clrBackground);
|
|
void SetCols(int *c);
|
|
void Write(int x, int y, const char *s, eDvbColor FgColor = clrWhite, eDvbColor BgColor = clrBackground);
|
|
void WriteText(int x, int y, const char *s, eDvbColor FgColor = clrWhite, eDvbColor BgColor = clrBackground);
|
|
void Title(const char *s);
|
|
void Status(const char *s, eDvbColor FgColor = clrBlack, eDvbColor BgColor = clrCyan);
|
|
void Info(const char *s);
|
|
void Error(const char *s);
|
|
bool Confirm(const char *s);
|
|
void Help(const char *Red, const char *Green = NULL, const char *Yellow = NULL, const char *Blue = NULL);
|
|
void LearnKeys(void);
|
|
eKeys DisplayChannel(int Number, const char *Name = NULL, bool WithInfo = false);
|
|
void DisplayRecording(int Index, bool On);
|
|
bool Recording(void);
|
|
};
|
|
|
|
extern cInterface *Interface;
|
|
|
|
#endif //__INTERFACE_H
|