X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/2ba80311aa9598a775b163f20ca7aff3df1e4d47..02172ca65853b9f61d46c0e5e7823ee69f203b83:/lib/python/Components/GUISkin.py diff --git a/lib/python/Components/GUISkin.py b/lib/python/Components/GUISkin.py index c953aaec..3aa9c851 100644 --- a/lib/python/Components/GUISkin.py +++ b/lib/python/Components/GUISkin.py @@ -6,7 +6,7 @@ class GUISkin: def __init__(self): self.onLayoutFinish = [ ] - pass + self.summaries = [ ] def createGUIScreen(self, parent, desktop): for (name, val) in self.items(): @@ -16,7 +16,7 @@ class GUISkin: for w in self.additionalWidgets: w.instance = w.widget(parent) - w.instance.thisown = 0 + # w.instance.thisown = 0 applyAllAttributes(w.instance, desktop, w.skinAttributes) for f in self.onLayoutFinish: @@ -25,8 +25,6 @@ class GUISkin: else: f() - - def deleteGUIScreen(self): for (name, val) in self.items(): if isinstance(val, GUIComponent): @@ -34,3 +32,19 @@ class GUISkin: def close(self): self.deleteGUIScreen() + + def createSummary(self): + return None + + def addSummary(self, summary): + self.summaries.append(summary) + + def removeSummary(self, summary): + self.summaries.remove(summary) + + def setTitle(self, title): + self.instance.setTitle(title) + self.title = title + + for x in self.summaries: + x.setTitle(title)