1
mirror of https://invent.kde.org/network/falkon.git synced 2024-09-22 18:22:10 +02:00
falkonOfficial/src/lib/webview/webpage.h

156 lines
4.8 KiB
C
Raw Normal View History

2011-03-03 18:29:20 +01:00
/* ============================================================
* QupZilla - WebKit based browser
2014-01-11 16:11:42 +01:00
* Copyright (C) 2010-2014 David Rosca <nowrep@gmail.com>
2011-03-03 18:29:20 +01:00
*
* 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 <http://www.gnu.org/licenses/>.
* ============================================================ */
2011-03-02 16:57:41 +01:00
#ifndef WEBPAGE_H
#define WEBPAGE_H
#include <QWebPage>
#include <QSslCertificate>
#include <QVector>
#include "qz_namespace.h"
#include "passwordmanager.h"
class QWebSecurityOrigin;
class QEventLoop;
2011-03-02 16:57:41 +01:00
class QupZilla;
class AdBlockRule;
class TabbedWebView;
class SpeedDial;
class NetworkManagerProxy;
class DelayedFileWatcher;
class QT_QUPZILLA_EXPORT WebPage : public QWebPage
2011-03-02 16:57:41 +01:00
{
Q_OBJECT
public:
struct AdBlockedEntry {
const AdBlockRule* rule;
QUrl url;
bool operator==(const AdBlockedEntry &other) const {
return (this->rule == other.rule && this->url == other.url);
}
};
WebPage(QObject* parent = 0);
2011-03-02 16:57:41 +01:00
~WebPage();
QUrl url() const;
void setWebView(TabbedWebView* view);
void populateNetworkRequest(QNetworkRequest &request);
2011-04-24 09:08:53 +02:00
void setSSLCertificate(const QSslCertificate &cert);
QSslCertificate sslCertificate();
bool javaScriptPrompt(QWebFrame* originatingFrame, const QString &msg, const QString &defaultValue, QString* result);
bool javaScriptConfirm(QWebFrame* originatingFrame, const QString &msg);
void javaScriptAlert(QWebFrame* originatingFrame, const QString &msg);
2011-03-02 16:57:41 +01:00
void setJavaScriptEnabled(bool enabled);
void addAdBlockRule(const AdBlockRule* rule, const QUrl &url);
QVector<AdBlockedEntry> adBlockedEntries() const;
bool hasMultipleUsernames() const;
QVector<PasswordEntry> autoFillData() const;
void scheduleAdjustPage();
bool isRunningLoop();
bool isLoading() const;
bool loadingError() const;
void addRejectedCerts(const QList<QSslCertificate> &certs);
bool containsRejectedCerts(const QList<QSslCertificate> &certs);
QWebElement activeElement() const;
QString userAgentForUrl(const QUrl &url) const;
static bool isPointerSafeToUse(WebPage* page);
void disconnectObjects();
signals:
void privacyChanged(bool status);
2011-03-02 16:57:41 +01:00
protected slots:
void handleUnsupportedContent(QNetworkReply* url);
void progress(int prog);
void finished();
2011-03-02 16:57:41 +01:00
private slots:
void cleanBlockedObjects();
void urlChanged(const QUrl &url);
void addJavaScriptObject();
void watchedFileChanged(const QString &file);
void printFrame(QWebFrame* frame);
void downloadRequested(const QNetworkRequest &request);
void windowCloseRequested();
void dbQuotaExceeded(QWebFrame* frame);
#ifdef USE_QTWEBKIT_2_2
void appCacheQuotaExceeded(QWebSecurityOrigin* origin, quint64 originalQuota);
void featurePermissionRequested(QWebFrame* frame, const QWebPage::Feature &feature);
#endif
protected:
bool event(QEvent* event);
QWebPage* createWindow(QWebPage::WebWindowType type);
QObject* createPlugin(const QString &classid, const QUrl &url, const QStringList &paramNames, const QStringList &paramValues);
private:
bool supportsExtension(Extension extension) const;
bool extension(Extension extension, const ExtensionOption* option, ExtensionReturn* output = 0);
2011-03-17 17:03:04 +01:00
bool acceptNavigationRequest(QWebFrame* frame, const QNetworkRequest &request, NavigationType type);
QString chooseFile(QWebFrame* originatingFrame, const QString &oldFile);
void handleUnknownProtocol(const QUrl &url);
void desktopServicesOpen(const QUrl &url);
2012-04-17 18:26:01 +02:00
static QString s_lastUploadLocation;
static QUrl s_lastUnsupportedUrl;
static QTime s_lastUnsupportedUrlTime;
2012-04-17 18:26:01 +02:00
static QList<WebPage*> s_livingPages;
NetworkManagerProxy* m_networkProxy;
TabbedWebView* m_view;
SpeedDial* m_speedDial;
DelayedFileWatcher* m_fileWatcher;
QEventLoop* m_runningLoop;
QSslCertificate m_sslCert;
QVector<QSslCertificate> m_rejectedSslCerts;
QVector<AdBlockedEntry> m_adBlockedEntries;
QVector<PasswordEntry> m_passwordEntries;
QWebPage::NavigationType m_lastRequestType;
QUrl m_lastRequestUrl;
int m_loadProgress;
bool m_blockAlerts;
bool m_secureStatus;
bool m_javaScriptEnabled;
bool m_adjustingScheduled;
2011-03-02 16:57:41 +01:00
};
#endif // WEBPAGE_H