aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components/Pixmap.py
diff options
context:
space:
mode:
authorStefan Pluecken <stefan.pluecken@multimedia-labs.de>2005-11-25 05:51:44 +0000
committerStefan Pluecken <stefan.pluecken@multimedia-labs.de>2005-11-25 05:51:44 +0000
commite330dbae62e83dd2aa2ff63a984519a84b23c3ad (patch)
tree7138f778d7a7817f01413931ab29d88ca2f13c7e /lib/python/Components/Pixmap.py
parent6f1188bea106d335f993729e4971770deac88619 (diff)
downloadenigma2-e330dbae62e83dd2aa2ff63a984519a84b23c3ad.tar.gz
enigma2-e330dbae62e83dd2aa2ff63a984519a84b23c3ad.zip
add a blinking point to the infobar
the blinking point appears when doing an instant record it is a hack up to now the point looks ugly, because the transparency needs to be explored first
Diffstat (limited to 'lib/python/Components/Pixmap.py')
-rw-r--r--lib/python/Components/Pixmap.py25
1 files changed, 25 insertions, 0 deletions
diff --git a/lib/python/Components/Pixmap.py b/lib/python/Components/Pixmap.py
new file mode 100644
index 00000000..c97c0ab1
--- /dev/null
+++ b/lib/python/Components/Pixmap.py
@@ -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