summaryrefslogtreecommitdiff
path: root/grid.h
diff options
context:
space:
mode:
Diffstat (limited to 'grid.h')
-rw-r--r--grid.h58
1 files changed, 0 insertions, 58 deletions
diff --git a/grid.h b/grid.h
deleted file mode 100644
index 22744ec..0000000
--- a/grid.h
+++ /dev/null
@@ -1,58 +0,0 @@
-#ifndef __TVGUIDE_GRID_H
-#define __TVGUIDE_GRID_H
-
-#include <vdr/tools.h>
-#include "styledpixmap.h"
-
-class cChannelEpg;
-
-// --- cEpgGrid -------------------------------------------------------------
-
-class cGridElement : public cListObject, public cStyledPixmap {
-protected:
- cTextWrapper *text;
- int viewportHeight;
- int borderWidth;
- void setBackground();
- bool isColor1;
- bool active;
- bool dirty;
- bool hasTimer;
- bool hasSwitchTimer;
- bool intersects(cGridElement *neighbor);
- virtual time_t Duration(void) { return 0; };
- virtual void drawText(void) {};
- bool dummy;
-public:
- cGridElement(cChannelEpg *c);
- virtual ~cGridElement(void);
- cChannelEpg *column;
- virtual void SetViewportHeight(void) {};
- virtual void PositionPixmap(void) {};
- virtual void setText(void) {};
- void Draw(void);
- void SetDirty(void) {dirty = true;};
- void SetActive(void) {dirty = true; active = true;};
- void SetInActive(void) {dirty = true; active = false;};
- void SetColor(bool color) {isColor1 = color;};
- bool IsColor1(void) {return isColor1;};
- bool isFirst(void);
- virtual const cEvent *GetEvent(void) { return NULL; };
- bool Match(time_t t);
- virtual time_t StartTime(void) { return 0; };
- virtual time_t EndTime(void) { return 0; };
- virtual void SetStartTime(time_t start) {};
- virtual void SetEndTime(time_t end) {};
- int calcOverlap(cGridElement *neighbor);
- virtual void SetTimer(void) {};
- virtual void SetSwitchTimer(void) {};
- virtual cString getText(void) { return cString("");};
- virtual cString getTimeString(void) { return cString("");};
- bool Active(void) { return active; };
- bool HasTimer(void) {return hasTimer;};
- bool HasSwitchTimer(void) {return hasSwitchTimer;};
- bool isDummy(void) { return dummy; };
- virtual void debug() {};
-};
-
-#endif //__TVGUIDE_GRID_H