/* * Strawberry Music Player * This file was part of Clementine. * Copyright 2010, David Sansome * Copyright 2018-2021, Jonas Kvinge * * Strawberry is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Strawberry is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with Strawberry. If not, see . * */ #include "config.h" #include #include #include #include #include #include #include #include #include #include "core/scoped_ptr.h" #include "core/song.h" #include "collection/collectionbackend.h" #include "playlist/songmimedata.h" #include "albumcovermanager.h" #include "albumcovermanagerlist.h" AlbumCoverManagerList::AlbumCoverManagerList(QWidget *parent) : QListWidget(parent), manager_(nullptr) {} #if QT_VERSION >= QT_VERSION_CHECK(6, 0, 0) QMimeData *AlbumCoverManagerList::mimeData(const QList &items) const { #else QMimeData *AlbumCoverManagerList::mimeData(const QList items) const { #endif // Get songs SongList songs; for (QListWidgetItem *item : items) { songs << manager_->GetSongsInAlbum(indexFromItem(item)); } if (songs.isEmpty()) return nullptr; // Get URLs from the songs QList urls; urls.reserve(songs.count()); for (const Song &song : songs) { urls << song.url(); } // Get the QAbstractItemModel data so the picture works ScopedPtr orig_data(QListWidget::mimeData(items)); SongMimeData *mime_data = new SongMimeData; mime_data->backend = manager_->collection_backend(); mime_data->songs = songs; mime_data->setUrls(urls); mime_data->setData(orig_data->formats()[0], orig_data->data(orig_data->formats()[0])); return mime_data; }