X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/13b7a9b397f36ca3195aad3702feb3db4cbb2f3e..54bd4123728628a6f77bad2584b70d1353a91666:/screens.py?ds=sidebyside diff --git a/screens.py b/screens.py index 7287898d..72f0946d 100644 --- a/screens.py +++ b/screens.py @@ -1,4 +1,6 @@ from components import * +import sys +from enigma import quitMainloop # some screens def doGlobal(screen): @@ -7,35 +9,111 @@ def doGlobal(screen): class Screen(dict, HTMLSkin, GUISkin): """ bla """ -# a test dialog -class testDialog(Screen): - def testDialogClick(self): - print "test dialog clicked!" - self["title"].setText("bla") + # never call this directly - it will be called from the session! + def doClose(self): + GUISkin.close(self) + + def close(self, retval=None): + self.session.close() + +class mainMenu(Screen): + + def goEmu(self): + self["title"].setText("EMUs ARE ILLEGAL AND NOT SUPPORTED!") + + def goTimeshift(self): + self["title"].setText("JUST PRESS THE YELLOW BUTTON!") + + def goHDTV(self): + self["title"].setText("HDTV GREEN FLASHES: ENABLED") + + def goScan(self): + self.session.open(serviceScan()) + + def goClock(self): + self.session.open(clockDisplay(Clock())) + + def okbuttonClick(self): + selection = self["menu"].getCurrent() + selection[1]() def __init__(self): - HTMLSkin.__init__(self, ("title", "okbutton")) + GUISkin.__init__(self) b = Button("ok") - b.onClick = [ self.testDialogClick ] + + b.onClick = [ self.okbuttonClick ] self["okbutton"] = b - self["title"] = Header("Test Dialog - press ok to leave!") + self["title"] = Header("Main Menu! - press ok to leave!") + self["menu"] = MenuList( + [ + ("Close Main Menu", self.close), + ("Service Scan", self.goScan), + ("Quit", quitMainloop), + ("EMU SETUP", self.goEmu), + ("TIMESHIFT SETUP", self.goTimeshift), + ("HDTV PIP CONFIG", self.goHDTV), + ("wie spaet ists?!", self.goClock) + ]) + +#class mainMenu(Screen): +# def __init__(self): +# GUISkin.__init__(self) +# +# self["title"] = Header("this is the\nMAIN MENU !!!"); +# self["okbutton"] = Button("ok") +# self["okbutton"].onClick = [ self.close ] + +class channelSelection(Screen): + def __init__(self): + GUISkin.__init__(self) + + self["list"] = ServiceList() + self["list"].setRoot(eServiceReference("1:0:1:0:0:0:0:0:0:0:PREMIERE")) + + self["okbutton"] = Button("ok", [self.channelSelected, self.close]) + + def channelSelected(self): +# print "channel selected!" + pass + +class infoBar(Screen): + def __init__(self): + GUISkin.__init__(self) + + self["channelSwitcher"] = Button("switch Channel", [self.switchChannel]) + self["okbutton"] = Button("mainMenu", [self.mainMenu]) + + def mainMenu(self): + self.session.open(mainMenu()) + + def switchChannel(self): + self.session.open(channelSelection()) # a clock display dialog class clockDisplay(Screen): def okbutton(self): - print "clockDisplay close" + self.session.close() def __init__(self, clock): - HTMLSkin.__init__(self, ("title", "theClock", "okbutton")) + GUISkin.__init__(self) self["theClock"] = clock b = Button("bye") b.onClick = [ self.okbutton ] self["okbutton"] = b self["title"] = Header("clock dialog: here you see the current uhrzeit!") -# defined screens -screens = { - "global": doGlobal, - "testDialog": testDialog, - "clockDisplay": clockDisplay } +class serviceScan(Screen): + def ok(self): + if self["scan"].isDone(): + self.close() + + def __init__(self): + GUISkin.__init__(self) + + self["scan_progress"] = ProgressBar() + self["scan_state"] = Label("scan state") + self["scan"] = ServiceScan(self["scan_progress"], self["scan_state"]) + + self["okbutton"] = Button("ok", [self.ok]) + self["okbutton"].disable()