2013-01-17 13:16:44 +01:00
|
|
|
#ifndef __TVGUIDE_DETAILVIEW_H
|
|
|
|
#define __TVGUIDE_DETAILVIEW_H
|
|
|
|
|
2014-05-11 09:00:21 +02:00
|
|
|
#include <vdr/plugin.h>
|
2013-12-07 15:51:50 +01:00
|
|
|
#include <vdr/epg.h>
|
2014-05-11 09:00:21 +02:00
|
|
|
#include "config.h"
|
|
|
|
#include "tools.h"
|
2013-12-07 15:51:50 +01:00
|
|
|
#include "styledpixmap.h"
|
2014-01-11 16:53:23 +01:00
|
|
|
#include "footer.h"
|
2014-05-11 09:00:21 +02:00
|
|
|
#include "view.h"
|
2013-12-07 15:51:50 +01:00
|
|
|
|
2013-01-17 13:16:44 +01:00
|
|
|
// --- cDetailView -------------------------------------------------------------
|
|
|
|
|
2013-08-25 13:57:10 +02:00
|
|
|
class cDetailView : public cThread {
|
2013-01-17 13:16:44 +01:00
|
|
|
private:
|
2013-05-26 11:38:05 +02:00
|
|
|
const cEvent *event;
|
2014-05-11 09:00:21 +02:00
|
|
|
cFooter *footer;
|
|
|
|
cView *view;
|
|
|
|
void InitiateView(void);
|
|
|
|
std::string LoadReruns(void);
|
2013-08-25 13:57:10 +02:00
|
|
|
void Action(void);
|
2013-01-17 13:16:44 +01:00
|
|
|
public:
|
2014-01-11 16:53:23 +01:00
|
|
|
cDetailView(const cEvent *event, cFooter *footer);
|
2013-05-26 11:38:05 +02:00
|
|
|
virtual ~cDetailView(void);
|
2013-07-09 00:17:42 +02:00
|
|
|
eOSState ProcessKey(eKeys Key);
|
2013-01-17 13:16:44 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif //__TVGUIDE_DETAILVIEW_H
|