strawberry-audio-player-win.../src/core/standarditemiconloader.cpp

110 lines
3.5 KiB
C++
Raw Normal View History

2018-02-27 18:06:05 +01:00
/*
* Strawberry Music Player
* This file was part of Clementine.
* Copyright 2012, David Sansome <me@davidsansome.com>
*
* 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 <http://www.gnu.org/licenses/>.
2018-08-09 18:39:44 +02:00
*
2018-02-27 18:06:05 +01:00
*/
#include "config.h"
#include <QtGlobal>
#include <QObject>
2018-02-27 18:06:05 +01:00
#include <QAbstractItemModel>
2020-02-08 03:40:30 +01:00
#include <QStandardItem>
#include <QMap>
2018-02-27 18:06:05 +01:00
#include <QSet>
#include <QImage>
#include <QPixmap>
#include <QIcon>
2018-02-27 18:06:05 +01:00
#include "covermanager/albumcoverloader.h"
#include "standarditemiconloader.h"
2018-02-27 18:06:05 +01:00
StandardItemIconLoader::StandardItemIconLoader(AlbumCoverLoader *cover_loader, QObject *parent)
2021-07-11 07:40:57 +02:00
: QObject(parent),
cover_loader_(cover_loader),
model_(nullptr) {
2019-03-22 23:23:50 +01:00
2018-02-27 18:06:05 +01:00
cover_options_.desired_height_ = 16;
2021-01-26 16:48:04 +01:00
QObject::connect(cover_loader_, &AlbumCoverLoader::AlbumCoverLoaded, this, &StandardItemIconLoader::AlbumCoverLoaded);
2018-02-27 18:06:05 +01:00
}
void StandardItemIconLoader::SetModel(QAbstractItemModel *model) {
if (model_) {
2021-01-26 16:48:04 +01:00
QObject::disconnect(model_, &QAbstractItemModel::rowsAboutToBeRemoved, this, &StandardItemIconLoader::RowsAboutToBeRemoved);
2018-02-27 18:06:05 +01:00
}
model_ = model;
2021-01-26 16:48:04 +01:00
QObject::connect(model_, &QAbstractItemModel::rowsAboutToBeRemoved, this, &StandardItemIconLoader::RowsAboutToBeRemoved);
QObject::connect(model_, &QAbstractItemModel::modelAboutToBeReset, this, &StandardItemIconLoader::ModelReset);
2018-02-27 18:06:05 +01:00
}
void StandardItemIconLoader::LoadIcon(const QUrl &art_automatic, const QUrl &art_manual, QStandardItem *for_item) {
2018-02-27 18:06:05 +01:00
const quint64 id = cover_loader_->LoadImageAsync(cover_options_, art_automatic, art_manual);
pending_covers_[id] = for_item;
}
void StandardItemIconLoader::LoadIcon(const Song &song, QStandardItem *for_item) {
2018-02-27 18:06:05 +01:00
const quint64 id = cover_loader_->LoadImageAsync(cover_options_, song);
pending_covers_[id] = for_item;
}
void StandardItemIconLoader::RowsAboutToBeRemoved(const QModelIndex &parent, int begin, int end) {
2018-02-27 18:06:05 +01:00
2021-08-23 21:21:08 +02:00
for (QMap<quint64, QStandardItem*>::iterator it = pending_covers_.begin(); it != pending_covers_.end();) {
2018-02-27 18:06:05 +01:00
const QStandardItem *item = it.value();
const QStandardItem *item_parent = item->parent();
if (item_parent && item_parent->index() == parent && item->index().row() >= begin && item->index().row() <= end) {
cover_loader_->CancelTask(it.key());
2021-06-20 19:04:08 +02:00
it = pending_covers_.erase(it); // clazy:exclude=strict-iterators
2018-02-27 18:06:05 +01:00
}
else {
2021-07-11 09:49:38 +02:00
++it;
2018-02-27 18:06:05 +01:00
}
}
}
void StandardItemIconLoader::ModelReset() {
#if (QT_VERSION >= QT_VERSION_CHECK(5, 14, 0))
2019-12-30 02:28:54 +01:00
cover_loader_->CancelTasks(QSet<quint64>(pending_covers_.keyBegin(), pending_covers_.keyEnd()));
#else
2018-02-27 18:06:05 +01:00
cover_loader_->CancelTasks(QSet<quint64>::fromList(pending_covers_.keys()));
#endif
2018-02-27 18:06:05 +01:00
pending_covers_.clear();
}
2021-06-20 19:04:08 +02:00
void StandardItemIconLoader::AlbumCoverLoaded(const quint64 id, const AlbumCoverLoaderResult &result) {
2019-09-15 20:27:32 +02:00
2018-02-27 18:06:05 +01:00
QStandardItem *item = pending_covers_.take(id);
if (!item) return;
if (result.success && !result.image_scaled.isNull() && result.type != AlbumCoverLoaderResult::Type_ManuallyUnset) {
item->setIcon(QIcon(QPixmap::fromImage(result.image_scaled)));
2018-02-27 18:06:05 +01:00
}
}