def savePlaylist(self): """ Save the current tracklist to a playlist """ outFile = fileChooser.save(self.window, _('Save playlist'), 'playlist.m3u') if outFile is not None: allFiles = [row[ROW_TRK].getFilePath() for row in self.list.iterAllRows()] media.playlist.save(allFiles, outFile)
def onBtnSave(self, btn): """ Save the current levels to a file""" outFile = fileChooser.save(self.cfgWindow, _('Save levels'), 'levels.dat') if outFile is not None: output = open(outFile, 'wt') for i in xrange(10): output.write(str(self.lvls[i]) + '\n') output.close()
def export_playlist_to_m3u(self): """ Save the current tracklist to a playlist """ outfile = fileChooser.save(self.window, _('Export playlist to file'), 'playlist.m3u') if outfile is not None: tools.write_file(outfile, self.get_m3u_text())