diff options
author | louis <louis.braun@gmx.de> | 2013-01-26 14:28:10 +0100 |
---|---|---|
committer | louis <louis.braun@gmx.de> | 2013-01-26 14:28:10 +0100 |
commit | 7cfa2ba6615ef9c094b6fbe9ee200794996e8cdc (patch) | |
tree | dee529d45c82c80d7cb1b623218300ff1d1d8e73 /timers.h | |
parent | 3e5815663163a7d982ed640e456fc46a4ea6eed7 (diff) | |
download | skin-nopacity-7cfa2ba6615ef9c094b6fbe9ee200794996e8cdc.tar.gz skin-nopacity-7cfa2ba6615ef9c094b6fbe9ee200794996e8cdc.tar.bz2 |
Added display of Timer Conflicts with epgsearch in Main Menu
Diffstat (limited to 'timers.h')
-rw-r--r-- | timers.h | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -7,6 +7,8 @@ class cNopacityTimer : public cListObject { cPixmap *pixmap;
cPixmap *pixmapLogo;
const cTimer *timer;
+ int numConflicts;
+ bool isTimerConflict;
const cFont *font;
const cFont *fontLarge;
int width;
@@ -17,10 +19,12 @@ class cNopacityTimer : public cListObject { void DrawLogo(void);
public:
cNopacityTimer(cOsd *osd, const cTimer *timer, const cFont *font, const cFont *fontLarge);
+ cNopacityTimer(cOsd *osd, int numConflicts, const cFont *font, const cFont *fontLarge);
virtual ~cNopacityTimer(void);
void SetGeometry(int width, int y);
void CreateDate(void);
void CreateShowName(void);
+ void CreateConflictText(void);
void CalculateHeight(int space);
void CreatePixmaps(int x);
void SetAlpha(int alpha);
|