2010-05-10 23:50:31 +02:00
|
|
|
/* This file is part of Clementine.
|
2010-11-20 14:27:10 +01:00
|
|
|
Copyright 2010, David Sansome <me@davidsansome.com>
|
2010-05-10 23:50:31 +02:00
|
|
|
|
|
|
|
Clementine 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.
|
|
|
|
|
|
|
|
Clementine 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 Clementine. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2010-12-20 16:46:38 +01:00
|
|
|
#include "albumcovermanager.h"
|
|
|
|
#include "albumcoversearcher.h"
|
2010-05-10 23:50:31 +02:00
|
|
|
#include "edittagdialog.h"
|
|
|
|
#include "ui_edittagdialog.h"
|
2010-12-20 16:46:38 +01:00
|
|
|
#include "core/albumcoverfetcher.h"
|
2010-12-20 15:12:40 +01:00
|
|
|
#include "core/albumcoverloader.h"
|
|
|
|
#include "core/utilities.h"
|
2010-05-10 23:50:31 +02:00
|
|
|
#include "library/library.h"
|
2010-12-20 16:46:38 +01:00
|
|
|
#include "library/librarybackend.h"
|
2010-05-10 23:50:31 +02:00
|
|
|
#include "playlist/playlistdelegates.h"
|
|
|
|
|
2010-12-20 15:12:40 +01:00
|
|
|
#include <QDateTime>
|
2010-12-20 16:46:38 +01:00
|
|
|
#include <QFileDialog>
|
2010-12-20 15:12:40 +01:00
|
|
|
#include <QLabel>
|
2010-12-20 16:46:38 +01:00
|
|
|
#include <QMenu>
|
2010-05-10 23:50:31 +02:00
|
|
|
#include <QtDebug>
|
|
|
|
|
2010-12-20 00:40:36 +01:00
|
|
|
const char* EditTagDialog::kHintText = QT_TR_NOOP("(different across multiple songs)");
|
2010-05-10 23:50:31 +02:00
|
|
|
|
|
|
|
EditTagDialog::EditTagDialog(QWidget* parent)
|
|
|
|
: QDialog(parent),
|
2010-12-20 00:40:36 +01:00
|
|
|
ui_(new Ui_EditTagDialog),
|
2010-12-20 16:46:38 +01:00
|
|
|
backend_(NULL),
|
|
|
|
ignore_edits_(false),
|
|
|
|
cover_searcher_(new AlbumCoverSearcher(QIcon(":/nocover.png"), this)),
|
|
|
|
cover_fetcher_(new AlbumCoverFetcher(this)),
|
2010-12-20 15:12:40 +01:00
|
|
|
cover_loader_(new BackgroundThreadImplementation<AlbumCoverLoader, AlbumCoverLoader>(this)),
|
|
|
|
cover_art_id_(0),
|
2010-12-20 16:46:38 +01:00
|
|
|
cover_art_is_set_(false)
|
2010-05-10 23:50:31 +02:00
|
|
|
{
|
2010-12-20 15:12:40 +01:00
|
|
|
cover_loader_->Start(true);
|
|
|
|
cover_loader_->Worker()->SetDefaultOutputImage(QImage(":nocover.png"));
|
|
|
|
connect(cover_loader_->Worker().get(), SIGNAL(ImageLoaded(quint64,QImage)),
|
|
|
|
SLOT(ArtLoaded(quint64,QImage)));
|
2010-12-20 16:46:38 +01:00
|
|
|
cover_searcher_->Init(cover_loader_->Worker(), cover_fetcher_);
|
2010-12-20 15:12:40 +01:00
|
|
|
|
2010-05-10 23:50:31 +02:00
|
|
|
ui_->setupUi(this);
|
2010-12-20 00:40:36 +01:00
|
|
|
ui_->splitter->setSizes(QList<int>() << 200 << width() - 200);
|
|
|
|
|
|
|
|
// An editable field is one that has a label as a buddy. The label is
|
|
|
|
// important because it gets turned bold when the field is changed.
|
|
|
|
foreach (QLabel* label, findChildren<QLabel*>()) {
|
|
|
|
QWidget* widget = label->buddy();
|
|
|
|
if (widget) {
|
|
|
|
// Store information about the field
|
|
|
|
fields_ << FieldData(label, widget, widget->objectName());
|
|
|
|
|
|
|
|
// Connect the Reset signal
|
|
|
|
if (dynamic_cast<ExtendedEditor*>(widget)) {
|
|
|
|
connect(widget, SIGNAL(Reset()), SLOT(ResetField()));
|
|
|
|
}
|
|
|
|
|
|
|
|
// Connect the edited signal
|
|
|
|
if (qobject_cast<QLineEdit*>(widget)) {
|
|
|
|
connect(widget, SIGNAL(textChanged(QString)), SLOT(FieldValueEdited()));
|
|
|
|
} else if (qobject_cast<QPlainTextEdit*>(widget)) {
|
|
|
|
connect(widget, SIGNAL(textChanged()), SLOT(FieldValueEdited()));
|
|
|
|
} else if (qobject_cast<QSpinBox*>(widget)) {
|
|
|
|
connect(widget, SIGNAL(valueChanged(int)), SLOT(FieldValueEdited()));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
connect(ui_->song_list->selectionModel(),
|
|
|
|
SIGNAL(selectionChanged(QItemSelection,QItemSelection)),
|
|
|
|
SLOT(SelectionChanged()));
|
2010-12-20 16:46:38 +01:00
|
|
|
|
|
|
|
// Set up the album cover menu
|
|
|
|
cover_menu_ = new QMenu(this);
|
|
|
|
choose_cover_ = cover_menu_->addAction(
|
|
|
|
IconLoader::Load("document-open"), tr("Load cover from disk..."),
|
|
|
|
this, SLOT(LoadCoverFromFile()));
|
|
|
|
download_cover_ = cover_menu_->addAction(
|
|
|
|
IconLoader::Load("download"), tr("Search for album covers..."),
|
|
|
|
this, SLOT(SearchCover()));
|
|
|
|
unset_cover_ = cover_menu_->addAction(
|
|
|
|
IconLoader::Load("list-remove"), tr("Unset cover"),
|
|
|
|
this, SLOT(UnsetCover()));
|
|
|
|
show_cover_ = cover_menu_->addAction(
|
|
|
|
IconLoader::Load("zoom-in"), tr("Show fullsize..."),
|
|
|
|
this, SLOT(ZoomCover()));
|
|
|
|
ui_->summary_art_button->setMenu(cover_menu_);
|
2010-05-10 23:50:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
EditTagDialog::~EditTagDialog() {
|
|
|
|
delete ui_;
|
|
|
|
}
|
|
|
|
|
2010-12-20 00:40:36 +01:00
|
|
|
bool EditTagDialog::SetSongs(const SongList& s) {
|
|
|
|
data_.clear();
|
2010-05-10 23:50:31 +02:00
|
|
|
|
|
|
|
foreach (const Song& song, s) {
|
2010-09-02 21:12:09 +02:00
|
|
|
if (song.IsEditable()) {
|
|
|
|
// Try reloading the tags from file
|
|
|
|
Song copy(song);
|
|
|
|
copy.InitFromFile(copy.filename(), copy.directory_id());
|
|
|
|
|
|
|
|
if (copy.is_valid())
|
2010-12-20 00:40:36 +01:00
|
|
|
data_ << Data(copy);
|
2010-09-02 21:12:09 +02:00
|
|
|
}
|
2010-05-10 23:50:31 +02:00
|
|
|
}
|
|
|
|
|
2010-12-20 00:40:36 +01:00
|
|
|
if (data_.count() == 0)
|
2010-05-10 23:50:31 +02:00
|
|
|
return false;
|
|
|
|
|
2010-12-20 00:40:36 +01:00
|
|
|
// Add the filenames to the list
|
|
|
|
ui_->song_list->clear();
|
|
|
|
foreach (const Data& data, data_) {
|
|
|
|
ui_->song_list->addItem(data.current_.basefilename());
|
|
|
|
}
|
2010-05-10 23:50:31 +02:00
|
|
|
|
2010-12-20 00:40:36 +01:00
|
|
|
// Select all
|
|
|
|
ui_->song_list->selectAll();
|
2010-05-10 23:50:31 +02:00
|
|
|
|
2010-12-20 00:40:36 +01:00
|
|
|
// Hide the list if there's only one song in it
|
|
|
|
ui_->song_list->setVisible(data_.count() != 1);
|
2010-05-10 23:50:31 +02:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void EditTagDialog::SetTagCompleter(LibraryBackend* backend) {
|
2010-12-20 16:46:38 +01:00
|
|
|
backend_ = backend;
|
2010-05-10 23:50:31 +02:00
|
|
|
new TagCompleter(backend, Playlist::Column_Artist, ui_->artist);
|
|
|
|
new TagCompleter(backend, Playlist::Column_Album, ui_->album);
|
|
|
|
}
|
|
|
|
|
2010-12-20 00:40:36 +01:00
|
|
|
QVariant EditTagDialog::Data::value(const Song& song, const QString& id) {
|
|
|
|
if (id == "title") return song.title();
|
|
|
|
if (id == "artist") return song.artist();
|
|
|
|
if (id == "album") return song.album();
|
|
|
|
if (id == "albumartist") return song.albumartist();
|
|
|
|
if (id == "composer") return song.composer();
|
|
|
|
if (id == "genre") return song.genre();
|
|
|
|
if (id == "comment") return song.comment();
|
|
|
|
if (id == "track") return song.track();
|
|
|
|
if (id == "disc") return song.disc();
|
|
|
|
if (id == "year") return song.year();
|
|
|
|
qDebug() << "Unknown ID" << id;
|
|
|
|
return QVariant();
|
|
|
|
}
|
2010-05-10 23:50:31 +02:00
|
|
|
|
2010-12-20 00:40:36 +01:00
|
|
|
void EditTagDialog::Data::set_value(const QString& id, const QVariant& value) {
|
|
|
|
if (id == "title") current_.set_title(value.toString());
|
|
|
|
if (id == "artist") current_.set_artist(value.toString());
|
|
|
|
if (id == "album") current_.set_album(value.toString());
|
|
|
|
if (id == "albumartist") current_.set_albumartist(value.toString());
|
|
|
|
if (id == "composer") current_.set_composer(value.toString());
|
|
|
|
if (id == "genre") current_.set_genre(value.toString());
|
|
|
|
if (id == "comment") current_.set_comment(value.toString());
|
|
|
|
if (id == "track") current_.set_track(value.toInt());
|
|
|
|
if (id == "disc") current_.set_disc(value.toInt());
|
|
|
|
if (id == "year") current_.set_year(value.toInt());
|
|
|
|
}
|
2010-05-10 23:50:31 +02:00
|
|
|
|
2010-12-20 00:40:36 +01:00
|
|
|
bool EditTagDialog::DoesValueVary(const QModelIndexList& sel, const QString& id) const {
|
|
|
|
QVariant value = data_[sel.first().row()].current_value(id);
|
|
|
|
for (int i=1 ; i<sel.count() ; ++i) {
|
|
|
|
if (value != data_[sel[i].row()].current_value(id))
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
2010-05-10 23:50:31 +02:00
|
|
|
|
2010-12-20 00:40:36 +01:00
|
|
|
bool EditTagDialog::IsValueModified(const QModelIndexList& sel, const QString& id) const {
|
|
|
|
foreach (const QModelIndex& i, sel) {
|
|
|
|
if (data_[i.row()].original_value(id) != data_[i.row()].current_value(id))
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
2010-05-10 23:50:31 +02:00
|
|
|
|
2010-12-20 00:40:36 +01:00
|
|
|
void EditTagDialog::InitFieldValue(const FieldData& field, const QModelIndexList& sel) {
|
|
|
|
const bool varies = DoesValueVary(sel, field.id_);
|
|
|
|
const bool modified = IsValueModified(sel, field.id_);
|
|
|
|
|
|
|
|
if (ExtendedEditor* editor = dynamic_cast<ExtendedEditor*>(field.editor_)) {
|
|
|
|
editor->clear();
|
|
|
|
editor->clear_hint();
|
|
|
|
if (varies) {
|
|
|
|
editor->set_hint(EditTagDialog::kHintText);
|
|
|
|
} else {
|
|
|
|
editor->set_text(data_[sel[0].row()].current_value(field.id_).toString());
|
|
|
|
}
|
|
|
|
}
|
2010-05-10 23:50:31 +02:00
|
|
|
|
2010-12-20 00:40:36 +01:00
|
|
|
QFont new_font(font());
|
|
|
|
new_font.setBold(modified);
|
|
|
|
field.label_->setFont(new_font);
|
|
|
|
field.editor_->setFont(new_font);
|
|
|
|
}
|
|
|
|
|
|
|
|
void EditTagDialog::UpdateFieldValue(const FieldData& field, const QModelIndexList& sel) {
|
|
|
|
// Get the value from the field
|
|
|
|
QVariant value;
|
|
|
|
if (ExtendedEditor* editor = dynamic_cast<ExtendedEditor*>(field.editor_)) {
|
|
|
|
value = editor->text();
|
|
|
|
}
|
2010-05-10 23:50:31 +02:00
|
|
|
|
2010-12-20 00:40:36 +01:00
|
|
|
// Did we get it?
|
|
|
|
if (!value.isValid()) {
|
|
|
|
return;
|
2010-05-10 23:50:31 +02:00
|
|
|
}
|
2010-12-20 00:40:36 +01:00
|
|
|
|
|
|
|
// Set it in each selected song
|
|
|
|
foreach (const QModelIndex& i, sel) {
|
|
|
|
data_[i.row()].set_value(field.id_, value);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Update the boldness
|
|
|
|
const bool modified = IsValueModified(sel, field.id_);
|
|
|
|
|
|
|
|
QFont new_font(font());
|
|
|
|
new_font.setBold(modified);
|
|
|
|
field.label_->setFont(new_font);
|
|
|
|
field.editor_->setFont(new_font);
|
2010-08-02 17:07:26 +02:00
|
|
|
}
|
|
|
|
|
2010-12-20 00:40:36 +01:00
|
|
|
void EditTagDialog::ResetFieldValue(const FieldData& field, const QModelIndexList& sel) {
|
|
|
|
// Reset each selected song
|
|
|
|
foreach (const QModelIndex& i, sel) {
|
|
|
|
Data& data = data_[i.row()];
|
|
|
|
data.set_value(field.id_, data.original_value(field.id_));
|
|
|
|
}
|
|
|
|
|
|
|
|
// Reset the field
|
|
|
|
InitFieldValue(field, sel);
|
2010-08-02 17:07:26 +02:00
|
|
|
}
|
|
|
|
|
2010-12-20 00:40:36 +01:00
|
|
|
void EditTagDialog::SelectionChanged() {
|
|
|
|
const QModelIndexList sel = ui_->song_list->selectionModel()->selectedIndexes();
|
|
|
|
if (sel.isEmpty())
|
|
|
|
return;
|
|
|
|
|
2010-12-20 15:12:40 +01:00
|
|
|
// Set the editable fields
|
2010-12-20 00:40:36 +01:00
|
|
|
ignore_edits_ = true;
|
|
|
|
foreach (const FieldData& field, fields_) {
|
|
|
|
InitFieldValue(field, sel);
|
|
|
|
}
|
|
|
|
ignore_edits_ = false;
|
2010-12-20 15:12:40 +01:00
|
|
|
|
|
|
|
// If we're editing multiple songs then we have to disable certain tabs
|
|
|
|
const bool multiple = sel.count() > 1;
|
|
|
|
ui_->tab_widget->setTabEnabled(ui_->tab_widget->indexOf(ui_->summary_tab), !multiple);
|
|
|
|
ui_->tab_widget->setTabEnabled(ui_->tab_widget->indexOf(ui_->statistics_tab), !multiple);
|
|
|
|
|
|
|
|
if (!multiple) {
|
|
|
|
const Song& song = data_[sel.first().row()].original_;
|
|
|
|
UpdateSummaryTab(song);
|
|
|
|
UpdateStatisticsTab(song);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void SetText(QLabel* label, int value, const QString& suffix, const QString& def = QString()) {
|
|
|
|
label->setText(value <= 0 ? def : (QString::number(value) + " " + suffix));
|
|
|
|
}
|
|
|
|
|
|
|
|
void EditTagDialog::UpdateSummaryTab(const Song& song) {
|
|
|
|
cover_art_id_ = cover_loader_->Worker()->LoadImageAsync(song);
|
|
|
|
|
|
|
|
QString summary = "<b>" + Qt::escape(song.PrettyTitleWithArtist()) + "</b><br/>";
|
|
|
|
|
2010-12-20 16:46:38 +01:00
|
|
|
bool art_is_set = true;
|
2010-12-20 15:12:40 +01:00
|
|
|
if (song.art_manual() == AlbumCoverLoader::kManuallyUnsetCover) {
|
|
|
|
summary += Qt::escape(tr("Cover art manually unset"));
|
2010-12-20 16:46:38 +01:00
|
|
|
art_is_set = false;
|
2010-12-20 15:12:40 +01:00
|
|
|
} else if (!song.art_manual().isEmpty()) {
|
|
|
|
summary += Qt::escape(tr("Cover art set from %1").arg(song.art_manual()));
|
|
|
|
} else if (song.art_automatic() == AlbumCoverLoader::kEmbeddedCover) {
|
|
|
|
summary += Qt::escape(tr("Cover art from embedded image"));
|
|
|
|
} else if (!song.art_automatic().isEmpty()) {
|
|
|
|
summary += Qt::escape(tr("Cover art loaded automatically from %1").arg(song.art_manual()));
|
|
|
|
} else {
|
|
|
|
summary += Qt::escape(tr("Cover art not set"));
|
2010-12-20 16:46:38 +01:00
|
|
|
art_is_set = false;
|
2010-12-20 15:12:40 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
ui_->summary->setText(summary);
|
|
|
|
|
2010-12-20 16:46:38 +01:00
|
|
|
unset_cover_->setEnabled(art_is_set);
|
|
|
|
show_cover_->setEnabled(art_is_set);
|
|
|
|
ui_->summary_art_button->setEnabled(song.id() != -1);
|
|
|
|
|
2010-12-20 15:12:40 +01:00
|
|
|
ui_->length->setText(Utilities::PrettyTime(song.length()));
|
|
|
|
SetText(ui_->bpm, song.bpm(), tr("bpm"));
|
|
|
|
SetText(ui_->samplerate, song.samplerate(), "Hz");
|
|
|
|
SetText(ui_->bitrate, song.bitrate(), tr("kbps"));
|
|
|
|
ui_->mtime->setText(QDateTime::fromTime_t(song.mtime()).toString(
|
|
|
|
QLocale::system().dateTimeFormat(QLocale::LongFormat)));
|
|
|
|
ui_->ctime->setText(QDateTime::fromTime_t(song.ctime()).toString(
|
|
|
|
QLocale::system().dateTimeFormat(QLocale::LongFormat)));
|
|
|
|
ui_->filesize->setText(Utilities::PrettySize(song.filesize()));
|
|
|
|
}
|
|
|
|
|
|
|
|
void EditTagDialog::UpdateStatisticsTab(const Song& song) {
|
|
|
|
ui_->playcount->setText(QString::number(qMax(0, song.playcount())));
|
|
|
|
ui_->skipcount->setText(QString::number(qMax(0, song.skipcount())));
|
|
|
|
ui_->score->setText(QString::number(qMax(0, song.score())));
|
|
|
|
ui_->rating->set_rating(song.rating());
|
|
|
|
|
|
|
|
ui_->lastplayed->setText(song.lastplayed() <= 0 ? tr("Never") :
|
|
|
|
QDateTime::fromTime_t(song.lastplayed()).toString(
|
|
|
|
QLocale::system().dateTimeFormat(QLocale::LongFormat)));
|
|
|
|
}
|
|
|
|
|
|
|
|
void EditTagDialog::ArtLoaded(quint64 id, const QImage& image) {
|
|
|
|
if (id == cover_art_id_) {
|
|
|
|
ui_->art->setPixmap(QPixmap::fromImage(image));
|
|
|
|
}
|
2010-12-20 00:40:36 +01:00
|
|
|
}
|
2010-08-02 17:07:26 +02:00
|
|
|
|
2010-12-20 00:40:36 +01:00
|
|
|
void EditTagDialog::FieldValueEdited() {
|
|
|
|
if (ignore_edits_)
|
|
|
|
return;
|
|
|
|
|
|
|
|
const QModelIndexList sel = ui_->song_list->selectionModel()->selectedIndexes();
|
|
|
|
if (sel.isEmpty())
|
|
|
|
return;
|
|
|
|
|
|
|
|
QWidget* w = qobject_cast<QWidget*>(sender());
|
|
|
|
|
|
|
|
// Find the field
|
|
|
|
foreach (const FieldData& field, fields_) {
|
|
|
|
if (field.editor_ == w) {
|
|
|
|
UpdateFieldValue(field, sel);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void EditTagDialog::ResetField() {
|
|
|
|
const QModelIndexList sel = ui_->song_list->selectionModel()->selectedIndexes();
|
|
|
|
if (sel.isEmpty())
|
|
|
|
return;
|
|
|
|
|
|
|
|
QWidget* w = qobject_cast<QWidget*>(sender());
|
|
|
|
|
|
|
|
// Find the field
|
|
|
|
foreach (const FieldData& field, fields_) {
|
|
|
|
if (field.editor_ == w) {
|
|
|
|
ignore_edits_ = true;
|
|
|
|
ResetFieldValue(field, sel);
|
|
|
|
ignore_edits_ = false;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2010-05-10 23:50:31 +02:00
|
|
|
}
|
2010-12-20 16:46:38 +01:00
|
|
|
|
|
|
|
void EditTagDialog::LoadCoverFromFile() {
|
|
|
|
const QModelIndexList sel = ui_->song_list->selectionModel()->selectedIndexes();
|
|
|
|
if (sel.isEmpty())
|
|
|
|
return;
|
|
|
|
const Song& song = data_[sel.first().row()].original_;
|
|
|
|
|
|
|
|
// Figure out the initial path. Logic copied from
|
|
|
|
// AlbumCoverManager::InitialPathForOpenCoverDialog
|
|
|
|
QString dir;
|
|
|
|
if (!song.art_automatic().isEmpty() && song.art_automatic() != AlbumCoverLoader::kEmbeddedCover) {
|
|
|
|
dir = song.art_automatic();
|
|
|
|
} else {
|
|
|
|
dir = song.filename().section('/', 0, -1);
|
|
|
|
}
|
|
|
|
|
|
|
|
QString cover = QFileDialog::getOpenFileName(
|
|
|
|
this, tr("Choose manual cover"), dir,
|
|
|
|
tr(AlbumCoverManager::kImageFileFilter) + ";;" + tr(AlbumCoverManager::kAllFilesFilter));
|
|
|
|
if (cover.isNull())
|
|
|
|
return;
|
|
|
|
|
|
|
|
// Can we load the image?
|
|
|
|
QImage image(cover);
|
|
|
|
if (image.isNull())
|
|
|
|
return;
|
|
|
|
|
|
|
|
// Update database
|
|
|
|
SetAlbumArt(cover);
|
|
|
|
}
|
|
|
|
|
|
|
|
void EditTagDialog::SearchCover() {
|
|
|
|
const QModelIndexList sel = ui_->song_list->selectionModel()->selectedIndexes();
|
|
|
|
if (sel.isEmpty())
|
|
|
|
return;
|
|
|
|
const Song& song = data_[sel.first().row()].original_;
|
|
|
|
|
|
|
|
// Get something sensible to stick in the search box
|
|
|
|
QString query = song.artist();
|
|
|
|
if (!query.isEmpty())
|
|
|
|
query += " ";
|
|
|
|
query += song.album();
|
|
|
|
|
|
|
|
QImage image = cover_searcher_->Exec(query);
|
|
|
|
if (image.isNull())
|
|
|
|
return;
|
|
|
|
|
|
|
|
SetAlbumArt(AlbumCoverManager::SaveCoverInCache(song.artist(), song.album(), image));
|
|
|
|
}
|
|
|
|
|
|
|
|
void EditTagDialog::UnsetCover() {
|
|
|
|
SetAlbumArt(AlbumCoverLoader::kManuallyUnsetCover);
|
|
|
|
}
|
|
|
|
|
|
|
|
void EditTagDialog::ZoomCover() {
|
|
|
|
const QModelIndexList sel = ui_->song_list->selectionModel()->selectedIndexes();
|
|
|
|
if (sel.isEmpty())
|
|
|
|
return;
|
|
|
|
const Song& song = data_[sel.first().row()].original_;
|
|
|
|
|
|
|
|
QDialog* dialog = new QDialog(this);
|
|
|
|
dialog->setAttribute(Qt::WA_DeleteOnClose, true);
|
|
|
|
dialog->setWindowTitle(song.title());
|
|
|
|
|
|
|
|
QLabel* label = new QLabel(dialog);
|
|
|
|
label->setPixmap(AlbumCoverLoader::TryLoadPixmap(
|
|
|
|
song.art_automatic(), song.art_manual()));
|
|
|
|
|
|
|
|
dialog->resize(label->pixmap()->size());
|
|
|
|
dialog->show();
|
|
|
|
}
|
|
|
|
|
|
|
|
void EditTagDialog::SetAlbumArt(const QString& path) {
|
|
|
|
const QModelIndexList sel = ui_->song_list->selectionModel()->selectedIndexes();
|
|
|
|
if (sel.isEmpty())
|
|
|
|
return;
|
|
|
|
Song& song = data_[sel.first().row()].original_;
|
|
|
|
if (!song.is_valid() || song.id() == -1)
|
|
|
|
return;
|
|
|
|
|
|
|
|
song.set_art_manual(path);
|
|
|
|
backend_->UpdateManualAlbumArtAsync(song.artist(), song.album(), path);
|
|
|
|
UpdateSummaryTab(song);
|
|
|
|
}
|