aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Screens/InfoBar.py
diff options
context:
space:
mode:
authorAndreas Monzner <andreas.monzner@multimedia-labs.de>2005-11-10 15:27:23 +0000
committerAndreas Monzner <andreas.monzner@multimedia-labs.de>2005-11-10 15:27:23 +0000
commit4739f2d47dc8e6aee519f90e00e011659adf47ed (patch)
treea8b82601dc7ecd499b0d8c94ff663e6cb6dc7a3d /lib/python/Screens/InfoBar.py
parentaafd3efd2bb9865fe1c5aa930624cd321f6e2533 (diff)
downloadenigma2-4739f2d47dc8e6aee519f90e00e011659adf47ed.tar.gz
enigma2-4739f2d47dc8e6aee519f90e00e011659adf47ed.zip
try to add a epglist (not working yet)
Diffstat (limited to 'lib/python/Screens/InfoBar.py')
-rw-r--r--lib/python/Screens/InfoBar.py13
1 files changed, 10 insertions, 3 deletions
diff --git a/lib/python/Screens/InfoBar.py b/lib/python/Screens/InfoBar.py
index 9892e40b..39f547e6 100644
--- a/lib/python/Screens/InfoBar.py
+++ b/lib/python/Screens/InfoBar.py
@@ -1,4 +1,5 @@
from Screen import Screen
+from EpgSelection import EPGSelection
from ChannelSelection import ChannelSelection
from Components.Clock import Clock
from Components.ActionMap import ActionMap
@@ -58,7 +59,8 @@ class InfoBar(Screen):
"hide": self.hide,
"toggleShow": self.toggleShow,
"showMovies": self.showMovies,
- "quit": self.quit
+ "quit": self.quit,
+ "showEPGList": self.showEPGList
})
# self["okbutton"] = Button("mainMenu", [self.mainMenu])
@@ -152,8 +154,13 @@ class InfoBar(Screen):
self.muteDialog.instance.show()
else:
self.muteDialog.instance.hide()
-
- def quit(self):
+
+ def showEPGList(self):
+# TODO hier irgendwie EPGSelection benutzen und setRoot benutzen um nen service zu uebergeben
+# self.session.nav.getCurrentlyPlayingServiceReference() sollte das wohl sein
+ print "hier soll mal ne EPGList aufgehen"
+
+ def quit(self):
configfile.save()
quitMainloop()