aboutsummaryrefslogtreecommitdiff
path: root/lib/python
diff options
context:
space:
mode:
authorStefan Pluecken <stefan.pluecken@multimedia-labs.de>2005-12-01 11:14:06 +0000
committerStefan Pluecken <stefan.pluecken@multimedia-labs.de>2005-12-01 11:14:06 +0000
commitbb4b54a4168c5dca402b72adafd50cbd6e0b307e (patch)
tree7b25ea1550eeee0cd944c658be84befb34e582d9 /lib/python
parent184706abfa809e8d8b6452a599313fe0e341c980 (diff)
downloadenigma2-bb4b54a4168c5dca402b72adafd50cbd6e0b307e.tar.gz
enigma2-bb4b54a4168c5dca402b72adafd50cbd6e0b307e.zip
the forgotten screen
Diffstat (limited to 'lib/python')
-rw-r--r--lib/python/Screens/Dish.py16
1 files changed, 16 insertions, 0 deletions
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)