blob: 3697a25f60bd4844aaa19bfc34edc5817d8808e1 (
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
29
30
31
32
33
34
35
36
37
|
#ifndef __TVGUIDE_DETAILVIEW_H
#define __TVGUIDE_DETAILVIEW_H
#include "config.h"
#include <libskindesignerapi/skindesignerosdbase.h>
class cDetailView {
private:
bool init;
int lastSecond;
skindesignerapi::cOsdView *detailView;
const cEvent *event;
skindesignerapi::cViewElement *back;
skindesignerapi::cViewElement *header;
skindesignerapi::cViewElement *footer;
skindesignerapi::cViewElement *watch;
skindesignerapi::cViewTab *tabs;
void DrawBackground(void);
void DrawHeader(void);
void DrawFooter(void);
void SetTabTokens(void);
bool LoadReruns(void);
void SetScraperTokens(void);
void SetEpgPictures(int eventId);
public:
cDetailView(skindesignerapi::cOsdView *detailView, const cEvent *event);
virtual ~cDetailView(void);
void Draw(void);
void Left(void);
void Right(void);
void Up(void);
void Down(void);
bool DrawTime(void);
void Flush(void) { detailView->Display(); };
};
#endif //__TVGUIDE_DETAILVIEW_H
|