X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/89cfe350d37c0579faa522ac8da90e5d915a5f06..040e658a3f89783e0030392110e87cc992264cdd:/lib/python/Screens/Console.py diff --git a/lib/python/Screens/Console.py b/lib/python/Screens/Console.py index d13729f8..b57f2400 100644 --- a/lib/python/Screens/Console.py +++ b/lib/python/Screens/Console.py @@ -1,19 +1,22 @@ from enigma import eConsoleAppContainer from Screens.Screen import Screen -from Components.ActionMap import ActionMap, NumberActionMap +from Components.ActionMap import ActionMap from Components.ScrollLabel import ScrollLabel class Console(Screen): #TODO move this to skin.xml skin = """ - + """ - def __init__(self, session, args = None): + def __init__(self, session, title = "Console", cmdlist = None, finishedCallback = None, closeOnSuccess = False): self.skin = Console.skin Screen.__init__(self, session) + self.finishedCallback = finishedCallback + self.closeOnSuccess = closeOnSuccess + self["text"] = ScrollLabel("") self["actions"] = ActionMap(["WizardActions", "DirectionActions"], { @@ -23,30 +26,45 @@ class Console(Screen): "down": self["text"].pageDown }, -1) - self.cmdlist = args + self.cmdlist = cmdlist + self.newtitle = title + + self.onShown.append(self.updateTitle) self.container = eConsoleAppContainer() self.run = 0 - self.container.appClosed.get().append(self.runFinished) - self.container.dataAvail.get().append(self.dataAvail) + self.container.appClosed.append(self.runFinished) + self.container.dataAvail.append(self.dataAvail) self.onLayoutFinish.append(self.startRun) # dont start before gui is finished + def updateTitle(self): + self.setTitle(self.newtitle) + def startRun(self): self["text"].setText(_("Execution Progress:") + "\n\n") - self.container.execute(self.cmdlist[self.run]) + print "Console: executing in run", self.run, " the command:", self.cmdlist[self.run] + if self.container.execute(self.cmdlist[self.run]): #start of container application failed... + self.runFinished(-1) # so we must call runFinished manual def runFinished(self, retval): self.run += 1 if self.run != len(self.cmdlist): - self.container.execute(self.cmdlist[self.run]) + if self.container.execute(self.cmdlist[self.run]): #start of container application failed... + self.runFinished(-1) # so we must call runFinished manual else: str = self["text"].getText() str += _("Execution finished!!"); self["text"].setText(str) - + if self.finishedCallback is not None: + self.finishedCallback() + if not retval and self.closeOnSuccess: + self.cancel() + def cancel(self): if self.run == len(self.cmdlist): self.close() + self.container.appClosed.remove(self.runFinished) + self.container.dataAvail.remove(self.dataAvail) def dataAvail(self, str): self["text"].setText(self["text"].getText() + str)