summaryrefslogtreecommitdiff
path: root/timeline.h
blob: 267e1f74307669b3136e5e661359ef5082759086 (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