1 from Screen import Screen
3 from Screens.HelpMenu import HelpableScreen
4 from Components.Label import Label
5 from Components.Slider import Slider
6 from Components.ActionMap import HelpableActionMap, NumberActionMap
7 from Components.config import config, configElementBoolean
8 from Components.Pixmap import *
9 from Components.MenuList import MenuList
10 from Components.ConfigList import ConfigList
12 from xml.sax import make_parser
13 from xml.sax.handler import ContentHandler
15 config.misc.firstrun = configElementBoolean("config.misc.firstrun", 1);
17 class WelcomeWizard(Screen, HelpableScreen):
20 <screen position="0,0" size="720,560" title="Welcome..." flags="wfNoBorder" >
21 <widget name="text" position="50,100" size="440,200" font="Arial;23" />
22 <widget name="list" position="50,300" zPosition="1" size="440,200" />
23 <widget name="config" position="50,300" zPosition="1" size="440,200" transparent="1" />
24 <widget name="step" position="50,50" size="440,25" font="Arial;23" />
25 <widget name="stepslider" position="50,500" zPosition="1" size="440,20" backgroundColor="dark" />
26 <widget name="rc" pixmap="/usr/share/enigma2/rc.png" position="500,600" zPosition="10" size="154,475" transparent="1" alphatest="on"/>
27 <widget name="arrowdown" pixmap="/usr/share/enigma2/arrowdown.png" position="0,0" zPosition="10" size="37,70" transparent="1" alphatest="on"/>
28 <widget name="arrowup" pixmap="/usr/share/enigma2/arrowup.png" position="-100,-100" zPosition="10" size="37,70" transparent="1" alphatest="on"/>
31 class parseWizard(ContentHandler):
32 def __init__(self, wizard):
33 self.isPointsElement, self.isReboundsElement = 0, 0
37 def startElement(self, name, attrs):
39 self.currContent = name
41 self.lastStep = int(attrs.get('number'))
42 self.wizard[self.lastStep] = {"text": "", "list": [], "config": {"screen": None, "args": None }, "code": ""}
43 elif (name == "text"):
44 self.wizard[self.lastStep]["text"] = str(attrs.get('value'))
45 elif (name == "listentry"):
46 self.wizard[self.lastStep]["list"].append(str(attrs.get('caption')))
47 elif (name == "config"):
48 exec "from Screens." + str(attrs.get('module')) + " import *"
49 self.wizard[self.lastStep]["config"]["screen"] = eval(str(attrs.get('screen')))
50 if (attrs.has_key('args')):
52 self.wizard[self.lastStep]["config"]["args"] = str(attrs.get('args'))
53 def endElement(self, name):
56 self.wizard[self.lastStep]["code"] = self.wizard[self.lastStep]["code"].strip()
58 def characters(self, ch):
59 if self.currContent == "code":
60 self.wizard[self.lastStep]["code"] = self.wizard[self.lastStep]["code"] + ch
62 def __init__(self, session):
63 self.skin = WelcomeWizard.skin
65 Screen.__init__(self, session)
66 HelpableScreen.__init__(self)
69 parser = make_parser()
70 print "Reading startwizard.xml"
71 wizardHandler = self.parseWizard(self.wizard)
72 parser.setContentHandler(wizardHandler)
73 parser.parse('/usr/share/enigma2/startwizard.xml')
75 self.numSteps = len(self.wizard)
78 self["text"] = Label()
79 self["rc"] = MovingPixmap()
80 self["arrowdown"] = MovingPixmap()
81 self["arrowup"] = MovingPixmap()
83 self["config"] = ConfigList([])
85 self["step"] = Label()
87 self["stepslider"] = Slider(1, self.numSteps)
90 self["list"] = MenuList(self.list)
92 self.onShown.append(self.updateValues)
94 self["actions"] = NumberActionMap(["WizardActions", "NumberActions"],
97 #"cancel": self.keyCancel,
102 #"1": self.keyNumberGlobal,
103 #"2": self.keyNumberGlobal,
104 #"3": self.keyNumberGlobal,
105 #"4": self.keyNumberGlobal,
106 #"5": self.keyNumberGlobal,
107 #"6": self.keyNumberGlobal,
108 #"7": self.keyNumberGlobal,
109 #"8": self.keyNumberGlobal,
110 #"9": self.keyNumberGlobal,
111 #"0": self.keyNumberGlobal
114 #self["actions"] = HelpableActionMap(self, "OkCancelActions",
116 #"ok": (self.ok, _("Close this Screen...")),
120 if (self.currStep == self.numSteps): # wizard finished
121 config.misc.firstrun.value = 0;
122 config.misc.firstrun.save()
129 if (self.wizard[self.currStep]["config"]["screen"] != None):
130 self.configInstance.keyLeft()
134 if (self.wizard[self.currStep]["config"]["screen"] != None):
135 self.configInstance.keyRight()
139 if (self.wizard[self.currStep]["config"]["screen"] != None):
140 self["config"].instance.moveSelection(self["config"].instance.moveUp)
141 elif (len(self.wizard[self.currStep]["list"]) > 0):
142 self["list"].instance.moveSelection(self["config"].instance.moveUp)
146 if (self.wizard[self.currStep]["config"]["screen"] != None):
147 self["config"].instance.moveSelection(self["config"].instance.moveDown)
148 elif (len(self.wizard[self.currStep]["list"]) > 0):
149 self["list"].instance.moveSelection(self["config"].instance.moveDown)
152 def updateValues(self):
153 self["step"].setText(_("Step ") + str(self.currStep) + "/" + str(self.numSteps))
154 self["stepslider"].setValue(self.currStep)
156 self["text"].setText(self.wizard[self.currStep]["text"])
158 self["list"].instance.setZPosition(1)
160 if (len(self.wizard[self.currStep]["list"]) > 0):
161 self["list"].instance.setZPosition(2)
162 for x in self.wizard[self.currStep]["list"]:
163 self.list.append((x, None))
164 self["list"].l.setList(self.list)
166 self["config"].instance.setZPosition(1)
167 if (self.wizard[self.currStep]["config"]["screen"] != None):
168 self["config"].instance.setZPosition(2)
169 print self.wizard[self.currStep]["config"]["screen"]
170 if self.wizard[self.currStep]["config"]["args"] == None:
171 self.configInstance = self.session.instantiateDialog(self.wizard[self.currStep]["config"]["screen"])
173 self.configInstance = self.session.instantiateDialog(self.wizard[self.currStep]["config"]["screen"], eval(self.wizard[self.currStep]["config"]["args"]))
174 self["config"].l.setList(self.configInstance["config"].list)
175 self.configInstance["config"] = self["config"]
177 self["config"].l.setList([])
179 if self.wizard[self.currStep]["code"] != "":
180 print self.wizard[self.currStep]["code"]
181 exec(self.wizard[self.currStep]["code"])
183 def listActiveWizards():
186 if config.misc.firstrun.value:
187 wizards.append(WelcomeWizard)