the forgotten screen
authorStefan Pluecken <stefan.pluecken@multimedia-labs.de>
Thu, 1 Dec 2005 11:14:06 +0000 (11:14 +0000)
committerStefan Pluecken <stefan.pluecken@multimedia-labs.de>
Thu, 1 Dec 2005 11:14:06 +0000 (11:14 +0000)
lib/python/Screens/Dish.py [new file with mode: 0644]

diff --git a/lib/python/Screens/Dish.py b/lib/python/Screens/Dish.py
new file mode 100644 (file)
index 0000000..4c7e747
--- /dev/null
@@ -0,0 +1,16 @@
+from Screen import Screen
+
+from Components.BlinkingPixmap import BlinkingPixmapConditional
+from Components.Pixmap import Pixmap
+from Components.Button import Button
+
+from enigma import *
+
+class Dish(Screen):
+       def __init__(self, session):
+               Screen.__init__(self, session)
+               
+               self["transparent"] = Button("")
+               self["Dishpixmap"] = BlinkingPixmapConditional()
+               #self["Dishpixmap"] = Pixmap()
+               self["Dishpixmap"].setConnect(eDVBSatelliteEquipmentControl.getInstance().isRotorMoving)