diff options
author | louis <louis.braun@gmx.de> | 2013-01-17 13:16:44 +0100 |
---|---|---|
committer | louis <louis.braun@gmx.de> | 2013-01-17 13:16:44 +0100 |
commit | 47c3fea545a1b4607deda1e7d2fa51cbcf89a656 (patch) | |
tree | 4109469360bfb71ce467c240a33d0738ad44c18e /footer.h | |
download | vdr-plugin-tvguide-47c3fea545a1b4607deda1e7d2fa51cbcf89a656.tar.gz vdr-plugin-tvguide-47c3fea545a1b4607deda1e7d2fa51cbcf89a656.tar.bz2 |
Initial push tvguide 0.0.1
Diffstat (limited to 'footer.h')
-rw-r--r-- | footer.h | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/footer.h b/footer.h new file mode 100644 index 0000000..9cf6045 --- /dev/null +++ b/footer.h @@ -0,0 +1,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
\ No newline at end of file |