summaryrefslogtreecommitdiff
path: root/src/iconmanager.h
diff options
context:
space:
mode:
authorJon Ander Peñalba <jonan88@gmail.com>2010-09-02 18:10:46 +0200
committerJon Ander Peñalba <jonan88@gmail.com>2010-09-03 08:27:20 +0200
commitd0ab264b8aa5f5c7fcb21dd172a1f3f5b777356b (patch)
treef89adefce79c8bf0d5cde2e1bc015a443ccb39fe /src/iconmanager.h
parentThis commit hacks a merge request, to fast fixing a crash calling the bk toolbar (diff)
downloadrekonq-d0ab264b8aa5f5c7fcb21dd172a1f3f5b777356b.tar.xz
Include clean-up in the big src directory
Diffstat (limited to 'src/iconmanager.h')
-rw-r--r--src/iconmanager.h19
1 files changed, 9 insertions, 10 deletions
diff --git a/src/iconmanager.h b/src/iconmanager.h
index 794e61bd..ce6c7d7b 100644
--- a/src/iconmanager.h
+++ b/src/iconmanager.h
@@ -30,29 +30,28 @@
// Rekonq Includes
#include "rekonq_defines.h"
-// KDE Includes
-#include <KUrl>
-#include <KIcon>
-#include <KIO/Job>
-
// Qt Includes
-#include <QWebPage>
+#include <QtCore/QObject>
+
+// Forward Declarations
+class KIcon;
+class QWebPage;
class REKONQ_TESTS_EXPORT IconManager : public QObject
{
Q_OBJECT
-
+
public:
- IconManager(QObject *parent = 0);
+ IconManager(QObject *parent = 0);
virtual ~IconManager();
KIcon iconForUrl(const KUrl &url);
-
+
void provideIcon(QWebPage *page, const KUrl &url, bool notify = true);
void downloadIconFromUrl(const KUrl &url);
-
+
Q_SIGNALS:
void iconChanged();
};