add homeys TVCharts plugin
[vuplus_dvbapp-plugin] / kiddytimer / src / KTMultiPixmap.py
1 from Components.Pixmap import MultiPixmap
2  
3 class KTmultiPixmap(MultiPixmap):
4     def __init__(self):
5         MultiPixmap.__init__(self)
6         self.pixmapFiles = []
7
8     def applySkin(self, desktop, screen):
9         if self.skinAttributes is not None:
10             for (attrib, value) in self.skinAttributes:
11                 if attrib == "pixmaps":
12                     pixmaps = value.split(',')
13                     for p in pixmaps:
14                         self.pixmapFiles.append(p)
15                     break
16         return MultiPixmap.applySkin(self, desktop, screen)