aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Screens/StartWizard.py
diff options
context:
space:
mode:
authorStefan Pluecken <stefan.pluecken@multimedia-labs.de>2008-07-14 22:11:03 +0000
committerStefan Pluecken <stefan.pluecken@multimedia-labs.de>2008-07-14 22:11:03 +0000
commitb4f98a4602ab1b51bf03f989ece928214cafd46b (patch)
tree0d7f715dec4fd70af9312fb9bae419e847d5a8ed /lib/python/Screens/StartWizard.py
parent1ee48d3a425205e488ce9b24e81dfdba126538ce (diff)
downloadenigma2-b4f98a4602ab1b51bf03f989ece928214cafd46b.tar.gz
enigma2-b4f98a4602ab1b51bf03f989ece928214cafd46b.zip
add new box depending rc visualization
Diffstat (limited to 'lib/python/Screens/StartWizard.py')
-rw-r--r--lib/python/Screens/StartWizard.py12
1 files changed, 5 insertions, 7 deletions
diff --git a/lib/python/Screens/StartWizard.py b/lib/python/Screens/StartWizard.py
index 1c4cfb24..ae806ab6 100644
--- a/lib/python/Screens/StartWizard.py
+++ b/lib/python/Screens/StartWizard.py
@@ -2,8 +2,9 @@ from Wizard import wizardManager
from Screens.WizardLanguage import WizardLanguage
from Screens.ScanSetup import DefaultSatLists
from Screens.DefaultWizard import DefaultWizard
+from Screens.Rc import Rc
-from Components.Pixmap import Pixmap, MovingPixmap
+from Components.Pixmap import Pixmap, MovingPixmap, MultiPixmap
from Components.config import config, ConfigBoolean, configfile, ConfigSubsection
from LanguageSelection import LanguageSelection
@@ -14,17 +15,14 @@ config.misc.startwizard.shownimconfig = ConfigBoolean(default = True)
config.misc.startwizard.doservicescan = ConfigBoolean(default = True)
config.misc.languageselected = ConfigBoolean(default = True)
-class StartWizard(DefaultSatLists):
+class StartWizard(DefaultSatLists, Rc):
def __init__(self, session, silent = True, showSteps = False, neededTag = None):
self.xmlfile = ["startwizard.xml", "defaultsatlists.xml"]
WizardLanguage.__init__(self, session, showSteps = False)
DefaultWizard.__init__(self, session, silent, showSteps, neededTag = "services")
+ Rc.__init__(self)
self["wizard"] = Pixmap()
- self["rc"] = MovingPixmap()
- self["arrowdown"] = MovingPixmap()
- self["arrowup"] = MovingPixmap()
- self["arrowup2"] = MovingPixmap()
-
+
def markDone(self):
config.misc.firstrun.value = 0
config.misc.firstrun.save()