From a029953596adaed49a5b0346acd5a867eff91a57 Mon Sep 17 00:00:00 2001 From: Andreas Monzner Date: Fri, 14 Sep 2007 11:27:41 +0000 Subject: [PATCH] add the name of missing skin element to debug output --- lib/python/Components/GUIComponent.py | 4 ++-- lib/python/Components/GUISkin.py | 12 ++++++++++-- 2 files changed, 12 insertions(+), 4 deletions(-) diff --git a/lib/python/Components/GUIComponent.py b/lib/python/Components/GUIComponent.py index 401a004d..c900796d 100644 --- a/lib/python/Components/GUIComponent.py +++ b/lib/python/Components/GUIComponent.py @@ -31,10 +31,10 @@ class GUIComponent(object): self.instance.hide() if self.skinAttributes is None: - print "warning, skin is missing some elements." - return + return False skin.applyAllAttributes(self.instance, desktop, self.skinAttributes) + return True def move(self, x, y = None): # we assume, that x is already an ePoint diff --git a/lib/python/Components/GUISkin.py b/lib/python/Components/GUISkin.py index 0fb94214..39499c77 100644 --- a/lib/python/Components/GUISkin.py +++ b/lib/python/Components/GUISkin.py @@ -10,10 +10,18 @@ class GUISkin: self.summaries = CList() def createGUIScreen(self, parent, desktop): - for val in self.values() + self.renderer: + for val in self.renderer: if isinstance(val, GUIComponent): val.GUIcreate(parent) - val.applySkin(desktop) + if not val.applySkin(desktop): + print "warning, skin is missing renderer", val, "in", self + + for key in self: + val = self[key] + if isinstance(val, GUIComponent): + val.GUIcreate(parent) + if not val.applySkin(desktop): + print "warning, skin is missing element", key, "in", self for w in self.additionalWidgets: w.instance = w.widget(parent) -- 2.30.2