blob: 58f653e4c65ecaf3fbb4af29658ecb4d08cd43dc (
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
|
#ifndef __TVGUIDE_DETAILVIEW_H
#define __TVGUIDE_DETAILVIEW_H
#include <vdr/plugin.h>
#include <vdr/epg.h>
#include "config.h"
#include "tools.h"
#include "styledpixmap.h"
#include "footer.h"
#include "view.h"
// --- cDetailView -------------------------------------------------------------
class cDetailView : public cThread {
private:
const cEvent *event;
cFooter *footer;
cView *view;
void InitiateView(void);
std::string LoadReruns(void);
void Action(void);
public:
cDetailView(const cEvent *event, cFooter *footer);
virtual ~cDetailView(void);
eOSState ProcessKey(eKeys Key);
};
#endif //__TVGUIDE_DETAILVIEW_H
|