aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Screens/InfoBarGenerics.py
diff options
context:
space:
mode:
authorStefan Pluecken <stefan.pluecken@multimedia-labs.de>2005-12-01 08:41:25 +0000
committerStefan Pluecken <stefan.pluecken@multimedia-labs.de>2005-12-01 08:41:25 +0000
commitc942b1c829bf49d77dcdb2bfda776e6288c99828 (patch)
tree2ba7c5b0d12db187ab555776583141e00c7f232d /lib/python/Screens/InfoBarGenerics.py
parent7663898c2a6f536b59965f8c1978f7d268bdfc13 (diff)
downloadenigma2-c942b1c829bf49d77dcdb2bfda776e6288c99828.tar.gz
enigma2-c942b1c829bf49d77dcdb2bfda776e6288c99828.zip
add blinking dish-picture if positioner is moving (we need a function which returns true when the positioner is moving for it to
work)
Diffstat (limited to 'lib/python/Screens/InfoBarGenerics.py')
-rw-r--r--lib/python/Screens/InfoBarGenerics.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/python/Screens/InfoBarGenerics.py b/lib/python/Screens/InfoBarGenerics.py
index c1842796..ddfac4a0 100644
--- a/lib/python/Screens/InfoBarGenerics.py
+++ b/lib/python/Screens/InfoBarGenerics.py
@@ -17,6 +17,7 @@ from EpgSelection import EPGSelection
from Screens.MessageBox import MessageBox
from Screens.Volume import Volume
from Screens.Mute import Mute
+from Screens.Dish import Dish
from Screens.Standby import Standby
from Screens.EventView import EventView
@@ -89,6 +90,11 @@ class InfoBarVolumeControl:
else:
self.muteDialog.instance.hide()
+class InfoBarDish:
+ def __init__(self):
+ self.dishDialog = self.session.instantiateDialog(Dish)
+ self.onShown.append(self.dishDialog.instance.show)
+
class InfoBarShowHide:
""" InfoBar show/hide control, accepts toggleShow and hide actions, might start
fancy animations. """