immediate take care of changed "visualize rotor movement" option
[enigma2.git] / lib / python / Screens / Dish.py
1 from Screen import Screen
2
3 from Components.BlinkingPixmap import BlinkingPixmapConditional
4 from Components.Pixmap import Pixmap
5 from Components.Button import Button
6 from Components.config import config
7
8 from enigma import eDVBSatelliteEquipmentControl
9
10 class Dish(Screen):
11         def __init__(self, session):
12                 Screen.__init__(self, session)
13                 
14                 self["transparent"] = Button("")
15                 self["Dishpixmap"] = BlinkingPixmapConditional()
16                 #self["Dishpixmap"] = Pixmap()
17                 config.usage.showdish.addNotifier(self.configChanged)
18                 self.configChanged(config.usage.showdish)
19
20         def configChanged(self, configElement):
21                 if not configElement.value:
22                         self["Dishpixmap"].setConnect(lambda: False)
23                 else:
24                         self["Dishpixmap"].setConnect(eDVBSatelliteEquipmentControl.getInstance().isRotorMoving)