From: Felix Domke Date: Thu, 2 Mar 2006 02:16:50 +0000 (+0000) Subject: add simple summary X-Git-Tag: 2.6.0~3936 X-Git-Url: https://git.cweiske.de/enigma2.git/commitdiff_plain/86126d70cfac1f47db0b0b20b1f8412c68b16d49?hp=1e10ea03682c76faca713003d3fbeb84b312d08b add simple summary --- diff --git a/lib/python/Screens/SimpleSummary.py b/lib/python/Screens/SimpleSummary.py new file mode 100644 index 00000000..d10c32da --- /dev/null +++ b/lib/python/Screens/SimpleSummary.py @@ -0,0 +1,17 @@ +from Screens.Screen import Screen + +class SimpleSummary(Screen): + skin = """ + + + + """ + def __init__(self, session, root_screen): + from Components.Label import Label + from Components.Clock import Clock + Screen.__init__(self, session) + self["Clock"] = Clock() + self["Title"] = Label(root_screen.title) + + def setTitle(self, title): + self["Title"].setText(title)