show radio (rds) text when available... feel free to make it nicer
[enigma2.git] / data / startwizard.xml
1 <wizard>
2                 <step id="welcome">
3                         <text value="Welcome.\n\nThis start wizard will guide you through the basic setup of your Dreambox.\nPress the OK button on your remote control to move to the next step." />
4                         <code>
5 self["arrowdown"].moveTo(557, 232, 1)
6 self["arrowdown"].startMoving()
7 self["arrowup"].moveTo(800, 232, 1)
8 self["arrowup"].startMoving()
9 self["rc"].moveTo(500, 50, 1)
10 self["rc"].startMoving()
11                         </code>
12                 </step>
13                 <step>
14                         <text value="Use the up/down keys on your remote control to select an option. After that, press OK." />
15                         <list>
16                                 <listentry caption="Use wizard to set up basic features" step="nima" />
17                                 <listentry caption="Exit wizard" step="end" />
18                         </list>
19                         <code>
20 self["arrowup2"].moveTo(800, 320, 1)
21 self["arrowup2"].startMoving()
22 self["arrowdown"].moveTo(557, 200, 1)
23 self["arrowup"].moveTo(557, 355, 1)
24 self["arrowdown"].startMoving()
25 self["arrowup"].startMoving()
26 self["rc"].moveTo(500, 50, 1)
27 self["rc"].startMoving()
28                         </code>
29                 </step>
30                 <step id="nima">
31                         <condition>
32 from Components.NimManager import nimmanager
33 self.condition = nimmanager.getNimType(0) != nimmanager.nimType["empty/unknown"]
34                         </condition>
35                         <text value="Use the left and right buttons to change an option.\n\nPlease set up tuner A" />
36                         <config screen="NimSetup" module="Satconfig" args="0" type="ConfigList" />
37                         <code>
38 self["rc"].moveTo(500, 50, 1)
39 self["rc"].startMoving()
40 self["arrowup"].moveTo(525, 320, 1)
41 self["arrowup"].startMoving()
42 self["arrowup2"].moveTo(590, 320, 1)
43 self["arrowup2"].startMoving()
44 self["arrowdown"].moveTo(740, 355, 1)
45 self["arrowdown"].startMoving()
46                         </code>
47                 </step>
48                 <step id="nimb">
49                         <condition>
50 from Components.NimManager import nimmanager
51 self.condition = nimmanager.getNimType(1) != nimmanager.nimType["empty/unknown"]
52                         </condition>
53                         <text value="Please set up tuner B" />
54                         <config screen="NimSetup" module="Satconfig" args="1" type="ConfigList" />
55                         <code>
56 self["rc"].moveTo(500, 50, 1)
57 self["rc"].startMoving()
58 self["arrowup"].moveTo(525, 320, 1)
59 self["arrowup"].startMoving()
60 self["arrowup2"].moveTo(590, 320, 1)
61 self["arrowup2"].startMoving()
62 self["arrowdown"].moveTo(740, 355, 1)
63 self["arrowdown"].startMoving()
64                         </code>
65                 </step>
66                 <step id="nimc">
67                         <condition>
68 from Components.NimManager import nimmanager
69 self.condition = nimmanager.getNimType(2) != nimmanager.nimType["empty/unknown"]
70                         </condition>
71                         <text value="Please set up tuner B" />
72                         <config screen="NimSetup" module="Satconfig" args="1" type="ConfigList" />
73                         <code>
74 self["rc"].moveTo(500, 50, 1)
75 self["rc"].startMoving()
76 self["arrowup"].moveTo(525, 320, 1)
77 self["arrowup"].startMoving()
78 self["arrowup2"].moveTo(590, 320, 1)
79 self["arrowup2"].startMoving()
80 self["arrowdown"].moveTo(740, 355, 1)
81 self["arrowdown"].startMoving()
82                         </code>
83                 </step>
84                 <step id="nimd">
85                         <condition>
86 from Components.NimManager import nimmanager
87 self.condition = nimmanager.getNimType(3) != nimmanager.nimType["empty/unknown"]
88                         </condition>
89                         <text value="Please set up tuner B" />
90                         <config screen="NimSetup" module="Satconfig" args="1" type="ConfigList" />
91                         <code>
92 self["rc"].moveTo(500, 50, 1)
93 self["rc"].startMoving()
94 self["arrowup"].moveTo(525, 320, 1)
95 self["arrowup"].startMoving()
96 self["arrowup2"].moveTo(590, 320, 1)
97 self["arrowup2"].startMoving()
98 self["arrowdown"].moveTo(740, 355, 1)
99 self["arrowdown"].startMoving()
100                         </code>
101                 </step>
102                 <step id="scanquestion">
103                         <text value="Do you want to do a service scan?" />
104                         <code>
105 self["rc"].moveTo(800, 50, 1)
106 self["rc"].startMoving()
107 self["arrowup"].moveTo(800, 310, 1)
108 self["arrowup"].startMoving()
109 self["arrowup2"].moveTo(800, 310, 1)
110 self["arrowup2"].startMoving()
111                         </code>
112                         <list>
113                                 <listentry caption="Yes, do an automatic scan now" step="scan" />
114                                 <listentry caption="Yes, do a manual scan now" step="manualscan" />
115                                 <listentry caption="No, scan later manually" step="end" />
116                         </list>
117                 </step>
118                 <step id="scan" nextstep="end">
119                         <text value="What do you want to scan?" />
120                         <config screen="ScanSimple" module="ScanSetup" type="ConfigList" />
121                 </step>
122                 <step id="manualscan">
123                         <text value="What do you want to scan?" />
124                         <config screen="ScanSetup" module="ScanSetup" type="ConfigList" />
125                 </step>
126                 <step id="nextscan">
127                         <text value="Do you want to do another manual service scan?" />
128                         <list>
129                                 <listentry caption="Yes, do another manual scan now" step="manualscan" />
130                                 <listentry caption="No, scan later manually" step="end" />
131                         </list>
132                 </step>
133                 <step id="end">
134                         <text value="Thank you for using the wizard. Your box is now ready to use.\nPlease press OK to start using you Dreambox." />
135                 </step>
136 </wizard>