mirror of
https://projects.vdr-developer.org/git/vdr-plugin-tvguide.git
synced 2023-10-05 15:01:48 +02:00
21 lines
578 B
C++
21 lines
578 B
C++
#ifndef __TVGUIDE_HEADERGRID_H
|
|
#define __TVGUIDE_HEADERGRID_H
|
|
|
|
#include "grid.h"
|
|
|
|
// --- cHeaderGrid -------------------------------------------------------------
|
|
|
|
class cHeaderGrid : public cGrid {
|
|
private:
|
|
cPixmap *pixmapLogo;
|
|
void drawChannelHorizontal(const cChannel *channel);
|
|
void drawChannelVertical(const cChannel *channel);
|
|
public:
|
|
cHeaderGrid(void);
|
|
virtual ~cHeaderGrid(void);
|
|
void createBackground(int num);
|
|
void drawChannel(const cChannel *channel);
|
|
void setPosition(int num);
|
|
};
|
|
|
|
#endif //__TVGUIDE_HEADERGRID_H
|