summaryrefslogtreecommitdiff
path: root/src/webpage.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/webpage.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/webpage.h')
-rw-r--r--src/webpage.h18
1 files changed, 5 insertions, 13 deletions
diff --git a/src/webpage.h b/src/webpage.h
index f9f4d9bf..ed5e2dde 100644
--- a/src/webpage.h
+++ b/src/webpage.h
@@ -38,19 +38,11 @@
// Local Includes
#include "protocolhandler.h"
-#include "newtabpage.h"
#include "websslinfo.h"
// KDE Includes
#include <KWebPage>
-// Qt Includes
-#include <QUrl>
-
-// Forward Declarations
-class QWebFrame;
-class QNetworkReply;
-
class REKONQ_TESTS_EXPORT WebPage : public KWebPage
{
@@ -68,10 +60,10 @@ public:
public slots:
void downloadAllContentsWithKGet(QPoint);
-
+
virtual void downloadRequest(const QNetworkRequest &request);
virtual void downloadUrl(const KUrl &url);
-
+
protected:
WebPage *createWindow(WebWindowType type);
@@ -88,14 +80,14 @@ private slots:
void updateImage(bool ok);
void downloadReply(const QNetworkReply *reply, const QString &suggestedFileName = QString());
-
-private:
+
+private:
QString errorPage(QNetworkReply *reply);
QUrl _loadingUrl;
ProtocolHandler _protHandler;
WebSslInfo _sslInfo;
-
+
bool _networkAnalyzer;
bool _isOnRekonqPage;
};