from Screen import Screen
+from ServiceScan import *
from Components.config import *
from Components.ActionMap import NumberActionMap
from Components.ConfigList import ConfigList
self["actions"] = NumberActionMap(["SetupActions"],
{
- "ok": self.keySave,
+ "ok": self.keyGo,
"cancel": self.keyCancel,
"left": self.keyLeft,
"right": self.keyRight,
# multi sat scan
if (config.scan.type.value == 2):
- for sat in nimmanager.satList:
- self.list.append(getConfigListEntry(sat[0], config.scan.scansat[sat[1]]))
+ # if (norotor)
+ tlist = []
+ SatList = nimmanager.getSatListForNim(config.scan.nims.value)
+
+ for x in SatList:
+ if self.Satexists(tlist, x[1]) == 0:
+ tlist.append(x[1])
+ sat = configElement_nonSave(x[1], configSelection, 0, ("Enable", "Disable"))
+ self.list.append(getConfigListEntry(nimmanager.getSatDescription(x[1]), sat))
+
+ # if (rotor):
+ # for sat in nimmanager.satList:
+ # self.list.append(getConfigListEntry(sat[0], config.scan.scansat[sat[1]]))
self["config"].list = self.list
self["config"].l.setList(self.list)
+ def Satexists(self, tlist, pos):
+ for x in tlist:
+ if x == pos:
+ return 1
+ return 0
+
def newConfig(self):
print self["config"].getCurrent()
if self["config"].getCurrent()[0] == "Type of scan":
if (self["config"].getCurrent()[1].parent.enabled == True):
self["config"].handleKey(config.key[str(number)])
- def keySave(self):
+ def keyGo(self):
for x in self["config"].list:
x[1].save()
- self.close()
+ self.session.openWithCallback(self.keyCancel, ServiceScan)
+
+ #self.close()
def keyCancel(self):
for x in self["config"].list:
x[1].cancel()
- self.close()
\ No newline at end of file
+ self.close()
+
+class ScanSimple(Screen):
+
+ def keyOK(self):
+ print "start scan for sats:"
+ for x in self.list:
+ if x[1].parent.value == 0:
+ print " " + str(x[1].parent.configPath)
+
+ self.session.openWithCallback(self.keyCancel, ServiceScan)
+
+ def keyCancel(self):
+ self.close()
+
+ def keyLeft(self):
+ self["config"].handleKey(config.key["prevElement"])
+
+ def keyRight(self):
+ self["config"].handleKey(config.key["nextElement"])
+
+ def Satexists(self, tlist, pos):
+ for x in tlist:
+ if x == pos:
+ return 1
+ return 0
+
+ def __init__(self, session):
+ Screen.__init__(self, session)
+
+ self["actions"] = ActionMap(["SetupActions"],
+ {
+ "ok": self.keyOK,
+ "cancel": self.keyCancel,
+ "left": self.keyLeft,
+ "right": self.keyRight,
+ }, -1)
+
+ self.list = []
+ tlist = []
+
+ SatList = nimmanager.getConfiguredSats()
+
+ for x in SatList:
+ if self.Satexists(tlist, x) == 0:
+ tlist.append(x)
+ sat = configElement_nonSave(x, configSelection, 0, ("Enable", "Disable"))
+ self.list.append(getConfigListEntry(nimmanager.getSatDescription(x), sat))
+
+ self["config"] = ConfigList(self.list)
+ self["header"] = Label("Automatic Scan")
+ self["footer"] = Label("Press OK to scan")