X-Git-Url: http://code.vuplus.com/gitweb/?p=vuplus_dvbapp;a=blobdiff_plain;f=lib%2Fpython%2FScreens%2FStartWizard.py;h=8fc4ecdfddddb790521e0fe4ef103067d9a85de9;hp=037c0757c73c46a771d17352a04e16e69ac3e105;hb=08fca93e7f2a37a452399d08c5c84b969b7e52af;hpb=c1311444ea249a45d0eceefa15d77fce410a54da diff --git a/lib/python/Screens/StartWizard.py b/lib/python/Screens/StartWizard.py index 037c075..8fc4ecd 100644 --- a/lib/python/Screens/StartWizard.py +++ b/lib/python/Screens/StartWizard.py @@ -1,31 +1,42 @@ from Wizard import Wizard, wizardManager from Components.Pixmap import * +from Components.config import configElementBoolean, config, configfile + from LanguageSelection import LanguageSelection +config.misc.firstrun = configElementBoolean("config.misc.firstrun", 1); +config.misc.languageselected = configElementBoolean("config.misc.languageselected", 1); + class StartWizard(Wizard): skin = """ - - + + - - - - - - - + + + + + + + """ def __init__(self, session): self.skin = StartWizard.skin self.xmlfile = "startwizard.xml" - Wizard.__init__(self, session) + Wizard.__init__(self, session, showSteps = False) + self["wizard"] = Pixmap() self["rc"] = MovingPixmap() self["arrowdown"] = MovingPixmap() self["arrowup"] = MovingPixmap() self["arrowup2"] = MovingPixmap() -wizardManager.registerWizard(LanguageSelection) -wizardManager.registerWizard(StartWizard) \ No newline at end of file + def markDone(self): + config.misc.firstrun.value = 0 + config.misc.firstrun.save() + configfile.save() + +wizardManager.registerWizard(LanguageSelection, config.misc.languageselected.value) +wizardManager.registerWizard(StartWizard, config.misc.firstrun.value)