mirror of
https://github.com/vdr-projects/vdr.git
synced 2025-03-01 10:50:46 +00:00
- Support for more than one DVB card. - Simultaneous record and replay (with two DVB cards). - Instant recordings no longer get the name "instant". They now get the name of the channel, with a prepended '@' character. - Timers that are not given an explicit Name now use the channel name with a prepended '@' character. - If an instant recording is currently active, the Main menu now contains an option to stop that recording. - Timers are now only processed when the Menu is not active. So after editing a timer the effect will take place only after the menu has been closed. In order to avoid missing a timer event by inadvertently leaving the menu open, the menu will be closed automatically after about two minutes of inactivity. - If a recording is currently being replayed, the Main menu now contains an option to stop replaying. - Displaying the recording DVB interface status in the decimal points of the RCU display. - Reduced the number of remote control keys. Modified the key assignments for the PC keyboard to better resemble the "up-down-left-right-ok" layout on menu controlling remote control units.
46 lines
1.2 KiB
C++
46 lines
1.2 KiB
C++
/*
|
|
* remote.h: Interface to the Remote Control Unit
|
|
*
|
|
* See the main source file 'vdr.c' for copyright information and
|
|
* how to reach the author.
|
|
*
|
|
* $Id: remote.h 1.5 2000/05/07 09:27:54 kls Exp $
|
|
*/
|
|
|
|
#ifndef __REMOTE_H
|
|
#define __REMOTE_H
|
|
|
|
#include <stdio.h>
|
|
#include <time.h>
|
|
|
|
class cRcIo {
|
|
private:
|
|
int f;
|
|
unsigned char dp, code, mode;
|
|
unsigned short address;
|
|
time_t t;
|
|
int firstTime, lastTime;
|
|
unsigned int lastCommand;
|
|
int lastNumber;
|
|
bool SendCommand(unsigned char Cmd);
|
|
int ReceiveByte(bool Wait = true);
|
|
bool SendByteHandshake(unsigned char c);
|
|
bool SendByte(unsigned char c);
|
|
bool Digit(int n, int v);
|
|
public:
|
|
enum { modeH = 'h', modeB = 'b', modeS = 's' };
|
|
cRcIo(char *DeviceName);
|
|
~cRcIo();
|
|
bool InputAvailable(bool Wait = false);
|
|
void Flush(int WaitSeconds = 0);
|
|
bool SetCode(unsigned char Code, unsigned short Address);
|
|
bool SetMode(unsigned char Mode);
|
|
bool GetCommand(unsigned int *Command, unsigned short *Address = NULL);
|
|
bool Number(int n, bool Hex = false);
|
|
void SetPoints(unsigned char Dp, bool On);
|
|
bool String(char *s);
|
|
bool DetectCode(unsigned char *Code, unsigned short *Address);
|
|
};
|
|
|
|
#endif //__REMOTE_H
|