diff options
author | louis <louis.braun@gmx.de> | 2013-05-26 11:38:05 +0200 |
---|---|---|
committer | louis <louis.braun@gmx.de> | 2013-05-26 11:38:05 +0200 |
commit | 812fd1b7a5aeb67d4139255a6df8230c420ea57e (patch) | |
tree | 36e0408bf9f4191b37cf11bd9dd01e381d105f6e /channelcolumn.h | |
parent | 9f47ab764efc83d8bf94f25c4badeb6e4c91c649 (diff) | |
download | vdr-plugin-tvguide-812fd1b7a5aeb67d4139255a6df8230c420ea57e.tar.gz vdr-plugin-tvguide-812fd1b7a5aeb67d4139255a6df8230c420ea57e.tar.bz2 |
whitespace cleanup
Diffstat (limited to 'channelcolumn.h')
-rw-r--r-- | channelcolumn.h | 56 |
1 files changed, 28 insertions, 28 deletions
diff --git a/channelcolumn.h b/channelcolumn.h index eda8f0f..a84f9a6 100644 --- a/channelcolumn.h +++ b/channelcolumn.h @@ -9,43 +9,43 @@ class cHeaderGrid; class cChannelColumn : public cListObject, public cStyledPixmap { private: cMyTime *myTime; - int num; - const cChannel *channel; - cHeaderGrid *header; + int num; + const cChannel *channel; + cHeaderGrid *header; cList<cGrid> grids; - cSchedulesLock *schedulesLock; - const cSchedules *schedules; - bool hasTimer; + cSchedulesLock *schedulesLock; + const cSchedules *schedules; + bool hasTimer; cGrid *addEpgGrid(const cEvent *event, cGrid *firstGrid, bool color); cGrid *addDummyGrid(time_t start, time_t end, cGrid *firstGrid, bool color); public: - cChannelColumn(int num, const cChannel *channel, cMyTime *myTime); - virtual ~cChannelColumn(void); - void createHeader(); - void drawHeader(); - bool readGrids(); - void drawGrids(); - int getX(); - int getY(); + cChannelColumn(int num, const cChannel *channel, cMyTime *myTime); + virtual ~cChannelColumn(void); + void createHeader(); + void drawHeader(); + bool readGrids(); + void drawGrids(); + int getX(); + int getY(); int Start() { return myTime->GetStart(); }; int Stop() { return myTime->GetEnd(); }; const char* Name() { return channel->Name(); }; - const cChannel * getChannel() {return channel;} - cGrid * getActive(); - cGrid * getNext(cGrid *activeGrid); - cGrid * getPrev(cGrid *activeGrid); - cGrid * getNeighbor(cGrid *activeGrid); + const cChannel * getChannel() {return channel;} + cGrid * getActive(); + cGrid * getNext(cGrid *activeGrid); + cGrid * getPrev(cGrid *activeGrid); + cGrid * getNeighbor(cGrid *activeGrid); bool isFirst(cGrid *grid); - void AddNewGridsAtStart(); - void AddNewGridsAtEnd(); - void ClearOutdatedStart(); - void ClearOutdatedEnd(); - int GetNum() {return num;}; - void SetNum(int num) {this->num = num;}; - void setTimer() {hasTimer = true;}; + void AddNewGridsAtStart(); + void AddNewGridsAtEnd(); + void ClearOutdatedStart(); + void ClearOutdatedEnd(); + int GetNum() {return num;}; + void SetNum(int num) {this->num = num;}; + void setTimer() {hasTimer = true;}; bool HasTimer() { return hasTimer; }; - void clearGrids(); - void dumpGrids(); + void clearGrids(); + void dumpGrids(); }; #endif //__TVGUIDE_CHANNELCOLUMN_H |