diff options
author | kamel5 <vdr.kamel5 (at) gmx (dot) net> | 2019-07-11 15:11:26 +0200 |
---|---|---|
committer | kamel5 <vdr.kamel5 (at) gmx (dot) net> | 2019-07-11 15:11:26 +0200 |
commit | bff9d78ff3751e35434594c5849c8ba4a085d9d1 (patch) | |
tree | ea121b8dd9898daf8d61fc7a644ae4f2704a7e32 /grid.h | |
parent | d21b1496f0f80732f290b39610253b857ad7a992 (diff) | |
download | vdr-plugin-tvguide-bff9d78ff3751e35434594c5849c8ba4a085d9d1.tar.gz vdr-plugin-tvguide-bff9d78ff3751e35434594c5849c8ba4a085d9d1.tar.bz2 |
Rename grid.* to gridelement.*
Diffstat (limited to 'grid.h')
-rw-r--r-- | grid.h | 58 |
1 files changed, 0 insertions, 58 deletions
@@ -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 |