blob: 55673d8783109a12adfff93161af43e6705f1590 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
/**
* based on status.h,v 1.1.1.1 2006/02/26 14:11:02 lordjaxom
*
* version by Midas
*
*/
#ifndef VDR_BLOCK_STATUS_H
#define VDR_BLOCK_STATUS_H
#include <vdr/status.h>
class cStatusBlock : public cStatus {
private:
protected:
#if VDRVERSNUM < 10726
virtual void ChannelSwitch(const cDevice *Device, int ChannelNumber);
#else
virtual void ChannelSwitch(const cDevice *Device, int ChannelNumber, bool LiveView);
#endif
virtual void Replaying(const cControl *Control,
const char *Name,
const char *FileName, bool On);
virtual void OsdProgramme(time_t PresentTime, const char *PresentTitle, const char *PresentSubtitle, time_t FollowingTime, const char *FollowingTitle, const char *FollowingSubtitle);
public:
cStatusBlock(void);
};
#endif // VDR_BLOCK_STATUS_H
|