get the file for the BlinkingPixmap from skin.xml
[enigma2.git] / lib / python / Components / Pixmap.py
index c97c0ab1645b2104d9b9265326b78a794e335c16..b6620d9ace5a8513dc79c053224dada66b77e715 100644 (file)
@@ -3,23 +3,22 @@ import skin
 from enigma import *
 
 class Pixmap:
-       """Pixmap can be used for components which use a pixmap"""
+       """Pixmap can be used for components which diplay a pixmap"""
        
        def __init__(self):
                self.instance = None
        
        def GUIcreate(self, parent):
                self.instance = self.createWidget(parent)
-               #self.instance.setText(self.message)
        
        def GUIdelete(self):
                self.removeWidget(self.instance)
                self.instance = None
        
-       def getePixmap(self, parent, filename):
-               pixmap = ePixmap(parent)
-               pixmap.setPixmapFromFile(filename)
-               return pixmap
+       def getePixmap(self, parent):
+               #pixmap = ePixmap(parent)
+               #pixmap.setPixmapFromFile(self.filename)
+               return ePixmap(parent)
        
        def removeWidget(self, instance):
                pass