X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/0ad8a5e3943746735fa6de06e089ac58c40800b6..0b4c42164882265f8100ee69c245ed83dc0c9d2a:/lib/python/Components/MenuList.py diff --git a/lib/python/Components/MenuList.py b/lib/python/Components/MenuList.py index 03e6be6d..4e032d43 100644 --- a/lib/python/Components/MenuList.py +++ b/lib/python/Components/MenuList.py @@ -9,6 +9,7 @@ class MenuList(HTMLComponent, GUIComponent): self.list = list self.l = eListboxPythonStringContent() self.l.setList(self.list) + self.onSelectionChanged = [ ] def getCurrent(self): return self.l.getCurrentSelection() @@ -16,9 +17,16 @@ class MenuList(HTMLComponent, GUIComponent): def GUIcreate(self, parent): self.instance = eListbox(parent) self.instance.setContent(self.l) + self.instance.selectionChanged.get().append(self.selectionChanged) def GUIdelete(self): self.instance.setContent(None) self.instance = None + def selectionChanged(self): + for f in self.onSelectionChanged: + f() + def setList(self, list): + self.list = list + self.l.setList(self.list) \ No newline at end of file