X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/2d2f9e675246ff89b0a4bf0d7bc847206e3a8112..f965acae25306290600029c8c402b9429ea2e196:/lib/python/Screens/SimpleSummary.py diff --git a/lib/python/Screens/SimpleSummary.py b/lib/python/Screens/SimpleSummary.py index 411e2276..41875641 100644 --- a/lib/python/Screens/SimpleSummary.py +++ b/lib/python/Screens/SimpleSummary.py @@ -1,5 +1,5 @@ from Screens.Screen import Screen -from Components.Sources.Source import ObsoleteSource +#from Components.Sources.Source import ObsoleteSource class SimpleSummary(Screen): skin = """ @@ -9,11 +9,21 @@ class SimpleSummary(Screen): """ - def __init__(self, session, root_screen): + def __init__(self, session, parent): from Components.Label import Label - Screen.__init__(self, session) - self["Clock"] = ObsoleteSource(new_source = "global.CurrentTime", removal_date = "2008-01") - self["Title"] = Label(root_screen.title) + Screen.__init__(self, session, parent = parent) + + names = parent.skinName + if not isinstance(names, list): + names = [names] + + self.skinName = [ x + "_summary" for x in names ] + self.skinName.append("SimpleSummary") + + # if parent has a "skin_summary" defined, use that as default + self.skin = parent.__dict__.get("skin_summary", self.skin) + + self["Title"] = Label(parent.title or "") def setTitle(self, title): self["Title"].setText(title)