mirror of
https://projects.vdr-developer.org/git/vdr-plugin-tvguide.git
synced 2023-10-05 15:01:48 +02:00
23 lines
535 B
C++
23 lines
535 B
C++
#ifndef __TVGUIDE_FOOTER_H
|
|
#define __TVGUIDE_FOOTER_H
|
|
|
|
// --- cFooter -------------------------------------------------------------
|
|
|
|
class cFooter {
|
|
private:
|
|
cPixmap *footer;
|
|
int buttonWidth;
|
|
int buttonHeight;
|
|
int buttonY;
|
|
int buttonBorder;
|
|
void DrawButton(const char *text, tColor color, tColor borderColor, int num);
|
|
public:
|
|
cFooter();
|
|
virtual ~cFooter(void);
|
|
void drawRedButton();
|
|
void drawGreenButton();
|
|
void drawYellowButton();
|
|
void drawBlueButton();
|
|
};
|
|
|
|
#endif //__TVGUIDE_FOOTER_H
|