1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
|
from Screen import Screen
from Components.config import *
from Components.ActionMap import NumberActionMap
from Components.ConfigList import ConfigList
from Components.NimManager import nimmanager
from Components.Label import Label
from time import *
class TimerEntry(Screen):
def __init__(self, session, timer):
Screen.__init__(self, session)
self.createConfig(timer)
self["actions"] = NumberActionMap(["SetupActions"],
{
"ok": self.keyGo,
"cancel": self.keyCancel,
"left": self.keyLeft,
"right": self.keyRight,
"1": self.keyNumberGlobal,
"2": self.keyNumberGlobal,
"3": self.keyNumberGlobal,
"4": self.keyNumberGlobal,
"5": self.keyNumberGlobal,
"6": self.keyNumberGlobal,
"7": self.keyNumberGlobal,
"8": self.keyNumberGlobal,
"9": self.keyNumberGlobal,
"0": self.keyNumberGlobal
}, -1)
self.list = []
self["config"] = ConfigList(self.list)
self.createSetup()
self["introduction"] = Label("Press OK to start the scan")
def createConfig(self, timer):
config.timerentry = ConfigSubsection()
config.timerentry.startdate = configElement_nonSave("config.timerentry.startdate", configDateTime, timer.begin, ("%d.%B %Y", 86400))
config.timerentry.starttime = configElement_nonSave("config.timerentry.starttime", configDateTime, timer.begin, ("%H:%M", 60))
config.timerentry.enddate = configElement_nonSave("config.timerentry.enddate", configDateTime, timer.end, ("%d.%B %Y", 86400))
config.timerentry.endtime = configElement_nonSave("config.timerentry.endtime", configDateTime, timer.end, ("%H:%M", 60))
#config.timerentry.weekday = configElement_nonSave("config.timerentry.weekday", configDateTime, time(), ("%A", 86400))
def createSetup(self):
self.list = []
self.list.append(getConfigListEntry("StartDate", config.timerentry.startdate))
self.list.append(getConfigListEntry("StartTime", config.timerentry.starttime))
self.list.append(getConfigListEntry("EndDate", config.timerentry.enddate))
self.list.append(getConfigListEntry("EndTime", config.timerentry.endtime))
# self.list.append(getConfigListEntry("Weekday", config.timerentry.weekday))
self["config"].list = self.list
self["config"].l.setList(self.list)
def newConfig(self):
print self["config"].getCurrent()
if self["config"].getCurrent()[0] == "Type of scan":
self.createSetup()
if self["config"].getCurrent()[0] == "Tuner":
self.createSetup()
def keyLeft(self):
self["config"].handleKey(config.key["prevElement"])
self.newConfig()
def keyRight(self):
self["config"].handleKey(config.key["nextElement"])
self.newConfig()
def keyNumberGlobal(self, number):
print "You pressed number " + str(number)
if (self["config"].getCurrent()[1].parent.enabled == True):
self["config"].handleKey(config.key[str(number)])
def keyGo(self):
for x in self["config"].list:
x[1].save()
self.session.openWithCallback(self.keyCancel, ServiceScan)
#self.close()
def keyCancel(self):
for x in self["config"].list:
x[1].cancel()
self.close()
|