コード例 #1
0
ファイル: menuitems.py プロジェクト: yellowfour/exaile
def ExportPlaylistFilesMenuItem(name, after, get_pl_func=generic_get_playlist_func):
    return menu.simple_menu_item(
        name,
        after,
        _('Export _Files'),
        'document-save-as',
        lambda w, n, o, c: dialogs.export_playlist_files(get_pl_func(o, c)),
    )
コード例 #2
0
ファイル: playlists.py プロジェクト: BlubberHarpoonist/exaile
 def export_playlist_files(self, playlist):
     '''
         Exports the playlist files to a URI
     '''
     dialogs.export_playlist_files(playlist)
コード例 #3
0
ファイル: playlists.py プロジェクト: dangmai/exaile
 def export_playlist_files(self, playlist):
     """
         Exports the playlist files to a URI
     """
     dialogs.export_playlist_files(playlist)
コード例 #4
0
ファイル: playlists.py プロジェクト: awandepan/exaile
 def export_playlist_files(self, playlist):
     '''
         Exports the playlist files to a URI
     '''
     dialogs.export_playlist_files(playlist)
コード例 #5
0
ファイル: menuitems.py プロジェクト: neurosnap/exaile
def ExportPlaylistFilesMenuItem(name, after, get_pl_func=generic_get_playlist_func):
    return menu.simple_menu_item(
        name, after, _("Export Files"), "gtk-save", lambda w, n, o, c: dialogs.export_playlist_files(get_pl_func(o, c))
    )