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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
|
# temp stuff :)
class configBoolean:
def __init__(self, parent):
self.parent = parent
def checkValues(self):
if self.parent.value < 0:
self.parent.value = 0
if(self.parent.value >= (len(self.parent.vals) - 1)):
self.parent.value = len(self.parent.vals) - 1
def cancel(self):
print "cancel"
def save(self):
print "save"
def handleKey(self, key):
if key == 1:
self.parent.value = self.parent.value - 1
if key == 2:
self.parent.value = self.parent.value + 1
self.checkValues()
self.parent.change()
def __call__(self): #needed by configlist
self.checkValues()
return ("text", self.parent.vals[self.parent.value])
class configValue:
def __init__(self, obj):
self.obj = obj
def __str__(self):
return self.obj
def configEntry(obj):
# das hier ist ein zugriff auf die registry...
if obj == "HKEY_LOCAL_ENIGMA/IMPORTANT/USER_ANNOYING_STUFF/SDTV/FLASHES/GREEN":
return ("SDTV green flashes", configBoolean(obj))
elif obj == "HKEY_LOCAL_ENIGMA/IMPORTANT/USER_ANNOYING_STUFF/HDTV/FLASHES/GREEN":
return ("HDTV reen flashes", configBoolean(obj))
else:
return ("invalid", "")
class Config:
def __init__(self):
pass
config = Config();
class ConfigSlider:
def __init__(self, parent):
self.parent = parent
def cancel(self):
print "slider - cancel"
def save(self):
print "slider - save"
def checkValues(self):
if self.parent.value < 0:
self.parent.value = 0
if self.parent.value > 10:
self.parent.value = 10
def handleKey(self, key):
if key == 1:
self.parent.value = self.parent.value - 1
if key == 2:
self.parent.value = self.parent.value + 1
self.checkValues()
self.parent.change()
def __call__(self): #needed by configlist
self.checkValues()
return ("slider", self.parent.value * 10)
class ConfigSubsection:
def __init__(self):
pass
class configElement:
def __init__(self, configPath, control, defaultValue, vals):
self.configPath = configPath
# self.value = 0 #read from registry else use default
self.value = defaultValue #read from registry else use default
self.defaultValue = defaultValue
self.controlType = control
self.vals = vals
self.notifierList = [ ]
def addNotifier(self, notifier):
self.notifierList.append(notifier);
notifier(self);
def change(self):
for notifier in self.notifierList:
notifier(self)
def reload(self):
self.value = self.defaultValue #HACK :-)
|