From b042ba84124b5641caa551a9f41478a7a563ae82 Mon Sep 17 00:00:00 2001 From: Stefan Pluecken Date: Wed, 7 Dec 2005 13:31:28 +0000 Subject: work on startup-wizard --- lib/python/Screens/Wizard.py | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) (limited to 'lib/python') diff --git a/lib/python/Screens/Wizard.py b/lib/python/Screens/Wizard.py index 38000592..664cca83 100644 --- a/lib/python/Screens/Wizard.py +++ b/lib/python/Screens/Wizard.py @@ -4,14 +4,17 @@ from Screens.HelpMenu import HelpableScreen from Components.Label import Label from Components.ActionMap import HelpableActionMap from Components.config import config, configElementBoolean +from Components.Pixmap import Pixmap config.misc.firstrun = configElementBoolean("config.misc.firstrun", 1); class WelcomeWizard(Screen, HelpableScreen): skin = """ - - + + + + """ def __init__(self, session): @@ -21,7 +24,9 @@ class WelcomeWizard(Screen, HelpableScreen): HelpableScreen.__init__(self) - self["text"] = Label(_("Welcome!\n\nYou can always press the help key!\n\nPlease Note: Do a service search first!")); + self["text"] = Label(_("Hello User.\n\nThis start-wizard will guide you through the basic setup of your Dreambox.")); + self["rc"] = Pixmap() + self["circle"] = Pixmap() self["actions"] = HelpableActionMap(self, "OkCancelActions", { -- cgit v1.2.3