mirror of
https://projects.vdr-developer.org/git/vdr-plugin-tvguide.git
synced 2023-10-05 15:01:48 +02:00
28 lines
656 B
C++
28 lines
656 B
C++
#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
|