no need to define skin in skin_default.xml and .py files
authorAndreas Monzner <andreas.monzner@multimedia-labs.de>
Fri, 18 Apr 2008 19:06:21 +0000 (19:06 +0000)
committerAndreas Monzner <andreas.monzner@multimedia-labs.de>
Fri, 18 Apr 2008 19:06:21 +0000 (19:06 +0000)
lib/python/Screens/ImageWizard.py
lib/python/Screens/StartWizard.py
lib/python/Screens/TutorialWizard.py

index ad0640cf95834b566a8dd4693b18ccdd2409b82a..faf6120bfae5482f20393e0c6bc5cf89d525a84b 100644 (file)
@@ -19,18 +19,10 @@ else:
        backupAvailable = 1
 
 class ImageWizard(Wizard):
        backupAvailable = 1
 
 class ImageWizard(Wizard):
-       skin = """
-               <screen position="0,0" size="720,576" title="Welcome..." flags="wfNoBorder">
-                       <widget name="text" position="50,100" size="440,250" font="Regular;22" />
-                       <widget name="list" position="50,350" zPosition="1" size="440,200" />
-                       <widget name="config" position="50,350" zPosition="1" size="440,200" transparent="1" scrollbarMode="showOnDemand" />
-               </screen>"""
-       
        def __init__(self, session):
                self.xmlfile = "imagewizard.xml"
        def __init__(self, session):
                self.xmlfile = "imagewizard.xml"
-               
                Wizard.__init__(self, session, showSteps=False, showStepSlider=False, showList=True, showConfig=True)
                Wizard.__init__(self, session, showSteps=False, showStepSlider=False, showList=True, showConfig=True)
-               
+
        def markDone(self):
                pass
 
        def markDone(self):
                pass
 
index aff6e74205883b0568b768f8ed67ea3e4de477e6..7f64624ece975141df4f61b1866f2259fcdcdddb 100644 (file)
@@ -11,27 +11,8 @@ config.misc.firstrun = ConfigBoolean(default = True)
 config.misc.languageselected = ConfigBoolean(default = True)
 
 class StartWizard(WizardLanguage):
 config.misc.languageselected = ConfigBoolean(default = True)
 
 class StartWizard(WizardLanguage):
-       skin = """
-               <screen position="0,0" size="720,576" title="Welcome..." flags="wfNoBorder" >
-                       <widget name="text" position="153,50" size="340,270" font="Regular;23" />
-                       <widget source="list" render="Listbox" position="50,300" size="440,200" scrollbarMode="showOnDemand" >
-                               <convert type="StringList" />
-                       </widget>
-                       <widget name="config" position="50,300" zPosition="1" size="440,200" transparent="1" scrollbarMode="showOnDemand" />
-                       <ePixmap pixmap="skin_default/buttons/button_red.png" position="40,225" zPosition="0" size="15,16" transparent="1" alphatest="on" />
-                       <widget name="languagetext" position="55,225" size="95,30" font="Regular;18" />                 
-                       <widget name="stepslider" position="50,500" zPosition="1" borderWidth="2" size="440,20" backgroundColor="dark" />
-                       <widget name="wizard" pixmap="skin_default/wizard.png" position="40,50" zPosition="10" size="110,174" transparent="1" alphatest="on"/>
-                       <widget name="rc" pixmap="skin_default/rc.png" position="500,600" zPosition="10" size="154,475" transparent="1" alphatest="on"/>
-                       <widget name="arrowdown" pixmap="skin_default/arrowdown.png" position="0,0" zPosition="11" size="37,70" transparent="1" alphatest="on"/>
-                       <widget name="arrowup" pixmap="skin_default/arrowup.png" position="-100,-100" zPosition="11" size="37,70" transparent="1" alphatest="on"/>
-                       <widget name="arrowup2" pixmap="skin_default/arrowup.png" position="-100,-100" zPosition="11" size="37,70" transparent="1" alphatest="on"/>
-               </screen>"""
-       
        def __init__(self, session):
        def __init__(self, session):
-               self.skin = StartWizard.skin
                self.xmlfile = "startwizard.xml"
                self.xmlfile = "startwizard.xml"
-               
                WizardLanguage.__init__(self, session, showSteps = False)
                self["wizard"] = Pixmap()
                self["rc"] = MovingPixmap()
                WizardLanguage.__init__(self, session, showSteps = False)
                self["wizard"] = Pixmap()
                self["rc"] = MovingPixmap()
index 8c0b79d62661140b47de605335af92b1ced43dfa..1c0c41088831bee5f2e909a698f176be1f9a814f 100644 (file)
@@ -6,20 +6,8 @@ from Components.Pixmap import MovingPixmap
 config.misc.firstruntutorial = ConfigBoolean(default = True)
 
 class TutorialWizard(Wizard):
 config.misc.firstruntutorial = ConfigBoolean(default = True)
 
 class TutorialWizard(Wizard):
-       skin = """
-               <screen position="0,0" size="720,576" title="Welcome..." flags="wfNoBorder">
-                       <widget name="text" position="50,100" size="440,200" font="Regular;23" />
-                       <widget name="list" position="50,300" zPosition="1" size="440,200" />
-                       <widget name="rc" pixmap="skin_default/rc.png" position="500,600" zPosition="10" size="154,475" transparent="1" alphatest="on"/>
-                       <widget name="arrowdown" pixmap="skin_default/arrowdown.png" position="0,0" zPosition="11" size="37,70" transparent="1" alphatest="on"/>
-                       <widget name="arrowup" pixmap="skin_default/arrowup.png" position="-100,-100" zPosition="11" size="37,70" transparent="1" alphatest="on"/>
-                       <widget name="arrowup2" pixmap="skin_default/arrowup.png" position="-100,-100" zPosition="11" size="37,70" transparent="1" alphatest="on"/>
-               </screen>"""
-       
        def __init__(self, session):
        def __init__(self, session):
-               self.skin = TutorialWizard.skin
                self.xmlfile = "tutorialwizard.xml"
                self.xmlfile = "tutorialwizard.xml"
-               
                Wizard.__init__(self, session, showSteps=False, showStepSlider=False, showList=True, showConfig=False)
                self["rc"] = MovingPixmap()
                self["arrowdown"] = MovingPixmap()
                Wizard.__init__(self, session, showSteps=False, showStepSlider=False, showList=True, showConfig=False)
                self["rc"] = MovingPixmap()
                self["arrowdown"] = MovingPixmap()