summaryrefslogtreecommitdiff
path: root/epggrid.h
diff options
context:
space:
mode:
authorlouis <louis.braun@gmx.de>2015-04-02 15:11:34 +0200
committerlouis <louis.braun@gmx.de>2015-04-02 15:11:34 +0200
commit759af0a48df36faf4ffda0d515cabcd6ffd9ee6e (patch)
tree3cf3d62b2b7539b4c982b8dc6de29d25cabc5d42 /epggrid.h
parentfb62699a2d162f92dd73d86fcf5501e3f96eea75 (diff)
downloadvdr-plugin-tvguideng-759af0a48df36faf4ffda0d515cabcd6ffd9ee6e.tar.gz
vdr-plugin-tvguideng-759af0a48df36faf4ffda0d515cabcd6ffd9ee6e.tar.bz2
introduced libskindesignerapi
Diffstat (limited to 'epggrid.h')
-rw-r--r--epggrid.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/epggrid.h b/epggrid.h
index 4514f5b..5922f38 100644
--- a/epggrid.h
+++ b/epggrid.h
@@ -6,7 +6,7 @@
#include "timeline.h"
#include "channelgroups.h"
#include "channeljump.h"
-#include "libskindesigner/osdelements.h"
+#include <libskindesignerapi/skindesignerosdbase.h>
class cEpgGrid {
private:
@@ -14,14 +14,14 @@ private:
int channelsPerPage;
int channelGroupLast;
long oldActiveGridId;
- cOsdView *rootView;
+ skindesignerapi::cOsdView *rootView;
cTimeManager *timeManager;
- cViewElement *back;
- cViewElement *header;
- cViewElement *watch;
- cViewElement *footer;
- cViewGrid *channelsGrid;
- cViewGrid *epgGrid;
+ skindesignerapi::cViewElement *back;
+ skindesignerapi::cViewElement *header;
+ skindesignerapi::cViewElement *watch;
+ skindesignerapi::cViewElement *footer;
+ skindesignerapi::cViewGrid *channelsGrid;
+ skindesignerapi::cViewGrid *epgGrid;
cTimeline *timeline;
cChannelgroups *channelGroups;
cList<cChannelEpg> channels;
@@ -34,7 +34,7 @@ private:
const cChannel *SeekChannelBack(int num);
void ClearOutdatedChannelHeaders(void);
public:
- cEpgGrid(cOsdView *rootView, cTimeManager *timeManager);
+ cEpgGrid(skindesignerapi::cOsdView *rootView, cTimeManager *timeManager);
virtual ~cEpgGrid(void);
void Deactivate(bool hide) { lastSecond = -1; rootView->Deactivate(hide); };
void Activate(void) { DrawTime(); rootView->Activate(); };