aboutsummaryrefslogtreecommitdiff
path: root/screens.py
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@elitedvb.net>2005-01-31 22:51:14 +0000
committerFelix Domke <tmbinc@elitedvb.net>2005-01-31 22:51:14 +0000
commit4bc08995411e21f3564f09e136809be68ddf96a8 (patch)
tree59e2f1babc2b85b61782fe76aadd031faa704f73 /screens.py
parent6b7b7977a92c9a092763bf699cba85347f9f2ec6 (diff)
downloadenigma2-4bc08995411e21f3564f09e136809be68ddf96a8.tar.gz
enigma2-4bc08995411e21f3564f09e136809be68ddf96a8.zip
- fixed dvb scan
- fixed dvbdb (reading/writing lamedb) - fixed (i.e. disallow) operator= in iObject (destroyed refcounts before) - implemented listboxcontent for servicelists - implemented getServiceInformation for non-playing services (still not happy with the result, though) - implemented first try of serviceSelector component
Diffstat (limited to 'screens.py')
-rw-r--r--screens.py22
1 files changed, 11 insertions, 11 deletions
diff --git a/screens.py b/screens.py
index 3dbcb4aa..6aa88e80 100644
--- a/screens.py
+++ b/screens.py
@@ -25,15 +25,12 @@ class testDialog(Screen):
self.session.open(screens["mainMenu"]())
def goEmu(self):
-# self.close(1)
self["title"].setText("EMUs ARE ILLEGAL AND NOT SUPPORTED!")
def goTimeshift(self):
-# self.close(2)
self["title"].setText("JUST PRESS THE YELLOW BUTTON!")
def goHDTV(self):
-# self.close(3)
self["title"].setText("HDTV GREEN FLASHES: ENABLED")
def goClock(self):
@@ -45,14 +42,17 @@ class testDialog(Screen):
b.onClick = [ self.testDialogClick ]
self["okbutton"] = b
self["title"] = Header("Test Dialog - press ok to leave!")
- self["menu"] = MenuList(
- [
- ("MAIN MENU", self.goMain),
- ("EMU SETUP", self.goEmu),
- ("TIMESHIFT SETUP", self.goTimeshift),
- ("HDTV PIP CONFIG", self.goHDTV),
- ("wie spaet ists?!", self.goClock)
- ])
+# self["menu"] = MenuList(
+# [
+# ("MAIN MENU", self.goMain),
+# ("EMU SETUP", self.goEmu),
+# ("TIMESHIFT SETUP", self.goTimeshift),
+# ("HDTV PIP CONFIG", self.goHDTV),
+# ("wie spaet ists?!", self.goClock)
+# ])
+ self["menu"] = ServiceList()
+
+ self["menu"].setRoot(eServiceReference("2:0:1:0:0:0:0:0:0:0:/"))
class mainMenu(Screen):
def __init__(self):