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 /timeline.h | |
download | vdr-plugin-tvguide-47c3fea545a1b4607deda1e7d2fa51cbcf89a656.tar.gz vdr-plugin-tvguide-47c3fea545a1b4607deda1e7d2fa51cbcf89a656.tar.bz2 |
Initial push tvguide 0.0.1
Diffstat (limited to 'timeline.h')
-rw-r--r-- | timeline.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/timeline.h b/timeline.h new file mode 100644 index 0000000..e534fa5 --- /dev/null +++ b/timeline.h @@ -0,0 +1,22 @@ +#ifndef __TVGUIDE_TIMELINE_H
+#define __TVGUIDE_TIMELINE_H
+
+// --- cTimeLine -------------------------------------------------------------
+
+class cTimeLine {
+private:
+ cMyTime *myTime;
+ cStyledPixmap *dateViewer;
+ cPixmap *timeline;
+ cStyledPixmap *clock;
+ cImage *createBackgroundImage(int width, int height, tColor clrBgr, tColor clrBlend);
+public:
+ cTimeLine(cMyTime *myTime);
+ virtual ~cTimeLine(void);
+ void drawDateViewer();
+ void drawTimeline();
+ void setTimeline();
+ void drawClock();
+};
+
+#endif //__TVGUIDE_TIMELINE_H
\ No newline at end of file |