summaryrefslogtreecommitdiff
path: root/timeline.h
blob: e534fa5fa9b85151421a04b7bc8f89227fd32157 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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