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 /displaymenuview.c | |
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 'displaymenuview.c')
-rw-r--r-- | displaymenuview.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/displaymenuview.c b/displaymenuview.c index 8416357..f0e64a3 100644 --- a/displaymenuview.c +++ b/displaymenuview.c @@ -511,6 +511,16 @@ int cNopacityDisplayMenuView::GetTimersMaxHeight(void) { return headerHeight + contentHeight; } +cNopacityTimer *cNopacityDisplayMenuView::DrawTimerConflict(int numConflicts, int y) { + cNopacityTimer *t = new cNopacityTimer(osd, numConflicts, fontTimers, fontTimersHead); + t->SetGeometry(timersWidth, y); + t->CreateConflictText(); + t->CalculateHeight(spaceMenu); + t->CreatePixmaps(osdWidth - timersWidth - 10); + t->Render(); + return t; +} + cNopacityTimer *cNopacityDisplayMenuView::DrawTimer(const cTimer *Timer, int y) { cNopacityTimer *t = new cNopacityTimer(osd, Timer, fontTimers, fontTimersHead); t->SetGeometry(timersWidth, y); |