aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components/Pixmap.py
blob: c97c0ab1645b2104d9b9265326b78a794e335c16 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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