blob: 805ab0a6306f43a2e4e79c3ac54a8be0860aef0d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#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
|