vdr-plugin-tvguide/channelcolumn.h

52 lines
1.6 KiB
C
Raw Normal View History

2013-01-17 13:16:44 +01:00
#ifndef __TVGUIDE_CHANNELCOLUMN_H
#define __TVGUIDE_CHANNELCOLUMN_H
class cGrid;
2013-01-17 13:16:44 +01:00
class cEpgGrid;
class cHeaderGrid;
2013-01-17 13:16:44 +01:00
// --- cChannelColumn -------------------------------------------------------------
class cChannelColumn : public cListObject, public cStyledPixmap {
private:
cMyTime *myTime;
2013-05-26 11:38:05 +02:00
int num;
const cChannel *channel;
cHeaderGrid *header;
cList<cGrid> grids;
2013-05-26 11:38:05 +02:00
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);
2013-01-17 13:16:44 +01:00
public:
2013-05-26 11:38:05 +02:00
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(); };
2013-05-26 11:38:05 +02:00
const cChannel * getChannel() {return channel;}
cGrid * getActive();
cGrid * getNext(cGrid *activeGrid);
cGrid * getPrev(cGrid *activeGrid);
cGrid * getNeighbor(cGrid *activeGrid);
bool isFirst(cGrid *grid);
2013-05-26 11:38:05 +02:00
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; };
2013-05-26 11:38:05 +02:00
void clearGrids();
void dumpGrids();
2013-01-17 13:16:44 +01:00
};
#endif //__TVGUIDE_CHANNELCOLUMN_H