diff options
| author | Stefan Pluecken <stefan.pluecken@multimedia-labs.de> | 2005-11-26 03:49:30 +0000 |
|---|---|---|
| committer | Stefan Pluecken <stefan.pluecken@multimedia-labs.de> | 2005-11-26 03:49:30 +0000 |
| commit | 8138d67d47307c7e438166b9c9cac5992e4929a5 (patch) | |
| tree | 20c70e3530d103ed26ef4af2c6f84e88e769ece6 /lib/python/Screens/InfoBarGenerics.py | |
| parent | e33169b42fa0e0aafa995ca2ec0abd605f9768f2 (diff) | |
| download | enigma2-8138d67d47307c7e438166b9c9cac5992e4929a5.tar.gz enigma2-8138d67d47307c7e438166b9c9cac5992e4929a5.zip | |
show dolby, crypt and format status in the infobar - we don't have functionality to get the info about this yet
Diffstat (limited to 'lib/python/Screens/InfoBarGenerics.py')
| -rw-r--r-- | lib/python/Screens/InfoBarGenerics.py | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/lib/python/Screens/InfoBarGenerics.py b/lib/python/Screens/InfoBarGenerics.py index ce2c0da5..8ab16c53 100644 --- a/lib/python/Screens/InfoBarGenerics.py +++ b/lib/python/Screens/InfoBarGenerics.py @@ -6,6 +6,7 @@ from Components.config import configfile, configsequencearg from Components.config import config, configElement, ConfigSubsection, configSequence from ChannelSelection import ChannelSelection +from Components.Pixmap import PixmapConditional from Components.BlinkingPixmap import BlinkingPixmapConditional from Components.ServiceName import ServiceName from Components.EventInfo import EventInfo @@ -461,3 +462,17 @@ class InfoBarAudioSelection: n = audio.getNumberOfTracks() if n > 0: self.session.open(AudioSelection, audio) + +class InfoBarAdditionalInfo: + def __init__(self): + self["DolbyActive"] = PixmapConditional() + # TODO: get the info from c++ somehow + self["DolbyActive"].setConnect(lambda: False) + + self["CryptActive"] = PixmapConditional() + # TODO: get the info from c++ somehow + self["CryptActive"].setConnect(lambda: False) + + self["FormatActive"] = PixmapConditional() + # TODO: get the info from c++ somehow + self["FormatActive"].setConnect(lambda: False)
\ No newline at end of file |
