diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2009-07-10 16:10:10 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2009-07-10 16:10:10 +0200 |
commit | 81a1394215334daeb8a95276f55d408fffc968a7 (patch) | |
tree | a69ad37566bcdd398356f63a1f98addef55855d2 /src/webview.cpp | |
parent | Merge commit 'pano/master' (diff) | |
parent | add mouse actions in webview (diff) | |
download | rekonq-81a1394215334daeb8a95276f55d408fffc968a7.tar.xz |
Merge commit 'abuus/master'
Diffstat (limited to 'src/webview.cpp')
-rw-r--r-- | src/webview.cpp | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/webview.cpp b/src/webview.cpp index d5744ccc..ce7378de 100644 --- a/src/webview.cpp +++ b/src/webview.cpp @@ -251,3 +251,17 @@ void WebView::keyPressEvent(QKeyEvent *event) QWebView::keyPressEvent(event); } + +void WebView::mousePressEvent(QMouseEvent *event) +{ + switch(event->button()) { + case Qt::XButton1: + triggerPageAction(QWebPage::Back); + break; + case Qt::XButton2: + triggerPageAction(QWebPage::Forward); + break; + default: + QWebView::mousePressEvent(event); + }; +} |