From 812fd1b7a5aeb67d4139255a6df8230c420ea57e Mon Sep 17 00:00:00 2001 From: louis Date: Sun, 26 May 2013 11:38:05 +0200 Subject: whitespace cleanup --- grid.h | 54 +++++++++++++++++++++++++++--------------------------- 1 file changed, 27 insertions(+), 27 deletions(-) (limited to 'grid.h') diff --git a/grid.h b/grid.h index 146b896..42ad41d 100644 --- a/grid.h +++ b/grid.h @@ -5,39 +5,39 @@ class cGrid : public cListObject, public cStyledPixmap { protected: - cTextWrapper *text; - int viewportHeight; - int borderWidth; - void setBackground(); - bool isColor1; - bool active; - bool dirty; - bool intersects(cGrid *neighbor); + cTextWrapper *text; + int viewportHeight; + int borderWidth; + void setBackground(); + bool isColor1; + bool active; + bool dirty; + bool intersects(cGrid *neighbor); virtual time_t Duration(void) {}; virtual void drawText(void) {}; bool dummy; public: - cGrid(cChannelColumn *c); - virtual ~cGrid(void); - cChannelColumn *column; - virtual void SetViewportHeight() {}; - virtual void PositionPixmap() {}; - virtual void setText(void) {}; - void Draw(); - void SetDirty() {dirty = true;}; - void SetActive() {dirty = true; active = true;}; - void SetInActive() {dirty = true; active = false;}; - void SetColor(bool color) {isColor1 = color;}; - bool IsColor1() {return isColor1;}; + cGrid(cChannelColumn *c); + virtual ~cGrid(void); + cChannelColumn *column; + virtual void SetViewportHeight() {}; + virtual void PositionPixmap() {}; + virtual void setText(void) {}; + void Draw(); + void SetDirty() {dirty = true;}; + void SetActive() {dirty = true; active = true;}; + void SetInActive() {dirty = true; active = false;}; + void SetColor(bool color) {isColor1 = color;}; + bool IsColor1() {return isColor1;}; bool isFirst(void); virtual const cEvent *GetEvent() {}; - bool Match(time_t t); - virtual time_t StartTime() {}; - virtual time_t EndTime() {}; - virtual void SetStartTime(time_t start) {}; - virtual void SetEndTime(time_t end) {}; - int calcOverlap(cGrid *neighbor); - virtual void setTimer() {}; + bool Match(time_t t); + virtual time_t StartTime() {}; + virtual time_t EndTime() {}; + virtual void SetStartTime(time_t start) {}; + virtual void SetEndTime(time_t end) {}; + int calcOverlap(cGrid *neighbor); + virtual void setTimer() {}; virtual cString getText(void) { return cString("");}; virtual cString getTimeString(void) { return cString("");}; bool Active(void) { return active; }; -- cgit v1.2.3