some work on the wizard:
[enigma2.git] / lib / python / Screens / StartWizard.py
index 501ea6c5d508b1a2bf86e68ca4b6b70090a22268..56a09abebd1a00ee75ceef08d5acd14eb33c6b98 100644 (file)
@@ -1,9 +1,12 @@
 from Wizard import Wizard, wizardManager
 
 from Components.Pixmap import *
+from Components.config import configElementBoolean, config
 
 from LanguageSelection import LanguageSelection
 
+config.misc.firstrun = configElementBoolean("config.misc.firstrun", 1);
+
 class StartWizard(Wizard):
        skin = """
                <screen position="0,0" size="720,560" title="Welcome..." flags="wfNoBorder" >
@@ -28,5 +31,9 @@ class StartWizard(Wizard):
                self["arrowup"] = MovingPixmap()
                self["arrowup2"] = MovingPixmap()
                
-wizardManager.registerWizard(LanguageSelection)
-wizardManager.registerWizard(StartWizard)
+       def markDone(self):
+               config.misc.firstrun.value = 0;
+               config.misc.firstrun.save()
+               
+wizardManager.registerWizard(LanguageSelection, config.misc.firstrun.value)
+wizardManager.registerWizard(StartWizard, config.misc.firstrun.value)