immediate take care of changed "visualize rotor movement" option
[enigma2.git] / lib / python / Components / GUISkin.py
index 3aa9c851bde96f8bbfe969fefa610caa9d89d2f6..0fb94214ff4c7529cea3c53f5e6104bd2d3aa912 100644 (file)
@@ -1,15 +1,16 @@
-from GUIComponent import *
+from GUIComponent import GUIComponent
 from skin import applyAllAttributes
+from Tools.CList import CList
 
 class GUISkin:
        __module__ = __name__
 
        def __init__(self):
                self.onLayoutFinish = [ ]
-               self.summaries = [ ]
+               self.summaries = CList()
 
        def createGUIScreen(self, parent, desktop):
-               for (name, val) in self.items():
+               for val in self.values() + self.renderer:
                        if isinstance(val, GUIComponent):
                                val.GUIcreate(parent)
                                val.applySkin(desktop)
@@ -18,7 +19,7 @@ class GUISkin:
                        w.instance = w.widget(parent)
                        # w.instance.thisown = 0
                        applyAllAttributes(w.instance, desktop, w.skinAttributes)
-               
+
                for f in self.onLayoutFinish:
                        if type(f) is not type(self.close): # is this the best way to do this?
                                exec(f) in globals(), locals()
@@ -45,6 +46,4 @@ class GUISkin:
        def setTitle(self, title):
                self.instance.setTitle(title)
                self.title = title
-               
-               for x in self.summaries:
-                       x.setTitle(title)
+               self.summaries.setTitle(title)