From 5f2791f2b361d5f586b5b483d877130dc0f642fe Mon Sep 17 00:00:00 2001 From: Leo Franchi Date: Wed, 25 May 2011 20:01:02 -0400 Subject: [PATCH] Allow users to drop tracks onto New Station, and creates a station seeded with song filters --- src/sourcetree/items/categoryitems.cpp | 39 +++++++++++++++++++++----- 1 file changed, 32 insertions(+), 7 deletions(-) diff --git a/src/sourcetree/items/categoryitems.cpp b/src/sourcetree/items/categoryitems.cpp index 86084434b..0e1c7ec1c 100644 --- a/src/sourcetree/items/categoryitems.cpp +++ b/src/sourcetree/items/categoryitems.cpp @@ -25,6 +25,7 @@ #include "sourcetreeview.h" #include +#include using namespace Tomahawk; @@ -94,17 +95,18 @@ CategoryAddItem::icon() const bool CategoryAddItem::willAcceptDrag( const QMimeData* data ) const { - if( m_categoryType == SourcesModel::PlaylistsCategory && data->hasFormat( "application/tomahawk.query.list" ) ) { + if( ( m_categoryType == SourcesModel::PlaylistsCategory || m_categoryType == SourcesModel::StationsCategory ) && + data->hasFormat( "application/tomahawk.query.list" ) ) { return true; } return false; } bool -CategoryAddItem::dropMimeData( const QMimeData* data, Qt::DropAction action ) +CategoryAddItem::dropMimeData( const QMimeData* data, Qt::DropAction ) { // Create a new playlist seeded with these items - if( m_categoryType == SourcesModel::PlaylistsCategory && data->hasFormat( "application/tomahawk.query.list" ) ) { + if( data->hasFormat( "application/tomahawk.query.list" ) ) { QByteArray itemData = data->data( "application/tomahawk.query.list" ); QDataStream stream( &itemData, QIODevice::ReadOnly ); QList< Tomahawk::query_ptr > queries; @@ -122,11 +124,34 @@ CategoryAddItem::dropMimeData( const QMimeData* data, Qt::DropAction action ) } } - playlist_ptr newpl = Playlist::create( SourceList::instance()->getLocal(), uuid(), "New Playlist", "", SourceList::instance()->getLocal()->friendlyName(), false, queries ); - ViewManager::instance()->show( newpl ); + if( m_categoryType == SourcesModel::PlaylistsCategory ) { + + playlist_ptr newpl = Playlist::create( SourceList::instance()->getLocal(), uuid(), "New Playlist", "", SourceList::instance()->getLocal()->friendlyName(), false, queries ); + ViewManager::instance()->show( newpl ); + + // Give a shot to try to rename it. The playlist has to be created first. ugly. + QTimer::singleShot( 300, APP->mainWindow()->sourceTreeView(), SLOT( renamePlaylist() ) ); + } else if( m_categoryType == SourcesModel::StationsCategory ) { + // seed the playlist with these song filters + dynplaylist_ptr newpl = DynamicPlaylist::create( SourceList::instance()->getLocal(), uuid(), "New Station", "", SourceList::instance()->getLocal()->friendlyName(), OnDemand, false ); + newpl->setMode( OnDemand ); + + // now we want to add each query as a song filter... + QList< dyncontrol_ptr > contrls; + foreach( const Tomahawk::query_ptr& q, queries ) { + dyncontrol_ptr c = newpl->generator()->createControl( "Song" ); + c->setInput( QString( "%1 %2" ).arg( q->track() ).arg( q->artist() ) ); + contrls << c; + } + + newpl->createNewRevision( uuid(), newpl->currentrevision(), newpl->type(), contrls ); + + + ViewManager::instance()->show( newpl ); + // Give a shot to try to rename it. The playlist has to be created first. ugly. + QTimer::singleShot( 300, APP->mainWindow()->sourceTreeView(), SLOT( renamePlaylist() ) ); + } - // Give a shot to try to rename it. The playlist has to be created first. ugly. - QTimer::singleShot( 300, APP->mainWindow()->sourceTreeView(), SLOT( renamePlaylist() ) ); return true; } return false;