From 86126d70cfac1f47db0b0b20b1f8412c68b16d49 Mon Sep 17 00:00:00 2001 From: Felix Domke Date: Thu, 2 Mar 2006 02:16:50 +0000 Subject: [PATCH] add simple summary --- lib/python/Screens/SimpleSummary.py | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 lib/python/Screens/SimpleSummary.py 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) -- 2.30.2