1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
from Wizard import Wizard, wizardManager
from Components.config import configElementBoolean, config
from Components.Pixmap import *
from LanguageSelection import LanguageSelection
config.misc.firstruntutorial = configElementBoolean("config.misc.firstruntutorial", 1);
class TutorialWizard(Wizard):
skin = """
<screen position="0,0" size="720,576" title="Welcome..." flags="wfNoBorder">
<widget name="text" position="50,100" size="440,200" font="Regular;23" />
<widget name="list" position="50,300" zPosition="1" size="440,200" />
<widget name="rc" pixmap="/usr/share/enigma2/rc.png" position="500,600" zPosition="10" size="154,475" transparent="1" alphatest="on"/>
<widget name="arrowdown" pixmap="/usr/share/enigma2/arrowdown.png" position="0,0" zPosition="11" size="37,70" transparent="1" alphatest="on"/>
<widget name="arrowup" pixmap="/usr/share/enigma2/arrowup.png" position="-100,-100" zPosition="11" size="37,70" transparent="1" alphatest="on"/>
<widget name="arrowup2" pixmap="/usr/share/enigma2/arrowup.png" position="-100,-100" zPosition="11" size="37,70" transparent="1" alphatest="on"/>
</screen>"""
def __init__(self, session):
self.skin = TutorialWizard.skin
self.xmlfile = "tutorialwizard.xml"
Wizard.__init__(self, session, showSteps=False, showStepSlider=False, showList=True, showConfig=False)
self["rc"] = MovingPixmap()
self["arrowdown"] = MovingPixmap()
self["arrowup"] = MovingPixmap()
self["arrowup2"] = MovingPixmap()
def markDone(self):
config.misc.firstruntutorial.value = 1;
config.misc.firstruntutorial.save()
#wizardManager.registerWizard(TutorialWizard, config.misc.firstruntutorial.value)
|