add own font alias(name) for display (summary) screens
[enigma2.git] / data / tutorialwizard.xml
index 53046a2023b2b21c1bb2b2188eb447cb8e5ea8ee..bd2486ba0992fb8692bb4256eee6df1d4e0b108d 100644 (file)
@@ -1,20 +1,28 @@
 <wizard>
                <step number="1">
-                       <text value="By pressing the OK Button on your remote control, the info bar is being displayed." />
-                       <code>
-from Screens.InfoBar import InfoBar
-self.infobardialog = self.session.instantiateDialog(InfoBar)
-self.infobardialog.hideTimer.stop()
-self.infobardialog.instance.show()
-                       </code>
+                       <text value="Do you want to view a tutorial?" />
+                       <list>
+                               <listentry caption="Yes, view the tutorial" step="next" />
+                               <listentry caption="No, just start my dreambox" step="end" />
+                       </list>
                </step>
+
                <step number="2">
                        <text value="By pressing the OK Button on your remote control, the info bar is being displayed." />
                        <code>
 from Screens.InfoBar import InfoBar
 self.infobardialog = self.session.instantiateDialog(InfoBar)
 self.infobardialog.hideTimer.stop()
-self.infobardialog.instance.show()
+self.infobardialog.show()
                        </code>
+                       <code pos="after">
+self.infobardialog.hide()
+del self.infobardialog
+                       </code>
+
+               </step>
+               
+               <step number="3">
+                       <text value="This is step number 2." />
                </step>
 </wizard>