2010-07-25 17:16:03 +00:00
|
|
|
/*
|
2015-06-10 21:27:11 +00:00
|
|
|
* This file Copyright (C) 2012-2015 Mnemosyne LLC
|
2010-07-25 17:16:03 +00:00
|
|
|
*
|
2014-01-21 03:10:30 +00:00
|
|
|
* It may be used under the GNU GPL versions 2 or 3
|
2014-01-19 01:09:44 +00:00
|
|
|
* or any future license endorsed by Mnemosyne LLC.
|
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 <QString>
|
|
|
|
#include <QObject>
|
|
|
|
#include <QPixmap>
|
|
|
|
|
2019-11-12 01:37:05 +00:00
|
|
|
#include <Utils.h> // std::hash<QString>
|
|
|
|
|
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
|
|
|
|
2013-09-14 22:45:04 +00:00
|
|
|
// returns a cached pixmap, or a NULL pixmap if there's no match in the cache
|
2019-11-12 01:37:05 +00:00
|
|
|
QPixmap find(QString const& key);
|
|
|
|
QPixmap find(QUrl const& url) { return find(getKey(url)); }
|
2010-07-30 22:23:47 +00:00
|
|
|
|
2019-11-12 01:37:05 +00:00
|
|
|
// This will emit a signal when (if) the icon becomes ready.
|
|
|
|
// Returns the key.
|
|
|
|
QString add(QUrl const& url);
|
2010-07-25 17:16:03 +00:00
|
|
|
|
2019-11-12 01:37:05 +00:00
|
|
|
static QString getDisplayName(QString const& key);
|
|
|
|
static QString getKey(QUrl const& url);
|
2020-05-27 21:53:12 +00:00
|
|
|
static QString getKey(QString const& display_name);
|
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:
|
2019-11-12 01:37:05 +00:00
|
|
|
void pixmapReady(QString const& key);
|
2010-07-25 17:16:03 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
private:
|
|
|
|
QString getCacheDir();
|
|
|
|
void ensureCacheDirHasBeenScanned();
|
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-05-27 21:53:12 +00:00
|
|
|
QNetworkAccessManager* nam_ = {};
|
|
|
|
std::unordered_map<QString, QPixmap> pixmaps_;
|
2010-07-25 17:16:03 +00:00
|
|
|
};
|