/* ============================================================ * QupZilla - WebKit based browser * Copyright (C) 2010-2011 nowrep * * 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 3 of the License, 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. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . * ============================================================ */ #ifndef NETWORKMANAGER_H #define NETWORKMANAGER_H #include #include #include #include #include #include #include #include #include #include #include "networkmanagerproxy.h" class QupZilla; class AdBlockNetwork; class NetworkProxyFactory; class QupZillaSchemeHandler; class NetworkManager : public NetworkManagerProxy { Q_OBJECT public: explicit NetworkManager(QupZilla* mainClass, QObject* parent = 0); QNetworkReply* createRequest(QNetworkAccessManager::Operation op, const QNetworkRequest &request, QIODevice* outgoingData); QList getCertExceptions() { return m_certExceptions; } void setCertExceptions(QList certs) { m_certExceptions = certs; } void saveCertExceptions(); void loadCertExceptions(); void loadSettings(); signals: void finishLoading(bool state); void wantsFocus(const QUrl &url); void sslDialogClosed(); private slots: void authentication(QNetworkReply* reply, QAuthenticator* auth); void proxyAuthentication(const QNetworkProxy& proxy,QAuthenticator* auth); void sslError(QNetworkReply* reply, QList errors); void setSSLConfiguration(QNetworkReply* reply); private: AdBlockNetwork* m_adblockNetwork; QupZilla* p_QupZilla; QList m_certExceptions; QNetworkDiskCache* m_diskCache; NetworkProxyFactory* m_proxyFactory; QupZillaSchemeHandler* m_qupzillaSchemeHandler; bool m_ignoreAllWarnings; bool m_doNotTrack; }; #endif // NETWORKMANAGER_H