From 939e78997bc25b22b3270ae3e298b0cc49becdbf Mon Sep 17 00:00:00 2001 From: Stefan Pluecken Date: Sun, 11 Dec 2005 03:31:42 +0000 Subject: rename a baseclass wizard for further wizards derive a StartWizard-class from this wizard-baseclass each wizard now has a listbox, a configlist, a text-label and a xml file describing the wizard --- lib/python/Screens/StartWizard.py | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 lib/python/Screens/StartWizard.py (limited to 'lib/python/Screens/StartWizard.py') diff --git a/lib/python/Screens/StartWizard.py b/lib/python/Screens/StartWizard.py new file mode 100644 index 00000000..736b3ef7 --- /dev/null +++ b/lib/python/Screens/StartWizard.py @@ -0,0 +1,27 @@ +from Wizard import Wizard, wizardManager + +from Components.Pixmap import * + +class StartWizard(Wizard): + skin = """ + + + + + + + + + + """ + + def __init__(self, session): + self.skin = StartWizard.skin + self.xmlfile = "startwizard.xml" + + Wizard.__init__(self, session) + self["rc"] = MovingPixmap() + self["arrowdown"] = MovingPixmap() + self["arrowup"] = MovingPixmap() + +wizardManager.registerWizard(StartWizard) \ No newline at end of file -- cgit v1.2.3