1 from Screen import Screen
3 from Components.Label import Label
4 from Components.ServicePosition import ServicePosition
8 class PVRState(Screen):
9 def __init__(self, session):
10 Screen.__init__(self, session)
12 self["state"] = Label(text="")
14 class TimeshiftState(PVRState):
15 def __init__(self, session):
16 PVRState.__init__(self, session)
18 self["timeshift"] = ServicePosition(self.session.nav, ServicePosition.TYPE_RELATIVE)