vdr-plugin-tvguide/footer.h

23 lines
535 B
C
Raw Normal View History

2013-01-17 13:16:44 +01:00
#ifndef __TVGUIDE_FOOTER_H
#define __TVGUIDE_FOOTER_H
// --- cFooter -------------------------------------------------------------
class cFooter {
private:
cPixmap *footer;
2013-01-17 13:16:44 +01:00
int buttonWidth;
int buttonHeight;
int buttonY;
int buttonBorder;
void DrawButton(const char *text, tColor color, tColor borderColor, int num);
2013-01-17 13:16:44 +01:00
public:
cFooter();
virtual ~cFooter(void);
void drawRedButton();
void drawGreenButton();
void drawYellowButton();
void drawBlueButton();
};
#endif //__TVGUIDE_FOOTER_H