1 from Screen import Screen
3 # a clock display dialog
4 class ClockDisplay(Screen):
8 def __init__(self, session, clock):
9 Screen.__init__(self, session)
10 self["theClock"] = clock
12 b.onClick = [ self.okbutton ]
14 self["title"] = Header("clock dialog: here you see the current uhrzeit!")