<%pre> #include #include #include #include #include #include "tools.h" using namespace vdrlive; <%args> <{ cSchedulesLock schedulesLock; const cSchedules* Schedules = cSchedules::Schedules(schedulesLock); }> VDR-Live - <$ tr("What's on next?") $>
VDR Live! <& menu >
<$ tr("What's on next?") $>
<{ for (cChannel *Channel = Channels.First(); Channel; Channel = Channels.Next(Channel)) { if (!Channel->GroupSep()) { const cSchedule *Schedule = Schedules->GetSchedule(Channel); if (Schedule) { const cEvent *Event = Schedule->GetFollowingEvent(); if (Event) { std::string title(Event->Title() ? Event->Title() : ""); std::string short_description(Event->ShortText() ? Event->ShortText() : ""); std::string description(Event->Description() ? Event->Description() : ""); }> <& event_widget title=(title) short_description=(short_description) description=(description) channel_name=(Channel->Name())> <{ } } } } }>