1 from HTMLComponent import HTMLComponent
2 from GUIComponent import GUIComponent
4 from enigma import eEPGCache, eListbox, eListboxPythonMultiContent, gFont, \
5 RT_HALIGN_LEFT, RT_HALIGN_RIGHT, RT_HALIGN_CENTER, RT_VALIGN_CENTER
7 from Tools.LoadPixmap import LoadPixmap
9 from time import localtime, time
10 from ServiceReference import ServiceReference
11 from Tools.Directories import resolveFilename, SCOPE_SKIN_IMAGE
18 def __init__(self, x, y, width, height):
22 self.__height = height
36 class EPGList(HTMLComponent, GUIComponent):
37 def __init__(self, type=EPG_TYPE_SINGLE, selChangedCB=None, timer = None):
38 self.days = (_("Mon"), _("Tue"), _("Wed"), _("Thu"), _("Fri"), _("Sat"), _("Sun"))
40 self.onSelChanged = [ ]
41 if selChangedCB is not None:
42 self.onSelChanged.append(selChangedCB)
43 GUIComponent.__init__(self)
45 self.l = eListboxPythonMultiContent()
46 self.l.setFont(0, gFont("Regular", 22))
47 self.l.setFont(1, gFont("Regular", 16))
48 if type == EPG_TYPE_SINGLE:
49 self.l.setBuildFunc(self.buildSingleEntry)
50 elif type == EPG_TYPE_MULTI:
51 self.l.setBuildFunc(self.buildMultiEntry)
53 assert(type == EPG_TYPE_SIMILAR)
54 self.l.setBuildFunc(self.buildSimilarEntry)
55 self.epgcache = eEPGCache.getInstance()
56 self.clock_pixmap = LoadPixmap(resolveFilename(SCOPE_SKIN_IMAGE, 'skin_default/icons/epgclock.png'))
57 self.clock_add_pixmap = LoadPixmap(resolveFilename(SCOPE_SKIN_IMAGE, 'skin_default/icons/epgclock_add.png'))
58 self.clock_pre_pixmap = LoadPixmap(resolveFilename(SCOPE_SKIN_IMAGE, 'skin_default/icons/epgclock_pre.png'))
59 self.clock_post_pixmap = LoadPixmap(resolveFilename(SCOPE_SKIN_IMAGE, 'skin_default/icons/epgclock_post.png'))
60 self.clock_prepost_pixmap = LoadPixmap(resolveFilename(SCOPE_SKIN_IMAGE, 'skin_default/icons/epgclock_prepost.png'))
62 def getEventFromId(self, service, eventid):
64 if self.epgcache is not None and eventid is not None:
65 event = self.epgcache.lookupEventId(service.ref, eventid)
68 def getCurrentChangeCount(self):
69 if self.type == EPG_TYPE_MULTI and self.l.getCurrentSelection() is not None:
70 return self.l.getCurrentSelection()[0]
75 if self.type == EPG_TYPE_MULTI:
77 tmp = self.l.getCurrentSelection()
81 service = ServiceReference(tmp[idx])
82 event = self.getEventFromId(service, eventid)
83 return ( event, service )
86 self.instance.moveSelection(self.instance.moveUp)
89 self.instance.moveSelection(self.instance.moveDown)
91 def connectSelectionChanged(func):
92 if not self.onSelChanged.count(func):
93 self.onSelChanged.append(func)
95 def disconnectSelectionChanged(func):
96 self.onSelChanged.remove(func)
98 def selectionChanged(self):
99 for x in self.onSelChanged:
105 # print "FIXME in EPGList.selectionChanged"
108 GUI_WIDGET = eListbox
110 def postWidgetCreate(self, instance):
111 instance.setWrapAround(True)
112 instance.selectionChanged.get().append(self.selectionChanged)
113 instance.setContent(self.l)
115 def preWidgetRemove(self, instance):
116 instance.selectionChanged.get().remove(self.selectionChanged)
117 instance.setContent(None)
119 def recalcEntrySize(self):
120 esize = self.l.getItemSize()
121 width = esize.width()
122 height = esize.height()
123 if self.type == EPG_TYPE_SINGLE:
124 self.weekday_rect = Rect(0, 0, width/20*2-10, height)
125 self.datetime_rect = Rect(width/20*2, 0, width/20*5-15, height)
126 self.descr_rect = Rect(width/20*7, 0, width/20*13, height)
127 elif self.type == EPG_TYPE_MULTI:
130 self.service_rect = Rect(xpos, 0, w-10, height)
133 self.start_end_rect = Rect(xpos, 0, w-10, height)
134 self.progress_rect = Rect(xpos, 4, w-10, height-8)
137 self.descr_rect = Rect(xpos, 0, width, height)
138 else: # EPG_TYPE_SIMILAR
139 self.weekday_rect = Rect(0, 0, width/20*2-10, height)
140 self.datetime_rect = Rect(width/20*2, 0, width/20*5-15, height)
141 self.service_rect = Rect(width/20*7, 0, width/20*13, height)
143 def getClockPixmap(self, refstr, beginTime, duration, eventId):
147 endTime = beginTime + duration
148 for x in self.timer.timer_list:
149 if x.service_ref.ref.toString() == refstr:
151 return self.clock_pixmap
154 if beginTime > beg and beginTime < end and endTime > end:
155 clock_type |= pre_clock
156 elif beginTime < beg and endTime > beg and endTime < end:
157 clock_type |= post_clock
159 return self.clock_add_pixmap
160 elif clock_type == pre_clock:
161 return self.clock_pre_pixmap
162 elif clock_type == post_clock:
163 return self.clock_post_pixmap
165 return self.clock_prepost_pixmap
167 def buildSingleEntry(self, service, eventId, beginTime, duration, EventName):
168 rec=beginTime and (self.timer.isInTimer(eventId, beginTime, duration, service))
170 r2=self.datetime_rect
172 t = localtime(beginTime)
174 None, # no private data needed
175 (eListboxPythonMultiContent.TYPE_TEXT, r1.left(), r1.top(), r1.width(), r1.height(), 0, RT_HALIGN_RIGHT, self.days[t[6]]),
176 (eListboxPythonMultiContent.TYPE_TEXT, r2.left(), r2.top(), r2.width(), r1.height(), 0, RT_HALIGN_RIGHT, "%02d.%02d, %02d:%02d"%(t[2],t[1],t[3],t[4]))
179 clock_pic = self.getClockPixmap(service, beginTime, duration, eventId)
181 (eListboxPythonMultiContent.TYPE_PIXMAP_ALPHATEST, r3.left(), r3.top(), 21, 21, clock_pic),
182 (eListboxPythonMultiContent.TYPE_TEXT, r3.left() + 25, r3.top(), r3.width(), r3.height(), 0, RT_HALIGN_LEFT, EventName)
185 res.append((eListboxPythonMultiContent.TYPE_TEXT, r3.left(), r3.top(), r3.width(), r3.height(), 0, RT_HALIGN_LEFT, EventName))
188 def buildSimilarEntry(self, service, eventId, beginTime, service_name, duration):
189 rec=beginTime and (self.timer.isInTimer(eventId, beginTime, duration, service))
191 r2=self.datetime_rect
193 t = localtime(beginTime)
195 None, # no private data needed
196 (eListboxPythonMultiContent.TYPE_TEXT, r1.left(), r1.top(), r1.width(), r1.height(), 0, RT_HALIGN_RIGHT, self.days[t[6]]),
197 (eListboxPythonMultiContent.TYPE_TEXT, r2.left(), r2.top(), r2.width(), r1.height(), 0, RT_HALIGN_RIGHT, "%02d.%02d, %02d:%02d"%(t[2],t[1],t[3],t[4]))
200 clock_pic = self.getClockPixmap(service, beginTime, duration, eventId)
202 (eListboxPythonMultiContent.TYPE_PIXMAP_ALPHATEST, r3.left(), r3.top(), 21, 21, clock_pic),
203 (eListboxPythonMultiContent.TYPE_TEXT, r3.left() + 25, r3.top(), r3.width(), r3.height(), 0, RT_HALIGN_LEFT, service_name)
206 res.append((eListboxPythonMultiContent.TYPE_TEXT, r3.left(), r3.top(), r3.width(), r3.height(), 0, RT_HALIGN_LEFT, service_name))
209 def buildMultiEntry(self, changecount, service, eventId, begTime, duration, EventName, nowTime, service_name):
210 rec=begTime and (self.timer.isInTimer(eventId, begTime, duration, service))
212 r2=self.progress_rect
214 r4=self.start_end_rect
215 res = [ None ] # no private data needed
217 clock_pic = self.getClockPixmap(service, begTime, duration, eventId)
219 (eListboxPythonMultiContent.TYPE_TEXT, r1.left(), r1.top(), r1.width()-21, r1.height(), 0, RT_HALIGN_LEFT, service_name),
220 (eListboxPythonMultiContent.TYPE_PIXMAP_ALPHATEST, r1.left()+r1.width()-16, r1.top(), 21, 21, clock_pic)
223 res.append((eListboxPythonMultiContent.TYPE_TEXT, r1.left(), r1.top(), r1.width(), r1.height(), 0, RT_HALIGN_LEFT, service_name))
224 if begTime is not None:
225 if nowTime < begTime:
226 begin = localtime(begTime)
227 end = localtime(begTime+duration)
228 # print "begin", begin
231 (eListboxPythonMultiContent.TYPE_TEXT, r4.left(), r4.top(), r4.width(), r4.height(), 1, RT_HALIGN_CENTER|RT_VALIGN_CENTER, "%02d.%02d - %02d.%02d"%(begin[3],begin[4],end[3],end[4])),
232 (eListboxPythonMultiContent.TYPE_TEXT, r3.left(), r3.top(), r3.width(), r3.height(), 0, RT_HALIGN_LEFT, EventName)
235 percent = (nowTime - begTime) * 100 / duration
237 (eListboxPythonMultiContent.TYPE_PROGRESS, r2.left(), r2.top(), r2.width(), r2.height(), percent),
238 (eListboxPythonMultiContent.TYPE_TEXT, r3.left(), r3.top(), r3.width(), r3.height(), 0, RT_HALIGN_LEFT, EventName)
242 def queryEPG(self, list, buildFunc=None):
243 if self.epgcache is not None:
244 if buildFunc is not None:
245 return self.epgcache.lookupEvent(list, buildFunc)
247 return self.epgcache.lookupEvent(list)
250 def fillMultiEPG(self, services, stime=-1):
252 test = [ (service.ref.toString(), 0, stime) for service in services ]
253 test.insert(0, 'X0RIBDTCn')
254 self.list = self.queryEPG(test)
255 self.l.setList(self.list)
257 self.selectionChanged()
259 def updateMultiEPG(self, direction):
261 test = [ x[3] and (x[1], direction, x[3]) or (x[1], direction, 0) for x in self.list ]
262 test.insert(0, 'XRIBDTCn')
263 tmp = self.queryEPG(test)
266 changecount = self.list[cnt][0] + direction
269 self.list[cnt]=(changecount, x[0], x[1], x[2], x[3], x[4], x[5], x[6])
271 self.l.setList(self.list)
273 self.selectionChanged()
275 def fillSingleEPG(self, service):
277 test = [ 'RIBDT', (service.ref.toString(), 0, -1, -1) ]
278 self.list = self.queryEPG(test)
279 self.l.setList(self.list)
281 self.selectionChanged()
283 def sortSingleEPG(self, type):
286 event_id = self.getSelectedEventId()
288 list.sort(key=lambda x: (x[4] and x[4].lower(), x[2]))
291 list.sort(key=lambda x: x[2])
293 self.moveToEventId(event_id)
295 def getSelectedEventId(self):
296 x = self.l.getCurrentSelection()
299 def moveToService(self,serviceref):
303 refstr = serviceref.toString()
306 self.instance.moveSelectionTo(index)
310 def moveToEventId(self, eventId):
316 self.instance.moveSelectionTo(index)
320 def fillSimilarList(self, refstr, event_id):
322 # search similar broadcastings
325 l = self.epgcache.search(('RIBND', 1024, eEPGCache.SIMILAR_BROADCASTINGS_SEARCH, refstr, event_id))
327 l.sort(key=lambda x: x[2])
329 self.selectionChanged()