mirror of
https://github.com/xiaoyifang/goldendict-ng.git
synced 2024-11-23 20:14:05 +00:00
58 lines
1.4 KiB
C++
58 lines
1.4 KiB
C++
/* 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>
|
|
#include <QWebFrame>
|
|
|
|
void ArticleWebView::mousePressEvent( QMouseEvent * event )
|
|
{
|
|
if ( event->buttons() & Qt::MidButton )
|
|
midButtonPressed = true;
|
|
|
|
QWebView::mousePressEvent( event );
|
|
}
|
|
|
|
void ArticleWebView::mouseReleaseEvent( QMouseEvent * event )
|
|
{
|
|
bool noMidButton = !( event->buttons() & Qt::MidButton );
|
|
|
|
QWebView::mouseReleaseEvent( event );
|
|
|
|
if ( midButtonPressed & noMidButton )
|
|
midButtonPressed = false;
|
|
}
|
|
|
|
void ArticleWebView::mouseDoubleClickEvent( QMouseEvent * event )
|
|
{
|
|
QWebView::mouseDoubleClickEvent( event );
|
|
|
|
int scrollBarWidth = page()->mainFrame()->scrollBarGeometry( Qt::Vertical ).width();
|
|
int scrollBarHeight = page()->mainFrame()->scrollBarGeometry( Qt::Horizontal ).height();
|
|
|
|
// emit the signal only if we are not double-clicking on scrollbars
|
|
if ( ( event->x() < width() - scrollBarWidth ) &&
|
|
( event->y() < height() - scrollBarHeight ) )
|
|
{
|
|
emit doubleClicked();
|
|
}
|
|
|
|
}
|
|
|
|
void ArticleWebView::focusInEvent( QFocusEvent * event )
|
|
{
|
|
QWebView::focusInEvent( event );
|
|
|
|
switch( event->reason() )
|
|
{
|
|
case Qt::MouseFocusReason:
|
|
case Qt::TabFocusReason:
|
|
case Qt::BacktabFocusReason:
|
|
page()->mainFrame()->evaluateJavaScript("top.focus();");
|
|
break;
|
|
|
|
default:
|
|
break;
|
|
}
|
|
}
|