aboutsummaryrefslogtreecommitdiff
path: root/data/startwizard.xml
blob: 89352abddea08ff3e43672c248fdc5221b48e53b (plain)
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<wizard>
		<step number="1">
			<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." />
			<code>
self["arrowdown"].moveTo(557, 232, 10)
self["rc"].moveTo(500, 50, 10)		
self["arrowdown"].startMoving()
self["rc"].startMoving()
			</code>
		</step>
		<step number="2">
			<text value="Use the up/down keys on your remote control to select an option. After that, press OK." />
			<list>
				<listentry caption="Use wizard to set up basic features" step="next" />
				<listentry caption="Exit wizard" step="end" />
			</list>
			<code>
self["arrowdown"].moveTo(557, 200, 10)
self["arrowup"].moveTo(557, 355, 10)
self["arrowdown"].startMoving()
self["arrowup"].startMoving()
			</code>
		</step>
		<step number="3">
			<text value="Please set up tuner A" />
			<config screen="NimSetup" module="Satconfig" args="0" />
			<code>
self["arrowup"].moveTo(740, 355, 10)
self["arrowup"].startMoving()
self["arrowdown"].clearPath(True)
self["arrowdown"].addMovePoint(510, 300, 10)
self["arrowdown"].addMovePoint(610, 300, 10)
self["arrowdown"].startMoving()
			</code>
		</step>
		<step number="4">
			<text value="Please set up tuner B" />
			<config screen="NimSetup" module="Satconfig" args="1" />
			<code>
self["arrowup"].moveTo(740, 355, 10)
self["arrowup"].startMoving()
self["arrowdown"].clearPath(True)
self["arrowdown"].addMovePoint(510, 300, 10)
self["arrowdown"].addMovePoint(610, 300, 10)
self["arrowdown"].startMoving()
			</code>
		</step>
		<step number="5">
			<text value="Do you want to do a service scan?" />
			<list>
				<listentry caption="Yes, scan now" step="next" />
				<listentry caption="No, scan later manually" step="7" />
			</list>
		</step>
		<step number="6">
			<text value="What do you want to scan?" />
			<config screen="ScanSimple" module="ScanSetup" />
			<code>
self["arrowup"].moveTo(740, 355, 10)
self["arrowup"].startMoving()
self["arrowdown"].clearPath(True)
self["arrowdown"].addMovePoint(510, 300, 10)
self["arrowdown"].addMovePoint(610, 300, 10)
self["arrowdown"].startMoving()
			</code>
		</step>
		<step number="7">
			<text value="Thanx for using the wizard. Your box is now ready to use." />
			<code>
self["arrowdown"].moveTo(740, 200, 10)
self["arrowup"].moveTo(740, 355, 10)
self["arrowdown"].startMoving()
self["arrowup"].startMoving()
self["rc"].moveTo(500, 600, 5)
self["rc"].startMoving()
			</code>
		</step>	
</wizard>