2022-01-20 18:27:56 +00:00
|
|
|
// This file Copyright © 2012-2022 Mnemosyne LLC.
|
2022-08-08 18:05:39 +00:00
|
|
|
// It may be used under GPLv2 (SPDX: GPL-2.0-only), GPLv3 (SPDX: GPL-3.0-only),
|
2022-01-20 18:27:56 +00:00
|
|
|
// or any future license endorsed by Mnemosyne LLC.
|
|
|
|
// License text can be found in the licenses/ folder.
|
2010-07-25 17:16:03 +00:00
|
|
|
|
2016-03-29 16:37:21 +00:00
|
|
|
#pragma once
|
2010-07-25 17:16:03 +00:00
|
|
|
|
2019-11-12 01:37:05 +00:00
|
|
|
#include <unordered_map>
|
|
|
|
|
2010-07-25 17:16:03 +00:00
|
|
|
#include <QObject>
|
|
|
|
#include <QPixmap>
|
2020-09-08 13:58:14 +00:00
|
|
|
#include <QString>
|
2010-07-25 17:16:03 +00:00
|
|
|
|
2020-08-11 18:11:55 +00:00
|
|
|
#include "Utils.h" // std::hash<QString>
|
2019-11-12 01:37:05 +00:00
|
|
|
|
2015-06-10 21:27:11 +00:00
|
|
|
class QNetworkAccessManager;
|
|
|
|
class QNetworkReply;
|
|
|
|
class QUrl;
|
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
class FaviconCache : public QObject
|
2010-07-25 17:16:03 +00:00
|
|
|
{
|
2014-12-11 05:11:02 +00:00
|
|
|
Q_OBJECT
|
2010-07-25 17:16:03 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
public:
|
|
|
|
FaviconCache();
|
2010-07-25 17:16:03 +00:00
|
|
|
|
2022-02-12 17:30:27 +00:00
|
|
|
// This will emit a signal when (if) the icon becomes ready.
|
|
|
|
void add(QString const& sitename, QString const& url);
|
2020-06-24 18:28:54 +00:00
|
|
|
|
2021-10-06 16:32:17 +00:00
|
|
|
// returns a cached pixmap, or a nullptr pixmap if there's no match in the cache
|
2022-02-12 17:30:27 +00:00
|
|
|
QPixmap find(QString const& sitename);
|
2010-07-25 17:16:03 +00:00
|
|
|
|
2022-02-12 17:30:27 +00:00
|
|
|
static QString getDisplayName(QString const& sitename);
|
2017-04-19 12:04:45 +00:00
|
|
|
static QSize getIconSize();
|
2010-07-25 17:16:03 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
signals:
|
2022-02-12 17:30:27 +00:00
|
|
|
void pixmapReady(QString const& sitename);
|
2010-07-25 17:16:03 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
private slots:
|
|
|
|
void onRequestFinished(QNetworkReply* reply);
|
2015-06-12 22:12:12 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
private:
|
2020-06-24 18:28:54 +00:00
|
|
|
void ensureCacheDirHasBeenScanned();
|
|
|
|
|
2020-05-27 21:53:12 +00:00
|
|
|
QNetworkAccessManager* nam_ = {};
|
2022-02-12 17:30:27 +00:00
|
|
|
std::unordered_map<QString /*sitename*/, QPixmap> pixmaps_;
|
2010-07-25 17:16:03 +00:00
|
|
|
};
|