/* ============================================================ * * This file is a part of the rekonq project * * Copyright (C) 2007-2008 Trolltech ASA. All rights reserved * Copyright (C) 2008 Benjamin C. Meyer * Copyright (C) 2008-2009 by Andrea Diamantini * Copyright (C) 2009 by Paweł Prażak * * * This program is free software; you can redistribute it * and/or modify it under the terms of the GNU General * Public License as published by the Free Software Foundation; * either version 2, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * ============================================================ */ #ifndef WEBPAGE_H #define WEBPAGE_H // KDE Includes #include #include #include // Qt Includes #include // Forward Declarations class MainWindow; class Application; class KActionCollection; class QWebFrame; class QAuthenticator; class QMouseEvent; class QNetworkProxy; class QNetworkReply; class WebView; class WebPage : public KWebPage { Q_OBJECT public: explicit WebPage(QObject *parent = 0); public slots: void manageNetworkErrors(QNetworkReply* reply); protected: bool acceptNavigationRequest(QWebFrame *frame, const QNetworkRequest &request, NavigationType type); KWebPage *createWindow(QWebPage::WebWindowType type); // protected Q_SLOTS: // virtual void slotHandleUnsupportedContent(QNetworkReply *reply); private: void viewErrorPage(QNetworkReply *); KUrl m_loadingUrl; }; #endif