X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/dd29c93c225fc22f778e235c1e4a6310ad21ce6f..ac2878879847f965225e0f72c22ad17b513c16e6:/lib/python/Screens/SimpleSummary.py diff --git a/lib/python/Screens/SimpleSummary.py b/lib/python/Screens/SimpleSummary.py old mode 100644 new mode 100755 index 54f8ef6b..992e343c --- a/lib/python/Screens/SimpleSummary.py +++ b/lib/python/Screens/SimpleSummary.py @@ -1,19 +1,25 @@ from Screens.Screen import Screen -from Components.Sources.Source import ObsoleteSource +#from Components.Sources.Source import ObsoleteSource class SimpleSummary(Screen): skin = """ - + WithSeconds - + """ - def __init__(self, session, root_screen): - 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) + def __init__(self, session, parent): + + 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) - def setTitle(self, title): - self["Title"].setText(title)