X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/301bab11f8453a6899153b7be338a352803b22cb..1c21fe13bb453d0f11c8a40461b3bfe7dba5cef1:/lib/python/Screens/Setup.py diff --git a/lib/python/Screens/Setup.py b/lib/python/Screens/Setup.py index a694ab16..3439954d 100644 --- a/lib/python/Screens/Setup.py +++ b/lib/python/Screens/Setup.py @@ -1,155 +1,149 @@ 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 +from Components.ActionMap import NumberActionMap +from Components.config import config, ConfigNothing +from Components.ConfigList import ConfigListScreen from Components.Label import Label +from Components.Pixmap import Pixmap import xml.dom.minidom -from xml.dom import EMPTY_NAMESPACE from skin import elementsWithTag from Tools import XMLTools -setupdom = xml.dom.minidom.parseString( - """ - - - config.inputDevices.repeat - config.inputDevices.delay - config.rc.map - - - config.timezone.val - - - config.av.colorformat - config.av.aspectratio - config.av.tvsystem - config.av.wss - config.av.defaultac3 - config.av.vcrswitch - - - config.rfmod.enable - config.rfmod.test - config.rfmod.sound - config.rfmod.soundcarrier - config.rfmod.channel - config.rfmod.finetune - - - config.keyboard.keymap - - - config.osd.alpha - config.osd.bright - config.osd.contrast - config.osd.language - - - config.lcd.bright - config.lcd.standby - config.lcd.invert - - - config.parental.lock - config.parental.setuplock - - - config.expert.splitsize - config.expert.satpos - config.expert.fastzap - config.expert.skipconfirm - config.expert.hideerrors - config.expert.autoinfo - - - config.sat.diseqcA - config.sat.posA - config.sat.satA - config.sat.diseqcB - config.sat.posB - config.sat.satB - - - """) - -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 +# FIXME: use resolveFile! +# read the setupmenu +try: + # first we search in the current path + setupfile = file('data/setup.xml', 'r') +except: + # if not found in the current path, we use the global datadir-path + setupfile = file('/usr/share/enigma2/setup.xml', 'r') +setupdom = xml.dom.minidom.parseString(setupfile.read()) +setupfile.close() + +class SetupSummary(Screen): + skin = """ + + + + + """ + + def __init__(self, session, parent): + Screen.__init__(self, session) + self["SetupTitle"] = Label(_(parent.setup_title)) + self["SetupEntry"] = Label("") + self["SetupValue"] = Label("") + self.parent = parent + self.onShow.append(self.addWatcher) + self.onHide.append(self.removeWatcher) + + def addWatcher(self): + self.parent.onChangedEntry.append(self.selectionChanged) + self.parent["config"].onSelectionChanged.append(self.selectionChanged) + self.selectionChanged() - return "" + def removeWatcher(self): + self.parent.onChangedEntry.remove(self.selectionChanged) + self.parent["config"].onSelectionChanged.remove(self.selectionChanged) -class Setup(Screen): + def selectionChanged(self): + self["SetupEntry"].text = self.parent.getCurrentEntry() + self["SetupValue"].text = self.parent.getCurrentValue() - 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 - item = b.controlType(b) - - # the first b is the item itself, ignored by the configList. - # the second one is converted to string. - list.append( (ItemText, item) ) +class Setup(ConfigListScreen, Screen): - def keyOk(self): - self["config"].handleKey(0) - def keyLeft(self): - self["config"].handleKey(1) - def keyRight(self): - self["config"].handleKey(2) + ALLOW_SUSPEND = True - def keySave(self): - print "save requested" - for x in self["config"]: - selection = self["config"].getCurrent() - selection.save() + def removeNotifier(self): + config.usage.setup_level.notifiers.remove(self.levelChanged) - def __init__(self, session, setup): - Screen.__init__(self, session) + def levelChanged(self, configElement): + list = [] + self.refill(list) + self["config"].setList(list) - print "request setup for " + setup - + def refill(self, list): xmldata = setupdom.childNodes[0] - entries = xmldata.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: + if x.getAttribute("key") != self.setup: continue self.addItems(list, x.childNodes); - + self.setup_title = x.getAttribute("title").encode("UTF-8") + + def __init__(self, session, setup): + Screen.__init__(self, session) + + self.onChangedEntry = [ ] + + self.setup = setup + list = [] + self.refill(list) + #check for list.entries > 0 else self.close + self["title"] = Label(_(self.setup_title)) + + self["oktext"] = Label(_("OK")) + self["canceltext"] = Label(_("Cancel")) + self["ok"] = Pixmap() + self["cancel"] = Pixmap() - self["config"] = ConfigList(list) + self["actions"] = NumberActionMap(["SetupActions"], + { + "cancel": self.keyCancel, + "save": self.keySave, + }, -2) - self["ok"] = Label("OK") - self["cancel"] = Label("Cancel") + ConfigListScreen.__init__(self, list, session = session, on_change = self.changedEntry) - self["actions"] = ActionMap(["SetupActions"], - { - "cancel": self.close, - "ok": self.keyOk, - "left": self.keyLeft, - "right": self.keyRight, - "save": self.keySave - }) + self.changedEntry() + + # for summary: + def changedEntry(self): + for x in self.onChangedEntry: + x() + + def getCurrentEntry(self): + return self["config"].getCurrent()[0] + + def getCurrentValue(self): + return str(self["config"].getCurrent()[1].getText()) + + def createSummary(self): + return SetupSummary + + def addItems(self, list, childNode): + for x in childNode: + if x.nodeType != xml.dom.minidom.Element.nodeType: + continue + elif x.tagName == 'item': + item_level = int(x.getAttribute("level") or "0") + + if not self.levelChanged in config.usage.setup_level.notifiers: + config.usage.setup_level.notifiers.append(self.levelChanged) + self.onClose.append(self.removeNotifier) + + if item_level > config.usage.setup_level.index: + continue + + item_text = _(x.getAttribute("text").encode("UTF-8") or "??") + b = eval(XMLTools.mergeText(x.childNodes)); + if b == "": + continue + #add to configlist + item = b + # the first b is the item itself, ignored by the configList. + # the second one is converted to string. + if not isinstance(item, ConfigNothing): + list.append( (item_text, item) ) + +def getSetupTitle(id): + xmldata = setupdom.childNodes[0].childNodes + for x in elementsWithTag(xmldata, "setup"): + if x.getAttribute("key") == id: + return x.getAttribute("title").encode("UTF-8") + raise "unknown setup id '%s'!" % repr(id)