whitespace fixes, add NumericalTextInputHelpDialog
[enigma2.git] / data / startwizard.xml
index 4b735f8459c0ed086fe838efd95aa5233bea6372..eb1dc39cef871b2b9ef58f6398a991d17865fab4 100644 (file)
@@ -30,7 +30,7 @@ self["rc"].startMoving()
                <step id="nima">
                        <condition>
 from Components.NimManager import nimmanager
-self.condition = nimmanager.nimCount > 0
+self.condition = nimmanager.getNimType(0) != nimmanager.nimType["empty/unknown"]
                        </condition>
                        <text value="Use the left and right buttons to change an option.\n\nPlease set up tuner A" />
                        <config screen="NimSetup" module="Satconfig" args="0" type="ConfigList" />
@@ -48,7 +48,43 @@ self["arrowdown"].startMoving()
                <step id="nimb">
                        <condition>
 from Components.NimManager import nimmanager
-self.condition = nimmanager.nimCount > 1
+self.condition = nimmanager.getNimType(1) != nimmanager.nimType["empty/unknown"]
+                       </condition>
+                       <text value="Please set up tuner B" />
+                       <config screen="NimSetup" module="Satconfig" args="1" type="ConfigList" />
+                       <code>
+self["rc"].moveTo(500, 50, 1)
+self["rc"].startMoving()
+self["arrowup"].moveTo(525, 320, 1)
+self["arrowup"].startMoving()
+self["arrowup2"].moveTo(590, 320, 1)
+self["arrowup2"].startMoving()
+self["arrowdown"].moveTo(740, 355, 1)
+self["arrowdown"].startMoving()
+                       </code>
+               </step>
+               <step id="nimc">
+                       <condition>
+from Components.NimManager import nimmanager
+self.condition = nimmanager.getNimType(2) != nimmanager.nimType["empty/unknown"]
+                       </condition>
+                       <text value="Please set up tuner B" />
+                       <config screen="NimSetup" module="Satconfig" args="1" type="ConfigList" />
+                       <code>
+self["rc"].moveTo(500, 50, 1)
+self["rc"].startMoving()
+self["arrowup"].moveTo(525, 320, 1)
+self["arrowup"].startMoving()
+self["arrowup2"].moveTo(590, 320, 1)
+self["arrowup2"].startMoving()
+self["arrowdown"].moveTo(740, 355, 1)
+self["arrowdown"].startMoving()
+                       </code>
+               </step>
+               <step id="nimd">
+                       <condition>
+from Components.NimManager import nimmanager
+self.condition = nimmanager.getNimType(3) != nimmanager.nimType["empty/unknown"]
                        </condition>
                        <text value="Please set up tuner B" />
                        <config screen="NimSetup" module="Satconfig" args="1" type="ConfigList" />
@@ -74,14 +110,26 @@ self["arrowup2"].moveTo(800, 310, 1)
 self["arrowup2"].startMoving()
                        </code>
                        <list>
-                               <listentry caption="Yes, scan now" step="scan" />
+                               <listentry caption="Yes, do an automatic scan now" step="scan" />
+                               <listentry caption="Yes, do a manual scan now" step="manualscan" />
                                <listentry caption="No, scan later manually" step="end" />
                        </list>
                </step>
-               <step id="scan">
+               <step id="scan" nextstep="end">
                        <text value="What do you want to scan?" />
                        <config screen="ScanSimple" module="ScanSetup" type="ConfigList" />
                </step>
+               <step id="manualscan">
+                       <text value="What do you want to scan?" />
+                       <config screen="ScanSetup" module="ScanSetup" type="ConfigList" />
+               </step>
+               <step id="nextscan">
+                       <text value="Do you want to do another manual service scan?" />
+                       <list>
+                               <listentry caption="Yes, do another manual scan now" step="manualscan" />
+                               <listentry caption="No, scan later manually" step="end" />
+                       </list>
+               </step>
                <step id="end">
                        <text value="Thank you for using the wizard. Your box is now ready to use.\nPlease press OK to start using you Dreambox." />
                </step>