1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-04-08 10:02:29 +02:00

List resolvers in the menu that can sync playlists

This commit is contained in:
Uwe L. Korn 2014-07-20 18:35:59 +01:00
parent 5da18c59ce
commit 0c0dfd82cc

View File

@ -44,6 +44,8 @@
#include "utils/TomahawkUtilsGui.h"
#include "widgets/SourceTreePopupDialog.h"
#include "PlaylistEntry.h"
#include "Pipeline.h"
#include "resolvers/ExternalResolver.h"
#include "../../viewpages/dashboard/Dashboard.h"
#include "../../viewpages/whatsnew_0_8/WhatsNew_0_8.h"
@ -242,8 +244,15 @@ SourceTreeView::setupMenus()
connect( exportPlaylist, SIGNAL( triggered() ), this, SLOT( exportPlaylist() ) );
QMenu* playlistSyncMenu = m_playlistMenu.addMenu( tr( "Sync with .." ) );
// TODO: List Services that can sync a playlist
// TODO: Add a checkmark to the service that syncs this playlist
foreach ( const QPointer<ExternalResolver>& resolver, Tomahawk::Pipeline::instance()->scriptResolvers() )
{
if ( resolver->capabilities().testFlag( ExternalResolver::PlaylistSync ) )
{
// TODO: Add a checkmark to the service that syncs this playlist
// TODO: Actually add an action to sync
playlistSyncMenu->addAction( resolver->icon(), resolver->name() );
}
}
}
QAction* deletePlaylistAction = m_playlistMenu.addAction( tr( "&Delete %1" ).arg( SourcesModel::rowTypeToString( type ) ) );