vdr-plugin-skindesigner/displaychannel.h

22 lines
655 B
C
Raw Normal View History

2014-09-27 09:25:14 +02:00
#ifndef __DISPLAYCHANNEL_H
#define __DISPLAYCHANNEL_H
2016-01-26 18:32:38 +01:00
#include <vdr/skins.h>
2014-09-27 09:25:14 +02:00
#include "config.h"
2016-01-26 18:32:38 +01:00
#include "coreengine/definitions.h"
#include "coreengine/viewdisplaychannel.h"
2014-09-27 09:25:14 +02:00
class cSDDisplayChannel : public cSkinDisplayChannel {
private:
2016-01-26 18:32:38 +01:00
cViewChannel *view;
bool ok;
2014-09-27 09:25:14 +02:00
public:
2016-01-26 18:32:38 +01:00
cSDDisplayChannel(cViewChannel *channelView, bool WithInfo);
2014-09-27 09:25:14 +02:00
virtual ~cSDDisplayChannel();
virtual void SetChannel(const cChannel *Channel, int Number);
virtual void SetEvents(const cEvent *Present, const cEvent *Following);
virtual void SetMessage(eMessageType Type, const char *Text);
virtual void Flush(void);
};
2016-01-26 18:32:38 +01:00
#endif //__DISPLAYCHANNEL_H