summaryrefslogtreecommitdiff
path: root/timeline.h
diff options
context:
space:
mode:
Diffstat (limited to 'timeline.h')
-rw-r--r--timeline.h22
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