diff options
| author | Stefan Pluecken <stefan.pluecken@multimedia-labs.de> | 2005-12-09 00:35:41 +0000 |
|---|---|---|
| committer | Stefan Pluecken <stefan.pluecken@multimedia-labs.de> | 2005-12-09 00:35:41 +0000 |
| commit | 1036de712ab59acf11d5012d182cea8734b8412b (patch) | |
| tree | 272ca462707c849a8c8050b934e1f1f0a174f976 /data/startwizard.xml | |
| parent | 0252a3bc3bb43d56b35f0ffe05df0b734b3c9588 (diff) | |
| download | enigma2-1036de712ab59acf11d5012d182cea8734b8412b.tar.gz enigma2-1036de712ab59acf11d5012d182cea8734b8412b.zip | |
use startwizard.xml for startwizard-generation
Diffstat (limited to 'data/startwizard.xml')
| -rw-r--r-- | data/startwizard.xml | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/data/startwizard.xml b/data/startwizard.xml new file mode 100644 index 00000000..13799a2c --- /dev/null +++ b/data/startwizard.xml @@ -0,0 +1,42 @@ +<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." /> + </step> + <step number="2"> + <text value="Bla" /> + <list> + <listentry caption="Use wizard to set up basic features" /> + <listentry caption="Exit wizard" /> + </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="Bla" /> + <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() +self["config"].l.setList(self.scanSetupDialog["config"].list) + </code> + </step> + <step number="4"> + <text value="Bla" /> + <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> |
