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
|
from Screen import Screen
from Components.ActionMap import ActionMap
from Components.config import config #global config instance
from Components.config import configEntry
from Components.config import configBoolean
from Components.ConfigList import ConfigList
import xml.dom.minidom
from xml.dom import EMPTY_NAMESPACE
from skin import elementsWithTag
from Tools import XMLTools
setupdom = xml.dom.minidom.parseString(
"""
<setup key="rc" title="RC Menu">
<item text="Repeat Rate">config.inputDevices.repeat</item>
<item text="Delay Rate">config.inputDevices.delay</item>
</setup>
""")
def getValbyAttr(x, attr):
for p in range(x.attributes.length):
a = x.attributes.item(p)
attrib = str(a.name)
value = str(a.value)
if attrib == attr:
return value
return ""
class Setup(Screen):
def addItems(self, list, childNode):
for x in childNode:
if x.nodeType != xml.dom.minidom.Element.nodeType:
continue
elif x.tagName == 'item':
ItemText = getValbyAttr(x, "text")
b = eval(XMLTools.mergeText(x.childNodes));
print "item " + ItemText + " " + b.configPath
if b == "":
continue
#add to configlist
list.append( (ItemText, b.controlType(b) ) )
def keyOk(self):
self["config"].handleKey(0)
def keyLeft(self):
self["config"].handleKey(1)
def keyRight(self):
self["config"].handleKey(2)
def keySave(self):
print "save requested"
for x in self["config"]:
selection = self["config"].getCurrent()
selection.save()
def __init__(self, session, setup):
Screen.__init__(self, session)
print "request setup for " + setup
entries = setupdom.childNodes
list = []
for x in entries: #walk through the actual nodelist
if x.nodeType != xml.dom.minidom.Element.nodeType:
continue
elif x.tagName == 'setup':
ItemText = getValbyAttr(x, "key")
if ItemText != setup:
continue
self.addItems(list, x.childNodes);
#check for list.entries > 0 else self.close
self["config"] = ConfigList(list)
self["actions"] = ActionMap(["SetupActions"],
{
"cancel": self.close,
"ok": self.keyOk,
"left": self.keyLeft,
"right": self.keyRight,
"save": self.keySave
})
|