X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/5610b97e30804e35cc242e14702e4f4cb8f5aa40..97e9b2008c12ab9158d4fbc256ff3127d4be9235:/mytest.py diff --git a/mytest.py b/mytest.py index d6cfb1a2..a3f28d7b 100644 --- a/mytest.py +++ b/mytest.py @@ -1,6 +1,7 @@ from enigma import * from tools import * +import traceback import Screens.InfoBar import sys @@ -10,7 +11,8 @@ import ServiceReference from Navigation import Navigation -from skin import applyGUIskin +from skin import readSkin, applyAllAttributes + # A screen is a function which instanciates all components of a screen into a temporary component. # Thus, the global stuff is a screen, too. @@ -54,8 +56,8 @@ html = HTMLOutputDevice() class GUIOutputDevice(OutputDevice): parent = None - def create(self, comp): - comp.createGUIScreen(self.parent) + def create(self, comp, desktop): + comp.createGUIScreen(self.parent, desktop) class Session: def __init__(self): @@ -75,7 +77,7 @@ class Session: print sys.getrefcount(self.currentDialog) del self.currentDialog.instance - dump(self.currentDialog) +# dump(self.currentDialog) del self.currentDialog self.popCurrent() @@ -93,16 +95,28 @@ class Session: return screen(self, *arguments) def instantiateDialog(self, screen, *arguments): - dlg = self.create(screen, arguments) + # create dialog + + try: + dlg = self.create(screen, arguments) + except: + print 'EXCEPTION IN DIALOG INIT CODE, ABORTING:' + print '-'*60 + traceback.print_exc(file=sys.stdout) + quitMainloop() + print '-'*60 + + # read skin data + readSkin(dlg, None, dlg.skinName, self.desktop) + + # create GUI view of this dialog assert self.desktop != None dlg.instance = eWindow(self.desktop) - + applyAllAttributes(dlg.instance, self.desktop, dlg.skinAttributes) gui = GUIOutputDevice() gui.parent = dlg.instance - gui.create(dlg) - - applyGUIskin(dlg, None, dlg.skinName, self.desktop) - + gui.create(dlg, self.desktop) + return dlg def pushCurrent(self): @@ -155,8 +169,27 @@ keymapparser.readKeymap() import skin skin.loadSkin(getDesktop()) +import Components.InputDevice +Components.InputDevice.InitInputDevices() + +import Components.AVSwitch +Components.AVSwitch.InitAVSwitch() + +import Components.Network +Components.Network.InitNetwork() + +import Components.SetupDevices +Components.SetupDevices.InitSetupDevices() + # first, setup a screen -runScreenTest() +try: + runScreenTest() +except: + print 'EXCEPTION IN PYTHON STARTUP CODE:' + print '-'*60 + traceback.print_exc(file=sys.stdout) + quitMainloop() + print '-'*60 # now, run the mainloop