diff options
author | louis <louis.braun@gmx.de> | 2014-01-11 16:53:23 +0100 |
---|---|---|
committer | louis <louis.braun@gmx.de> | 2014-01-11 16:53:23 +0100 |
commit | 3121910dc1267c593d24e39e068bfa91f798603f (patch) | |
tree | 2ae630b5655ce7aa2821e6440b4e5056d46d91e3 /tvguideosd.c | |
parent | 9b45a5d093ce62a36aef5d48848d8e8c3864e8aa (diff) | |
download | vdr-plugin-tvguide-3121910dc1267c593d24e39e068bfa91f798603f.tar.gz vdr-plugin-tvguide-3121910dc1267c593d24e39e068bfa91f798603f.tar.bz2 |
restructured detailöed EPG View that tv frame and status buttons are displayed
Diffstat (limited to 'tvguideosd.c')
-rw-r--r-- | tvguideosd.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/tvguideosd.c b/tvguideosd.c index f1ab5b0..77d2477 100644 --- a/tvguideosd.c +++ b/tvguideosd.c @@ -101,8 +101,8 @@ void cTvGuideOsd::drawOsd() { timeLine->drawClock();
channelGroups = new cChannelGroups();
channelGroups->ReadChannelGroups();
- //channelGroups->DumpGroups();
footer = new cFooter(channelGroups);
+ recMenuManager->SetFooter(footer);
footer->drawRedButton();
if (tvguideConfig.channelJumpMode == eNumJump) {
footer->drawGreenButton();
@@ -538,7 +538,9 @@ eOSState cTvGuideOsd::ChannelSwitch() { void cTvGuideOsd::DetailedEPG() {
if (!activeGrid->isDummy()) {
detailViewActive = true;
- detailView = new cDetailView(activeGrid->GetEvent());
+ detailView = new cDetailView(activeGrid->GetEvent(), footer);
+ footer->SetDetailedViewMode();
+ osdManager.flush();
detailView->setContent();
detailView->drawHeader();
detailView->drawContent();
|