1 from HTMLComponent import *
2 from GUIComponent import *
4 from MenuList import MenuList
6 from Tools.Directories import *
27 PlayIcon = loadPNG(resolveFilename(SCOPE_SKIN_IMAGE, "play-small-fs8.png"))
28 PauseIcon = loadPNG(resolveFilename(SCOPE_SKIN_IMAGE, "pause-small-fs8.png"))
29 StopIcon = loadPNG(resolveFilename(SCOPE_SKIN_IMAGE, "stop-small-fs8.png"))
30 RewindIcon = loadPNG(resolveFilename(SCOPE_SKIN_IMAGE, "rewind-small-fs8.png"))
31 ForwardIcon = loadPNG(resolveFilename(SCOPE_SKIN_IMAGE, "forward-small-fs8.png"))
33 def PlaylistEntryComponent(serviceref, state):
35 res.append((eListboxPythonMultiContent.TYPE_TEXT, 35, 0, 250, 32, 0, RT_VALIGN_CENTER, os.path.split(serviceref.getPath().split('/')[-1])[1]))
37 if state == STATE_PLAY:
39 elif state == STATE_PAUSE:
41 elif state == STATE_STOP:
43 elif state == STATE_REWIND:
45 elif state == STATE_FORWARD:
49 res.append((eListboxPythonMultiContent.TYPE_PIXMAP, 0, 0, 33, 32, png))
53 class PlayList(MenuList, HTMLComponent, GUIComponent):
55 GUIComponent.__init__(self)
56 self.l = eListboxPythonMultiContent()
58 self.l.setList(self.list)
59 self.l.setFont(0, gFont("Regular", 18))
61 self.oldCurrPlaying = -1
65 self.l.setList(self.list)
67 self.oldCurrPlaying = -1
71 def postWidgetCreate(self, instance):
72 instance.setContent(self.l)
73 instance.setItemHeight(32)
75 def getSelection(self):
76 return self.l.getCurrentSelection()[0]
78 def getSelectionIndex(self):
79 return self.l.getCurrentSelectionIndex()
81 def addFile(self, serviceref):
82 self.list.append(PlaylistEntryComponent(serviceref, STATE_NONE))
84 def deleteFile(self, index):
85 if self.currPlaying >= index:
89 def setCurrentPlaying(self, index):
90 self.oldCurrPlaying = self.currPlaying
91 self.currPlaying = index
93 def updateState(self, state):
94 if len(self.list) > self.oldCurrPlaying and self.oldCurrPlaying != -1:
95 self.list[self.oldCurrPlaying] = PlaylistEntryComponent(self.list[self.oldCurrPlaying][0], STATE_NONE)
96 self.list[self.currPlaying] = PlaylistEntryComponent(self.list[self.currPlaying][0], state)
100 self.updateState(STATE_PLAY)
103 self.updateState(STATE_PAUSE)
106 self.updateState(STATE_STOP)
108 def rewindFile(self):
109 self.updateState(STATE_REWIND)
111 def forwardFile(self):
112 self.updateState(STATE_FORWARD)
114 def updateList(self):
115 self.l.setList(self.list)
117 def getCurrentIndex(self):
118 return self.currPlaying
120 def getServiceRefList(self):
127 return len(self.list)