aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components/Pixmap.py
blob: 264ffe29df6942a3ce2e5a924c19b29f0ce91277 (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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
import skin

from enigma import *

class 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)
	
	def GUIdelete(self):
		self.removeWidget(self.instance)
		self.instance = None
	
	def getePixmap(self, parent):
		#pixmap = ePixmap(parent)
		#pixmap.setPixmapFromFile(self.filename)
		return ePixmap(parent)
	
	def removeWidget(self, instance):
		pass

class PixmapConditional(Pixmap):
	def __init__(self, withTimer = True):
		Pixmap.__init__(self)
		
		self.setConnect(None)
		
		if (withTimer):
			self.conditionCheckTimer = eTimer()
			self.conditionCheckTimer.timeout.get().append(self.update)
			self.conditionCheckTimer.start(1000)
		
	def setConnect(self, conditionalFunction):
		self.conditionalFunction = conditionalFunction
		
	def activateCondition(self, condition):
		if (condition):
			self.instance.show()
		else:
			self.instance.hide()

	def update(self):
		if (self.setConnect != None):
			try:
				self.conditionalFunction() # check, if the conditionalfunction is still valid
			except:
				self.conditionalFunction = None
				self.activateCondition(False)
			
			self.activateCondition(self.conditionalFunction())