1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94
|
/**
* Copyright (C) 2004 Michael Pyne <mpyne@kde.org>
*
* This program 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 2 of the License, or (at your option) any later
* version.
*
* This program 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
* this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "treeviewitemplaylist.h"
#include <kmessagebox.h>
#include <KLocalizedString>
#include <QStringList>
#include "collectionlist.h"
#include "juktag.h"
#include "playlistitem.h"
#include "playlistsearch.h"
#include "tagtransactionmanager.h"
#include "juk_debug.h"
TreeViewItemPlaylist::TreeViewItemPlaylist(PlaylistCollection *collection,
PlaylistSearch &search,
const QString &name) :
SearchPlaylist(collection, search, name, false)
{
const PlaylistSearch::ComponentList components(search.components());
const PlaylistSearch::Component component = components.first();
m_columnType = static_cast<PlaylistItem::ColumnType>(component.columns().constFirst());
}
void TreeViewItemPlaylist::retag(const QStringList &files, Playlist *)
{
CollectionList *collection = CollectionList::instance();
if(files.isEmpty())
return;
QString changedTag = i18n("artist");
if(m_columnType == PlaylistItem::GenreColumn)
changedTag = i18n("genre");
else if(m_columnType == PlaylistItem::AlbumColumn)
changedTag = i18n("album");
if(KMessageBox::warningContinueCancelList(
this,
i18n("You are about to change the %1 on these files.", changedTag),
files,
i18nc("@title:window", "Change Track Tags"),
KStandardGuiItem::cont(),
KStandardGuiItem::cancel(),
"dragDropRetagWarn"
) == KMessageBox::Cancel)
{
return;
}
for(const auto &file : files) {
CollectionListItem *item = collection->lookup(file);
if(!item)
continue;
Tag *tag = TagTransactionManager::duplicateTag(item->file().tag());
switch(m_columnType) {
case PlaylistItem::ArtistColumn:
tag->setArtist(name());
break;
case PlaylistItem::AlbumColumn:
tag->setAlbum(name());
break;
case PlaylistItem::GenreColumn:
tag->setGenre(name());
break;
default:
qCDebug(JUK_LOG) << "Unhandled column type editing " << file;
}
TagTransactionManager::instance()->changeTagOnItem(item, tag);
}
}
// vim: set et sw=4 tw=0 sta:
|