from Components.ProgressBar import ProgressBar
from Components.Label import Label
from Components.ActionMap import ActionMap
+from Components.FIFOList import FIFOList
class ServiceScan(Screen):
def ok(self):
def cancel(self):
self.close()
- def __init__(self, session, transponders, flags):
+ def __init__(self, session, transponders, feid, flags):
Screen.__init__(self, session)
self.session.nav.stopService()
self["scan_progress"] = ProgressBar()
- self["scan_state"] = Label("scan state")
- self["scan"] = CScan(self["scan_progress"], self["scan_state"], transponders, flags)
+ self["scan_state"] = Label(_("scan state"))
+ self["servicelist"] = FIFOList(len=7)
+ self["scan"] = CScan(self["scan_progress"], self["scan_state"], self["servicelist"], transponders, feid, flags)
self["actions"] = ActionMap(["OkCancelActions"],
{