mirror of
https://github.com/zealdocs/zeal.git
synced 2026-08-31 01:20:55 +08:00
27e1815702
setRequestInterceptor() was replaced with setUrlRequestInterceptor().
255 lines
6.6 KiB
C++
255 lines
6.6 KiB
C++
/****************************************************************************
|
|
**
|
|
** Copyright (C) 2015-2016 Oleg Shparber
|
|
** Copyright (C) 2013-2014 Jerzy Kozera
|
|
** Contact: https://go.zealdocs.org/l/contact
|
|
**
|
|
** This file is part of Zeal.
|
|
**
|
|
** Zeal 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.
|
|
**
|
|
** Zeal 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 Zeal. If not, see <https://www.gnu.org/licenses/>.
|
|
**
|
|
****************************************************************************/
|
|
|
|
#include "webview.h"
|
|
|
|
#include "urlrequestinterceptor.h"
|
|
#include "webcontrol.h"
|
|
#include "webpage.h"
|
|
|
|
#include <core/application.h>
|
|
#include <core/networkaccessmanager.h>
|
|
#include <core/settings.h>
|
|
#include <ui/browsertab.h>
|
|
#include <ui/mainwindow.h>
|
|
|
|
#include <QApplication>
|
|
#include <QCheckBox>
|
|
#include <QDesktopServices>
|
|
#include <QMenu>
|
|
#include <QMessageBox>
|
|
#include <QPushButton>
|
|
#include <QVector>
|
|
#include <QWebEngineContextMenuData>
|
|
#include <QWebEngineProfile>
|
|
#include <QWheelEvent>
|
|
|
|
using namespace Zeal::Browser;
|
|
|
|
WebView::WebView(QWidget *parent)
|
|
: QWebEngineView(parent)
|
|
{
|
|
UrlRequestInterceptor *requestInterceptor = new UrlRequestInterceptor(this);
|
|
QWebEngineProfile *profile = new QWebEngineProfile(this);
|
|
profile->setUrlRequestInterceptor(requestInterceptor);
|
|
QWebEnginePage *p = new WebPage(profile, this);
|
|
setPage(p);
|
|
setZoomLevel(defaultZoomLevel());
|
|
|
|
QApplication::instance()->installEventFilter(this);
|
|
}
|
|
|
|
int WebView::zoomLevel() const
|
|
{
|
|
return m_zoomLevel;
|
|
}
|
|
|
|
void WebView::setZoomLevel(int level)
|
|
{
|
|
if (level == m_zoomLevel) {
|
|
return;
|
|
}
|
|
|
|
level = qMax(0, level);
|
|
level = qMin(level, availableZoomLevels().size() - 1);
|
|
|
|
m_zoomLevel = level;
|
|
|
|
// Scale the webview relative to the DPI of the screen.
|
|
const double dpiZoomFactor = logicalDpiY() / 96.0;
|
|
|
|
setZoomFactor(availableZoomLevels().at(level) / 100.0 * dpiZoomFactor);
|
|
emit zoomLevelChanged();
|
|
}
|
|
|
|
const QVector<int> &WebView::availableZoomLevels()
|
|
{
|
|
static const QVector<int> zoomLevels = {30, 40, 50, 67, 80, 90, 100,
|
|
110, 120, 133, 150, 170, 200,
|
|
220, 233, 250, 270, 285, 300};
|
|
return zoomLevels;
|
|
}
|
|
|
|
int WebView::defaultZoomLevel()
|
|
{
|
|
static const int level = availableZoomLevels().indexOf(100);
|
|
return level;
|
|
}
|
|
|
|
void WebView::zoomIn()
|
|
{
|
|
setZoomLevel(m_zoomLevel + 1);
|
|
}
|
|
|
|
void WebView::zoomOut()
|
|
{
|
|
setZoomLevel(m_zoomLevel - 1);
|
|
}
|
|
|
|
void WebView::resetZoom()
|
|
{
|
|
setZoomLevel(defaultZoomLevel());
|
|
}
|
|
|
|
QWebEngineView *WebView::createWindow(QWebEnginePage::WebWindowType type)
|
|
{
|
|
Q_UNUSED(type)
|
|
return Core::Application::instance()->mainWindow()->createTab()->webControl()->m_webView;
|
|
}
|
|
|
|
void WebView::contextMenuEvent(QContextMenuEvent *event)
|
|
{
|
|
QWebEnginePage *p = page();
|
|
const QWebEngineContextMenuData& contextData = p->contextMenuData();
|
|
|
|
if (!contextData.isValid()) {
|
|
QWebEngineView::contextMenuEvent(event);
|
|
return;
|
|
}
|
|
|
|
event->accept();
|
|
|
|
if (m_contextMenu) {
|
|
m_contextMenu->deleteLater();
|
|
}
|
|
|
|
m_contextMenu = new QMenu(this);
|
|
|
|
QUrl linkUrl = contextData.linkUrl();
|
|
if (linkUrl.isValid()) {
|
|
const QString scheme = linkUrl.scheme();
|
|
|
|
if (scheme != QLatin1String("javascript")) {
|
|
m_contextMenu->addAction(tr("Open Link in New Tab"), this, [this]() {
|
|
triggerPageAction(QWebEnginePage::WebAction::OpenLinkInNewWindow);
|
|
});
|
|
}
|
|
|
|
if (scheme != QLatin1String("qrc")) {
|
|
if (scheme != QLatin1String("javascript")) {
|
|
m_contextMenu->addAction(tr("Open Link in Desktop Browser"), this, [linkUrl]() {
|
|
QDesktopServices::openUrl(linkUrl);
|
|
});
|
|
}
|
|
|
|
m_contextMenu->addAction(pageAction(QWebEnginePage::CopyLinkToClipboard));
|
|
}
|
|
}
|
|
|
|
const QString selectedText = contextData.selectedText();
|
|
if (!selectedText.isEmpty()) {
|
|
if (!m_contextMenu->isEmpty()) {
|
|
m_contextMenu->addSeparator();
|
|
}
|
|
|
|
m_contextMenu->addAction(pageAction(QWebEnginePage::Copy));
|
|
}
|
|
|
|
if (!linkUrl.isValid() && url().scheme() != QLatin1String("qrc")) {
|
|
if (!m_contextMenu->isEmpty()) {
|
|
m_contextMenu->addSeparator();
|
|
}
|
|
|
|
m_contextMenu->addAction(pageAction(QWebEnginePage::Back));
|
|
m_contextMenu->addAction(pageAction(QWebEnginePage::Forward));
|
|
m_contextMenu->addSeparator();
|
|
|
|
m_contextMenu->addAction(tr("Open Page in Desktop Browser"), this, [this]() {
|
|
QDesktopServices::openUrl(url());
|
|
});
|
|
}
|
|
|
|
if (m_contextMenu->isEmpty()) {
|
|
return;
|
|
}
|
|
|
|
m_contextMenu->popup(event->globalPos());
|
|
}
|
|
|
|
bool WebView::handleMousePressEvent(QMouseEvent *event)
|
|
{
|
|
switch (event->button()) {
|
|
case Qt::BackButton:
|
|
back();
|
|
event->accept();
|
|
return true;
|
|
|
|
case Qt::ForwardButton:
|
|
forward();
|
|
event->accept();
|
|
return true;
|
|
|
|
default:
|
|
break;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
bool WebView::handleWheelEvent(QWheelEvent *event)
|
|
{
|
|
if (event->modifiers() & Qt::ControlModifier) {
|
|
const QPoint angleDelta = event->angleDelta();
|
|
int delta = qAbs(angleDelta.x()) > qAbs(angleDelta.y()) ? angleDelta.x() : angleDelta.y();
|
|
const int direction = delta > 0 ? 1 : -1;
|
|
|
|
int levelDelta = 0;
|
|
while (delta * direction >= 120) {
|
|
levelDelta += direction;
|
|
delta -= 120 * direction;
|
|
}
|
|
|
|
setZoomLevel(m_zoomLevel + levelDelta);
|
|
event->accept();
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
bool WebView::eventFilter(QObject *watched, QEvent *event)
|
|
{
|
|
if (watched->parent() == this) {
|
|
switch (event->type()) {
|
|
case QEvent::MouseButtonPress:
|
|
if (handleMousePressEvent(static_cast<QMouseEvent *>(event))) {
|
|
return true;
|
|
}
|
|
|
|
break;
|
|
|
|
case QEvent::Wheel:
|
|
if (handleWheelEvent(static_cast<QWheelEvent *>(event))) {
|
|
return true;
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
break;
|
|
}
|
|
}
|
|
|
|
return QWebEngineView::eventFilter(watched, event);
|
|
}
|