From: Stefan Pluecken Date: Thu, 1 Dec 2005 11:14:06 +0000 (+0000) Subject: the forgotten screen X-Git-Tag: 2.6.0~4846 X-Git-Url: https://git.cweiske.de/enigma2.git/commitdiff_plain/bb4b54a4168c5dca402b72adafd50cbd6e0b307e the forgotten screen --- diff --git a/lib/python/Screens/Dish.py b/lib/python/Screens/Dish.py new file mode 100644 index 00000000..4c7e7472 --- /dev/null +++ b/lib/python/Screens/Dish.py @@ -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)