from Components.Label import Label
class AudioSelection(Screen):
+ def KeyOk(self):
+ selection = self["tracks"].getCurrent()
+ print "select track " + str(selection[1])
+ self.audio.selectTrack(selection[1])
+ self.close()
def __init__(self, session, audio):
Screen.__init__(self, session)
self["actions"] = ActionMap(["SetupActions"],
{
"cancel": self.close,
- "ok": self.close,
+ "ok": self.KeyOk,
})
- tlist = []
+ self.audio = audio
+ tlist = []
n = audio.getNumberOfTracks()
- print "AUDIO TRACKS:"
for x in range(n):
i = audio.getTrackInfo(x)
- print i.getDescription()
tlist.append((i.getDescription(), x))
self["tracks"] = MenuList(tlist)
- #self["tracks"] = Label("Blasel")
+
\ No newline at end of file