forked from goldendict/goldendict
-
Notifications
You must be signed in to change notification settings - Fork 1
/
articlewebview.cc
155 lines (130 loc) · 3.5 KB
/
articlewebview.cc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
/* This file is (c) 2008-2012 Konstantin Isakov <[email protected]>
* Part of GoldenDict. Licensed under GPLv3 or later, see the LICENSE file */
#include "articlewebview.hh"
#include <QMouseEvent>
#include <QWebFrame>
#include <QApplication>
#include "articleinspector.hh"
ArticleWebView::ArticleWebView( QWidget *parent ):
QWebView( parent ),
#if QT_VERSION >= 0x040600
inspector( NULL ),
#endif
midButtonPressed( false ),
selectionBySingleClick( false ),
showInspectorDirectly( true )
{
}
ArticleWebView::~ArticleWebView()
{
#if QT_VERSION >= 0x040600
if ( inspector )
inspector->deleteLater();
#endif
}
void ArticleWebView::setUp( Config::Class * cfg )
{
this->cfg = cfg;
}
void ArticleWebView::triggerPageAction( QWebPage::WebAction action, bool checked )
{
#if QT_VERSION >= 0x040600
if ( action == QWebPage::InspectElement )
{
// Get or create inspector instance for current view.
if ( !inspector )
{
inspector = new ArticleInspector( cfg );
inspector->setPage( page() );
connect( this, SIGNAL( destroyed() ), inspector, SLOT( beforeClosed() ) );
}
if ( showInspectorDirectly )
{
showInspectorDirectly = false;
// Bring up the inspector window and set focus
inspector->show();
inspector->activateWindow();
inspector->raise();
return;
}
}
#endif
QWebView::triggerPageAction( action, checked );
}
bool ArticleWebView::event( QEvent * event )
{
switch ( event->type() )
{
case QEvent::MouseButtonRelease:
case QEvent::MouseButtonDblClick:
showInspectorDirectly = true;
break;
case QEvent::ContextMenu:
showInspectorDirectly = false;
break;
default:
break;
}
return QWebView::event( event );
}
void ArticleWebView::mousePressEvent( QMouseEvent * event )
{
if ( event->buttons() & Qt::MidButton )
midButtonPressed = true;
QWebView::mousePressEvent( event );
if ( selectionBySingleClick && ( event->buttons() & Qt::LeftButton ) )
{
findText(""); // clear the selection first, if any
QMouseEvent ev( QEvent::MouseButtonDblClick, event->pos(), Qt::LeftButton, Qt::LeftButton, event->modifiers() );
QApplication::sendEvent( page(), &ev );
}
}
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 );
#if QT_VERSION >= 0x040600
int scrollBarWidth = page()->mainFrame()->scrollBarGeometry( Qt::Vertical ).width();
int scrollBarHeight = page()->mainFrame()->scrollBarGeometry( Qt::Horizontal ).height();
#else
int scrollBarWidth = 0;
int scrollBarHeight = 0;
#endif
// 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;
}
}
void ArticleWebView::wheelEvent( QWheelEvent *ev )
{
if ( ev->modifiers().testFlag( Qt::ControlModifier ) )
{
ev->ignore();
}
else
{
QWebView::wheelEvent( ev );
}
}