X-Git-Url: http://code.vuplus.com/gitweb/?p=vuplus_dvbapp;a=blobdiff_plain;f=lib%2Fpython%2FScreens%2FInfoBar.py;h=ca126eda07360d4a2cb27a6f4d4e83f2da9c79de;hp=51e77a8b6e469bb13a674847acc8cd5092ac5080;hb=1837e66b4c16260152cc9e98d7331dea368ea565;hpb=9c22bd14f76cbc38c14d417dc185cdcdfc610665 diff --git a/lib/python/Screens/InfoBar.py b/lib/python/Screens/InfoBar.py index 51e77a8..ca126ed 100644 --- a/lib/python/Screens/InfoBar.py +++ b/lib/python/Screens/InfoBar.py @@ -3,20 +3,25 @@ from Screen import Screen from Screens.MovieSelection import MovieSelection from Screens.ChannelSelection import ChannelSelectionRadio from Screens.MessageBox import MessageBox +from Screens.Ci import CiHandler from ServiceReference import ServiceReference -from Components.Clock import Clock +from Components.Sources.Clock import Clock +from Components.Date import DateLabel +from Components.ProviderName import ProviderName from Components.ActionMap import ActionMap, HelpableActionMap -from Components.ServicePosition import ServicePosition +from Components.config import currentConfigSelectionElement, config from Tools.Notifications import AddNotificationWithCallback from Screens.InfoBarGenerics import InfoBarShowHide, \ - InfoBarPowerKey, InfoBarNumberZap, InfoBarChannelSelection, InfoBarMenu, \ + InfoBarNumberZap, InfoBarChannelSelection, InfoBarMenu, \ InfoBarEPG, InfoBarEvent, InfoBarServiceName, InfoBarSeek, InfoBarInstantRecord, \ InfoBarAudioSelection, InfoBarAdditionalInfo, InfoBarNotifications, InfoBarDish, \ InfoBarSubserviceSelection, InfoBarTuner, InfoBarShowMovies, InfoBarTimeshift, \ - InfoBarServiceNotifications, InfoBarPVRState + InfoBarServiceNotifications, InfoBarPVRState, InfoBarCueSheetSupport, InfoBarSimpleEventView, \ + InfoBarSummarySupport, InfoBarTimeshiftState, InfoBarTeletextPlugin, InfoBarExtensions, \ + InfoBarSubtitleSupport from Screens.HelpMenu import HelpableScreen, HelpMenu @@ -24,27 +29,33 @@ from enigma import * import time -class InfoBar(Screen, InfoBarShowHide, InfoBarPowerKey, +class InfoBar(InfoBarShowHide, InfoBarNumberZap, InfoBarChannelSelection, InfoBarMenu, InfoBarEPG, InfoBarEvent, InfoBarServiceName, InfoBarInstantRecord, InfoBarAudioSelection, HelpableScreen, InfoBarAdditionalInfo, InfoBarNotifications, InfoBarDish, - InfoBarSubserviceSelection, InfoBarTuner, InfoBarTimeshift, InfoBarSeek): + InfoBarSubserviceSelection, InfoBarTuner, InfoBarTimeshift, InfoBarSeek, + InfoBarSummarySupport, InfoBarTimeshiftState, InfoBarTeletextPlugin, InfoBarExtensions, + InfoBarSubtitleSupport, Screen): def __init__(self, session): Screen.__init__(self, session) + CiHandler.setSession(session) + self["actions"] = HelpableActionMap(self, "InfobarActions", { "showMovies": (self.showMovies, _("Play recorded movies...")), - "showRadio": (self.showRadio, _("Show the radio player...")) + "showRadio": (self.showRadio, _("Show the radio player...")), + "showTv": (self.showTv, _("Show the tv player...")), }) for x in HelpableScreen, \ - InfoBarShowHide, InfoBarPowerKey, \ + InfoBarShowHide, \ InfoBarNumberZap, InfoBarChannelSelection, InfoBarMenu, InfoBarEPG, \ InfoBarEvent, InfoBarServiceName, InfoBarInstantRecord, InfoBarAudioSelection, \ InfoBarAdditionalInfo, InfoBarNotifications, InfoBarDish, InfoBarSubserviceSelection, \ - InfoBarTuner, InfoBarTimeshift, InfoBarSeek: + InfoBarTuner, InfoBarTimeshift, InfoBarSeek, InfoBarSummarySupport, InfoBarTimeshiftState, \ + InfoBarTeletextPlugin, InfoBarExtensions, InfoBarSubtitleSupport: x.__init__(self) self.helpList.append((self["actions"], "InfobarActions", [("showMovies", "Watch a Movie...")])) @@ -52,8 +63,14 @@ class InfoBar(Screen, InfoBarShowHide, InfoBarPowerKey, self["CurrentTime"] = Clock() + def showTv(self): + self.showTvChannelList(True) + def showRadio(self): - self.session.open(ChannelSelectionRadio) + if currentConfigSelectionElement(config.usage.e1like_radio_mode) == "yes": + self.showRadioChannelList(True) + else: + self.session.open(ChannelSelectionRadio) def showMovies(self): self.session.openWithCallback(self.movieSelected, MovieSelection) @@ -62,10 +79,11 @@ class InfoBar(Screen, InfoBarShowHide, InfoBarPowerKey, if service is not None: self.session.open(MoviePlayer, service) -class MoviePlayer(Screen, InfoBarShowHide, InfoBarPowerKey, \ +class MoviePlayer(InfoBarShowHide, \ InfoBarMenu, \ InfoBarServiceName, InfoBarSeek, InfoBarShowMovies, InfoBarAudioSelection, HelpableScreen, InfoBarNotifications, - InfoBarServiceNotifications, InfoBarPVRState): + InfoBarServiceNotifications, InfoBarPVRState, InfoBarCueSheetSupport, InfoBarSimpleEventView, + InfoBarSummarySupport, InfoBarTeletextPlugin, InfoBarSubtitleSupport, Screen): def __init__(self, session, service): Screen.__init__(self, session) @@ -75,16 +93,13 @@ class MoviePlayer(Screen, InfoBarShowHide, InfoBarPowerKey, \ "leavePlayer": (self.leavePlayer, _("leave movie player...")) }) - for x in HelpableScreen, InfoBarShowHide, InfoBarPowerKey, InfoBarMenu, \ + for x in HelpableScreen, InfoBarShowHide, InfoBarMenu, \ InfoBarServiceName, InfoBarSeek, InfoBarShowMovies, \ - InfoBarAudioSelection, InfoBarNotifications, \ - InfoBarServiceNotifications, InfoBarPVRState: + InfoBarAudioSelection, InfoBarNotifications, InfoBarSimpleEventView, \ + InfoBarServiceNotifications, InfoBarPVRState, InfoBarCueSheetSupport, \ + InfoBarSummarySupport, InfoBarTeletextPlugin, InfoBarSubtitleSupport: x.__init__(self) - self["CurrentTime"] = ServicePosition(self.session.nav, ServicePosition.TYPE_REMAINING) - self["ElapsedTime"] = ServicePosition(self.session.nav, ServicePosition.TYPE_POSITION) - # TYPE_LENGTH? - self.lastservice = self.session.nav.getCurrentlyPlayingServiceReference() self.session.nav.playService(service)