From bff9d78ff3751e35434594c5849c8ba4a085d9d1 Mon Sep 17 00:00:00 2001 From: kamel5 Date: Thu, 11 Jul 2019 15:11:26 +0200 Subject: Rename grid.* to gridelement.* --- grid.h | 58 ---------------------------------------------------------- 1 file changed, 58 deletions(-) delete mode 100644 grid.h (limited to 'grid.h') 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 -#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 -- cgit v1.2.3