from MenuList import MenuList
-from Tools.Directories import *
-import os
+from Tools.Directories import SCOPE_SKIN_IMAGE, resolveFilename
+from os import path
-from enigma import *
-
-RT_HALIGN_LEFT = 0
-RT_HALIGN_RIGHT = 1
-RT_HALIGN_CENTER = 2
-RT_HALIGN_BLOCK = 4
-
-RT_VALIGN_TOP = 0
-RT_VALIGN_CENTER = 8
-RT_VALIGN_BOTTOM = 16
+from enigma import eListboxPythonMultiContent, eListbox, RT_VALIGN_CENTER, loadPNG, gFont
STATE_PLAY = 0
STATE_PAUSE = 1
def PlaylistEntryComponent(serviceref, state):
res = [ serviceref ]
- res.append((eListboxPythonMultiContent.TYPE_TEXT,25, 0, 470, 32, 0, RT_VALIGN_CENTER, os.path.split(serviceref.getPath().split('/')[-1])[1]))
+ res.append((eListboxPythonMultiContent.TYPE_TEXT,25, 0, 470, 32, 0, RT_VALIGN_CENTER, path.split(serviceref.getPath().split('/')[-1])[1]))
png = None
if state == STATE_PLAY:
png = PlayIcon
self.list = []
self.l.setList(self.list)
self.l.setFont(0, gFont("Regular", 18))
- self.currPlaying = 0
+ self.currPlaying = -1
self.oldCurrPlaying = -1
def clear(self):
del self.list[:]
self.l.setList(self.list)
- self.currPlaying = 0
+ self.currPlaying = -1
self.oldCurrPlaying = -1
GUI_WIDGET = eListbox
def updateState(self, state):
if len(self.list) > self.oldCurrPlaying and self.oldCurrPlaying != -1:
self.list[self.oldCurrPlaying] = PlaylistEntryComponent(self.list[self.oldCurrPlaying][0], STATE_NONE)
- self.list[self.currPlaying] = PlaylistEntryComponent(self.list[self.currPlaying][0], state)
+ if self.currPlaying != -1 and self.currPlaying < len(self.list):
+ self.list[self.currPlaying] = PlaylistEntryComponent(self.list[self.currPlaying][0], state)
self.updateList()
def playFile(self):
return self.currPlaying
def getServiceRefList(self):
- list = []
- for x in self.list:
- list.append(x[0])
- return list
+ return [ x[0] for x in self.list ]
def __len__(self):
return len(self.list)