mirror of
https://github.com/vdr-projects/vdr.git
synced 2025-03-01 10:50:46 +00:00
- The EIT information is now gathered in a separate thread. - The sytem time can now be synchronized to the time broadcast in the DVB data stream. This can be enabled in the "Setup" menu by setting "SetSystemTime" to 1. Note that this works only if VDR is running under a user id that has permisson to set the system time. - The new item "Schedule" in the "Main" menu opens VDR's EPG (thanks to Robert Schneider). See the MANUAL file for a detailed description. - The new setup parameters MarginStart and MarginStop define how long (in minutes) before the official start time of a broadcast VDR shall begin recording, and how long after the official end time it shall stop recording. These are used when a recording is programmed from the "Schedules" menu. - The delay value in the dvb.c.071.diff patch to the driver has been increased to '3', because on some systems the OSD was not displayed correctly. If you are running an already patched version 0.71 driver and encounter problems with the OSD, please make sure the parameter in the ddelay call is '3', not '2'. - Fixed initializing the RCU remote control code (didn't work after switching on the system). - Problematic characters in recording names (which can come from timers that are programmed via the "Schedules" menu) are now replaced by suitable substitutes.
64 lines
2.0 KiB
C++
64 lines
2.0 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.19 2000/11/01 15:27:23 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 width, height;
|
|
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);
|
|
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);
|
|
void Flush(void);
|
|
void SetCols(int *c);
|
|
char *WrapText(const char *Text, int Width, int *Height);
|
|
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);
|
|
void DisplayChannelNumber(int Number);
|
|
void DisplayRecording(int Index, bool On);
|
|
bool Recording(void);
|
|
};
|
|
|
|
extern cInterface *Interface;
|
|
|
|
#endif //__INTERFACE_H
|