diff options
author | louis <louis.braun@gmx.de> | 2015-04-02 15:11:34 +0200 |
---|---|---|
committer | louis <louis.braun@gmx.de> | 2015-04-02 15:11:34 +0200 |
commit | 759af0a48df36faf4ffda0d515cabcd6ffd9ee6e (patch) | |
tree | 3cf3d62b2b7539b4c982b8dc6de29d25cabc5d42 /detailview.h | |
parent | fb62699a2d162f92dd73d86fcf5501e3f96eea75 (diff) | |
download | vdr-plugin-tvguideng-759af0a48df36faf4ffda0d515cabcd6ffd9ee6e.tar.gz vdr-plugin-tvguideng-759af0a48df36faf4ffda0d515cabcd6ffd9ee6e.tar.bz2 |
introduced libskindesignerapi
Diffstat (limited to 'detailview.h')
-rw-r--r-- | detailview.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/detailview.h b/detailview.h index cb3cd3f..3697a25 100644 --- a/detailview.h +++ b/detailview.h @@ -2,19 +2,19 @@ #define __TVGUIDE_DETAILVIEW_H
#include "config.h"
-#include "libskindesigner/osdelements.h"
+#include <libskindesignerapi/skindesignerosdbase.h>
class cDetailView {
private:
bool init;
int lastSecond;
- cOsdView *detailView;
+ skindesignerapi::cOsdView *detailView;
const cEvent *event;
- cViewElement *back;
- cViewElement *header;
- cViewElement *footer;
- cViewElement *watch;
- cViewTab *tabs;
+ skindesignerapi::cViewElement *back;
+ skindesignerapi::cViewElement *header;
+ skindesignerapi::cViewElement *footer;
+ skindesignerapi::cViewElement *watch;
+ skindesignerapi::cViewTab *tabs;
void DrawBackground(void);
void DrawHeader(void);
void DrawFooter(void);
@@ -23,7 +23,7 @@ private: void SetScraperTokens(void);
void SetEpgPictures(int eventId);
public:
- cDetailView(cOsdView *detailView, const cEvent *event);
+ cDetailView(skindesignerapi::cOsdView *detailView, const cEvent *event);
virtual ~cDetailView(void);
void Draw(void);
void Left(void);
|