1 from Screen import Screen
2 from Components.ServiceScan import ServiceScan as CScan
3 from Components.ProgressBar import ProgressBar
4 from Components.Label import Label
5 from Components.ActionMap import ActionMap
7 class ServiceScan(Screen):
10 if self["scan"].isDone():
16 def __init__(self, session, transponders, feid, flags):
17 Screen.__init__(self, session)
19 self.session.nav.stopService()
21 self["scan_progress"] = ProgressBar()
22 self["scan_state"] = Label(_("scan state"))
23 self["scan"] = CScan(self["scan_progress"], self["scan_state"], transponders, feid, flags)
25 self["actions"] = ActionMap(["OkCancelActions"],