summaryrefslogtreecommitdiff
path: root/src/webview.h
diff options
context:
space:
mode:
authorAndrea Diamantini <adjam7@gmail.com>2009-05-23 01:28:39 +0200
committerAndrea Diamantini <adjam7@gmail.com>2009-05-23 01:28:39 +0200
commite6752ba908497ae0c3756315b75509efb2fdbf26 (patch)
treef6a3de95d585c75e97fd3aef75b9c850730bae55 /src/webview.h
parentFixing new AccessManager. Removed webpage createPlugin slot (diff)
downloadrekonq-e6752ba908497ae0c3756315b75509efb2fdbf26.tar.xz
splitted web classes
Diffstat (limited to 'src/webview.h')
-rw-r--r--src/webview.h35
1 files changed, 1 insertions, 34 deletions
diff --git a/src/webview.h b/src/webview.h
index eff5f98b..cef46a80 100644
--- a/src/webview.h
+++ b/src/webview.h
@@ -45,40 +45,7 @@ class QMouseEvent;
class QNetworkProxy;
class QNetworkReply;
class QSslError;
-
-
-class WebPage : public KWebPage
-{
- Q_OBJECT
-
-signals:
- void loadingUrl(const QUrl &url); // WARNING has to be QUrl!!
-
-public:
- WebPage(QObject *parent = 0);
-
-
-protected:
- bool acceptNavigationRequest(QWebFrame *frame,
- const QNetworkRequest &request,
- NavigationType type);
-
- KWebPage *createWindow(QWebPage::WebWindowType type);
-
-private slots:
- void handleUnsupportedContent(QNetworkReply *reply);
-
-private:
- friend class WebView;
-
- // set the webview mousepressedevent
- Qt::KeyboardModifiers m_keyboardModifiers;
- Qt::MouseButtons m_pressedButtons;
- KUrl m_loadingUrl;
-};
-
-
-// ----------------------------------------------------------------------------------------------------
+class WebPage;
// Qt Includes
#include <QWebView>