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
|
|
|
*
|
|
|
|
* $Id$
|
|
|
|
*/
|
|
|
|
|
2015-06-10 21:27:11 +00:00
|
|
|
#ifndef QTR_FAVICON_CACHE_H
|
|
|
|
#define QTR_FAVICON_CACHE_H
|
2010-07-25 17:16:03 +00:00
|
|
|
|
|
|
|
#include <QMap>
|
|
|
|
#include <QString>
|
|
|
|
#include <QObject>
|
|
|
|
#include <QPixmap>
|
|
|
|
|
2015-06-10 21:27:11 +00:00
|
|
|
class QNetworkAccessManager;
|
|
|
|
class QNetworkReply;
|
|
|
|
class QUrl;
|
|
|
|
|
|
|
|
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
|
|
|
|
2013-09-14 22:45:04 +00:00
|
|
|
public:
|
2015-06-12 22:12:12 +00:00
|
|
|
FaviconCache ();
|
|
|
|
virtual ~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
|
|
|
|
QPixmap find (const QUrl& url);
|
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
|
|
|
|
QPixmap findFromHost (const QString& host);
|
2010-07-30 22:23:47 +00:00
|
|
|
|
2013-09-14 22:45:04 +00:00
|
|
|
// this will emit a signal when (if) the icon becomes ready
|
|
|
|
void add (const QUrl& url);
|
2010-07-25 17:16:03 +00:00
|
|
|
|
2015-06-12 22:12:12 +00:00
|
|
|
static QString getHost (const QUrl& url);
|
|
|
|
static QSize getIconSize ();
|
2010-07-25 17:16:03 +00:00
|
|
|
|
2015-06-12 22:12:12 +00:00
|
|
|
signals:
|
2013-09-14 22:45:04 +00:00
|
|
|
void pixmapReady (const QString& host);
|
2010-07-25 17:16:03 +00:00
|
|
|
|
2013-09-14 22:45:04 +00:00
|
|
|
private:
|
|
|
|
QString getCacheDir ();
|
|
|
|
void ensureCacheDirHasBeenScanned ();
|
2010-07-25 17:16:03 +00:00
|
|
|
|
2013-09-14 22:45:04 +00:00
|
|
|
private slots:
|
|
|
|
void onRequestFinished (QNetworkReply * reply);
|
2015-06-12 22:12:12 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
QNetworkAccessManager * myNAM;
|
|
|
|
QMap<QString, QPixmap> myPixmaps;
|
2010-07-25 17:16:03 +00:00
|
|
|
};
|
|
|
|
|
2015-06-10 21:27:11 +00:00
|
|
|
#endif // QTR_FAVICON_CACHE_H
|