some fixes and improvements for the start-wizard
[enigma2.git] / data / startwizard.xml
1 <wizard>
2                 <step number="1">
3                         <text value="Hello User.\n\nThis start-wizard will guide you through the basic setup of your Dreambox.\n\nPress the OK button on your remote control to move to the next step." />
4                         <code>
5 self["arrowdown"].moveTo(557, 232, 10)
6 self["rc"].moveTo(500, 50, 10)          
7 self["arrowdown"].startMoving()
8 self["rc"].startMoving()
9                         </code>
10                 </step>
11                 <step number="2">
12                         <text value="Use the up/down keys on your remote control to select an option. After that, press OK." />
13                         <list>
14                                 <listentry caption="Use wizard to set up basic features" step="next" />
15                                 <listentry caption="Exit wizard" step="end" />
16                         </list>
17                         <code>
18 self["arrowdown"].moveTo(557, 200, 10)
19 self["arrowup"].moveTo(557, 355, 10)
20 self["arrowdown"].startMoving()
21 self["arrowup"].startMoving()
22                         </code>
23                 </step>
24                 <step number="3">
25                         <text value="Please set up tuner A" />
26                         <config screen="NimSetup" module="Satconfig" args="0" />
27                         <code>
28 self["arrowup"].moveTo(740, 355, 10)
29 self["arrowup"].startMoving()
30 self["arrowdown"].clearPath(True)
31 self["arrowdown"].addMovePoint(510, 300, 10)
32 self["arrowdown"].addMovePoint(610, 300, 10)
33 self["arrowdown"].startMoving()
34                         </code>
35                 </step>
36                 <step number="4">
37                         <text value="Please set up tuner B" />
38                         <config screen="NimSetup" module="Satconfig" args="1" />
39                         <code>
40 self["arrowup"].moveTo(740, 355, 10)
41 self["arrowup"].startMoving()
42 self["arrowdown"].clearPath(True)
43 self["arrowdown"].addMovePoint(510, 300, 10)
44 self["arrowdown"].addMovePoint(610, 300, 10)
45 self["arrowdown"].startMoving()
46                         </code>
47                 </step>
48                 <step number="5">
49                         <text value="Do you want to do a service scan?" />
50                         <list>
51                                 <listentry caption="Yes, scan now" step="next" />
52                                 <listentry caption="No, scan later manually" step="7" />
53                         </list>
54                 </step>
55                 <step number="6">
56                         <text value="What do you want to scan?" />
57                         <config screen="ScanSimple" module="ScanSetup" />
58                         <code>
59 self["arrowup"].moveTo(740, 355, 10)
60 self["arrowup"].startMoving()
61 self["arrowdown"].clearPath(True)
62 self["arrowdown"].addMovePoint(510, 300, 10)
63 self["arrowdown"].addMovePoint(610, 300, 10)
64 self["arrowdown"].startMoving()
65                         </code>
66                 </step>
67                 <step number="7">
68                         <text value="Thanx for using the wizard. Your box is now ready to use." />
69                         <code>
70 self["arrowdown"].moveTo(740, 200, 10)
71 self["arrowup"].moveTo(740, 355, 10)
72 self["arrowdown"].startMoving()
73 self["arrowup"].startMoving()
74 self["rc"].moveTo(500, 600, 5)
75 self["rc"].startMoving()
76                         </code>
77                 </step> 
78 </wizard>