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
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef STANDARDITEMICONLOADER_H
|
|
|
|
#define STANDARDITEMICONLOADER_H
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
2018-05-01 00:41:33 +02:00
|
|
|
#include <QtGlobal>
|
2018-02-27 18:06:05 +01:00
|
|
|
#include <QObject>
|
2018-05-01 00:41:33 +02:00
|
|
|
#include <QMap>
|
2020-04-20 18:03:18 +02:00
|
|
|
#include <QUrl>
|
2018-05-01 00:41:33 +02:00
|
|
|
#include <QImage>
|
2018-02-27 18:06:05 +01:00
|
|
|
|
|
|
|
#include "covermanager/albumcoverloaderoptions.h"
|
2020-04-20 18:03:18 +02:00
|
|
|
#include "covermanager/albumcoverloaderresult.h"
|
2018-02-27 18:06:05 +01:00
|
|
|
|
2020-02-08 03:40:30 +01:00
|
|
|
class QAbstractItemModel;
|
|
|
|
class QStandardItem;
|
|
|
|
|
2018-02-27 18:06:05 +01:00
|
|
|
class Song;
|
2018-05-01 00:41:33 +02:00
|
|
|
class AlbumCoverLoader;
|
2018-02-27 18:06:05 +01:00
|
|
|
|
|
|
|
class QModelIndex;
|
|
|
|
|
|
|
|
// Uses an AlbumCoverLoader to asynchronously load and set an icon on a QStandardItem.
|
|
|
|
class StandardItemIconLoader : public QObject {
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2020-04-07 16:49:15 +02:00
|
|
|
explicit StandardItemIconLoader(AlbumCoverLoader *cover_loader, QObject *parent = nullptr);
|
2018-02-27 18:06:05 +01:00
|
|
|
|
|
|
|
AlbumCoverLoaderOptions *options() { return &cover_options_; }
|
|
|
|
|
|
|
|
void SetModel(QAbstractItemModel *model);
|
|
|
|
|
2019-07-07 21:14:24 +02:00
|
|
|
void LoadIcon(const QUrl &art_automatic, const QUrl &art_manual, QStandardItem *for_item);
|
2018-02-27 18:06:05 +01:00
|
|
|
void LoadIcon(const Song &song, QStandardItem *for_item);
|
|
|
|
|
2020-04-20 18:03:18 +02:00
|
|
|
private slots:
|
|
|
|
void AlbumCoverLoaded(const quint64 id, const AlbumCoverLoaderResult result);
|
2018-02-27 18:06:05 +01:00
|
|
|
void RowsAboutToBeRemoved(const QModelIndex &parent, int begin, int end);
|
|
|
|
void ModelReset();
|
|
|
|
|
2020-04-20 18:03:18 +02:00
|
|
|
private:
|
2018-02-27 18:06:05 +01:00
|
|
|
AlbumCoverLoader *cover_loader_;
|
|
|
|
AlbumCoverLoaderOptions cover_options_;
|
|
|
|
|
|
|
|
QAbstractItemModel *model_;
|
|
|
|
|
|
|
|
QMap<quint64, QStandardItem*> pending_covers_;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // STANDARDITEMICONLOADER_H
|