aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Plugins/SystemPlugins/Videomode/videowizard.xml
diff options
context:
space:
mode:
authorStefan Pluecken <stefan.pluecken@multimedia-labs.de>2008-01-24 03:49:08 +0000
committerStefan Pluecken <stefan.pluecken@multimedia-labs.de>2008-01-24 03:49:08 +0000
commitedf2e7b1a646ca0a35ac2bc92e97a4b4b29c74f7 (patch)
treebf81be9bb8d56fcbe5f5ddefb7516e8c7e7e3648 /lib/python/Plugins/SystemPlugins/Videomode/videowizard.xml
parent2eb13f628b3d0780556b5898d8dbee838baf5e31 (diff)
downloadenigma2-edf2e7b1a646ca0a35ac2bc92e97a4b4b29c74f7.tar.gz
enigma2-edf2e7b1a646ca0a35ac2bc92e97a4b4b29c74f7.zip
add videowizard
Diffstat (limited to 'lib/python/Plugins/SystemPlugins/Videomode/videowizard.xml')
-rw-r--r--lib/python/Plugins/SystemPlugins/Videomode/videowizard.xml49
1 files changed, 49 insertions, 0 deletions
diff --git a/lib/python/Plugins/SystemPlugins/Videomode/videowizard.xml b/lib/python/Plugins/SystemPlugins/Videomode/videowizard.xml
new file mode 100644
index 00000000..b4b9faf4
--- /dev/null
+++ b/lib/python/Plugins/SystemPlugins/Videomode/videowizard.xml
@@ -0,0 +1,49 @@
+<wizard>
+ <step id="inputselection" nextstep="modeselection" timeout="10" timeoutaction="selectnext">
+ <text value="Video input selction\n\nPlease press OK if you can see this page on your TV (or select a different input port).\n\nThe next input port will be automatically probed in 10 seconds." />
+ <displaytext value="Select video input" />
+ <list type="dynamic" source="listInputChannels" evaluation="inputSelectionMade" onselect="inputSelectionMoved" />
+ <code>
+self["arrowdown"].moveTo(557, 232, 1)
+self["arrowdown"].startMoving()
+self["arrowup"].moveTo(800, 232, 1)
+self["arrowup"].startMoving()
+self["rc"].moveTo(500, 50, 1)
+self["rc"].startMoving()
+ </code>
+ </step>
+ <step id="modeselection" nextstep="rateselection" timeout="10" timeoutaction="selectnext">
+ <text value="Video mode selection." />
+ <displaytext value="Select video mode" />
+ <list type="dynamic" source="listModes" evaluation="modeSelectionMade" onselect="modeSelectionMoved" />
+ <code>
+self["arrowup2"].moveTo(800, 320, 1)
+self["arrowup2"].startMoving()
+self["arrowdown"].moveTo(557, 200, 1)
+self["arrowup"].moveTo(557, 355, 1)
+self["arrowdown"].startMoving()
+self["arrowup"].startMoving()
+self["rc"].moveTo(500, 50, 1)
+self["rc"].startMoving()
+ </code>
+ </step>
+ <step id="rateselection" nextstep="end" timeout="10" timeoutaction="selectnext">
+ <text value="Rate selection." />
+ <displaytext value="Select video mode rate" />
+ <list type="dynamic" source="listRates" evaluation="rateSelectionMade" onselect="rateSelectionMoved" />
+ <code>
+self["arrowup2"].moveTo(800, 320, 1)
+self["arrowup2"].startMoving()
+self["arrowdown"].moveTo(557, 200, 1)
+self["arrowup"].moveTo(557, 355, 1)
+self["arrowdown"].startMoving()
+self["arrowup"].startMoving()
+self["rc"].moveTo(500, 50, 1)
+self["rc"].startMoving()
+ </code>
+ </step>
+ <step id="end">
+ <text value="The input port should be configured now." />
+ <displaytext value="No picture on TV? Press EXIT and retry." />
+ </step>
+</wizard>