aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components/Pixmap.py
diff options
context:
space:
mode:
authorStefan Pluecken <stefan.pluecken@multimedia-labs.de>2005-11-26 03:00:38 +0000
committerStefan Pluecken <stefan.pluecken@multimedia-labs.de>2005-11-26 03:00:38 +0000
commit4ae10f76135d53a4285fd458a87f485695c9fbd7 (patch)
treebc21652b7050eea634a13aa5b8fdd94dd9b993d7 /lib/python/Components/Pixmap.py
parentcb52eb273bed4c28716b501fbbf128d2c7046d57 (diff)
downloadenigma2-4ae10f76135d53a4285fd458a87f485695c9fbd7.tar.gz
enigma2-4ae10f76135d53a4285fd458a87f485695c9fbd7.zip
get the file for the BlinkingPixmap from skin.xml
Diffstat (limited to 'lib/python/Components/Pixmap.py')
-rw-r--r--lib/python/Components/Pixmap.py11
1 files changed, 5 insertions, 6 deletions
diff --git a/lib/python/Components/Pixmap.py b/lib/python/Components/Pixmap.py
index c97c0ab1..b6620d9a 100644
--- a/lib/python/Components/Pixmap.py
+++ b/lib/python/Components/Pixmap.py
@@ -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