diff options
Diffstat (limited to 'detailview.h')
-rw-r--r-- | detailview.h | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/detailview.h b/detailview.h index f7685c0..517ec9c 100644 --- a/detailview.h +++ b/detailview.h @@ -1,6 +1,8 @@ #ifndef __TVGUIDE_DETAILVIEW_H
#define __TVGUIDE_DETAILVIEW_H
+#include "services/scraper2vdr.h"
+#include "services/epgsearch.h"
#include "config.h"
#include <libskindesignerapi/skindesignerosdbase.h>
@@ -10,6 +12,8 @@ private: int lastSecond;
skindesignerapi::cOsdView *detailView;
const cEvent *event;
+ cMovie *movie;
+ cSeries *series;
skindesignerapi::cViewElement *back;
skindesignerapi::cViewElement *header;
skindesignerapi::cViewElement *footer;
@@ -19,12 +23,17 @@ private: void DrawHeader(void);
void DrawFooter(void);
void SetTabTokens(void);
- bool LoadReruns(void);
+ bool LoadScrapInfo(const cEvent *event);
+ int NumActors(void);
void SetScraperTokens(void);
+ cList<Epgsearch_searchresults_v1_0::cServiceSearchResult> *LoadReruns(void);
+ int NumReruns(cList<Epgsearch_searchresults_v1_0::cServiceSearchResult> *reruns);
+ void SetReruns(cList<Epgsearch_searchresults_v1_0::cServiceSearchResult> *reruns);
void SetEpgPictures(int eventId);
public:
cDetailView(skindesignerapi::cOsdView *detailView, const cEvent *event);
virtual ~cDetailView(void);
+ void Activate(void) { detailView->Activate(); };
void Draw(void);
void Left(void);
void Right(void);
@@ -33,6 +42,8 @@ public: bool DrawTime(void);
void Flush(void) { detailView->Display(); };
const cEvent *GetEvent(void) { return event; };
+ static void DefineTokens(eViewElementsDetail ve, skindesignerapi::cTokenContainer *tk);
+ static void DefineTabTokens(skindesignerapi::cTokenContainer *tk);
};
#endif //__TVGUIDE_DETAILVIEW_H
|