blob: 9cf6045a5be5e7686af62a622b7061aca77aa413 (
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:
cStyledPixmap *buttonRed;
cStyledPixmap *buttonGreen;
cStyledPixmap *buttonYellow;
cStyledPixmap *buttonBlue;
int textY;
int buttonWidth;
public:
cFooter();
virtual ~cFooter(void);
void drawRedButton();
void drawGreenButton();
void drawYellowButton();
void drawBlueButton();
};
#endif //__TVGUIDE_FOOTER_H
|