blob: 93ecc18ede83ed46d760cc8af4fd05124ed692d1 (
plain)
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
|
/*
* Copyright (c) 2010 Kevin Smith
* Licensed under the GNU General Public License v3.
* See Documentation/Licenses/GPLv3.txt for more information.
*/
#include "Swift/QtUI/QtWebView.h"
#include <QKeyEvent>
#include <QFocusEvent>
#include <QMenu>
namespace Swift {
QtWebView::QtWebView(QWidget* parent) : QWebView(parent) {
}
void QtWebView::keyPressEvent(QKeyEvent* event) {
Qt::KeyboardModifiers modifiers = event->modifiers();
int key = event->key();
if (modifiers == Qt::ShiftModifier && (key == Qt::Key_PageUp || key == Qt::Key_PageDown)) {
modifiers = Qt::NoModifier;
}
QKeyEvent* translatedEvent = new QKeyEvent(QEvent::KeyPress,
key,
modifiers,
event->text(),
event->isAutoRepeat(),
event->count());
QWebView::keyPressEvent(translatedEvent);
delete translatedEvent;
}
void QtWebView::dragEnterEvent(QDragEnterEvent *event) {
}
void QtWebView::contextMenuEvent(QContextMenuEvent* ev) {
QAction* copyLinkAction = pageAction(QWebPage::CopyLinkToClipboard);
if (copyLinkAction) {
QMenu menu(this);
menu.addAction(copyLinkAction);
menu.exec(ev->globalPos());
}
}
void QtWebView::focusInEvent(QFocusEvent* event) {
QWebView::focusInEvent(event);
emit gotFocus();
}
}
|