add a blinking point to the infobar
[enigma2.git] / lib / python / Components / Pixmap.py
diff --git a/lib/python/Components/Pixmap.py b/lib/python/Components/Pixmap.py
new file mode 100644 (file)
index 0000000..c97c0ab
--- /dev/null
@@ -0,0 +1,25 @@
+import skin
+
+from enigma import *
+
+class Pixmap:
+       """Pixmap can be used for components which use 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 removeWidget(self, instance):
+               pass