goldendict-ng/articlewebview.cc

214 lines
5.6 KiB
C++
Raw Normal View History

2012-02-20 21:47:14 +00:00
/* This file is (c) 2008-2012 Konstantin Isakov <ikm@goldendict.org>
* Part of GoldenDict. Licensed under GPLv3 or later, see the LICENSE file */
#include "articlewebview.hh"
#include <QMouseEvent>
2021-07-06 13:01:50 +00:00
#include <QWebEngineView>
#include <QApplication>
#include <QTimer>
2022-03-10 16:41:35 +00:00
#include <QDialog>
#include <QMainWindow>
#ifdef Q_OS_WIN32
#include <qt_windows.h>
#endif
ArticleWebView::ArticleWebView( QWidget *parent ):
2021-07-06 13:01:50 +00:00
QWebEngineView( parent ),
midButtonPressed( false ),
selectionBySingleClick( false ),
showInspectorDirectly( true )
{
}
ArticleWebView::~ArticleWebView()
{
}
void ArticleWebView::setUp( Config::Class * cfg )
{
this->cfg = cfg;
2022-02-17 16:39:24 +00:00
setZoomFactor(cfg->preferences.zoomFactor);
}
2021-07-06 13:01:50 +00:00
void ArticleWebView::triggerPageAction( QWebEnginePage::WebAction action, bool checked )
{
2021-07-06 13:01:50 +00:00
QWebEngineView::triggerPageAction( action, checked );
}
2022-03-10 16:41:35 +00:00
QWebEngineView * ArticleWebView::createWindow( QWebEnginePage::WebWindowType type )
{
QMainWindow * dlg = new QMainWindow( this );
QWebEngineView * webbrowser = new QWebEngineView( this );
dlg->setCentralWidget(webbrowser);
dlg->setMinimumSize(400,400);
dlg->show();
return webbrowser;
}
bool ArticleWebView::event( QEvent * event )
{
2021-12-05 06:50:54 +00:00
if (event->type() == QEvent::ChildAdded) {
QChildEvent *child_ev = static_cast<QChildEvent *>(event);
// // there is also QObject child that should be ignored here;
// // use only QOpenGLWidget child
// QOpenGLWidget *w = static_cast<QOpenGLWidget*>(child_ev->child());
2021-12-05 06:50:54 +00:00
child_ev->child()->installEventFilter(this);
}
2021-12-05 06:50:54 +00:00
return QWebEngineView::event(event);
}
void ArticleWebView::linkClickedInHtml(QUrl const& ){
//disable single click to simulate dbclick action on the new loaded pages.
singleClickToDbClick=false;
}
bool ArticleWebView::eventFilter(QObject *obj, QEvent *ev) {
2021-12-05 06:50:54 +00:00
if (ev->type() == QEvent::MouseButtonDblClick) {
QMouseEvent *pe = static_cast<QMouseEvent *>(ev);
if (Qt::MouseEventSynthesizedByApplication != pe->source()) {
singleClickToDbClick = false;
dbClicked = true;
}
}
if (ev->type()==QEvent::MouseMove) {
singleClickToDbClick=false;
}
if (ev->type() == QEvent::MouseButtonPress) {
QMouseEvent *pe = static_cast<QMouseEvent *>(ev);
if(pe->button() == Qt::LeftButton)
2021-12-11 16:34:37 +00:00
{
singleClickToDbClick = true;
dbClicked = false;
QTimer::singleShot(QApplication::doubleClickInterval(),this,[=](){
singleClickAction(pe);
});
2021-12-11 16:34:37 +00:00
}
mousePressEvent(pe);
}
if (ev->type() == QEvent::MouseButtonRelease) {
2021-12-05 06:50:54 +00:00
QMouseEvent *pe = static_cast<QMouseEvent *>(ev);
mouseReleaseEvent(pe);
if (dbClicked) {
//emit the signal after button release.emit earlier(in MouseButtonDblClick event) can not get selected text;
doubleClickAction(pe);
}
2021-12-05 06:50:54 +00:00
}
if (ev->type() == QEvent::Wheel) {
QWheelEvent *pe = static_cast<QWheelEvent *>(ev);
wheelEvent(pe);
2022-02-17 16:39:24 +00:00
if ( pe->modifiers().testFlag( Qt::ControlModifier ) )
{
return true;
}
2021-12-05 06:50:54 +00:00
}
if (ev->type() == QEvent::FocusIn) {
QFocusEvent *pe = static_cast<QFocusEvent *>(ev);
focusInEvent(pe);
}
return QWebEngineView::eventFilter(obj, ev);
}
void ArticleWebView::mousePressEvent(QMouseEvent *event)
{
2021-12-26 11:01:05 +00:00
if (event->buttons() & Qt::MiddleButton)
midButtonPressed = true;
}
void ArticleWebView::singleClickAction(QMouseEvent *event )
{
if(!singleClickToDbClick)
return;
2021-12-11 16:34:37 +00:00
if (selectionBySingleClick) {
2022-01-02 16:50:46 +00:00
findText(""); // clear the selection first, if any
//send dbl click event twice? send one time seems not work .weird really. need further investigate.
sendCustomMouseEvent( QEvent::MouseButtonDblClick);
sendCustomMouseEvent( QEvent::MouseButtonDblClick);
}
}
void ArticleWebView::sendCustomMouseEvent( QEvent::Type type) {
2022-01-08 07:39:09 +00:00
QPoint pt = mapFromGlobal(QCursor::pos());
QMouseEvent ev(type, pt, pt, QCursor::pos(), Qt::LeftButton, Qt::LeftButton, Qt::NoModifier,
Qt::MouseEventSynthesizedByApplication);
2022-01-02 16:50:46 +00:00
auto childrens = this->children();
for (auto child:childrens) {
QApplication::sendEvent(child, &ev);
2022-01-08 07:39:09 +00:00
}
}
2021-12-11 16:34:37 +00:00
2022-01-08 07:39:09 +00:00
void ArticleWebView::mouseReleaseEvent(QMouseEvent *event) {
2021-12-26 11:01:05 +00:00
bool noMidButton = !( event->buttons() & Qt::MiddleButton );
2022-03-03 16:17:21 +00:00
// if ( midButtonPressed & noMidButton )
// midButtonPressed = false;
}
2022-01-02 16:50:46 +00:00
void ArticleWebView::doubleClickAction(QMouseEvent *event) {
if (Qt::MouseEventSynthesizedByApplication != event->source()) {
emit doubleClicked(event->pos());
}
}
void ArticleWebView::focusInEvent( QFocusEvent * event )
{
2021-07-06 13:01:50 +00:00
QWebEngineView::focusInEvent( event );
switch( event->reason() )
{
case Qt::MouseFocusReason:
case Qt::TabFocusReason:
case Qt::BacktabFocusReason:
2021-07-06 13:01:50 +00:00
page()->runJavaScript("top.focus();");
break;
default:
break;
}
}
void ArticleWebView::wheelEvent( QWheelEvent *ev )
{
#ifdef Q_OS_WIN32
2021-07-06 13:01:50 +00:00
// Avoid wrong mouse wheel handling in QWebEngineView
// if system preferences is set to "scroll by page"
if( ev->modifiers() == Qt::NoModifier )
{
unsigned nLines;
SystemParametersInfo( SPI_GETWHEELSCROLLLINES, 0, &nLines, 0 );
if( nLines == WHEEL_PAGESCROLL )
{
QKeyEvent kev( QEvent::KeyPress, ev->angleDelta ().y () > 0 ? Qt::Key_PageUp : Qt::Key_PageDown,
Qt::NoModifier );
auto childrens = this->children();
for (auto child : childrens) {
QApplication::sendEvent(child, &kev);
}
ev->accept();
return;
}
}
#endif
if ( ev->modifiers().testFlag( Qt::ControlModifier ) )
{
ev->ignore();
}
else
{
2021-07-06 13:01:50 +00:00
QWebEngineView::wheelEvent( ev );
}
}